AddGoldCardMemberSmallForm.cs 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  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 AddGoldCardMemberSmallForm : LYFZ.ComponentLibrary.BaseContentsFormMain
  13. {
  14. public AddGoldCardMemberSmallForm()
  15. {
  16. InitializeComponent();
  17. this.panelEx1.BackColor = UIBlueThemeResources.UCNavigationToolColor;
  18. this.panelEx2.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  19. this.panelEx2.BorderStyle = BorderStyle.FixedSingle;
  20. this.panelEx2.BorderColor = UIBlueThemeResources.BorderAreaColor;
  21. this.labelEx11.ForeColor = UIBlueThemeResources.TitleTextColor;
  22. this.labelEx5.ForeColor = UIBlueThemeResources.TitleTextColor;
  23. this.Load += new EventHandler(AddGoldCardMemberSmallForm_Load);
  24. this.FormClosing += AddGoldCardMemberSmallForm_FormClosing;
  25. this.btnFind.Click += new EventHandler(btnFind_Click);
  26. this.txtTelephone.TextChanged += txtTelephone_TextChanged;
  27. this.btnSave.Click += new EventHandler(btnSave_Click);
  28. this.btnCancel.Click += new EventHandler(btnCancel_Click);
  29. }
  30. /// <summary>
  31. /// 窗体加载事件
  32. /// </summary>
  33. /// <param name="sender"></param>
  34. /// <param name="e"></param>
  35. protected virtual void AddGoldCardMemberSmallForm_Load(object sender, EventArgs e)
  36. {
  37. //throw new NotImplementedException();
  38. }
  39. /// <summary>
  40. /// 关闭窗体后发生事件
  41. /// </summary>
  42. /// <param name="sender"></param>
  43. /// <param name="e"></param>
  44. protected virtual void AddGoldCardMemberSmallForm_FormClosing(object sender, FormClosingEventArgs e)
  45. {
  46. //throw new NotImplementedException();
  47. }
  48. /// <summary>
  49. /// 查找
  50. /// </summary>
  51. /// <param name="sender"></param>
  52. /// <param name="e"></param>
  53. protected virtual void btnFind_Click(object sender, EventArgs e)
  54. {
  55. //throw new NotImplementedException();
  56. }
  57. /// <summary>
  58. /// 电话号码发生改变时
  59. /// </summary>
  60. /// <param name="sender"></param>
  61. /// <param name="e"></param>
  62. protected virtual void txtTelephone_TextChanged(object sender, EventArgs e)
  63. {
  64. //throw new NotImplementedException();
  65. }
  66. /// <summary>
  67. /// 保存
  68. /// </summary>
  69. /// <param name="sender"></param>
  70. /// <param name="e"></param>
  71. protected virtual void btnSave_Click(object sender, EventArgs e)
  72. {
  73. //throw new NotImplementedException();
  74. }
  75. /// <summary>
  76. /// 取消
  77. /// </summary>
  78. /// <param name="sender"></param>
  79. /// <param name="e"></param>
  80. protected virtual void btnCancel_Click(object sender, EventArgs e)
  81. {
  82. //throw new NotImplementedException();
  83. }
  84. }
  85. }