A_SetProcessAlertSuperSmallForm.cs 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. using LYFZ.ComponentLibrary;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.ComponentModel;
  5. using System.Data;
  6. using System.Drawing;
  7. using System.Linq;
  8. using System.Text;
  9. using System.Windows.Forms;
  10. namespace LYFZ.Software.UI.CameraControlBook.SuperSmallForm
  11. {
  12. public partial class A_SetProcessAlertSuperSmallForm : LYFZ.ComponentLibrary.BaseContentsFormMain
  13. {
  14. public A_SetProcessAlertSuperSmallForm()
  15. {
  16. InitializeComponent();
  17. this.panelMain.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  18. this.panelMain.BorderColor = UIBlueThemeResources.BorderAreaColor;
  19. this.panelMain.BorderStyle = BorderStyle.FixedSingle;
  20. this.Shown += A_SetProcessAlertSuperSmallForm_Shown;
  21. this.Load += A_SetProcessAlertSuperSmallForm_Load;
  22. this.butnSave.Click += butnSave_Click;
  23. this.butnColse.Click += butnColse_Click;
  24. }
  25. /// <summary>
  26. /// 窗体加载事件
  27. /// </summary>
  28. /// <param name="sender"></param>
  29. /// <param name="e"></param>
  30. protected virtual void A_SetProcessAlertSuperSmallForm_Shown(object sender, EventArgs e)
  31. {
  32. //throw new NotImplementedException();
  33. }
  34. /// <summary>
  35. /// 窗体加载事件
  36. /// </summary>
  37. /// <param name="sender"></param>
  38. /// <param name="e"></param>
  39. protected virtual void A_SetProcessAlertSuperSmallForm_Load(object sender, EventArgs e)
  40. {
  41. //throw new NotImplementedException();
  42. }
  43. /// <summary>
  44. /// 保存
  45. /// </summary>
  46. /// <param name="sender"></param>
  47. /// <param name="e"></param>
  48. protected virtual void butnSave_Click(object sender, EventArgs e)
  49. {
  50. //throw new NotImplementedException();
  51. }
  52. /// <summary>
  53. /// 关闭
  54. /// </summary>
  55. /// <param name="sender"></param>
  56. /// <param name="e"></param>
  57. protected virtual void butnColse_Click(object sender, EventArgs e)
  58. {
  59. //throw new NotImplementedException();
  60. }
  61. }
  62. }