Example #1
0
        public SectionMenu(ConfigEntitySection section)
        {
            DisplayStyle = ToolStripItemDisplayStyle.Text;

            base.AutoSize = true;

            Text = section.Name;
            SelectedSection = section;
        }
Example #2
0
File: WinForm.cs Project: xqgzh/Z
        void LoadConfigNodes(ConfigEntitySection configs, ToolStripDropDownItem root)
        {
            foreach (ConfigEntitySection section in configs.Sections)
            {
                SectionMenu node = new SectionMenu(section);

                LoadConfigNodes(section, node);
                root.DropDownItems.Add(node);
            }

            foreach (ConfigFileEntity config in configs.List)
            {
                ConfigMenu node = new ConfigMenu(config);
                root.DropDownItems.Add(node);
            }
        }
Example #3
0
 public SectionNode(ConfigEntitySection section)
 {
     ImageIndex = 0;
     Text = section.Name;
     SelectedSection = section;
 }