Effacer les filtres
Effacer les filtres

Appdesigner window ends up in background after uigetfile

335 vues (au cours des 30 derniers jours)
Fredrik Wallén
Fredrik Wallén le 19 Juil 2016
I am creating a graphic program using appdesigner but when I call a function where the user can choose a file (uigetfile) the figure window is often put behind some other of my open windows after the file has been chosen. For example if I have a word document open at the same time as my program, the word document gets focus when the file has been chosen and I have to click at the bottom bar to get back to my program. I was using GUIDE before and then I didn't have that problem. I am running on Windows. Is there a way to solve this?
  2 commentaires
Jorg Woehl
Jorg Woehl le 21 Déc 2016
Same problem here. When I call uigetfile or uiputfile from an App Designer app, the focus is not correctly transferred to the new file selector window. Any workarounds?
Chris McRaven
Chris McRaven le 16 Juin 2017
I am also seeing this problem. I think this is unexpected behavior. The focus should return to the uifigure which called uigetfile(). My steps to reproduce are
  1. Make a mlapp in App Designer that has a button that calls uigetfile()
  2. Run the new program from App Designer
  3. Click on the Matlab main window
  4. Click back on the new program
  5. Click the button which calls uigetfile()
  6. Select a file, and click 'open'
  7. Focus will return to the Matlab main window, not the new program as expected
This also works if I have another figure window open. That is, if I click away from the new program to any open figure window, then click back to the new program to run uigetfile(), the focus is returned to that open figure window.
I've tried calling figure(app.NewProgram) immediately after to no effect. I have also tried various drawnow calls as described below, but none worked. Has anybody found a workaround?

Connectez-vous pour commenter.

Réponse acceptée

Onur Ozdemir
Onur Ozdemir le 14 Mar 2022
Modifié(e) : Onur Ozdemir le 14 Mar 2022
As WTxnitz said, all these answers address getting the app window back as focus after uigetfile but what is preferred is to prevent it from minimizing in the first place. Here I made a small change to WTxnitz's answer, this way a non visible dummy figure is created instead of sending everything to background.
f = figure('Renderer', 'painters', 'Position', [-100 -100 0 0]); %create a dummy figure so that uigetfile doesn't minimize our GUI
[filename,path] = uigetfile('*.txt', 'Open text file','MultiSelect','on');
delete(f); %delete the dummy figure
This prevents uigetfile from sending appdesigner window to background while !
Best of luck.
  8 commentaires
sunshine
sunshine le 17 Avr 2024
Visible off not works for me
Jorg Woehl
Jorg Woehl le 6 Mai 2024
Modifié(e) : Jorg Woehl le 6 Mai 2024
@Adee, making the figure invisible does not work for me either. Also, chosing a negative location/zero width and height does not work in R2024a; a small dummy figure still shows up in the lower left corner of the display.
It is somewhat disappointing that this bug is not yet fixed by the folks at Mathworks, after existing for more than a dozen releases...

Connectez-vous pour commenter.

Plus de réponses (11)

Chris McRaven
Chris McRaven le 16 Juin 2017
I believe I have a (somewhat ugly) workaround. Immediately after calling uigetfile(), simply make the main uifigure window invisible and then visible. Assuming the name of your uifigure window is 'UIFigure', add
...
filename = uigetfile(...);
app.UIFigure.Visible = 'off';
app.UIFigure.Visible = 'on';
...
right after the call to uigetfile().
  13 commentaires
xinxin wang
xinxin wang le 31 Mai 2019
Great idea!!worked for me 2018b.But it's so depressing we can't direct to UIfigure
Phil
Phil le 4 Sep 2019
Thanks alot!!

Connectez-vous pour commenter.


Friedrich
Friedrich le 6 Sep 2019
Modifié(e) : Friedrich le 6 Sep 2019
For MATLAB R2018a and newer you can use the figure command to focus your app again,
uigetfile; % Could be other dialogs here
drawnow;
figure(app.UIFigure)
For releases prior either turn the visibility off and on again or use the attached p file (change extension from .zip to .p). The usage then would be
uigetfile; % Could be other dialogs here
drawnow;
FocusUIFigure(app.UIFigure)
  9 commentaires
Bruce Rodenborn
Bruce Rodenborn le 23 Jan 2024
Modifié(e) : Bruce Rodenborn le 23 Jan 2024
Terrible answer. Staff at MATHWORKS should provide complete information in their solution. In particular, app.UIfigure is generically part of a NEW app in MATLAB, but is NOT part of a converted GUI. Your answer should have been properly commented instead of the anemic information provided.
Bruce Rodenborn
Bruce Rodenborn le 23 Jan 2024
Modifié(e) : Bruce Rodenborn le 23 Jan 2024
The solution works, but you need to find the appropriate ufigure in your ComponentBrowser. I attached an image in case you have the same problem. My code looks like:
[file_mat,dir_mat,FilterIndex]=uigetfile('*.mat','Select Data File');
drawnow; %update the figure windows
figure(app.figure) %bring the GUI back to the foreground

