Deselect uimenus after click in GUI
2 ビュー (過去 30 日間)
古いコメントを表示
Dear all,
I am facing a GUI issue. In the following example, if you click on a menu and slide to the other one, the second one is triggered. I don't want this behaviour. Could someone guide me toward a solution?
function mwe(varargin)
handles.main = figure;
set(handles.main,'Units','pixels','Position',[300 300 210 50],...
'DockControls','Off','MenuBar','none','Toolbar','none');
handles.menu1 = uimenu('Parent',handles.main,'Label','Menu1');
handles.menu2 = uimenu('Parent',handles.main,'Label','Menu2');
handles.txt = uicontrol(handles.main,'Style','text','Units','pixels',...
'String','','HorizontalAlignment','Center','Position',[5 5 200 40]);
set(handles.menu1,'CallBack',{@fcn_txt,handles});
set(handles.menu2,'CallBack',{@fcn_txt,handles});
end
function fcn_txt(hObject,eventdata,handles)
set(handles.txt,'String',get(hObject,'Label'));
end
I tried different solutions and the only one working at the moment is to put a waitbar. I even tried using the setArmed Java method.
Thank you for your help, Cédric
4 件のコメント
Sean de Wolski
2013 年 2 月 28 日
編集済み: Sean de Wolski
2013 年 2 月 28 日
So just to be crystal clear you want the focus to be restored to the figure after?
回答 (2 件)
Jan
2013 年 2 月 28 日
There might be an equivalent effect for UICONTROLs. Here even the focus remains at the UICONTROL, such that e.g. the KeyPress fcuntion of the figure is not triggered anymore. In this case a solution is:
set(ObjectH, 'Enable', 'off');
drawnow;
set(ObjectH, 'Enable', 'on');
This is more compact than letting the java.robot click to an arbitrary position - which is a very bold action I'd avoid under all circumstances.
3 件のコメント
Jan
2013 年 2 月 28 日
there could be a GUI with a dangerous button at the location [0,0], e.g. the confirmation dialog of a disk formatting. Or it could be another menu element of the same GUI.
Jeffrey Girard
2015 年 2 月 26 日
編集済み: Jeffrey Girard
2015 年 2 月 26 日
Unfortunately, Jan's solution didn't work for me either. These aren't ideal solutions, but I have found that this behavior can be avoided by:
- Adding a submenu with even one choice
- Producing some sort of figure or dialog box with the menu callback (a "success" msgbox)
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Interactive Control and Callbacks についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!