Esempio n. 1
0
 /** Called by the constructor methods to create the default rootPane. */
 protected JRootPane createRootPane() {
   JRootPane rp = new JRootPane();
   // NOTE: this uses setOpaque vs LookAndFeel.installProperty as there
   // is NO reason for the RootPane not to be opaque. For painting to
   // work the contentPane must be opaque, therefor the RootPane can
   // also be opaque.
   rp.setOpaque(true);
   return rp;
 }
Esempio n. 2
0
 /*
  * (non-Javadoc)
  *
  * @see javax.swing.JFrame#createRootPane()
  */
 @Override
 protected JRootPane createRootPane() {
   JRootPane rp = new JRibbonRootPane();
   rp.setOpaque(true);
   return rp;
 }