📄 dots.java
字号:
//********************************************************************
// Dots.java Author: Lewis/Loftus
//
// Demonstrates mouse events and drawing on a panel.
//********************************************************************
import javax.swing.*;
public class Dots
{
//-----------------------------------------------------------------
// Creates and displays the application frame.
//-----------------------------------------------------------------
public static void main (String[] args)
{
JFrame dotsFrame = new JFrame ("Dots");
dotsFrame.setDefaultCloseOperation (JFrame.EXIT_ON_CLOSE);
dotsFrame.getContentPane().add (new DotsPanel());
dotsFrame.pack();
dotsFrame.show();
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -