FrmOldCustomerRecord.cs 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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.Customers
  11. {
  12. public partial class FrmOldCustomerRecord : LYFZ.ComponentLibrary.BaseContentsFormMain
  13. {
  14. public FrmOldCustomerRecord()
  15. {
  16. InitializeComponent();
  17. this.IsCustomScrollBar = true;
  18. this.Load += new EventHandler(FrmOldCustomerRecord_Load);
  19. this.btnUpdate.Click += new EventHandler(btnUpdate_Click);
  20. this.dgv2.Click += new EventHandler(dgv2_Click);
  21. this.btnClose.Click += new EventHandler(btnClose_Click);
  22. this.txtCus_Telephone.KeyPress += new KeyPressEventHandler(txtCus_Telephone_KeyPress);
  23. panelEx1.BorderStyle = BorderStyle.FixedSingle;
  24. panelEx1.BorderColor = UIBlueThemeResources.BorderAreaColor;
  25. panelEx1.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  26. panelEx2.BorderStyle = BorderStyle.FixedSingle;
  27. panelEx2.BorderColor = UIBlueThemeResources.BorderAreaColor;
  28. panelEx2.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  29. //this.dgv.RefreshTheme();
  30. this.dgv2.RefreshTheme();
  31. //this.btnSetGrade.Click += btnSetGrade_Click;
  32. this.btnRegion.Click += btnRegion_Click;
  33. this.btnCustomerSource.Click += btnCustomerSource_Click;
  34. this.txtCus_QQ.KeyPress += txtCus_QQ_KeyPress;
  35. }
  36. protected virtual void txtCus_QQ_KeyPress(object sender, KeyPressEventArgs e)
  37. {
  38. //throw new NotImplementedException();
  39. }
  40. protected virtual void btnCustomerSource_Click(object sender, EventArgs e)
  41. {
  42. //throw new NotImplementedException();
  43. }
  44. protected virtual void btnRegion_Click(object sender, EventArgs e)
  45. {
  46. //throw new NotImplementedException();
  47. }
  48. protected virtual void txtCus_Telephone_KeyPress(object sender, KeyPressEventArgs e)
  49. {
  50. }
  51. protected virtual void btnClose_Click(object sender, EventArgs e)
  52. {
  53. }
  54. protected virtual void dgv2_Click(object sender, EventArgs e)
  55. {
  56. }
  57. protected virtual void btnUpdate_Click(object sender, EventArgs e)
  58. {
  59. }
  60. protected virtual void FrmOldCustomerRecord_Load(object sender, EventArgs e)
  61. {
  62. }
  63. }
  64. }