DockMenu.cs 610 B

12345678910111213141516171819202122232425262728
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Drawing;
  5. using System.Data;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Windows.Forms;
  9. using ComponentFactory.Krypton.Navigator;
  10. using NXWMS.Forms.SysSettings;
  11. using NXWMS.Models;
  12. using ComponentFactory.Krypton.Toolkit;
  13. namespace NXWMS
  14. {
  15. public partial class DockMenu : UserControl
  16. {
  17. /// <summary>
  18. /// 主窗体
  19. /// </summary>
  20. private Form _Main;
  21. public DockMenu(Form frm)
  22. {
  23. InitializeComponent();
  24. _Main = frm;
  25. }
  26. }
  27. }