private void SetUp()
        {
            this.loadedPlugins = new Dictionary<string, IBootloaderPlugin>();
            this.pluginInfo = new PluginInfo();
            this.splashText = new SplashText();

            this.refreshPlugins = new ToolStripMenuItem();
            this.refreshPlugins.Name = "mnuPluginRefresh";
            this.refreshPlugins.Text = "&Refresh Plugins";
            this.refreshPlugins.Click += new EventHandler(mnuPluginsRefresh_Click);

            this.separator = new ToolStripSeparator();
            this.separator.Name = "mnuSeparator";
            
            this.mnuPlugin.DropDownItems.Add(this.refreshPlugins);
            this.mnuPlugin.DropDownItems.Add(this.separator);
        }
Esempio n. 2
0
        private void SetUp()
        {
            this.loadedPlugins = new Dictionary <string, IBootloaderPlugin>();
            this.pluginInfo    = new PluginInfo();
            this.splashText    = new SplashText();

            this.refreshPlugins        = new ToolStripMenuItem();
            this.refreshPlugins.Name   = "mnuPluginRefresh";
            this.refreshPlugins.Text   = "&Refresh Plugins";
            this.refreshPlugins.Click += new EventHandler(mnuPluginsRefresh_Click);

            this.separator      = new ToolStripSeparator();
            this.separator.Name = "mnuSeparator";

            this.mnuPlugin.DropDownItems.Add(this.refreshPlugins);
            this.mnuPlugin.DropDownItems.Add(this.separator);
        }