我遇到这个问题,我所绘制的对象没有出现在GUI中。我知道它正在被处理,因为数据被推送到日志文件。但是,图形不会出现。
这是我的一些代码:
public static void main(String[] args)
{
JFrame window = new JFrame();
window.setLayout(new BorderLayout());
window.setVisible(true);
}
我已经在这里和那里放置了一个按钮和一些其他小部件。中心窗格(BorderLayout.CENTER)是我DrawnObject
的显示位置。
// Called when button is pushed/clicked
public static void trigger()
{
DrawnObject shape = new DrawnObject();
window.setLayout(new BorderLayout());
window.getContentPane().add(shape, BorderLayout.CENTER);
window.pack;
}
public class DrawnObject extends JComponent()
{
@Override
public Dimension getMinimumSize()
{
return new Dimension(100, 100);
}
@Override
public Dimension getPreferredSize()
{
return new Dimension(500, 500);
}
@Override
public Dimension getMaximumSize()
{
return new Dimension(700, 700);
}
@Override
public void paintComponent(Graphics g)
{
super.paintComponent(g);
g.setColor(Color.RED);
g.fillRect(10, 10, 10, 10);
}
}
我已尝试将Graphics
对象转换为Graphics2D
并使用适当的绘制方法,但这并没有帮助。
答案 0 :(得分:4)
尝试更改颜色......
super.paintComponent(g);
g.setColor(Color.RED);
g.fillRect(10, 10, 10, 10);
默认情况下,图形上下文颜色设置为组件背景颜色
public class PaintTest01 {
public static void main(String[] args) {
new PaintTest01();
}
public PaintTest01() {
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 DrawPane());
frame.pack();
frame.setLocationRelativeTo(null);
frame.setVisible(true);
}
});
}
public class DrawPane extends JPanel {
@Override
public Dimension getPreferredSize() {
return new Dimension(30, 30);
}
@Override
protected void paintComponent(Graphics g) {
super.paintComponent(g);
g.setColor(Color.RED);
g.fillRect(10, 10, 10, 10);
}
}
}
<强>已更新强>
根据你问题中的更新代码,它无法编译......
您在构造函数中创建一个JFrame
命名窗口,它是一个局部变量...
public static void main(String[] args)
{
JFrame window = new JFrame();
window.setLayout(new BorderLayout());
window.setVisible(true);
}
然后您尝试将DrawObject
添加到窗口...
public static void trigger()
{
DrawnObject shape = new DrawnObject();
window.setLayout(new BorderLayout());
window.getContentPane().add(shape, BorderLayout.CENTER);
window.pack;
}
但由于window
未定义,因此您无法编译示例。
这将编译的唯一方法是,如果你在类级别有一个名为window
的静态变量,在这种情况下,它应该生成一个NullPointerException
,除非你已经初始化了变量
public class MyDrawing {
public static JFrame window = new JFrame();
这意味着您有两个框架,一个是在构造函数中创建的,另一个是create作为静态级别类字段。这不起作用,因为它们是不同的实例
答案 1 :(得分:3)
必须返回PreferredSize from public class DrawnObject extends JComponent(),,否则返回Dimension(0, 0);
Top-Level containers
已实施BorderLayout
,然后window.add(shape, BorderLayout.CENTER);
是正确的代码行,JComponent
应正确铺设
使用pack()
代替invalidate()
,此代码行不起作用,可以调用由BorderLayout
或GridLayout
生成的容器的内容(ei ?? ?),也不是基于JComponent
的容器,JComponent
未在LayoutManager
中实施任何API
,必须返回PreferredSize
在发布SSCCE
答案 2 :(得分:1)
尝试将DrawnObject
添加到Windows内容窗格,同时不要忘记设置布局。使用null布局是不好的做法(如果调用invalidate,则布局设置为null)。
window.getContentPane().setLayout(new BorderLayout());
window.getContentPane().add(shape, BorderLayout.CENTER);
window.pack();
window.setVisible(true);
另外,请尝试跳过invalidate()
。