Menu

#295 Application frame hide

open
nobody
None
5
2008-01-04
2008-01-04
Anonymous
No

In my application on exit i call this code.

Frame f = Application.current().getFrame();
f.setVisible(false);
=============================================
if frame has set the menu, when hide frame the menu is visible.

i fix this problem setting menu null.

Frame f = Application.current().getFrame();
f.setMenu(null);
f.setVisible(false);
=============================================

thanks

Discussion


Log in to post a comment.

Auth0 Logo