gpt4 book ai didi

java - 关于Java定位

转载 作者:行者123 更新时间:2023-12-02 04:09:31 25 4
gpt4 key购买 nike

当 jPanel 出现时,我试图将 jButton 位置更改为右侧,但唯一的变化是 jPanel 出现和消失。

private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {
n++;
if((n % 2) == 1){
jPanel1.setVisible(true);
jButton1.setLocation(200, 0);
}

if((n % 2) == 0){
jPanel1.setVisible(false);
jButton1.setLocation(0, 0);
}
}

但是如果我只写下面的部分,双击就会改变jButton的位置。我想一键查看更改。

private void jButton1ActionPerformed(java.awt.event.ActionEvent evt){  
jPanel1.setVisible(true);
jButton1.setLocation(200,0);
}

最佳答案

我建议将边框布局管理器与流布局一起使用。

有关更多信息,请访问此教程 link

关于java - 关于Java定位,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33925214/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com