Connectez-vous pour commenter.


Tomas Åhlman
Tomas Åhlman le 12 Juin 2018
Try using:
filename = uigetfile(...); figure(app.UIFigure);
(assuming UIFigure is the name of your main window)
  3 commentaires
Farley Postgate
Farley Postgate le 3 Jan 2020
This workaround works for me. I just tried it with matlab 2020a...
Shaul Shvimmer
Shaul Shvimmer le 4 Mar 2020
Modifié(e) : Shaul Shvimmer le 4 Mar 2020
Worked for me as well, thank you!
(MATLAB 2019b)

Connectez-vous pour commenter.


NbrOneProcastinator
NbrOneProcastinator le 13 Jan 2023
2023 and still no official fix to this issue. Matlab App Designer users have been beta testers since years now!

WTxnitz
WTxnitz le 20 Avr 2020
All these answers address getting the app window back as focus after uigetfile.
The other side of the problem for me is the uigetfile dialog itself launches behind all other windows.
Here is a workaround I found. This works on 2020a and macOS Mojave
% open dummy figure
f=figure();
%bring figure to front focus
drawnow;
%the uigetfile dialog now opens properly in front focus
[xl_file,xl_path] = uigetfile('*.*');
% after user closes dialog
% delete dummy
delete(f);
%use solution elsewhere to return focus to app
app.your_app_here.Visible = 'off';
app.your_app_here.Visible = 'on';
This seems to work both from within the app embedded code and with "external" files
in the main Matlab window.
  5 commentaires
WTxnitz
WTxnitz le 19 Déc 2021
Sorry to hear it doesn't work for you :-(
Just checked. It still works for me 2021b, update 1 (9.11.0.1809720) - latest
on latest MacBook Pro M1 and MacOs Monterey 12.1
also works on intel MBP
can't help more than this. hope you find a fix
WTxnitz
WTxnitz le 19 Déc 2021
Not sure what didn't work
my answer is to get the uigetfile dialog itself in front focus
I did check my code and there is one difference, as to returning focus to the app
Based on other people's input instead of:
%use solution elsewhere to return focus to app
app.your_app_here.Visible = 'off';
app.your_app_here.Visible = 'on';
I use
figure(app.your_app_here)
both seem to work

Connectez-vous pour commenter.


NbrOneProcastinator
NbrOneProcastinator le 27 Juin 2023
Seven years later and still just workarounds for this problem.
Not bad, Mathworks!

Adam Danz
Adam Danz le 14 Mai 2024
Thanks for reporting the problem.
This has been fixed in the R2024a beta release and the fix will be available in the general release in a (very near) future release.

awezmm
awezmm le 9 Nov 2018
Write commandwindow(); before you uigetdir

Syed Hussain
Syed Hussain le 25 Jan 2019
Hi
Its is really strange behaviour
My Solution was just to use
...
filename = uigetfile(...);
app.UIFigure.Visible = 'on';
...
It removed the glichy behaviour.
Thanks
  1 commentaire
Jorg Woehl
Jorg Woehl le 6 Mai 2024
This did not bring the app window back in focus for me (R2024a), and it also doesn't resolve the issue of the file selector window ending up behind the app window when calling uigetfile.

Connectez-vous pour commenter.


Riyadh Abbas
Riyadh Abbas le 26 Mai 2017
Hi there, I found a solution to this issue provided by http://undocumentedmatlab.com/blog/solving-a-matlab-hang-problem, which suggested adding two lines drawnow; pause(0.05);
I tried it and it did work for me, hope can solve your problem.
  4 commentaires
Neelakanthu Karra
Neelakanthu Karra le 22 Nov 2017
Didn't worked for me ....
James Ryan
James Ryan le 6 Déc 2017
Perhaps you misread the question. This is not a hang (as in your link). The window simply end up behind others.

Connectez-vous pour commenter.


Jorg Woehl
Jorg Woehl le 14 Mai 2024
Modifié(e) : Jorg Woehl le 14 Mai 2024
I have just published a simple workaround for these focus issues, which -- as The MathWorks acknowledges -- still have "currently no official workaround". Check out my File Exchange contribution https://www.mathworks.com/matlabcentral/fileexchange/165961-fixfocus, which was in part inspired by this thread.

Catégories

En savoir plus sur Develop uifigure-Based Apps dans Help Center et File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by