how can i give the appearnce as dimmed to gui panel?
2 次查看(过去 30 天)
显示 更早的评论
i've 3 panels in my gui and each panel contain sone buttons,edit boxes and static text and so on....
i want when panel 1 is enabled the other two panels take the apperance of dimmed one...
i used the command:
set(handles.uipanel1,'visible','on');
set(handles.uipanel2,'visible','off');
set(handles.uipanel3,'visible','off');
what it does is it enables the panel 1 and totally disable the next two i.e it removes the appearance from the gui... i want the other two panels i.e panel 2 and panel 3 remain as such but in dimmes appearance..
like if we right click on desktop, then the popup menu occurs has the option PASTE and PASTE SHORTCUT are in dimmed appearance....
can u tell me which piece of code should i use in order to get the output as i require....
plz help me...........
0 个评论
回答(3 个)
Jan
2013-6-26
You set the 'Visibility' to 'off' and in consequence the object is not visible anymore. Most likely you want to disable the objects only, such that the 'Enable' property is suiting. I assume you have to disable the children of the panel, not the panel itself:
ChildList = get(handles.uipanel2, 'Children');
set(ChildList, 'Enabled', 'off');
4 个评论
Matthew Eicholtz
2013-6-29
As for dimming the panel itself, will changing the 'BackgroundColor' property suffice for you? For example, the following code will darken the panel by 10%.
clr = get(handles.uipanel2,'BackgroundColor');
set(handles.uipanel2,'BackgroundColor',0.9*clr);
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Migrate GUIDE Apps 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!