フィルターのクリア

How Do I Extract User Inputs From a UIFigure?

33 ビュー (過去 30 日間)
Brandon
Brandon 2023 年 7 月 25 日
回答済み: Brandon 2023 年 7 月 31 日
I am trying to make a window with several checkboxes, and an OK button. I want the state of the checkboxes to be saved in memory when the user closes the window with the OK button. As soon as the figure closes, the data is gone. And I cannot figure out how to extract the data from the close function handle itself. Do I need to create a 'ValueChangedFcn' for each checkbox and change it in real time?

採用された回答

Brandon
Brandon 2023 年 7 月 31 日
I found my answer in another question: How do I pass variables from one GUI to another
The documentiation on GUI is especially lacking. setappdata() and getappdata() ought to be on the pages on buttons and checkboxes.

その他の回答 (2 件)

Voss
Voss 2023 年 7 月 25 日
To save the state when the uifigure is closed, specify a CloseRequestFcn for the uifigure that gets the state of each checkbox and saves that information to file (e.g., a mat file or a text file).
To restore the state when re-opening the uifigure:
  • if it's in an app, specify a startupFcn for the app that reads the file you saved and sets the state of the checkboxes
  • if it's not in an app, read the file in the script or function that creates the uifigure and set the state of the checkboxes when they are created
  2 件のコメント
Brandon
Brandon 2023 年 7 月 26 日
I need to user inputs to stay in memory while the program continues to run.
Voss
Voss 2023 年 7 月 26 日
Maybe it is convenient to make the uifigure invisible instead of closing it in the closeRequestFcn. While it's invisible, the checkbox states are still available.

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


Brandon
Brandon 2023 年 7 月 26 日
I resolved my issue by creating a global array. I can then declare the global array be used inside of the close function. I assign every checkbox value to my global array. I'm not very happy with this solution as it feels like a workaround.
My solution goes something like this:
global userSelect
userSelect = false*[1:10]
fig = uifigure(etc..)
cBoxList = {};
{Make checkboxes and put them into the cell array}
function closeIt(cBoxList,fig)
global userSelect
for i=1:10
userSelect(i) = cBoxList{i}.Value;
end
close(fig)
end

カテゴリ

Help Center および File ExchangeDevelop uifigure-Based Apps についてさらに検索

製品


リリース

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by