Java风格

来源:互联网 发布:白无常电商美工教学 编辑:程序博客网 时间:2024/04/30 21:45

Java风格

import javax.swing.JFrame;import javax.swing.JRootPane;public class Main {  public static void main(final String args[]) {    JFrame frame = new JFrame("Adornment Example");    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);    frame.setUndecorated(true);    frame.getRootPane().setWindowDecorationStyle(JRootPane.FRAME);    frame.setSize(300, 100);    frame.setVisible(true);  }



原创粉丝点击