📄 chesspanel.java~1~
字号:
package wuziqiclient;import java.awt.*;import com.borland.jbcl.layout.*;import javax.swing.*;public class chessPanel extends JPanel { XYLayout xYLayout1 = new XYLayout(); JTextField jTextField1 = new JTextField(); public chessPanel(){ try { jbInit(); } catch(Exception ex) { ex.printStackTrace(); } } void jbInit() throws Exception { this.setLayout(xYLayout1); this.setBackground(SystemColor.inactiveCaptionText); this.add(jTextField1, new XYConstraints(0, 3, 434, 24)); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -