how can i give the appearnce as dimmed to gui panel?

3 次查看(过去 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...........

回答(3 个)

Jan
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 个评论
Raman
Raman 2013-6-29
i already tried this.... panel does not having the property named enable...
Jan
Jan 2013-6-30
@Jassy: Oh, sorry. What should the "disabling" of a panel do?

请先登录,再进行评论。


KIRAN kumar
KIRAN kumar 2013-6-29
try in the mfile which is generated after processing the fig file

Matthew Eicholtz
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);

Community Treasure Hunt

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

Start Hunting!

Translated by