为什么在Chart控件上从未调用过MouseWheel事件? AxisViewChanged从未调用过吗?

时间:2015-05-15 05:11:10

标签: c# .net winforms

我在form1设计器上有一个windows窗体图表控件。 在form1构造函数中,我添加了:

2015

然后我有了MouseWheel事件:

chart1.ChartAreas[0].AxisX.ScaleView.Zoomable = true;
chart1.MouseWheel += chart1_MouseWheel;

在设计师中我还添加了事件AxisViewChanged:

void chart1_MouseWheel(object sender, MouseEventArgs e)
        {
            MessageBox.Show("hi");
        }

但是在MouseWheel事件或AxisViewChanged事件中使用断点,它永远不会到达并停在那里。

0 个答案:

没有答案