How to put an app in foreground from background
13 次查看(过去 30 天)
显示 更早的评论
Hi everyone,
until MatLab 2019a I used to put this code into the script of AppDesigner to put from background to foreground an app, but unfortunately in 2020a it doesn't work anymore...
% Toggles figure visible. These two lines of code work-around an issue whether the figure is sent to the background.
app.MainApp.Visible = 'off';
app.MainApp.Visible = 'on';
Has someone found a solution to do the same in 2020a version?
Thanks a lot!
0 个评论
采纳的回答
Nikita Agrawal
2020-9-3
You could use :
...
filename = uigetfile(...);
app.UIFigure.Visible = 'on';
..
Hope this helps!
1 个评论
Nikita Agrawal
2020-9-3
Please find the details here : https://in.mathworks.com/matlabcentral/answers/296305-appdesigner-window-ends-up-in-background-after-uigetfile#answer_427026
更多回答(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!