フィルターのクリア

Problem with selecting location in appdesigner

1 回表示 (過去 30 日間)
Mahdi Hayati
Mahdi Hayati 2023 年 7 月 9 日
編集済み: Mahdi Hayati 2023 年 7 月 10 日
Hi
I am developing an app with appdesigner. one part of it, I have a button that when user clicks on it, a window opens to select a location from his/her PC to save files. This is the code I have written for it:
app.callingapp.path = uigetdir;
The problem is whenever I push this button, after I choose location and push OK, instead of closing the dialog window and go back to the main app window, it jumps into another window which is open in my desktop. For example if there is a Word file or PDF file open, it jumps into that.
Does anyone know how to fix it?

採用された回答

Sandeep Mishra
Sandeep Mishra 2023 年 7 月 9 日
Hello Mahdi,
I understood that you want to keep your app window in front after using uigetdir.
To resolve this issue, You can refer the below MATLAB answer.
Feel free to put any comments if you face any issue.
  1 件のコメント
Mahdi Hayati
Mahdi Hayati 2023 年 7 月 10 日
編集済み: Mahdi Hayati 2023 年 7 月 10 日
Thank you. it worked!
But has a small problem...:
if I try to invisible the dummy figure after creating it, that wont work.
I just made it as small as possible such that user won't notice it!

サインインしてコメントする。

その他の回答 (1 件)

Deep
Deep 2023 年 7 月 9 日
I am able to replicate this issue and tried looking for ways to make it work. As a simple workaround, you can change the focus to the main app window after uigetdir finishes.
app.callingapp.path = uigetdir;
figure(app.UIFigure); % Change focus to your application
  1 件のコメント
Mahdi Hayati
Mahdi Hayati 2023 年 7 月 10 日
Thank you for your answer, it works, but has a little problem:
User can see that in a very short time, another window opens and again UIFigure goes on top

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeDevelop Apps Using App Designer についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by