using DrawGraph; using DrawGraph.AreaManage; using DrawGraph.BoardPack; using DrawGraph.GUtil; using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Windows.Forms; namespace AIMS.EF { /// /// 监测管理类 /// public class MonitorManage : AreaManageBase { public MonitorManage() { } public MonitorManage(object _operationRecor, ZedGraphControl _zedControl, TemplateManage _template, string _name) : base(_operationRecor, _zedControl,_template , _name) { } #region 重写的事件 /// /// 鼠标点击画板 /// /// /// public override void MouseDown(ZedGraphControl sender, MouseEventArgs e) { //if (e.Button == System.Windows.Forms.MouseButtons.Left) //{ // MessageBox.Show(this.GetType().Name + "is Click Left Button"); //} } public override void MouseMove(ZedGraphControl sender, MouseEventArgs e) { } public override void MouseUp(ZedGraphControl sender, MouseEventArgs e) { } public override void MouseDoubleClick(ZedGraphControl sender, MouseEventArgs e) { } public override void KeyUp(ZedGraphControl sender, KeyEventArgs e) { } public override void Bind() { //MessageBox.Show(this.GetType() + "重新绑定"); } #endregion 重写的事件结束 } }