FrmSupplierSet.cs 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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.InitialSet
  11. {
  12. public partial class FrmSupplierSet : LYFZ.ComponentLibrary.BaseContentsFormMain
  13. {
  14. public FrmSupplierSet()
  15. {
  16. InitializeComponent();
  17. dgv.RefreshTheme();
  18. this.IsCustomScrollBar = true;
  19. this.Load += new EventHandler(FrmSupplierSet_Load);
  20. this.btnAdd.Click += new EventHandler(btnAdd_Click);
  21. this.btnDelete.Click += new EventHandler(btnDelete_Click);
  22. this.btnSave.Click += new EventHandler(btnSave_Click);
  23. this.btnClose.Click += new EventHandler(btnClose_Click);
  24. this.dgv.Click += new EventHandler(dgv_Click);
  25. this.txtVd_Telephone.KeyPress += new KeyPressEventHandler(txtVd_Telephone_KeyPress);
  26. panelEx1.BorderStyle = BorderStyle.FixedSingle;
  27. panelEx1.BorderColor = UIBlueThemeResources.BorderAreaColor;
  28. panelEx1.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  29. panelEx2.BackColor = UIBlueThemeResources.BorderAreaColor;
  30. this.Shown += FrmSupplierSet_Shown;
  31. }
  32. protected virtual void FrmSupplierSet_Shown(object sender, EventArgs e)
  33. {
  34. //throw new NotImplementedException();
  35. }
  36. protected virtual void pagerEx1_EventPaging(EventArgs e)
  37. {
  38. //throw new NotImplementedException();
  39. }
  40. protected virtual void txtVd_Telephone_KeyPress(object sender, KeyPressEventArgs e)
  41. {
  42. }
  43. protected virtual void dgv_Click(object sender, EventArgs e)
  44. {
  45. }
  46. protected virtual void btnClose_Click(object sender, EventArgs e)
  47. {
  48. }
  49. protected virtual void btnSave_Click(object sender, EventArgs e)
  50. {
  51. }
  52. protected virtual void btnDelete_Click(object sender, EventArgs e)
  53. {
  54. }
  55. protected virtual void btnAdd_Click(object sender, EventArgs e)
  56. {
  57. }
  58. protected virtual void FrmSupplierSet_Load(object sender, EventArgs e)
  59. {
  60. }
  61. }
  62. }