FrmWarehousing.cs 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Windows.Forms;
  9. namespace LYFZ.Software.UI.InventoryManagement.Receipt
  10. {
  11. public partial class FrmWarehousing : LYFZ.ComponentLibrary.BaseContentsFormMain
  12. {
  13. public FrmWarehousing()
  14. {
  15. InitializeComponent();
  16. this.dgv1.RefreshTheme();
  17. this.Shown += FrmWarehousing_Shown;
  18. this.btnWarehousing.Click += btnWarehousing_Click;
  19. this.btnClose.Click += btnClose_Click;
  20. CtvSelect.ComboBoxTreeViewEx_TextChanged += CtvSelect_ComboBoxTreeViewEx_TextChanged;
  21. this.dgv1.CellMouseDoubleClick += dgv1_CellMouseDoubleClick;
  22. this.cmbFactory.Leave += cmbFactory_Leave;
  23. this.cmbFactory.SelectedIndexChanged += cmbFactory_SelectedIndexChanged;
  24. this.dgv1.CellValueChanged += dgv1_CellValueChanged;
  25. }
  26. protected virtual void dgv1_CellValueChanged(object sender, DataGridViewCellEventArgs e)
  27. {
  28. //throw new NotImplementedException();
  29. }
  30. protected virtual void cmbFactory_SelectedIndexChanged(object sender, EventArgs e)
  31. {
  32. //throw new NotImplementedException();
  33. }
  34. protected virtual void cmbFactory_Leave(object sender, EventArgs e)
  35. {
  36. //throw new NotImplementedException();
  37. }
  38. protected virtual void dgv1_CellMouseDoubleClick(object sender, DataGridViewCellMouseEventArgs e)
  39. {
  40. // throw new NotImplementedException();
  41. }
  42. protected virtual void FrmWarehousing_Shown(object sender, EventArgs e)
  43. {
  44. //throw new NotImplementedException();
  45. }
  46. protected virtual void CtvSelect_ComboBoxTreeViewEx_TextChanged(object sender, TreeViewEventArgs e)
  47. {
  48. //throw new NotImplementedException();
  49. }
  50. protected virtual void btnClose_Click(object sender, EventArgs e)
  51. {
  52. //throw new NotImplementedException();
  53. }
  54. protected virtual void btnWarehousing_Click(object sender, EventArgs e)
  55. {
  56. //throw new NotImplementedException();
  57. }
  58. }
  59. }