DockTool.cs 533 B

12345678910111213141516171819202122232425
  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.Docking;
  10. namespace NXWMS
  11. {
  12. public partial class DockTool : UserControl
  13. {
  14. public KryptonDockableNavigator _navigatorPage { get; set; }
  15. public Form _MainForm;
  16. public DockTool(Form frm)
  17. {
  18. InitializeComponent();
  19. this._MainForm = frm;
  20. }
  21. }
  22. }