我在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事件中使用断点,它永远不会到达并停在那里。