フィルターのクリア

How to freeze a figure

9 ビュー (過去 30 日間)
Cédric Devivier
Cédric Devivier 2013 年 2 月 28 日
Dear all,
I am building a GUI and I would like to make all buttons and stuff inactive during computation. Is there any clever way of doing so? The current solution is to disable and then enable everything single control...
Thank you for your help, Cédric

採用された回答

Azzi Abdelmalek
Azzi Abdelmalek 2013 年 2 月 28 日
set(handles.yourobject,'enable','off')
  2 件のコメント
Azzi Abdelmalek
Azzi Abdelmalek 2013 年 2 月 28 日
%or if you put all your button in a panel called for example uipanel1
ButtonsHandle = get(handles.uipanel1,'Children')
set(ButtonsHandle,'enable','off')
Walter Roberson
Walter Roberson 2013 年 2 月 28 日
Some of them might already be off, so you should extract their current state so that you can restore it afterwards.
Also, since uipanel can have children that are uipanel, just get()'ing the Children at one level is not generally sufficient.
You also need to cross-check whether Enable Off for a uibuttongroup disables all of the individual buttons.

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

その他の回答 (2 件)

Walter Roberson
Walter Roberson 2013 年 2 月 28 日
Create a modal figure; nothing else will be permitted to run until the modal figure is destroyed.

Cédric Devivier
Cédric Devivier 2013 年 2 月 28 日
Ok, that was my fear. For the moment, I'm setting the enable to off.

カテゴリ

Help Center および File ExchangeMigrate GUIDE Apps についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by