基本上它应该是一个按钮,用于切换 JTextfield 是否可编辑
我几乎 100% 确定有更好的方法来做到这一点(这不起作用)我猜是一个 for 循环?
while (e.getSource() == button2)
{
int count=0;//odd
if (count % 2 == 0) // if count is even
{
textField1.setEditable(false);
button2.setEnabled(true);
count++;
}
else//odd
{
textField1.setEditable(true);
count++;
}
}