gpt4 book ai didi

c# - 如何使用 C# 使光标线跟随图表中的鼠标

转载 作者:太空狗 更新时间:2023-10-29 22:27:58 27 4
gpt4 key购买 nike

enter image description here

下图是我项目中的一个图表。如您所见,有两条虚线交叉线。我被要求让它跟随鼠标,但现在只有当我点击图表时它才会移动。我尝试使用 CursorPositionChanging 但它没有用。CursorEventHandler 也未显示在以下命令中:

 this.chart1.CursorPositionChanging += new System.Windows.Forms.DataVisualization.Charting.Chart.CursorEventHandler(this.chart1_CursorPositionChanging);

我们需要为此添加额外的库吗?所以我现在有两个问题:1.让线条跟随鼠标2. 缺少 CursorEventHandler

该项目是用C#编写的窗体应用程序

最佳答案

private void chData_MouseMove(object sender, MouseEventArgs e)
{
Point mousePoint = new Point(e.X, e.Y);

Chart.ChartAreas[0].CursorX.SetCursorPixelPosition(mousePoint, true);
Chart.ChartAreas[0].CursorY.SetCursorPixelPosition(mousePoint, true);

// ...
}

关于c# - 如何使用 C# 使光标线跟随图表中的鼠标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8440894/

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