i was able to remove the title bar from the JInternalFrame
but i don't know how to remove the borders.
To remove the border simply call frame.setBorder(null);
Any border that is null
is simply not shown.
To remove all borders, simply call:
this.setBorder(javax.swing.BorderFactory.createEmptyBorder(0, 0, 0, 0));
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With