winform中 ZedGraph的默认光标是十字架的(曲线图绘制区是十字架的, 外面是指针),
现在是想把绘制区(就是显示曲线图的地方) 也换成指针的!! 知道的说一下.. 谢谢

解决方案 »

  1.   

    ZedGraph ► ZedGraphControlCursor 
    Gets or sets the cursor that is displayed when the mouse pointer is over the control. 
    CursorChanged 
    Occurs when the value of the Cursor property changes. 
    DefaultCursor
    Gets or sets the default cursor for the control.
      

  2.   

       cursorChanged事件做修改。。直接拦截事件     private void zgl_CursorChanged(object sender, EventArgs e)
            {
                this.zgl.Cursor = Cursors.Hand;        }