我正在编写一个绘图应用程序,该应用程序使用蜡染框架的JSVGCanvas类。我的应用程序的内容窗格是一个JLayeredPane,它包含几个JPanel相互堆叠。这些面板之一包含您可以在其上绘制的JSVGCanvas。

但是,当我在屏幕上绘制内容时,有时会留下奇怪的屏幕碎片,如下图所示(黑线是用鼠标绘制的):

Screenshot of the drawing http://cip.uni-trier.de/~schaefer/batikbug.jpg

我不确定这是蜡染还是摇摆问题,因为当我将鼠标悬停在具有自定义ImageIcon的红色JButton上时,会发生类似的错误。在下面的图片中,您可以看到其他按钮似乎出现在红色按钮的背景中。

Screenshot of the button http://cip.uni-trier.de/~schaefer/swingbug.png

有人知道为什么会发生这种情况,或者我该如何解决?

编辑:

在mouseDragged函数中,我正在执行以下操作:

//newNode was calculated before
Node updateNode = findNodeById(id); //find some node
if(updateNode == null)
{
    svgComponent.getSvgCanvas().getSVGDocument().adoptNode(newNode);
    svgComponent.getSvgCanvas().getSVGDocument().getDocumentElement().appendChild(newNode);
}
else
{
    svgComponent.getSvgCanvas().getSVGDocument().adoptNode(newNode);
    svgComponent.getSvgCanvas().getSVGDocument().getDocumentElement().replaceChild(newNode, updateNode);
};
window.contentpane.repaint(); //window is the main JFrame, the contentpane is a JLayeredPane


svgComponent是一个包含JSVGCanvas的JComponent。

最佳答案

问题是,我在组件上使用了setOpaque(true)。将其设置为false已经解决了。

09-05 01:52