GUI: how to configure radio buttons to activate/grey out a set of checkboxes?
古いコメントを表示
Hello, I'm discovering the MATLAB GUI possibilities. Aim: to provide a user with a GUI to select some parameters that are necessary for running a program code. Specific: how do I configure the action applied to a set of 2 mutually exclusive radio buttons so that they activate or grey out a set of checkboxes. So, for instance, when the user selects the 'On' radio button, a set of checkboxes must be enabled. Can someone help me with this?
Thanks in advance!
1 件のコメント
Paulo Silva
2011 年 8 月 30 日
Using GUIDE or not?
採用された回答
その他の回答 (2 件)
geomod
2011 年 9 月 1 日
2 件のコメント
Paulo Silva
2011 年 9 月 1 日
What you want to do is to show the image not change some axes property
axes(handles.axes2) %select axes2, it becomes the current axes
if get(hObject,'Value') == 1
image(imageA) %or whatever code you have to show the image
else
image(imageB)
end
geomod
2011 年 9 月 1 日
カテゴリ
ヘルプ センター および File Exchange で Migrate GUIDE Apps についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!