How do I make an App written in App Designer Modal?

15 visualizaciones (últimos 30 días)
Steve Page
Steve Page el 8 de Jun. de 2018
Respondida: Itshak el 30 de En. de 2024
I want to call an App written in App Designer from another App written in App Designer. While the called App is running I do not want the user to be able to interact with the calling App. How do I make the called App Modal? The WindowsStyle property of the class matlab.ui.Figure is not accessible.

Respuestas (4)

Chris Portal
Chris Portal el 10 de Jun. de 2018
If you're using 18a or later, you can try using UIPROGRESSDLG to create an indeterminate progress bar while the secondary app is open. It's not the same modal behavior WindowStyle would give, but it achieves the same task:
  1 comentario
CHAI YUAN
CHAI YUAN el 28 de Mzo. de 2019
Editada: CHAI YUAN el 29 de Mzo. de 2019
I thought of a suitable method

Iniciar sesión para comentar.


CHAI YUAN
CHAI YUAN el 29 de Mzo. de 2019
Editada: CHAI YUAN el 29 de Mzo. de 2019
Class 'test1' is the parent window
Class 'test2' is the child window
test1:function ButtonPushed(app, event)
d = uiprogressdlg(app.test1UIFigure,'Message','Child window detected.');
app.test2Obj = test2;
% (Write your original code here.)
while 1
if exist([cd,'\CYcloneX'],'dir')
break;
end
pause(0.01)
end
close(d);
rmdir([cd,'\CYcloneX'],'s')
test2:function test2UIFigureCloseRequest(app, event)
mkdir([cd,'\CYcloneX'])
delete(app)

Itshak
Itshak el 30 de En. de 2024
For anyone still looking for a solution in 2024. The component browser panel has an option to set the UIFigure Window Style to modal. Upon setting this value if a secondary app is launched from a primary modal app, the primary modal app will be uninteractable as long as the second one is open.

Michael Kaiser
Michael Kaiser el 26 de Mzo. de 2021
The MATLAB function waitfor() may be used.
For example, here is a button pushed callback in an AppDesigner UI that calls another AppDesigner UI to view and modify settings (app.SPSettings):
% Button pushed function: SigProcSettingsButton
function SigProcSettingsButtonPushed(app, event)
% Save a copy of the current signal processing settings
SPSOld = app.SPSettings;
% Invoke AppDesigner UI to observe and modify settings
hDlg = EditVWW2SigProcParams(app.SPSettings);
% Wait for App Designer UI to close (modal behavior)
waitfor(hDlg);
% If settings have been changed, update them in the the engine
if ~isequal(app.SPSettings, SPSOld)
app.RTDBE.UpdateSPSettings(app.SPSettings);
end
end
Hope this helps!

Categorías

Más información sobre Develop Apps Using App Designer en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by