📄 simpleapplet.java
字号:
// SimpleApplet.java// An example of the JApplet class. For use with the applet.html file.//package jswing.ch08;import javax.swing.*;import java.awt.*;public class SimpleApplet extends JApplet { public void init() { JPanel p = new JPanel(); p.setLayout(new GridLayout(2, 2, 2, 2)); p.add(new JLabel("Username")); p.add(new JTextField()); p.add(new JLabel("Password")); p.add(new JPasswordField()); Container content = getContentPane(); content.setLayout(new GridBagLayout()); // Used to center the panel content.add(p); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -