📄 slidecolor.java
字号:
//********************************************************************
// SlideColor.java Authors: Lewis/Loftus
//
// Demonstrates the use slider components.
//********************************************************************
import java.awt.*;
import javax.swing.*;
public class SlideColor
{
//-----------------------------------------------------------------
// Presents up a frame with a control panel and a panel that
// changes color as the sliders are adjusted.
//-----------------------------------------------------------------
public static void main (String[] args)
{
JFrame frame = new JFrame ("Slide Colors");
frame.setDefaultCloseOperation (JFrame.EXIT_ON_CLOSE);
frame.getContentPane().add(new SlideColorPanel());
frame.pack();
frame.setVisible(true);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -