在Microsoft图表控件中启用鼠标滚轮缩放
本文关键字:鼠标 缩放 启用 Microsoft 控件 | 更新日期: 2023-09-27 18:15:52
如何使用鼠标滚轮在Microsoft图表控件中启用缩放
我有下面的代码,我需要知道如何使这个事件?
private void chData_MouseWheel(object sender, MouseEventArgs e)
{
try
{
if (e.Delta < 0)
{
chart1.ChartAreas[0].AxisX.ScaleView.ZoomReset();
chart1.ChartAreas[0].AxisY.ScaleView.ZoomReset();
}
if (e.Delta > 0)
{
double xMin = chart1.ChartAreas[0].AxisX.ScaleView.ViewMinimum;
double xMax = chart1.ChartAreas[0].AxisX.ScaleView.ViewMaximum;
double yMin = chart1.ChartAreas[0].AxisY.ScaleView.ViewMinimum;
double yMax = chart1.ChartAreas[0].AxisY.ScaleView.ViewMaximum;
double posXStart = chart1.ChartAreas[0].AxisX.PixelPositionToValue(e.Location.X) - (xMax - xMin) / 4;
double posXFinish = chart1.ChartAreas[0].AxisX.PixelPositionToValue(e.Location.X) + (xMax - xMin) / 4;
double posYStart = chart1.ChartAreas[0].AxisY.PixelPositionToValue(e.Location.Y) - (yMax - yMin) / 4;
double posYFinish = chart1.ChartAreas[0].AxisY.PixelPositionToValue(e.Location.Y) + (yMax - yMin) / 4;
chart1.ChartAreas[0].AxisX.ScaleView.Zoom(posXStart, posXFinish);
chart1.ChartAreas[0].AxisY.ScaleView.Zoom(posYStart, posYFinish);
}
}
catch { }
}
我认为上面的答案应该是,
chData。MouseWheel += new MouseEventHandler(chData_MouseWheel);
但是根据我所发现的,图表的鼠标滚轮不工作,只要你不把焦点放在图表控件在你的代码。因此,我使用图表控件的鼠标进入将焦点设置为图表,并使用图表控件的鼠标离开事件将控件设置回其父控件。
因此,您需要在代码中添加以下行,相应地绑定图表控件的鼠标离开和鼠标进入事件,并添加上面的行。
private void chartTracking_MouseEnter(object sender, EventArgs e)
{
this.chartTracking.Focus();
}
private void chartTracking_MouseLeave(object sender, EventArgs e)
{
this.chartTracking.Parent.Focus();
}
您所拥有的是MouseWheel
事件的处理程序方法。您需要将处理程序方法附加到图表控件的MouseWheel
事件。根据方法签名,我假设您的图表控件名为chData
,因此您可以在表单的构造函数中使用以下代码:
chData.MouseWheel += new EventHandler(chData_MouseWheel);
当然,您也可以在设计时将处理程序与事件关联起来。要做到这一点,使用属性窗口并单击工具栏中的闪电按钮切换到"事件"视图。然后找到MouseWheel
事件,单击下拉箭头,并选择处理程序方法的签名。这将导致设计人员将上述代码写入表单的代码隐藏文件中。
除此之外,在你的代码中有一个巨大的危险信号:一个空的catch
块。如果您没有处理异常或对它做任何事情,那么您就不应该捕获它。