フィルターのクリア

How do I set up a uigetdir with a Push button in appdesigner ?

34 ビュー (過去 30 日間)
farzad
farzad 2020 年 3 月 18 日
コメント済み: Adam Danz 2020 年 3 月 19 日
Hi All
I need to have a push button that when I press, the uigetdir command activates and allows the user to choose the desired directory , and pass this to the main code that will be run via the app. I have been unsuccessful and I get errors
  1 件のコメント
farzad
farzad 2020 年 3 月 18 日
Could someone help ? I am searching everywhere , and no hope so far ! It's frustrating, cause appdesigner and GUI can't be tested in command prompt and I don't know why the edit field works but button with uigetdir not

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

採用された回答

Adam Danz
Adam Danz 2020 年 3 月 18 日
Step 1: Add callback function to the Button
Right click the button from within appdesigner and add a callback function.
Step 2: add 'selectedPath' as a private property
This variable will store the user's selected path. You can name the variable anything you want.
From the Code View in appdesigner, go to the CODE BROWSER, select Properties, and press the green "+" button.
This will add a new private property. Rename it to selectedPath or whatever other name you want and set a default value. The default value will be used if this variable is accessed prior to the user choosing a path. The default value can be empty (selectedPath = '';). Add a commented description of the variable.
Step 3: Call uigetdir from the button's callback function
Call the uigetdir function from within the button's callback function. Choose which inputs you need. Store the output in app.selectPath using the same variable name as you declared as a private property.
function ButtonPushed(app, event)
app.selectedPath = uigetdir(); % <-- add this line
end
Step 4: Access the chosen path
From anywhere in your app, you can access the selected (or default) path by using
app.selectedPath
  12 件のコメント
farzad
farzad 2020 年 3 月 19 日
ok , it seems that it's the
assignin('base','currentFolder',currentFolder);
line that send the variable to matlab workspace, but still ,when the Mfile runs, it can not read it. I think it's a matter of time and velocity of execution.
should I use uiwait ? is it relevant ?
Adam Danz
Adam Danz 2020 年 3 月 19 日
Have you switched from using global variables to using public properties? Global variables cause all sorts of problems.
Lots of problems can arise by using assignin(), too. I hadn't noticed that line in your code until you mentioned it. Again, declaring currentFolder as a public property is a better option. If you want to access the currentFolder variable from the base workspace, you could do so like this:
app = myApp; % myApp is the name of your app; this is how you open the app.
app.currentFolder

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangePackage and Share Apps についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by