gpt4 book ai didi

java - JFrame 中的绘画不起作用 (Java)

转载 作者:搜寻专家 更新时间:2023-11-01 01:03:10 25 4
gpt4 key购买 nike

所以在类里面我们正在编写一个 Java 程序。我们正在尝试使用 JFrame 中的 paint(Graphics g) 函数。我们过去(几周前)尝试过它并且它曾经有效。但现在它没有(或者我们在某处犯了错误)。我们也尝试过使用 paintComponent(Graphics g) 但似乎没有任何效果。这是我们的代码:

public class MainAc {
public static void main(String[] args) {
JFrame frame = new JFrame("Class Paint");
JButton button = new JButton("Click for more");
frame.setSize(800, 600);
frame.add(button);
frame.setLayout(null);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
button.setLayout(null);
button.setLocation(100,100);
button.setSize(200,100);
frame.setVisible(true);
}
public void paint(Graphics g){
g.drawString("Hello", 200, 50);
}
}

最佳答案

您的类没有从任何能够绘画的Component 扩展

通读Performing Custom Painting更多想法

你可以这样做:

enter image description here

public class SimplePaint {

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

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

JFrame frame = new JFrame("Test");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setLayout(new BorderLayout());
frame.add(new PaintPane());
frame.setSize(200, 200);
frame.setLocationRelativeTo(null);
frame.setVisible(true);
}
});
}

protected class PaintPane extends JPanel {

@Override
protected void paintComponent(Graphics g) {

super.paintComponent(g);

Graphics2D g2d = (Graphics2D) g.create();
String text = "Look ma, no hands";
FontMetrics fm = g2d.getFontMetrics();
int x = (getWidth() - fm.stringWidth(text)) / 2;
int y = ((getHeight() - fm.getHeight()) / 2) + fm.getAscent();
g2d.drawString(text, x, y);
g2d.dispose();


}

}

}

在可能的情况下,您应该避免覆盖顶级容器的 paint 方法,如果没有其他原因,它们不是双缓冲的。

出于同样的原因,您还应该尝试从基于 Swing 的组件进行扩展,因为混合使用重型和轻型组件可能会导致绘画问题。

关于java - JFrame 中的绘画不起作用 (Java),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13136942/

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