FrmOldCustomerOtherAdd.cs 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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.OldCustomer
  11. {
  12. /// <summary>
  13. /// 服务老客户
  14. /// </summary>
  15. public partial class FrmOldCustomerOtherAdd : LYFZ.ComponentLibrary.BaseContentsFormMain
  16. {
  17. public FrmOldCustomerOtherAdd()
  18. {
  19. InitializeComponent();
  20. panelEx1.BorderStyle = BorderStyle.FixedSingle;
  21. panelEx1.BorderColor = UIBlueThemeResources.BorderAreaColor;
  22. panelEx1.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  23. panelEx2.BorderStyle = BorderStyle.FixedSingle;
  24. panelEx2.BorderColor = UIBlueThemeResources.BorderAreaColor;
  25. panelEx2.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  26. this.btnCustomerSource.Click += btnCustomerSource_Click;
  27. this.txtCus_Telephone.KeyPress += txtCus_Telephone_KeyPress;
  28. this.btnClose.Click += btnClose_Click;
  29. this.txtCus_QQ.KeyPress += txtCus_QQ_KeyPress;
  30. this.btnRegion.Click+=btnRegion_Click;
  31. this.btnClear.Click+=btnClear_Click;
  32. this.dgvData.RefreshTheme();
  33. }
  34. protected virtual void txtCus_QQ_KeyPress(object sender, KeyPressEventArgs e)
  35. {
  36. }
  37. protected virtual void btnClear_Click(object sender, EventArgs e)
  38. {
  39. //throw new NotImplementedException();
  40. }
  41. protected virtual void btnClose_Click(object sender, EventArgs e)
  42. {
  43. //throw new NotImplementedException();
  44. }
  45. protected virtual void btnCusSelect_Click(object sender, EventArgs e)
  46. {
  47. //throw new NotImplementedException();
  48. }
  49. protected virtual void txtCus_Name_TextChanged(object sender, EventArgs e)
  50. {
  51. //throw new NotImplementedException();
  52. }
  53. protected virtual void txtCus_Telephone_KeyPress(object sender, KeyPressEventArgs e)
  54. {
  55. //throw new NotImplementedException();
  56. }
  57. protected virtual void btnCustomerSource_Click(object sender, EventArgs e)
  58. {
  59. //throw new NotImplementedException();
  60. }
  61. protected virtual void btnRegion_Click(object sender, EventArgs e)
  62. {
  63. //throw new NotImplementedException();
  64. }
  65. }
  66. }