?? boxlayoutframe.java.bak
字號:
import java.awt.*;
import javax.swing.*;
public class BoxLayoutFrame extends JFrame
{
BoxLayoutTest panel=new BoxLayoutTest();
public BoxLayoutFrame()
{
this.getContentPane().add(panel);
this.setSize(500,220);
this.setTitle("BoxLayoutDemo");
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
this.show();
}
public static void main(String[] args)
{
BoxLayoutFrame frame=new BoxLayoutFrame();
}
}
class BoxLayoutTest extends JPanel
{
BoxLayoutTest()
{
setLayout(new BoxLayout(this,BoxLayout.Y_AXIS));
TextField textfield=new TextField();
TextArea textArea=new TextArea(4,20);
JButton button=new JButton("Click Me!");
add(new JLabel("TextField"));
add(textField);
add(new JLabel("TextArea"));
add(textArea);
add(new JLabel("Button"));
add(button);
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -