Мой JWindow
вообще не появлялся, когда я пытался использовать его с SeaGlass Look and Feel , даже если я установил его на видимость.
import java.awt.EventQueue;
import javax.swing.UIManager;
import javax.swing.*;
import com.seaglasslookandfeel.*;
public class SEAGLASS {
public static void main(String[] args) {
EventQueue.invokeLater(new Runnable() {
public void run() {
try {
UIManager.setLookAndFeel(
"com.seaglasslookandfeel.SeaGlassLookAndFeel");
SEAGLASS demo = new SEAGLASS();
} catch (Exception e) {
e.printStackTrace();
}
}
});
}
public SEAGLASS(){
JWindow window = new JWindow();
window.setVisible(true); //IT WAS NOT VISIBLE WHEN I RUN IT??//
window.getRootPane().setWindowDecorationStyle(JRootPane.NONE);
JButton bu1 = new JButton("MY BUTTON");
bu1.setBounds(100, 100, 120, 50);
window.getContentPane().add(bu1);
window.getContentPane().setLayout(null);
}
}