uistack on opening function
1 次查看(过去 30 天)
显示 更早的评论
I have two GUIs that have structures linked between. When the second GUI is opened, if a certain variable is not available, I want it to return the user to the first GUI.
I tried using uistack at the end of the 2nd GUI opening function, it brings the 1st GUI to the front very briefly then defaults back to the 2nd GUI.
Here is the process logically: 1. First GUI is opened. 2. Second GUI is opening, data from first GUI is loaded. 3. Variable is missing, active figure changed back to first GUI.
0 个评论
采纳的回答
Adam
2017-4-11
编辑:Adam
2017-4-11
figure( hFirstGUI );
should work if placed in the Output_Fcn of the 2nd GUI, should work I think. 'hFirstGUI' being the handle of your first GUI which you would need to pass in to the 2nd GUI. The Opening_Fcn builds the GUI and when it reaches the end gives focus to that GUI so if you try to change focus within the Opening_Fcn it will just be overridden when it completes.
The Output_Fcn gets run afterwards. If you have a Modal GUI with a uiwait setup this will not work though as the Output_Fcn will not run until the uiresume.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Startup and Shutdown 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!