Initialize contents of popupmenu in GUIDE

조회 수: 1 (최근 30일)
George
George 2013년 9월 21일
I am writing a GUI in GUIDE which contains a popup menu. In the Property Inspector the String property is empty. The contents of the menu must be filled during execution and are assigned values from a structure as such:
a = {AlertFD.name};
set(handles.popupmenu1, 'String', a);
and the user input is assigned to b:
b = get(handles.popupmenu1, 'Value');
The problem occurs when I run the GUI: when I first click on the menu, I see an empty cell. I click on the empty cell and then the first element of cell a is shown and automatically passed as user input to b , even though I do not wish to select it.
Any solutions? Thanks, George

채택된 답변

Image Analyst
Image Analyst 2013년 9월 21일
You need to set both the string and the value in the OpeningFcn function (if that doesn't work, then put it in the OoutputFcn function). Since you did not set the value (you only retrieved it) no item will be selected/shown when your GUI starts up.
  댓글 수: 5
Image Analyst
Image Analyst 2013년 9월 24일
Well something somewhere is changing it. You might have to step through your code calling
contents = get((handles.popupmenu1, 'String')
at each step to see what changes it.
George
George 2013년 9월 24일
편집: George 2013년 9월 24일
I've found out that the problem was not the 'String' property; instead the problem was caused by the 'Value' property. Apparently this was kept in the previously assigned value. I am setting it manually within the Callback and it works fine now. Thanks for the help, much appreciated!
(Apologies for misusing the reply text boxes)

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Startup and Shutdown에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by