导航器: jPanel - > jPanelBitPad, jButton - > jButtonMode
目的: 当按钮具有文本“PRACTICE”时,它将使jPanel出现在位置(260,10)。单击该按钮并且文本从“PRACTICE”更改为“EXAMPLE”时,它将使jPanel显示在位置(150,10)处。
问题: 单击按钮时,jPanel不会重新定位。
if (jButtonMode.getText().equals("PRACTICE")) {
jButtonMode.setText("EXAMPLE");
jPanelBitPad.setLocation(150, 10);
} else if (jButtonMode.getText().equals("EXAMPLE")) {
jButtonMode.setText("PRACTICE");
jPanelBitPad.setLocation(260, 10);
}