gpt4 book ai didi

java - 我的 JButton 被窃听了

转载 作者:太空宇宙 更新时间:2023-11-04 06:14:07 24 4
gpt4 key购买 nike

我在将 2D JButton 数组绘制到 JFrame 时遇到问题。除了最后一个之外,所有 JButton 都正确绘制,最后一个要渲染的 JButton 已安装到 JFrame 中。我已将所有 JButton 的宽度和高度设置为 100x100,但最后渲染的 JButton 的宽度和高度不为 100x100。我打印了控制台的属性,它说按钮的高度和宽度是494X496

运行一切的主类:

package gameData;

import javax.swing.*;

public class GameRun {

JFrame frame;
ActionHandle AH = new ActionHandle();
Screen screen = new Screen();

public GameRun() {
beginSession();
screen.renderScreen(frame, AH);
}

public void beginSession() {
JFrame frame = new JFrame();
frame.setSize(500, 525);;
frame.setResizable(false);
frame.setVisible(true);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setTitle("Game");
this.frame = frame;
}

public static void main(String[] args) {
new GameRun();
}

}

如何绘制JButton:

package gameData;

import java.awt.event.*;
import java.awt.*;
import javax.swing.*;

public class Screen {
public void renderScreen(JFrame frame, ActionListener AL){
JButton[][] button = new JButton[5][5];
for(int i =0; i<button.length;i++){
for(int j = 0; j<button[i].length; j++){
button[i][j] = new JButton(i+" "+j);
button[i][j].setBounds(i*100, j*100, 100, 100);
button[i][j].addActionListener(AL);
frame.add(button[i][j]);
}
}
}
}

最佳答案

  1. JFrame 默认情况下使用 BorderLayout,因此您将所有按钮添加到框架上的同一位置,可能会重叠它们。相反,您应该考虑使用 GridBagLayout。请参阅How to Use GridBagLayout了解更多详情
  2. 如果您想影响按钮的布局方式,则应重写按钮 getPreferredSize 方法。
  3. 在设置框架的大小之前,您确实应该调用 setResizing
  4. 您应该使用 pack 而不是 setSize,框架具有窗口装饰,这些装饰会安装在窗口内,而不是添加到窗口中,这将影响内容的可视空间量,pack 将为您完成所有这些计算
  5. 您应该在事件调度线程的上下文中创建/修改您的 UI,请参阅 Initial Threads了解更多详情

例如...

Buttons

import java.awt.EventQueue;
import java.awt.GridBagConstraints;
import java.awt.GridBagLayout;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.UIManager;
import javax.swing.UnsupportedLookAndFeelException;

public class Test {

public static void main(String[] args) {
new Test();
}

public Test() {
EventQueue.invokeLater(new Runnable() {
@Override
public void run() {
try {
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
} catch (ClassNotFoundException | InstantiationException | IllegalAccessException | UnsupportedLookAndFeelException ex) {
ex.printStackTrace();
}

JFrame frame = new JFrame("Testing");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.add(new TestPane());
frame.pack();
frame.setLocationRelativeTo(null);
frame.setVisible(true);
}
});
}

public class TestPane extends JPanel {

public TestPane() {
setLayout(new GridBagLayout());
GridBagConstraints gbc = new GridBagConstraints();
gbc.gridx = 0;
gbc.gridy = 0;
JButton[][] button = new JButton[5][5];
for (int i = 0; i < button.length; i++) {
gbc.gridx = 0;
for (int j = 0; j < button[i].length; j++) {
button[i][j] = new JButton(i + " " + j) {
@Override
public Dimension getPreferredSize() {
return new Dimension(100, 100);
}
};
add(button[i][j], gbc);
gbc.gridx++;
}
gbc.gridy++;
}
}

}

}

使用getPreferredSize时请注意,字体通常不会在所有平台上呈现相同的效果,这会影响您的程序在不同平台上的外观。在您的情况下,更改按钮的边距可能会更安全

关于java - 我的 JButton 被窃听了,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28313559/

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