Can I set the UIFigure or AppDesigner GUI to be disable?

20 ビュー (過去 30 日間)
MathWorks Support Team
MathWorks Support Team 2022 年 5 月 19 日
回答済み: MathWorks Support Team 2022 年 5 月 19 日
I would like to make UIFigure of an application created with AppDesigner disable while a certain processing.
Figure object has an "Enable" property and we can set it as "disable", but UIFigure object doesn't seem to have an "Enable" property.

採用された回答

MathWorks Support Team
MathWorks Support Team 2022 年 5 月 19 日
UIFigure, the main component of AppDesigner, does not have an "Enable" property.
As an alternative, you can use the uiprogressdlg function.
・uiprogressdlg function
The UIFigure(GUI) is disabled while the dialog box created by the uiprogressdlg function is displayed.
 
Example:
d = uiprogressdlg(app. UIFigure,'Title','Please Wait'); % dialog display (GUI is in Disable state)
...
close(d) % dialog exit (return to Enable state)

その他の回答 (0 件)

カテゴリ

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

タグ

タグが未入力です。

製品


リリース

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by