how to enable/disable a pushbutton based on a radio selection? (guide gui)

6 ビュー (過去 30 日間)
A
A 2012 年 12 月 20 日
編集済み: VBBV 2020 年 11 月 27 日
I have a radio button group woth 2 buttons; depending on which radiobutton is selected, I want to enable/disable a pushbutton.
  1 件のコメント
VBBV
VBBV 2020 年 11 月 27 日
編集済み: VBBV 2020 年 11 月 27 日
if get(handles.radiobutton1,'Value') == 1
set(handles.pushbutton1,'enable','off');
... % rest of code
elseif get(handles.radiobutton2,'Value') == 1
set(handles.pushbutton2,'enable','off');
... % rest of code
end

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

回答 (1 件)

Sean de Wolski
Sean de Wolski 2012 年 12 月 20 日
In the radio button or uibuttongroup callback:
set(handles.pushbutton1,'enable','off');
  1 件のコメント
Christian Guitart
Christian Guitart 2016 年 5 月 12 日
Hello,
Can you explain me how to do the same task but on programmatic GUI?
Thanks in advance,

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

カテゴリ

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