Tagged Questions

27
votes
6answers
8k views

Java: Swing --> Maximize window

I'm putting together a quick and dirty animation using swing. I would like the window to be maximized. How can I do that? Thanks in advance :)
8
votes
4answers
2k views

How can I remove just the Maximize button from a JFrame?

I have a JFrame and want to remove the maximize button from that. I wrote the code below, but it removed maximize, minimize, and close from my JFrame. JFrame frame = new JFrame(); frame.add(kart); ...
1
vote
1answer
739 views

Automatically Maximize Window Using Netbeans

I have been trying to get the window to automatically maximize using Netbeans. I've probably looked through 4 or 5 pages of Google for an answer. The web pages always provide something like this: ...
0
votes
2answers
67 views

Minimize window in Swing

I've created a frame and set it extended state to JFrame.MAXIMIZED_BOTH. The window appears maximazed at startup, but after I pressed "Restore" button, it resizes to zero-sized window with only upper ...