如何重新定位已经出现在GUI中的(x,y)jPanel

时间:2018-02-09 18:31:34

标签: java netbeans location jpanel

导航器: 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);
    }

0 个答案:

没有答案