using LYFZ.ComponentLibrary;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace LYFZ.Software.UI.CameraControlBook.SuperSmallForm
{
public partial class SetProcessAlertSuperSmallForm : LYFZ.ComponentLibrary.BaseContentsFormMain
{
public SetProcessAlertSuperSmallForm()
{
InitializeComponent();
this.panelEx1.BackColor = UIBlueThemeResources.BorderAreaColor;
this.Load += SetProcessAlertSuperSmallForm_Load;
this.btnSave.Click += btnSave_Click;
this.btnCancel.Click += btnCancel_Click;
this.txtF.KeyPress += txtF_KeyPress;
this.txtE.KeyPress += txtE_KeyPress;
this.txtD.KeyPress += txtD_KeyPress;
this.txtC.KeyPress += txtC_KeyPress;
this.txtB.KeyPress += txtB_KeyPress;
this.txtA.KeyPress += txtA_KeyPress;
}
///
/// 窗体加载
///
///
///
protected virtual void SetProcessAlertSuperSmallForm_Load(object sender, EventArgs e)
{
//throw new NotImplementedException();
}
///
/// 保存
///
///
///
protected virtual void btnSave_Click(object sender, EventArgs e)
{
//throw new NotImplementedException();
}
///
/// 取消
///
///
///
protected virtual void btnCancel_Click(object sender, EventArgs e)
{
//throw new NotImplementedException();
}
///
///
///
///
///
protected virtual void txtF_KeyPress(object sender, KeyPressEventArgs e)
{
//throw new NotImplementedException();
}
///
///
///
///
///
protected virtual void txtE_KeyPress(object sender, KeyPressEventArgs e)
{
//throw new NotImplementedException();
}
///
///
///
///
///
protected virtual void txtD_KeyPress(object sender, KeyPressEventArgs e)
{
//throw new NotImplementedException();
}
///
///
///
///
///
protected virtual void txtC_KeyPress(object sender, KeyPressEventArgs e)
{
//throw new NotImplementedException();
}
///
///
///
///
///
protected virtual void txtB_KeyPress(object sender, KeyPressEventArgs e)
{
//throw new NotImplementedException();
}
///
///
///
///
///
protected virtual void txtA_KeyPress(object sender, KeyPressEventArgs e)
{
//throw new NotImplementedException();
}
}
}