12345678910111213141516171819202122232425262728 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Drawing;
- using System.Data;
- using System.Linq;
- using System.Text;
- using System.Windows.Forms;
- using ComponentFactory.Krypton.Navigator;
- using NXWMS.Forms.SysSettings;
- using NXWMS.Models;
- using ComponentFactory.Krypton.Toolkit;
- namespace NXWMS
- {
- public partial class DockMenu : UserControl
- {
- /// <summary>
- /// 主窗体
- /// </summary>
- private Form _Main;
- public DockMenu(Form frm)
- {
- InitializeComponent();
- _Main = frm;
- }
- }
- }
|