FrmOldCustomerRecordBaby.cs 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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 FrmOldCustomerRecordBaby : LYFZ.ComponentLibrary.BaseContentsFormMain
  13. {
  14. public FrmOldCustomerRecordBaby()
  15. {
  16. InitializeComponent();
  17. this.IsCustomScrollBar = true;
  18. this.Load += new EventHandler(FrmOldCustomerRecordBaby_Load);
  19. this.dgv2.Click += new EventHandler(dgv2_Click);
  20. this.btnClose.Click += new EventHandler(btnClose_Click);
  21. this.btnUpdate.Click += new EventHandler(btnUpdate_Click);
  22. panelEx1.BorderStyle = BorderStyle.FixedSingle;
  23. panelEx1.BorderColor = UIBlueThemeResources.BorderAreaColor;
  24. panelEx1.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  25. panelEx8.BackColor = UIBlueThemeResources.BorderAreaColor;
  26. this.dgv2.RefreshTheme();
  27. this.txtCus_QQ.KeyPress += txtCus_QQ_KeyPress;
  28. this.txtCus_Telephone.KeyPress += txtCus_Telephone_KeyPress;
  29. }
  30. protected virtual void txtCus_Telephone_KeyPress(object sender, KeyPressEventArgs e)
  31. {
  32. //throw new NotImplementedException();
  33. }
  34. protected virtual void txtCus_QQ_KeyPress(object sender, KeyPressEventArgs e)
  35. {
  36. //throw new NotImplementedException();
  37. }
  38. protected virtual void btnUpdate_Click(object sender, EventArgs e)
  39. {
  40. }
  41. protected virtual void btnClose_Click(object sender, EventArgs e)
  42. {
  43. }
  44. protected virtual void dgv2_Click(object sender, EventArgs e)
  45. {
  46. }
  47. protected virtual void FrmOldCustomerRecordBaby_Load(object sender, EventArgs e)
  48. {
  49. }
  50. private void panelEx1_Paint(object sender, PaintEventArgs e)
  51. {
  52. }
  53. }
  54. }