FrmOldCustomerPortraitEdit.cs 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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. public partial class FrmOldCustomerPortraitEdit : LYFZ.ComponentLibrary.BaseContentsFormMain
  13. {
  14. public FrmOldCustomerPortraitEdit()
  15. {
  16. InitializeComponent();
  17. this.btnClose.Click += new EventHandler(btnClose_Click);
  18. this.txtCus_Telephone.KeyPress += new KeyPressEventHandler(txtCus_Telephone_KeyPress);
  19. panelEx1.BorderStyle = BorderStyle.FixedSingle;
  20. panelEx1.BorderColor = UIBlueThemeResources.BorderAreaColor;
  21. panelEx1.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  22. panelEx2.BorderStyle = BorderStyle.FixedSingle;
  23. panelEx2.BorderColor = UIBlueThemeResources.BorderAreaColor;
  24. panelEx2.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  25. this.dgvData.RefreshTheme();
  26. this.dgvData.RefreshTheme();
  27. this.btnCustomerSource.Click += btnCustomerSource_Click;
  28. this.Shown += FrmOldCustomerPortraitEdit_Shown;
  29. this.txtCus_QQ.KeyPress += txtCus_QQ_KeyPress;
  30. }
  31. protected virtual void txtCus_QQ_KeyPress(object sender, KeyPressEventArgs e)
  32. {
  33. //throw new NotImplementedException();
  34. }
  35. protected virtual void btnClose_Click(object sender, EventArgs e)
  36. {
  37. //throw new NotImplementedException();
  38. }
  39. protected virtual void txtCus_Telephone_KeyPress(object sender, KeyPressEventArgs e)
  40. {
  41. //throw new NotImplementedException();
  42. }
  43. protected virtual void FrmOldCustomerPortraitEdit_Shown(object sender, EventArgs e)
  44. {
  45. //throw new NotImplementedException();
  46. }
  47. protected virtual void btnCustomerSource_Click(object sender, EventArgs e)
  48. {
  49. //throw new NotImplementedException();
  50. }
  51. protected virtual void btnRegion_Click(object sender, EventArgs e)
  52. {
  53. //throw new NotImplementedException();
  54. }
  55. }
  56. }