How to change uicontrol properties in a callback function of a different uicontrol?

2 ビュー (過去 30 日間)
Adriano
Adriano 2017 年 11 月 28 日
編集済み: Adriano 2017 年 11 月 28 日
Hi everyone! I'm developing a GUI in which I would like to make invisible a popupmenu when every value is choosed by another popupmenu. The code is the follow:
popupmenu = uicontrol('style','popupmenu','string',{'A';'B'},'Callback',@pushbutton3_callback);
rule_1a = uicontrol('style','popupmenu','string',{'C';'D'},'Callback',@pushbutton_callback);
function pushbutton3_callback(hObject,event)
set(rule_1a,'Visible','off')
end
It doesn't work. How Can I do that? Many thanks!
Regards,
Adriano

回答 (0 件)

カテゴリ

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