FindGuestSuperSmallForm.cs 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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.SuperSmallForm
  11. {
  12. public partial class FindGuestSuperSmallForm : LYFZ.ComponentLibrary.BaseContentsFormMain
  13. {
  14. public FindGuestSuperSmallForm()
  15. {
  16. InitializeComponent();
  17. this.panelEx2.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  18. this.Load += new EventHandler(FindGuestSuperSmallForm_Load);
  19. this.btnOK.Click += new EventHandler(btnOK_Click);
  20. this.btnCancel.Click += new EventHandler(btnCancel_Click);
  21. }
  22. /// <summary>
  23. /// 窗体加载事件
  24. /// </summary>
  25. /// <param name="sender"></param>
  26. /// <param name="e"></param>
  27. protected virtual void FindGuestSuperSmallForm_Load(object sender, EventArgs e)
  28. {
  29. //throw new NotImplementedException();
  30. }
  31. /// <summary>
  32. /// 确定
  33. /// </summary>
  34. /// <param name="sender"></param>
  35. /// <param name="e"></param>
  36. protected virtual void btnOK_Click(object sender, EventArgs e)
  37. {
  38. //throw new NotImplementedException();
  39. }
  40. /// <summary>
  41. /// 取消
  42. /// </summary>
  43. /// <param name="sender"></param>
  44. /// <param name="e"></param>
  45. protected virtual void btnCancel_Click(object sender, EventArgs e)
  46. {
  47. //throw new NotImplementedException();
  48. }
  49. }
  50. }