FrmOldCustomerEdit.cs 2.4 KB

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