UIPanel Changes Content Automatically

Hi good evening,
I want make the content changes at Uipanel once user selected at popupmenu bar.
in here I set the code but how to make it changes according to user selected, the previous content will replace with new content at popupmenu selected: i'm using switch case for selected
contents = get(hObject,'String');
selected = get(hObject,'Value');
item_selected = contents{selected};
display(item_selected);
switch contents{selected};
case'Method 1'
set(handles.edit25,'visible','on');
set(handles.edit26,'visible','on');
set(handles.popupmenu18,'visible','on');
case'Method 2'
disp(handles.text25,'String','Hello')
like when user select method 1 at classification, the content in method 1 will show at "Result(uipanel)" space, and when user select method 2 at classification, the content in method 2 will show and content at method 1 will dissapear.
pls give me how to set the code to show it, I already try Visible "off" but its not working

1 Kommentar

disp(handles.text25,'String','Hello')
should be
set(handles.text25,'String','Hello')

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Samuel Vergara
Samuel Vergara am 30 Jun. 2016

0 Stimmen

Is your code in the appropiate callback? I think that in switch you should have the "selected variable", cause it should have the string selected, not an index. so..
selected = get(hObject,'Value');
switch selected,
case'Method 1'
set(handles.edit25,'visible','on');
set(handles.edit26,'visible','on');
set(handles.popupmenu18,'visible','on');
case'Method 2'
disp(handles.text25,'String','Hello');
end
Regards,

3 Kommentare

Walter Roberson
Walter Roberson am 30 Jun. 2016
If the original object is a handle to a listbox or popupmenu, then the original code was correct for fetching the string associated with whatever the user had chosen.
Nasiha Husni
Nasiha Husni am 1 Jul. 2016
ya..its my code at appropriate callback.
Samuel Vergara
Samuel Vergara am 2 Jul. 2016
Check that you are accesing fine to the two switch condition2. If not, maybe you have one or more blank space after 'Method 1' or 'Method 2'. If it's ok, try to add a "drawnow" command.
I hope this helps, regards

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu App Building finden Sie in Hilfe-Center und File Exchange

Gefragt:

am 30 Jun. 2016

Kommentiert:

am 2 Jul. 2016

Community Treasure Hunt

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

Start Hunting!

Translated by