|
Java™ by example!
|
|
|
How do I create a JFrame that cannot be resized?
There is no good way to do this. The closest thing is to create a regular Frame (it doesn't really matter whether it's JFrame or Frame for this issue), register a ComponentListener on it and whenever it is resized, resize it back to its original size.
Most times you don't need to do this though, you can almost always use a Window to achieve what you want.
Further Information
Author of answer: Alexander Maryanovsky.
Comments
Comments to this answer are only viewable by members. Login or become a member!
|
|
|
|
|