问答详情
源自:3-7 Java中的条件运算符

请问我想在窗口添加一个按钮怎么写

https://img1.mukewang.com/5b7a390c000189fa04770386.jpg


package com.mch0dm1n.seticom;


import javax.swing.JButton;

import javax.swing.JFrame;


public class chuangkou extends JFrame {


public chuangkou() {

this.setTitle("智伟创造");

this.setBounds(300, 200, 580, 600);

this.setSize(580, 600);

this.setLocation(300, 200);

this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

this.setVisible(true);

this.setLocationRelativeTo(null);// 为null,启动程序时窗口将置于屏幕的中央

JButton diamondsButton[][] = new JButton[6][5];//游戏按钮数组 

}


public static void main(String[] args) {

new chuangkou();

}

}


提问者:慕粉2206392815 2018-08-20 11:45

个回答

  • Insist_
    2018-08-20 12:47:20

    你的按钮没有加入到窗口中。

    this.add(Button);