Displaying values in static box for values in pop up menu !!

11 次查看(过去 30 天)
Hello all !!
I am actually trying to create a GUI where i need to display certain values in static box for each chose value in pop up menu .
For example : When chosen 1 should display 1000 in static box and so on ,
i have written the following code in the call back of pop up menu with tag name popupmenu1 and staticbox with tag name text2 , the programs works fine but is not displaying the assigned values to static box !
Where am i going wrong ? Any sort of help is appreciated.
function popupmenu1_Callback(hObject, eventdata, handles)
a= get(handles.popupmenu1,'value');
if a==1
set(handles.text2,'value',1000);
end
if a==2
set(handles.text2,'value',1200);
end
if a==3
set(handles.text2,'value',3000);
end
if a==4
set(handles.text2,'value',4000);
end

采纳的回答

Rik
Rik 2019-5-3
编辑:Rik 2019-5-3
There is a difference between the Value property and the String property. Also, you're better off using switch (which will make your code cleare), or a dictionary instead of a list of ifs.
function popupmenu1_Callback(hObject, eventdata, handles)
switch get(handles.popupmenu1,'Value');
case 1
set(handles.text2,'String',1000);
case 2
set(handles.text2,'String',1200);
case 3
set(handles.text2,'String',3000);
case 4
set(handles.text2,'String',4000);
end
Or with a dictionary:
function popupmenu1_Callback(hObject, eventdata, handles)
dict={1000,1200,3000,4000};
set(handles.text2,'String',dict(get(handles.popupmenu1,'Value')));
end
  2 个评论
chamant swarup
chamant swarup 2019-5-3
编辑:chamant swarup 2019-5-3
perfect thanks for ur insights ! but what is the diffrence i used value because the data in pop up menu is number ? doesnt that work that way ?
For suppose i need to display "consumption = 1000Kwh/annum" instead of "1000"
will that change ?
Rik
Rik 2019-5-3
The Value property of a popupmenu describes the selected box. For other uicontrol types this meaning is different (for slider it returns the selected position, for radio it is the value of min when not selected and max when selected, ditto for checkbox, etc).
The String property is the string/char array that is displayed as the text of a uicontrol element. You can use something like the code below.
function popupmenu1_Callback(hObject, eventdata, handles)
dict={1000,1200,3000,4000};
str=sprintf('consumption = %.0fKwh/annum',...
dict(get(handles.popupmenu1,'Value')));
set(handles.text2,'String',str);
end

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Migrate GUIDE Apps 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by