ServiceCardManagementSmallForm.cs 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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.MembershipManage.SetSmallForm
  11. {
  12. public partial class ServiceCardManagementSmallForm : LYFZ.ComponentLibrary.BaseContentsFormMain
  13. {
  14. public ServiceCardManagementSmallForm()
  15. {
  16. InitializeComponent();
  17. this.panelEx1.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  18. this.panelEx1.BorderColor = UIBlueThemeResources.BorderAreaColor;
  19. this.panelEx1.BorderStyle = BorderStyle.FixedSingle;
  20. this.Shown += ServiceCardManagementSmallForm_Shown;
  21. this.FormClosing += ServiceCardManagementSmallForm_FormClosing;
  22. this.btnSave.Click += btnSave_Click;
  23. }
  24. /// <summary>
  25. /// 窗体加载事件
  26. /// </summary>
  27. /// <param name="sender"></param>
  28. /// <param name="e"></param>
  29. protected virtual void ServiceCardManagementSmallForm_Shown(object sender, EventArgs e)
  30. {
  31. //throw new NotImplementedException();
  32. }
  33. /// <summary>
  34. /// 关闭窗体后发生事件
  35. /// </summary>
  36. /// <param name="sender"></param>
  37. /// <param name="e"></param>
  38. protected virtual void ServiceCardManagementSmallForm_FormClosing(object sender, FormClosingEventArgs e)
  39. {
  40. //throw new NotImplementedException();
  41. }
  42. /// <summary>
  43. /// 保存
  44. /// </summary>
  45. /// <param name="sender"></param>
  46. /// <param name="e"></param>
  47. protected virtual void btnSave_Click(object sender, EventArgs e)
  48. {
  49. //throw new NotImplementedException();
  50. }
  51. }
  52. }