FrmReceipt.cs 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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 FrmReceipt : LYFZ.ComponentLibrary.BaseContentsFormMain
  13. {
  14. public FrmReceipt()
  15. {
  16. InitializeComponent();
  17. this.IsCustomScrollBar = true;
  18. this.dgv2.RefreshTheme();
  19. UcNavigationTool.LabTitle = "入库单";
  20. this.Shown += FrmReceipt_Shown;
  21. this.btnWarehousing.Click += btnWarehousing_Click;
  22. this.CtvSelect.ComboBoxTreeViewEx_TextChanged += CtvSelect_ComboBoxTreeViewEx_TextChanged;
  23. panelEx3.BorderStyle = BorderStyle.FixedSingle;
  24. panelEx3.BorderColor = UIBlueThemeResources.BorderAreaColor;
  25. panelEx3.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  26. this.btnDelete.Click += btnDelete_Click;
  27. }
  28. protected virtual void btnDelete_Click(object sender, EventArgs e)
  29. {
  30. //throw new NotImplementedException();
  31. }
  32. protected virtual void CtvSelect_ComboBoxTreeViewEx_TextChanged(object sender, TreeViewEventArgs e)
  33. {
  34. //throw new NotImplementedException();
  35. }
  36. protected virtual void radWarehousingRecord_Click(object sender, EventArgs e)
  37. {
  38. //throw new NotImplementedException();
  39. }
  40. protected virtual void radWarehousing_Click(object sender, EventArgs e)
  41. {
  42. //throw new NotImplementedException();
  43. }
  44. protected virtual void btnWarehousing_Click(object sender, EventArgs e)
  45. {
  46. //throw new NotImplementedException();
  47. }
  48. protected virtual void FrmReceipt_Shown(object sender, EventArgs e)
  49. {
  50. //throw new NotImplementedException();
  51. }
  52. }
  53. }