uiwait and uiresume in App designer to control main code and sub code

조회 수: 7 (최근 30일)
邱
2024년 9월 4일
댓글: 2024년 9월 4일
In my main code, i need run a new mlapp, but i don't want main code to continue until I return a data from "sub.mlapp", how can i achieve it? thanks!
run("sub.mlapp")
subdata1=getappdata(0,'subdata');
% stop below code until I push return button in sub.mlapp
app.Compresspr.Value=subdata1.data1(1);
app.Compresspr2.Value=subdata1.data1(2);

채택된 답변

Shivam
Shivam 2024년 9월 4일
Hi 邱,
I get that you have a script that you want to continue executing once you have gathered that data from the app getting executed in the background.
You can achieve the desired behaviour using uiwait and uiresume with the steps mentioned below:
  1. Use the uiwait function to pause the execution of the main script after the 'sub.mlapp' is launched.
  2. Create a button in the 'sub.mlapp' and in its callback function gather the necessary data and use uiresume function to continue the main script. E.g.
% In the callback of the created button
% Collect data to return
subdata.data1 = [app.SomeValue1, app.SomeValue2]; % Example data
% Store data in the base workspace or handle it as needed
setappdata(0, 'subdata', subdata);
% Resume execution of the main script
uiresume(app.UIFigure);
Please note that above provided example is just an illustration of the workaround you can follow. Ensure that the data you need is properly set in the 'sub.mlapp' before calling uiresume.
You can visit these documentation links to know more about uiresume and uiwait functions:
  1. https://www.mathworks.com/help/matlab/ref/uiresume.html
  2. https://www.mathworks.com/help/matlab/ref/uiwait.html
I hope it helps in achieving the desired behaviour.
  댓글 수: 3
Shivam
Shivam 2024년 9월 4일
As suggested in my previous response, you need to use app.UIFigure. You have wrongly used it as app.Main.
You can look at the attached sub.mlapp to get a better understanding.
邱
2024년 9월 4일
Thanks for your help! I've solved my problem. ^ ^

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Maintain or Transition figure-Based Apps에 대해 자세히 알아보기

제품


릴리스

R2024a

Community Treasure Hunt

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

Start Hunting!

Translated by