📄 graderequestframe.java~1~
字号:
package stumng;import javax.swing.*;import java.awt.*;public class graderequestFrame extends JFrame { BorderLayout borderLayout1 = new BorderLayout(); JPanel jPanel1 = new JPanel(); JComboBox jComboBox1 = new JComboBox(); JComboBox jComboBox2 = new JComboBox(); JTextField jTextField1 = new JTextField(); JPanel jPanel2 = new JPanel(); JButton jButton1 = new JButton(); public graderequestFrame() { try { jbInit(); } catch(Exception ex) { ex.printStackTrace(); } } void jbInit() throws Exception { this.getContentPane().setLayout(borderLayout1); jTextField1.setText("jTextField1"); jButton1.setFont(new java.awt.Font("Dialog", 0, 13)); jButton1.setText("提交"); this.getContentPane().add(jPanel1, BorderLayout.NORTH); jPanel1.add(jComboBox1, null); jPanel1.add(jComboBox2, null); jPanel1.add(jTextField1, null); jPanel1.add(jButton1, null); this.getContentPane().add(jPanel2, BorderLayout.CENTER); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -