📄 driver.java
字号:
import javax.swing.JFrame;/** DemoButton Driver (Figure 8.28) * Author: Riley * Date: May, 2004 */public class Driver { private JFrame window; private DemoButton button; public Driver() { window = new JFrame(""); window.setBounds(10, 10, 200, 100); window.setVisible(true); window.setLayout(null); button = new DemoButton(25, 20); window.add(button, 0); button.repaint(); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -