I want to ask how to make frame can not drag when the application is running?
And then how to disable maximize, minimize button (title bar)?
I'm using JFrame.
|
Just add the below line it removes the window decorations like close maximise and minimise(titlebar). This itself disables the dragging only with mouse events.
|
|||||||
|
|
You can use a
|
|||||
|
JDialoginstead, as this typically only has a close button. You could also try overriding thesetBoundsmethod of the frame and make sure that it always at a specific location – MadProgrammer Nov 20 '12 at 7:01