📄 watch.java
字号:
//******************************************************************
//watch.java(PP8.10) Author:lsh
//
//
//******************************************************************
import javax.swing.*;
class watch
{
public static void main(String[] args)
{
JFrame frame=new JFrame("Watch");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.getContentPane().add(new watchPanel() );
frame.pack();
frame.setVisible(true);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -