12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- 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;
- }
- /// <summary>
- /// 窗体加载事件
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void A_SetProcessAlertSuperSmallForm_Shown(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 窗体加载事件
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void A_SetProcessAlertSuperSmallForm_Load(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 保存
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void butnSave_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 关闭
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void butnColse_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- }
- }
|