2020-05-31 09:31 PM
I want to create a parameter setting screen in addition to the main screen.
Read the state of the switch at startup to determine which screen to display.
I want to dynamically decide the display screen like this. How should I create it?
Do you have samples?
Thank you.
2020-06-01 12:55 AM
Hi @Ebun.1 ,
The start-up screen is decided in the Designer. The code for the same is available in the FrontendHeapBase.hpp & FrontendApplicationBase.cpp files. These are compile-time decisions.
In your case, the decision is to be made at run-time., as per the status of a button. In such a case you will have to make changes to the above said files. However, be aware that when you will regenerate code, these changes could get lost ( try & check for yourself ).
/Jagdish Bisawa
2020-06-04 01:10 AM
You may add a empty screen as the startup screen, add two interaction to it (one - change screen to main screen and other - change screen to setting screen) and then activate one of these interactions in runtime.
2020-06-05 12:20 AM
Thank you for your reply.
I am going to use it as an example.
2020-06-05 12:20 AM
Thank you for your reply.
I am going to use it as an example.