FrmAddContacts.cs 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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 FrmAddContacts : LYFZ.ComponentLibrary.BaseContentsFormMain
  13. {
  14. public FrmAddContacts()
  15. {
  16. InitializeComponent();
  17. panelEx1.BorderStyle = BorderStyle.FixedSingle;
  18. panelEx1.BorderColor = UIBlueThemeResources.BorderAreaColor;
  19. panelEx1.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  20. this.Shown += FrmAddContacts_Shown;
  21. // this.btnSetGrade.Click += btnSetGrade_Click;
  22. this.btnRegion.Click += btnRegion_Click;
  23. //this.btnCustomerSource.Click += btnCustomerSource_Click;
  24. this.btnSave.Click += btnSave_Click;
  25. this.btnClose.Click += btnClose_Click;
  26. this.txtCus_Telephone.KeyPress += txtCus_Telephone_KeyPress;
  27. this.txtCus_QQ.KeyPress += txtCus_QQ_KeyPress;
  28. }
  29. protected virtual void txtCus_QQ_KeyPress(object sender, KeyPressEventArgs e)
  30. {
  31. //throw new NotImplementedException();
  32. }
  33. protected virtual void txtCus_Telephone_KeyPress(object sender, KeyPressEventArgs e)
  34. {
  35. //throw new NotImplementedException();
  36. }
  37. protected virtual void btnClose_Click(object sender, EventArgs e)
  38. {
  39. //throw new NotImplementedException();
  40. }
  41. protected virtual void btnSave_Click(object sender, EventArgs e)
  42. {
  43. //throw new NotImplementedException();
  44. }
  45. protected virtual void btnCustomerSource_Click(object sender, EventArgs e)
  46. {
  47. //throw new NotImplementedException();
  48. }
  49. protected virtual void btnRegion_Click(object sender, EventArgs e)
  50. {
  51. //throw new NotImplementedException();
  52. }
  53. protected virtual void btnSetGrade_Click(object sender, EventArgs e)
  54. {
  55. //throw new NotImplementedException();
  56. }
  57. protected virtual void FrmAddContacts_Shown(object sender, EventArgs e)
  58. {
  59. //throw new NotImplementedException();
  60. }
  61. private void panelEx1_Paint(object sender, PaintEventArgs e)
  62. {
  63. }
  64. }
  65. }