up vote 0 down vote favorite
share [g+] share [fb]

Is there any way to make a window fixed so that the user can't change the window size in java?

link|improve this question

75% accept rate
feedback

2 Answers

up vote 4 down vote accepted

The Frame class (and its child JFrame class for Swing) there is a setResizable method which will set whether or not a Frame can be resized or not.

link|improve this answer
sweet thanks.. i'll give it a try – user187920 Dec 3 '09 at 14:20
feedback

You can listen for changes to the window size, then change the size back to what you want.

link|improve this answer
haha, i was saving this method as a last resort... is there a function or anything? – user187920 Dec 3 '09 at 14:18
i mean a function that does this directly – user187920 Dec 3 '09 at 14:19
My last Swing coding was done in Java 1.4 - and No, there was no other way. – Scott Saunders Dec 3 '09 at 14:20
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.