Solved
Issue: Widget overwritten.
Hi,
For example, I create 2 widgets (button and box), the box in top and button in bottom.
I need to change their position like picture 2, how can I do except delete and rebuild to changed their order ?

Hi,
For example, I create 2 widgets (button and box), the box in top and button in bottom.
I need to change their position like picture 2, how can I do except delete and rebuild to changed their order ?

Hello,
Unfortunately this function is not implemented in the API.
But, there is a little work-around you can use if you want to do that :
The code could look like that :
void Screen1View::changeWidgetPosition()
{
remove(box1);
insert(&button1, box1); // insert the box below the button
}/Yoann
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.