設置zedgraph鼠標拖拽和局部放大屬性 轉
設置zedgraph鼠標拖拽和局部放大屬性 轉
設置zedgraph鼠標拖拽和局部放大屬性
說一下幾個屬性的意義和具體應用:
(1)鼠標拖拽顯示區域
PanModifierKeys ->> Gets or sets a value that determines which modifier keys will be used as a primary option to trigger a pan event.
意思就是調用一個拖拽命令時要添加的快捷鍵組合,比如我們使用的復制快捷鍵ctrl+c,這個命令就是來要我們設置調用這個方法的方式。
使用時的語法:zedGraphControl1.PanModifierKeys = Keys.Shift;(這是按住shift鍵,在點擊鼠標左鍵可以拖拽zedGraphControl1的顯示視圖)
zedGraphControl1.PnModifierKeys = Keys.none;(直接可以用鼠標左鍵點擊來拖拽)
(2)鼠標局部放大
ZoomStepFraction
->> Gets or sets the step size fraction for zooming with the
mouse wheel. A value of 0.1 will result in a 10% zoom step for each
mouse wheel movement.
意思就是設置縮放比例與鼠標滾輪步驟大小關系
使用時的語法:zedGraphControl1.ZoomStepFraction = 0;(這是鼠標滾輪縮放的比例為零,就是禁止使用鼠標滾輪的放大縮小功能)
zedGraphControl1.ZoomStepFraction = 0.1;(這是鼠標滾輪縮放的比例大小,值越大縮放就越靈敏)
以上希望朋友們在用到zedgraph控件時有所幫助,有不對的地方歡迎指正!!
設置zedgraph鼠標拖拽和局部放大屬性 轉