我想添加"动作侦听器"到JGraphX中的mxcell(顶点)。如果我双击mxcell顶点它应该做一些动作。有没有办法在jGraphX中向mxcell顶点添加动作侦听器?。
答案 0 :(得分:1)
在图形组件上单击鼠标时,获取单元格并向单元格添加操作事件。
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
}
}
}