|
Java™ by example!
|
|
|
How do I create a Frame that cannot be resized?
use the method setResizable(boolean resizable) and set it to false
frame.setResizable( false );
|
Further Information
Author of answer: Ahmed
Comments to this answer are only viewable by members. Login or become a member!
|
|
|
|
|