swing 组件——jbutton按钮

import java.awt.Color;
import java.awt.Font;
import javax.swing.JButton;
import javax.swing.JFrame;


public class JButtonDemo1 {
public static void main(String args[]) {
JFrame frame = new JFrame("JButton");
JButton button = new JButton("click");
Font font = new Font("serief",Font.BOLD,20);
button.setFont(font);
button.setForeground(Color.BLUE);
frame.add(button);
frame.setSize(500,400);
frame.setBackground(Color.blue);
frame.setLocation(300,300);
frame.setVisible(true);
}
}

你可能感兴趣的:(swing)