In my application we use CrossPlatform L&F (metal) and we want to launch the main JFrame maximized. When executing I find the windows toolbar hidden. This does not happen if I use System L&F.
Why is this so? Is there any way to avoid this?
Code excerpt to force Metal L&F is:
try {
UIManager.setLookAndFeel(UIManager.getCrossPlatformLookAndFeelClassName());
MetalLookAndFeel.setCurrentTheme(new OceanTheme());
UIManager.setLookAndFeel(new MetalLookAndFeel());
} catch (ClassNotFoundException ex) {
code to catch this exception;
} catch (InstantiationException ex) {
code to catch this exception;
} catch (IllegalAccessException ex) {
code to catch this exception;
} catch (javax.swing.UnsupportedLookAndFeelException ex) {
code to catch this exception;
}
JFrame.setDefaultLookAndFeelDecorated(Boolean.TRUE);
and method to maximize window is as follows:
private void formWindowOpened(java.awt.event.WindowEvent evt) {
setExtendedState(JFrame.MAXIMIZED_BOTH);
return;
}
Many Thanks in advance
It seems that it is a known issue when you call:
See this link: https://bugs.java.com/bugdatabase/view_bug?bug_id=4737788
It also shows a workaround by subclassing JFrame and return appropriate maximum bounds. Here is a demo code of this workaround:
Alternatively, don't call
JFrame.setDefaultLookAndFeelDecorated(Boolean.TRUE);