我搜索了“如果按下按钮重新启动我的GUI”或者某些事情,我改变了我的来源,但它不起作用。当我点击一个按钮时,我想将号码变为“X”。
Container c = getContentPane();
c.setLayout(new GridLayout(5,5));
JB = new JButton[25];
for(int i=0; i<1000; i++)
{
j = (int)(Math.random()*25);
temp = nums[0];
nums[0] = nums[j];
nums[j] = temp;
}
for(int i=0; i<JB.length; i++)
{
JB[i] = new JButton(nums[i]);
JB[i].addActionListener(this);
c.add(JB[i]);
}
setSize(400,400);
setVisible(true);
}
public void actionPerformed(ActionEvent e)
{
for(int i=0; i<nums.length; i++)
{
if (e.getSource() == JB[i])
{
System.out.println(nums[i]);
***nums[i] = "X"; //I want show "X" when I clicked a Button***
JB[i] = new JButton(nums[i]);
restart();
}
}
}
public void restart() // I deleted.
{
start();
}
答案 0 :(得分:0)
试试这个:
JB[i].setText(nums[i]);
而不是:
JB[i] = new JButton(nums[i]);
更改按钮文字。不需要重新启动(我认为这是你正在尝试做的事情吗?)