按照CustomCanvas.java
中的示例,我已经设法在mxCell的自定义Swing画布中绘制JButton,并使用以下代码
public void drawVertex(mxCellState state, String label)
{
Object value = ((mxCell) state.getCell()).getValue();
Pattern p = (Pattern)value;
System.out.println(p.length);
MyPanel comp = new MyPanel();
rendererPane.paintComponent(g, comp, graphComponent,
(int) (state.getX() + translate.getX()),
(int) (state.getY() + translate.getY()),
(int) state.getWidth(), (int) state.getHeight(), true);
g.setColor(Color.GREEN);
for (int i = 0; i < p.length; i++) {
JButton b = new JButton("");
b.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
System.out.println("click,click");
}
});
rendererPane.paintComponent(g, b, graphComponent,
(int) (state.getX() + translate.getX()+i*state.getWidth()/p.length),
(int) (state.getY() + translate.getY()),
(int) state.getWidth()/p.length, (int) state.getHeight(), true);
}
}
按钮被绘制了,但是它没有工作,如果我点击它,什么也没有发生
如果您希望组件具有交互性,则必须将其添加到容器中(该容器本身被添加到另一个容器中,最终到达JFrame)。你现在得到的只是把它绘制成一个单元格。
理论上,您可以向后弯曲以拦截对单元格的点击并将其转发给JButton,但这可能不是一种可持续的方法。