Zedgraph C#如何从选择中选择/删除曲线?

时间:2019-05-22 09:14:05

标签: c# selection zedgraph

我需要使用ZedGraph为代码做一个有用的选择功能

ZedGraph库中有Selection类。它使您有机会使用鼠标单击来选择曲线:

'''C#

public Form1(){
zedGraphControl1.Selection.SelectionChangedEvent +=
                new EventHandler(Selection_SelectionChangedEvent);
}
void Selection_SelectionChangedEvent(object sender, EventArgs e)
{
    }

“”“

您还可以使用鼠标左键+ Alt + Shift添加到选择中。

Selection类还具有RemoveFromSelection方法。 您能描述一下如何正确使用它吗?我在库文档中找不到任何示例和描述。我自己尝试过,但实际上我什至无法获得选定曲线的正确路径来将它们存储在某个变量中。

0 个答案:

没有答案