java swing中按钮的颜色要怎么设置
2个回答
展开全部
public class Demo {
public static void main(String args[]) throws IOException {
ButtonDemo demo = new ButtonDemo();
demo.view();
}
}
class ButtonDemo extends JFrame {
private static final long serialVersionUID = 1L;
public void view() {
JPanel panel = new JPanel();
Button button = new Button("ok");
button.setBackground(Color.RED); // 设置颜色
panel.add(button);
add(panel);
setSize(200, 200);
setVisible(true);
setDefaultCloseOperation(EXIT_ON_CLOSE);
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询