gpt4 book ai didi

java - 将 ActionListener 添加到 JGraphX 中的 mxcell

转载 作者:行者123 更新时间:2023-12-01 10:03:22 25 4
gpt4 key购买 nike

我想将“ Action 监听器”添加到 JGraphX 中的 mxcell(顶点)。如果我双击 mxcell 顶点,它应该执行一些操作。有没有办法将 Action 监听器添加到 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
}
}
}

关于java - 将 ActionListener 添加到 JGraphX 中的 mxcell,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36639303/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com