我想将“动作监听器”添加到JGraphX中的mxcell(vertex)中。如果我双击mxcell顶点,则应执行某些操作。有什么方法可以将动作侦听器添加到jGraphX中的mxcell顶点?

最佳答案

在图形组件上的鼠标单击事件上,获取单元格并将动作事件添加到该单元格。

public void mouseClicked(MouseEvent e)
{
Object cell=graphComponent.getCellAt(e.getX(),e.getY());
if(cell!=null&& cell instanceof mxcell)
{
if(((mxcell)cell.getValue().toString().equals("cell-name"))
{
// your function
}
}
}

08-27 09:40