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

3 views (last 30 days)
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...........

Answers (3)

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

Sign in to comment.


KIRAN kumar
KIRAN kumar on 29 Jun 2013
try in the mfile which is generated after processing the fig file

Matthew Eicholtz
Matthew Eicholtz on 29 Jun 2013
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!