フィルターのクリア

how to close all apps simultaneously?

35 ビュー (過去 30 日間)
Muazma Ali
Muazma Ali 2023 年 12 月 3 日
コメント済み: Walter Roberson 2023 年 12 月 4 日
Hi
I am closing one app and want the other one that calls the app I am closing, to close also.
How can I do that ? As a temporarily solution I have placed a dialog box asking the user whether she or he want to close the calling app also..
thanks

回答 (1 件)

Taylor
Taylor 2023 年 12 月 4 日
Generally, you can just use "delete"
myHandle = myApp;
delete(myHandle)
I would recommend baking this into the "UIFigureCloseRequest" callback of your primary app like so
% this is called somewhere in the primary app
secondaryAppHandle = secondaryApp;
% this will go in UIFigureCloseRequest
delete(secondaryAppHandle);
  7 件のコメント
Taylor
Taylor 2023 年 12 月 4 日
Ah ok I think I understand your point now, thank you for the explanation. When I call
delete(secondaryAppHandle);
I am relying on there being a "UIFigureCloseRequest" function in the secondary App that will properly close the secodary App not just the figure. So the user must make sure they have added this callback function to the secondary App. Deleting the figure object will trigger the UIFigureCloseRequest to be called which will stop the app.
Walter Roberson
Walter Roberson 2023 年 12 月 4 日
CloseRequestFcn handles calls to close() or clicking the window decorations to close the figure; CloseRequestFcn does not get invoked for delete() calls.

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

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by