FrmOldCustomerOtheEdit.cs 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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 FrmOldCustomerOtheEdit : LYFZ.ComponentLibrary.BaseContentsFormMain
  16. {
  17. public FrmOldCustomerOtheEdit()
  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. txtCus_Telephone.KeyPress += txtCus_Telephone_KeyPress;
  27. this.btnCustomerSource.Click += btnCustomerSource_Click;
  28. this.btnClose.Click += btnClose_Click;
  29. this.txtCus_QQ.KeyPress += txtCus_QQ_KeyPress;
  30. this.dgvData.RefreshTheme();
  31. }
  32. protected virtual void txtCus_QQ_KeyPress(object sender, KeyPressEventArgs e)
  33. {
  34. //throw new NotImplementedException();
  35. }
  36. protected virtual void btnClose_Click(object sender, EventArgs e)
  37. {
  38. //throw new NotImplementedException();
  39. }
  40. protected virtual void btnRegion_Click(object sender, EventArgs e)
  41. {
  42. //throw new NotImplementedException();
  43. }
  44. protected virtual void btnCustomerSource_Click(object sender, EventArgs e)
  45. {
  46. //throw new NotImplementedException();
  47. }
  48. protected virtual void txtCus_Telephone_KeyPress(object sender, KeyPressEventArgs e)
  49. {
  50. //throw new NotImplementedException();
  51. }
  52. }
  53. }