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 A_SetProcessAlertSuperSmallForm : LYFZ.ComponentLibrary.BaseContentsFormMain { public A_SetProcessAlertSuperSmallForm() { InitializeComponent(); this.panelMain.BackColor = UIBlueThemeResources.AreaBackgroundColor; this.panelMain.BorderColor = UIBlueThemeResources.BorderAreaColor; this.panelMain.BorderStyle = BorderStyle.FixedSingle; this.Shown += A_SetProcessAlertSuperSmallForm_Shown; this.Load += A_SetProcessAlertSuperSmallForm_Load; this.butnSave.Click += butnSave_Click; this.butnColse.Click += butnColse_Click; } /// /// 窗体加载事件 /// /// /// protected virtual void A_SetProcessAlertSuperSmallForm_Shown(object sender, EventArgs e) { //throw new NotImplementedException(); } /// /// 窗体加载事件 /// /// /// protected virtual void A_SetProcessAlertSuperSmallForm_Load(object sender, EventArgs e) { //throw new NotImplementedException(); } /// /// 保存 /// /// /// protected virtual void butnSave_Click(object sender, EventArgs e) { //throw new NotImplementedException(); } /// /// 关闭 /// /// /// protected virtual void butnColse_Click(object sender, EventArgs e) { //throw new NotImplementedException(); } } }