Pop-Up menu help
16 次查看(过去 30 天)
显示 更早的评论
I have 5 pop-up menus with different Strings( for example 10 20 30)...What is the code for a PushBotton to get me the number i choose in each pop-up menu and do me a simple operation...for example to mupltiply...I dont know if u understand what i mean....i select in each pop-up different numbers and then it calculates me and if i change a pop-up menu to a different number or any of them after i press calculate to do it right
0 个评论
采纳的回答
Geoff Hayes
2015-3-1
编辑:Geoff Hayes
2015-3-1
Vlad - assuming that you are using GUIDE to create your GUI, suppose your five popup menus are named popupmenu1, popupmenu2,..., popupmenu5. If we assume that only numeric data has populated each of your popup menus, then the callback for your push button would look something like
function pushbutton1_Callback(hObject, eventdata, handles)
% get the list of items in the first popup menu
menu1List = get(handles.popupmenu1,'String');
% get the selected item in the first popup menu and convert to a number
menu1Item = str2num(menu1List{get(handles.popupmenu1,'Value')});
You would then just repeat the above code for the remaining four popup menus and do whatever operation you need against them.
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!