📄 trywindow.java
字号:
import javax.swing.*;
public class TryWindow
{
// The window object
static JFrame aWindow = new JFrame("This is the Window Title");
public static void main(String[] args)
{
aWindow.setBounds(50, 100, 400, 150); // Set position and size
aWindow.setDefaultCloseOperation(WindowConstants.DISPOSE_ON_CLOSE);
aWindow.setVisible(true); // Display the window
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -