📄 xitongguanliyuan.java~2~
字号:
package untitled2;import javax.swing.*;import java.awt.*;import com.borland.jbcl.layout.*;/** * <p>Title: </p> * <p>Description: </p> * <p>Copyright: Copyright (c) 2006</p> * <p>Company: </p> * @author not attributable * @version 1.0 */public class xiTongGuanLiYuan extends JFrame { BorderLayout borderLayout1 = new BorderLayout(); JPanel jPanel1 = new JPanel(); public xiTongGuanLiYuan() { try { jbInit(); } catch(Exception ex) { ex.printStackTrace(); } } void jbInit() throws Exception { jPanel1.setVisible(true); this.getContentPane().setLayout(borderLayout1); this.getContentPane().setBackground(new Color(212, 118, 200)); this.setSize(new Dimension(800, 600)); this.getContentPane().add(jPanel1, BorderLayout.WEST); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -