I have a JMenu with a JMenuItem, and when I click on this, I need to open a JFrame or window, in other words a component with inside JButton, JTextField,...
How can i do this ?
|
feedback
|
|
You can create the
in the If you want it to be modal (original frame cannot be accessed unless the new window is closed), you can use a | |||||
feedback
|
|
I write in answer for good code view: If i use a JFrame i got this error: "java.lang.IllegalArgumentException: adding a window to a container". That's my code in actionPerformed method:
| ||||
|
feedback
|
|
You are confusing "popups" and "windows". A popup is generally shown when you right click on some object. The popup will display a list of actions that can be performed on that object. For example a text field might have "cut", "copy" and "paste". Read the section from the Swing tutorial on "Bringing Up a Popup Menu" for more information. A window is used to display other Swing components in a JFrame or JDialog. Given that you are invoking this Action from a menu item I think you probably want to create and display a modal JDialog, not a JFrame or popup. Also, while reading the tutorial, read the section on "Using Layout Managers". Using null layouts is not the best way to create a dialog. | |||
|
feedback
|