📄 sampleprogram.java
字号:
import javax.swing.*;
public class SampleProgram
{
static JFrame f1;
static JPanel p1;
JButton b1;
public SampleProgram()
{
p1=new JPanel();
b1=new JButton("submit");
p1.add(b1);
b1.setLabel("cacel");
p1.add(b1);
}
public static void main(String args[])
{
f1=new JFrame("sample application");
SampleProgram sample=new SampleProgram();
f1.getContentPane().add(p1);
f1.setVisible(true);
f1.setSize(300,300);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -