?? intropanel.java
字號(hào):
//********************************************************************
// IntroPanel.java Authors: Lewis/Loftus
//
// Represents the introduction panel for the LayoutDemo program.
//********************************************************************
import java.awt.*;
import javax.swing.*;
public class IntroPanel extends JPanel
{
//-----------------------------------------------------------------
// Sets up this panel with two labels.
//-----------------------------------------------------------------
public IntroPanel()
{
setBackground (Color.green);
JLabel l1 = new JLabel ("Layout Manager Demonstration");
JLabel l2 = new JLabel ("Choose a tab to see an example of " +
"a layout manager.");
add (l1);
add (l2);
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -