FrmDelivery.cs 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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 FrmDelivery : LYFZ.ComponentLibrary.BaseContentsFormMain
  13. {
  14. public FrmDelivery()
  15. {
  16. this.IsCustomScrollBar = true;
  17. InitializeComponent();
  18. this.dgv1.RefreshTheme();
  19. this.dgv2.RefreshTheme();
  20. panelEx3.BorderStyle = BorderStyle.FixedSingle;
  21. panelEx3.BorderColor = UIBlueThemeResources.BorderAreaColor;
  22. panelEx3.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  23. UcNavigationTool.LabTitle = "出库单";
  24. this.Shown += FrmDelivery_Shown;
  25. this.btnLibrary.Click += btnLibrary_Click;
  26. this.dgv1.CellValueChanged += dgv1_CellValueChanged;
  27. this.radLibrary.Click += radLibrary_Click;
  28. this.radLibraryRecord.Click += radLibraryRecord_Click;
  29. this.CtvSelect.ComboBoxTreeViewEx_TextChanged += CtvSelect_ComboBoxTreeViewEx_TextChanged;
  30. this.btnDelete.Click += btnDelete_Click;
  31. }
  32. protected virtual void btnDelete_Click(object sender, EventArgs e)
  33. {
  34. //throw new NotImplementedException();
  35. }
  36. protected virtual void CtvSelect_ComboBoxTreeViewEx_TextChanged(object sender, TreeViewEventArgs e)
  37. {
  38. //throw new NotImplementedException();
  39. }
  40. protected virtual void radLibraryRecord_Click(object sender, EventArgs e)
  41. {
  42. //throw new NotImplementedException();
  43. }
  44. protected virtual void radLibrary_Click(object sender, EventArgs e)
  45. {
  46. //throw new NotImplementedException();
  47. }
  48. protected virtual void dgv1_CellValueChanged(object sender, DataGridViewCellEventArgs e)
  49. {
  50. //throw new NotImplementedException();
  51. }
  52. protected virtual void btnLibrary_Click(object sender, EventArgs e)
  53. {
  54. //throw new NotImplementedException();
  55. }
  56. protected virtual void FrmDelivery_Shown(object sender, EventArgs e)
  57. {
  58. //throw new NotImplementedException();
  59. }
  60. }
  61. }