52 lines
1.5 KiB
C#
52 lines
1.5 KiB
C#
using Newtonsoft.Json;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Windows.Forms;
|
|
|
|
|
|
namespace DrawGraph
|
|
{
|
|
/// <summary>
|
|
/// 监测管理类
|
|
/// </summary>
|
|
public class MonitorManage : AreaManageBase
|
|
{
|
|
public MonitorManage() { }
|
|
public MonitorManage(object _operationRecor, ZedGraphControl _zedControl, TemplateManage _template, string _name) : base(_operationRecor, _zedControl,_template , _name)
|
|
{ }
|
|
|
|
#region 重写的事件
|
|
/// <summary>
|
|
/// 鼠标点击画板
|
|
/// </summary>
|
|
/// <param name="sender"></param>
|
|
/// <param name="e"></param>
|
|
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 重写的事件结束
|
|
}
|
|
}
|