FrmProcurementApplication.cs 2.2 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.InventoryManagement
  11. {
  12. public partial class FrmProcurementApplication : LYFZ.ComponentLibrary.BaseContentsFormMain
  13. {
  14. public FrmProcurementApplication()
  15. {
  16. InitializeComponent();
  17. this.dgv1.RefreshTheme();
  18. this.dgv2.RefreshTheme();
  19. this.Shown += FrmProcurementApplication_Shown;
  20. this.cmbPord_PurchaseStatus.SelectedIndexChanged += cmbPord_PurchaseStatus_SelectedIndexChanged;
  21. this.btndelete.Click += btndelete_Click;
  22. this.btnSave.Click += btnSave_Click;
  23. this.btnClose.Click += btnClose_Click;
  24. this.dgv2.Click += dgv2_Click;
  25. this.btnExport.Click += btnExport_Click;
  26. this.btnPrint.Click += btnPrint_Click;
  27. panelEx1.BackColor = UIBlueThemeResources.BorderAreaColor;
  28. }
  29. protected virtual void btnPrint_Click(object sender, EventArgs e)
  30. {
  31. //throw new NotImplementedException();
  32. }
  33. protected virtual void btnExport_Click(object sender, EventArgs e)
  34. {
  35. //throw new NotImplementedException();
  36. }
  37. protected virtual void dgv2_Click(object sender, EventArgs e)
  38. {
  39. //throw new NotImplementedException();
  40. }
  41. protected virtual void btnClose_Click(object sender, EventArgs e)
  42. {
  43. //throw new NotImplementedException();
  44. }
  45. protected virtual void btnSave_Click(object sender, EventArgs e)
  46. {
  47. //throw new NotImplementedException();
  48. }
  49. protected virtual void btndelete_Click(object sender, EventArgs e)
  50. {
  51. //throw new NotImplementedException();
  52. }
  53. protected virtual void cmbPord_PurchaseStatus_SelectedIndexChanged(object sender, EventArgs e)
  54. {
  55. //throw new NotImplementedException();
  56. }
  57. protected virtual void FrmProcurementApplication_Shown(object sender, EventArgs e)
  58. {
  59. //throw new NotImplementedException();
  60. }
  61. }
  62. }