private MenuStripEx FindMainMenu(IGitUICommands commands)
        {
            FormBrowse form = (FormBrowse)((GitUICommands)commands).BrowseRepo;

            if (form != null)
            {
                MenuStripEx mainMenu = form.Controls.OfType <MenuStripEx>().FirstOrDefault();
                return(mainMenu);
            }

            return(null);
        }
        private SolutionListMenuItem FindMainMenuItem(IGitUICommands commands, MenuStripEx mainMenu = null)
        {
            if (mainMenu == null)
            {
                mainMenu = FindMainMenu(commands);
            }

            if (mainMenu == null)
            {
                return(null);
            }

            return(mainMenu.Items.OfType <SolutionListMenuItem>().FirstOrDefault());
        }
        public override void Unregister(IGitUICommands commands)
        {
            base.Unregister(commands);

            MenuStripEx mainMenu = FindMainMenu(commands);

            if (mainMenu != null)
            {
                SolutionListMenuItem mainMenuItem = FindMainMenuItem(commands, mainMenu);
                if (mainMenuItem != null)
                {
                    mainMenu.Items.Remove(mainMenuItem);
                    mainMenuItem.Dispose();
                }
            }
        }
        public override void Register(IGitUICommands commands)
        {
            base.Register(commands);

            Configuration = new PluginSettings(Settings);

            if (commands.GitModule.IsValidGitWorkingDir())
            {
                MenuStripEx mainMenu = FindMainMenu(commands);
                if (mainMenu != null && FindMainMenuItem(commands, mainMenu) == null)
                {
                    var provider = new GitSolutionFileProvider(commands.GitModule.WorkingDir, commands.GitModule.GitExecutable);

                    mainMenu.Items.Add(new SolutionListMenuItem(provider, Configuration));
                }
            }
        }
예제 #5
0
 private void ComboBox_DropDownClosed(object sender, EventArgs e)
 {
     MenuStripEx.PopMenuActivate();
     this.comboBox.Items.Clear();
     OnClosed();
 }
예제 #6
0
 private void ComboBox_DropDown(object sender, EventArgs e)
 {
     MenuStripEx.PushMenuActivate();
 }
예제 #7
0
파일: MainForm.cs 프로젝트: kaaLabs15/LoRa
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
     this.ssMainStatus = new System.Windows.Forms.StatusStrip();
     this.tsLblVersion = new System.Windows.Forms.ToolStripStatusLabel();
     this.tsVersion = new System.Windows.Forms.ToolStripStatusLabel();
     this.tsLblSeparator1 = new System.Windows.Forms.ToolStripStatusLabel();
     this.tsLblFwVersion = new System.Windows.Forms.ToolStripStatusLabel();
     this.tsFwVersion = new System.Windows.Forms.ToolStripStatusLabel();
     this.tsBtnFwUpdate = new System.Windows.Forms.ToolStripButton();
     this.tsLblSeparator2 = new System.Windows.Forms.ToolStripStatusLabel();
     this.tsLblChipVersion = new System.Windows.Forms.ToolStripStatusLabel();
     this.tsChipVersion = new System.Windows.Forms.ToolStripStatusLabel();
     this.tsLblSeparator3 = new System.Windows.Forms.ToolStripStatusLabel();
     this.tsLblConfigFileName = new System.Windows.Forms.ToolStripStatusLabel();
     this.tsLblSeparator4 = new System.Windows.Forms.ToolStripStatusLabel();
     this.tsLblConnectionStatus = new System.Windows.Forms.ToolStripStatusLabel();
     this.ledStatus = new SemtechLib.Controls.ToolStripLed();
     this.tsLblStatus = new System.Windows.Forms.ToolStripStatusLabel();
     this.ssMainStatus1 = new System.Windows.Forms.StatusStrip();
     this.msMainMenu = new SemtechLib.Controls.MenuStripEx();
     this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.connectToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.mFileSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.btnOpenConfig = new System.Windows.Forms.ToolStripMenuItem();
     this.btnSaveConfig = new System.Windows.Forms.ToolStripMenuItem();
     this.btnSaveAsConfig = new System.Windows.Forms.ToolStripMenuItem();
     this.mFileSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.actionToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.modemToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.miModemFSK = new System.Windows.Forms.ToolStripMenuItem();
     this.miModemLoRa = new System.Windows.Forms.ToolStripMenuItem();
     this.resetToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.refreshToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.showRegistersToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.monitorToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.monitorOffToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.monitorOnToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.startuptimeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.rssiAnalyserToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.spectrumAnalyserToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.showHelpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.mHelpSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.usersGuideToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.mHelpSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.tsBtnRefresh = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
     this.ofConfigFileOpenDlg = new System.Windows.Forms.OpenFileDialog();
     this.sfConfigFileSaveDlg = new System.Windows.Forms.SaveFileDialog();
     this.tipMainForm = new System.Windows.Forms.ToolTip(this.components);
     this.toolStripContainer1 = new System.Windows.Forms.ToolStripContainer();
     this.tsActionToolbar = new SemtechLib.Controls.ToolStripEx();
     this.tsBtnOpenFile = new System.Windows.Forms.ToolStripButton();
     this.tsBtnSaveFile = new System.Windows.Forms.ToolStripButton();
     this.tbFileSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.btnOpenDevice = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator7 = new System.Windows.Forms.ToolStripSeparator();
     this.tsLblModem = new System.Windows.Forms.ToolStripLabel();
     this.tsModemLoRa = new System.Windows.Forms.ToolStripButton();
     this.tsModemFSK = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator();
     this.tsBtnReset = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.tsBtnStartupTime = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.tsBtnShowRegisters = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
     this.tsLblMonitor = new System.Windows.Forms.ToolStripLabel();
     this.tsBtnMonitorOn = new System.Windows.Forms.ToolStripButton();
     this.tsBtnMonitorOff = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator6 = new System.Windows.Forms.ToolStripSeparator();
     this.tsBtnShowHelp = new System.Windows.Forms.ToolStripButton();
     this.tsSeparatorPerModeOn = new System.Windows.Forms.ToolStripSeparator();
     this.tsLblPerModeOn = new System.Windows.Forms.ToolStripLabel();
     this.tsSeparatorDebugOn = new System.Windows.Forms.ToolStripSeparator();
     this.tsLblDebugOn = new System.Windows.Forms.ToolStripLabel();
     this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
     this.ssMainStatus.SuspendLayout();
     this.ssMainStatus1.SuspendLayout();
     this.msMainMenu.SuspendLayout();
     this.toolStripContainer1.BottomToolStripPanel.SuspendLayout();
     this.toolStripContainer1.TopToolStripPanel.SuspendLayout();
     this.toolStripContainer1.SuspendLayout();
     this.tsActionToolbar.SuspendLayout();
     this.SuspendLayout();
     //
     // ssMainStatus
     //
     this.ssMainStatus.Dock = System.Windows.Forms.DockStyle.None;
     this.ssMainStatus.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.tsLblVersion,
     this.tsVersion,
     this.tsLblSeparator1,
     this.tsLblFwVersion,
     this.tsFwVersion,
     this.tsBtnFwUpdate,
     this.tsLblSeparator2,
     this.tsLblChipVersion,
     this.tsChipVersion,
     this.tsLblSeparator3,
     this.tsLblConfigFileName,
     this.tsLblSeparator4,
     this.tsLblConnectionStatus,
     this.ledStatus});
     this.ssMainStatus.Location = new System.Drawing.Point(0, 22);
     this.ssMainStatus.Name = "ssMainStatus";
     this.ssMainStatus.ShowItemToolTips = true;
     this.ssMainStatus.Size = new System.Drawing.Size(1008, 22);
     this.ssMainStatus.SizingGrip = false;
     this.ssMainStatus.TabIndex = 3;
     this.ssMainStatus.Text = "Main status";
     //
     // tsLblVersion
     //
     this.tsLblVersion.Margin = new System.Windows.Forms.Padding(3, 3, 0, 3);
     this.tsLblVersion.Name = "tsLblVersion";
     this.tsLblVersion.Size = new System.Drawing.Size(49, 16);
     this.tsLblVersion.Text = "Version:";
     //
     // tsVersion
     //
     this.tsVersion.AutoSize = false;
     this.tsVersion.Margin = new System.Windows.Forms.Padding(0, 3, 3, 3);
     this.tsVersion.Name = "tsVersion";
     this.tsVersion.Size = new System.Drawing.Size(48, 16);
     this.tsVersion.Text = "-";
     //
     // tsLblSeparator1
     //
     this.tsLblSeparator1.Margin = new System.Windows.Forms.Padding(3);
     this.tsLblSeparator1.Name = "tsLblSeparator1";
     this.tsLblSeparator1.Size = new System.Drawing.Size(10, 16);
     this.tsLblSeparator1.Text = "|";
     //
     // tsLblFwVersion
     //
     this.tsLblFwVersion.Margin = new System.Windows.Forms.Padding(3, 3, 0, 3);
     this.tsLblFwVersion.Name = "tsLblFwVersion";
     this.tsLblFwVersion.Size = new System.Drawing.Size(101, 16);
     this.tsLblFwVersion.Text = "Firmware Version:";
     //
     // tsFwVersion
     //
     this.tsFwVersion.AutoSize = false;
     this.tsFwVersion.Margin = new System.Windows.Forms.Padding(0, 3, 3, 3);
     this.tsFwVersion.Name = "tsFwVersion";
     this.tsFwVersion.Size = new System.Drawing.Size(48, 16);
     this.tsFwVersion.Text = "-";
     //
     // tsBtnFwUpdate
     //
     this.tsBtnFwUpdate.Name = "tsBtnFwUpdate";
     this.tsBtnFwUpdate.Size = new System.Drawing.Size(23, 20);
     //
     // tsLblSeparator2
     //
     this.tsLblSeparator2.Margin = new System.Windows.Forms.Padding(3);
     this.tsLblSeparator2.Name = "tsLblSeparator2";
     this.tsLblSeparator2.Size = new System.Drawing.Size(10, 16);
     this.tsLblSeparator2.Text = "|";
     //
     // tsLblChipVersion
     //
     this.tsLblChipVersion.Margin = new System.Windows.Forms.Padding(3, 3, 0, 3);
     this.tsLblChipVersion.Name = "tsLblChipVersion";
     this.tsLblChipVersion.Size = new System.Drawing.Size(76, 16);
     this.tsLblChipVersion.Text = "Chip version:";
     //
     // tsChipVersion
     //
     this.tsChipVersion.AutoSize = false;
     this.tsChipVersion.Margin = new System.Windows.Forms.Padding(0, 3, 3, 3);
     this.tsChipVersion.Name = "tsChipVersion";
     this.tsChipVersion.Size = new System.Drawing.Size(48, 16);
     this.tsChipVersion.Text = "-";
     //
     // tsLblSeparator3
     //
     this.tsLblSeparator3.Margin = new System.Windows.Forms.Padding(3);
     this.tsLblSeparator3.Name = "tsLblSeparator3";
     this.tsLblSeparator3.Size = new System.Drawing.Size(10, 16);
     this.tsLblSeparator3.Text = "|";
     //
     // tsLblConfigFileName
     //
     this.tsLblConfigFileName.AutoToolTip = true;
     this.tsLblConfigFileName.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.tsLblConfigFileName.Margin = new System.Windows.Forms.Padding(3);
     this.tsLblConfigFileName.Name = "tsLblConfigFileName";
     this.tsLblConfigFileName.Size = new System.Drawing.Size(379, 16);
     this.tsLblConfigFileName.Spring = true;
     this.tsLblConfigFileName.Text = "Config File:";
     this.tsLblConfigFileName.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.tsLblConfigFileName.ToolTipText = "Shows the active Config file when File-> Open/Save is used";
     //
     // tsLblSeparator4
     //
     this.tsLblSeparator4.Margin = new System.Windows.Forms.Padding(3);
     this.tsLblSeparator4.Name = "tsLblSeparator4";
     this.tsLblSeparator4.Size = new System.Drawing.Size(10, 16);
     this.tsLblSeparator4.Text = "|";
     //
     // tsLblConnectionStatus
     //
     this.tsLblConnectionStatus.Margin = new System.Windows.Forms.Padding(3);
     this.tsLblConnectionStatus.Name = "tsLblConnectionStatus";
     this.tsLblConnectionStatus.Size = new System.Drawing.Size(106, 16);
     this.tsLblConnectionStatus.Text = "Connection status:";
     //
     // ledStatus
     //
     this.ledStatus.BackColor = System.Drawing.Color.Transparent;
     this.ledStatus.Checked = false;
     this.ledStatus.LedAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.ledStatus.LedColor = System.Drawing.Color.Green;
     this.ledStatus.LedSize = new System.Drawing.Size(11, 11);
     this.ledStatus.Margin = new System.Windows.Forms.Padding(3);
     this.ledStatus.Name = "ledStatus";
     this.ledStatus.Size = new System.Drawing.Size(15, 16);
     this.ledStatus.Text = "Connection status";
     //
     // tsLblStatus
     //
     this.tsLblStatus.Margin = new System.Windows.Forms.Padding(3);
     this.tsLblStatus.Name = "tsLblStatus";
     this.tsLblStatus.Size = new System.Drawing.Size(12, 16);
     this.tsLblStatus.Text = "-";
     this.tsLblStatus.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.tsLblStatus.ToolTipText = "Shows SKA messages.";
     //
     // ssMainStatus1
     //
     this.ssMainStatus1.Dock = System.Windows.Forms.DockStyle.None;
     this.ssMainStatus1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.tsLblStatus});
     this.ssMainStatus1.Location = new System.Drawing.Point(0, 0);
     this.ssMainStatus1.Name = "ssMainStatus1";
     this.ssMainStatus1.ShowItemToolTips = true;
     this.ssMainStatus1.Size = new System.Drawing.Size(1008, 22);
     this.ssMainStatus1.SizingGrip = false;
     this.ssMainStatus1.TabIndex = 3;
     this.ssMainStatus1.Text = "Main status 1";
     //
     // msMainMenu
     //
     this.msMainMenu.ClickThrough = true;
     this.msMainMenu.Dock = System.Windows.Forms.DockStyle.None;
     this.msMainMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.fileToolStripMenuItem,
     this.actionToolStripMenuItem,
     this.toolsToolStripMenuItem,
     this.helpToolStripMenuItem});
     this.msMainMenu.Location = new System.Drawing.Point(0, 0);
     this.msMainMenu.Name = "msMainMenu";
     this.msMainMenu.Size = new System.Drawing.Size(1008, 24);
     this.msMainMenu.SuppressHighlighting = false;
     this.msMainMenu.TabIndex = 0;
     this.msMainMenu.Text = "File";
     //
     // fileToolStripMenuItem
     //
     this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.connectToolStripMenuItem,
     this.mFileSeparator1,
     this.btnOpenConfig,
     this.btnSaveConfig,
     this.btnSaveAsConfig,
     this.mFileSeparator2,
     this.exitToolStripMenuItem});
     this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
     this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
     this.fileToolStripMenuItem.Text = "&File";
     //
     // connectToolStripMenuItem
     //
     this.connectToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("connectToolStripMenuItem.Image")));
     this.connectToolStripMenuItem.Name = "connectToolStripMenuItem";
     this.connectToolStripMenuItem.Size = new System.Drawing.Size(162, 22);
     this.connectToolStripMenuItem.Text = "&Connect";
     this.connectToolStripMenuItem.Visible = false;
     this.connectToolStripMenuItem.Click += new System.EventHandler(this.btnOpenDevice_Click);
     //
     // mFileSeparator1
     //
     this.mFileSeparator1.Name = "mFileSeparator1";
     this.mFileSeparator1.Size = new System.Drawing.Size(159, 6);
     this.mFileSeparator1.Visible = false;
     //
     // btnOpenConfig
     //
     this.btnOpenConfig.Enabled = false;
     this.btnOpenConfig.Image = ((System.Drawing.Image)(resources.GetObject("loadToolStripMenuItem.Image")));
     this.btnOpenConfig.Name = "btnOpenConfig";
     this.btnOpenConfig.Size = new System.Drawing.Size(162, 22);
     this.btnOpenConfig.Text = "&Open Config...";
     this.btnOpenConfig.Click += new System.EventHandler(this.btnOpenConfig_Click);
     //
     // btnSaveConfig
     //
     this.btnSaveConfig.Enabled = false;
     this.btnSaveConfig.Image = ((System.Drawing.Image)(resources.GetObject("saveToolStripMenuItem.Image")));
     this.btnSaveConfig.Name = "btnSaveConfig";
     this.btnSaveConfig.Size = new System.Drawing.Size(162, 22);
     this.btnSaveConfig.Text = "&Save Config";
     this.btnSaveConfig.Click += new System.EventHandler(this.btnSaveConfig_Click);
     //
     // btnSaveAsConfig
     //
     this.btnSaveAsConfig.Enabled = false;
     this.btnSaveAsConfig.Image = ((System.Drawing.Image)(resources.GetObject("saveAsToolStripMenuItem.Image")));
     this.btnSaveAsConfig.Name = "btnSaveAsConfig";
     this.btnSaveAsConfig.Size = new System.Drawing.Size(162, 22);
     this.btnSaveAsConfig.Text = "Save Config &As...";
     this.btnSaveAsConfig.Click += new System.EventHandler(this.btnSaveAsConfig_Click);
     //
     // mFileSeparator2
     //
     this.mFileSeparator2.Name = "mFileSeparator2";
     this.mFileSeparator2.Size = new System.Drawing.Size(159, 6);
     //
     // exitToolStripMenuItem
     //
     this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
     this.exitToolStripMenuItem.Size = new System.Drawing.Size(162, 22);
     this.exitToolStripMenuItem.Text = "&Exit";
     this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
     //
     // actionToolStripMenuItem
     //
     this.actionToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.modemToolStripMenuItem,
     this.resetToolStripMenuItem,
     this.refreshToolStripMenuItem,
     this.showRegistersToolStripMenuItem,
     this.monitorToolStripMenuItem,
     this.startuptimeToolStripMenuItem});
     this.actionToolStripMenuItem.Name = "actionToolStripMenuItem";
     this.actionToolStripMenuItem.Size = new System.Drawing.Size(54, 20);
     this.actionToolStripMenuItem.Text = "&Action";
     //
     // modemToolStripMenuItem
     //
     this.modemToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.miModemFSK,
     this.miModemLoRa});
     this.modemToolStripMenuItem.Enabled = false;
     this.modemToolStripMenuItem.Name = "modemToolStripMenuItem";
     this.modemToolStripMenuItem.Size = new System.Drawing.Size(150, 22);
     this.modemToolStripMenuItem.Text = "M&odem";
     //
     // modemFskToolStripMenuItem
     //
     this.miModemFSK.Name = "modemFskToolStripMenuItem";
     this.miModemFSK.Size = new System.Drawing.Size(100, 22);
     this.miModemFSK.Text = "FSK";
     this.miModemFSK.Click += new System.EventHandler(this.modemToolStripMenuItem_Click);
     //
     // modemLoRaToolStripMenuItem
     //
     this.miModemLoRa.Checked = true;
     this.miModemLoRa.CheckState = System.Windows.Forms.CheckState.Checked;
     this.miModemLoRa.Name = "modemLoRaToolStripMenuItem";
     this.miModemLoRa.Size = new System.Drawing.Size(100, 22);
     this.miModemLoRa.Text = "&LoRa";
     this.miModemLoRa.Click += new System.EventHandler(this.modemToolStripMenuItem_Click);
     //
     // resetToolStripMenuItem
     //
     this.resetToolStripMenuItem.Enabled = false;
     this.resetToolStripMenuItem.Name = "resetToolStripMenuItem";
     this.resetToolStripMenuItem.Size = new System.Drawing.Size(150, 22);
     this.resetToolStripMenuItem.Text = "R&eset";
     this.resetToolStripMenuItem.Click += new System.EventHandler(this.resetToolStripMenuItem_Click);
     //
     // refreshToolStripMenuItem
     //
     this.refreshToolStripMenuItem.Enabled = false;
     this.refreshToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("refreshToolStripMenuItem.Image")));
     this.refreshToolStripMenuItem.Name = "refreshToolStripMenuItem";
     this.refreshToolStripMenuItem.Size = new System.Drawing.Size(150, 22);
     this.refreshToolStripMenuItem.Text = "&Refresh";
     this.refreshToolStripMenuItem.Click += new System.EventHandler(this.refreshToolStripMenuItem_Click);
     //
     // showRegistersToolStripMenuItem
     //
     this.showRegistersToolStripMenuItem.Enabled = false;
     this.showRegistersToolStripMenuItem.Name = "showRegistersToolStripMenuItem";
     this.showRegistersToolStripMenuItem.Size = new System.Drawing.Size(150, 22);
     this.showRegistersToolStripMenuItem.Text = "&Show registers";
     this.showRegistersToolStripMenuItem.Click += new System.EventHandler(this.showRegistersToolStripMenuItem_Click);
     //
     // monitorToolStripMenuItem
     //
     this.monitorToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.monitorOffToolStripMenuItem,
     this.monitorOnToolStripMenuItem});
     this.monitorToolStripMenuItem.Enabled = false;
     this.monitorToolStripMenuItem.Name = "monitorToolStripMenuItem";
     this.monitorToolStripMenuItem.Size = new System.Drawing.Size(150, 22);
     this.monitorToolStripMenuItem.Text = "&Monitor";
     //
     // monitorOffToolStripMenuItem
     //
     this.monitorOffToolStripMenuItem.Name = "monitorOffToolStripMenuItem";
     this.monitorOffToolStripMenuItem.Size = new System.Drawing.Size(95, 22);
     this.monitorOffToolStripMenuItem.Text = "OFF";
     this.monitorOffToolStripMenuItem.Click += new System.EventHandler(this.monitorToolStripMenuItem_Click);
     //
     // monitorOnToolStripMenuItem
     //
     this.monitorOnToolStripMenuItem.Checked = true;
     this.monitorOnToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
     this.monitorOnToolStripMenuItem.Name = "monitorOnToolStripMenuItem";
     this.monitorOnToolStripMenuItem.Size = new System.Drawing.Size(95, 22);
     this.monitorOnToolStripMenuItem.Text = "&ON";
     this.monitorOnToolStripMenuItem.Click += new System.EventHandler(this.monitorToolStripMenuItem_Click);
     //
     // startuptimeToolStripMenuItem
     //
     this.startuptimeToolStripMenuItem.Enabled = false;
     this.startuptimeToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("startuptimeToolStripMenuItem.Image")));
     this.startuptimeToolStripMenuItem.Name = "startuptimeToolStripMenuItem";
     this.startuptimeToolStripMenuItem.Size = new System.Drawing.Size(150, 22);
     this.startuptimeToolStripMenuItem.Text = "Startup &time...";
     this.startuptimeToolStripMenuItem.Click += new System.EventHandler(this.startuptimeToolStripMenuItem_Click);
     //
     // toolsToolStripMenuItem
     //
     this.toolsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.rssiAnalyserToolStripMenuItem,
     this.spectrumAnalyserToolStripMenuItem});
     this.toolsToolStripMenuItem.Name = "toolsToolStripMenuItem";
     this.toolsToolStripMenuItem.Size = new System.Drawing.Size(48, 20);
     this.toolsToolStripMenuItem.Text = "Tools";
     //
     // rssiAnalyserToolStripMenuItem
     //
     this.rssiAnalyserToolStripMenuItem.Enabled = false;
     this.rssiAnalyserToolStripMenuItem.Name = "rssiAnalyserToolStripMenuItem";
     this.rssiAnalyserToolStripMenuItem.Size = new System.Drawing.Size(171, 22);
     this.rssiAnalyserToolStripMenuItem.Text = "RSSI analyser";
     this.rssiAnalyserToolStripMenuItem.Click += new System.EventHandler(this.rssiAnalyserToolStripMenuItem_Click);
     //
     // spectrumAnalyserToolStripMenuItem
     //
     this.spectrumAnalyserToolStripMenuItem.Enabled = false;
     this.spectrumAnalyserToolStripMenuItem.Name = "spectrumAnalyserToolStripMenuItem";
     this.spectrumAnalyserToolStripMenuItem.Size = new System.Drawing.Size(171, 22);
     this.spectrumAnalyserToolStripMenuItem.Text = "Spectrum analyser";
     this.spectrumAnalyserToolStripMenuItem.Click += new System.EventHandler(this.spectrumAnalyserToolStripMenuItem_Click);
     //
     // helpToolStripMenuItem
     //
     this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.showHelpToolStripMenuItem,
     this.mHelpSeparator1,
     this.usersGuideToolStripMenuItem,
     this.mHelpSeparator2,
     this.aboutToolStripMenuItem});
     this.helpToolStripMenuItem.Name = "helpToolStripMenuItem";
     this.helpToolStripMenuItem.Size = new System.Drawing.Size(44, 20);
     this.helpToolStripMenuItem.Text = "&Help";
     //
     // showHelpToolStripMenuItem
     //
     this.showHelpToolStripMenuItem.Enabled = false;
     this.showHelpToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("showHelpToolStripMenuItem.Image")));
     this.showHelpToolStripMenuItem.Name = "showHelpToolStripMenuItem";
     this.showHelpToolStripMenuItem.Size = new System.Drawing.Size(231, 22);
     this.showHelpToolStripMenuItem.Text = "Help";
     this.showHelpToolStripMenuItem.Click += new System.EventHandler(this.showHelpToolStripMenuItem_Click);
     //
     // mHelpSeparator1
     //
     this.mHelpSeparator1.Name = "mHelpSeparator1";
     this.mHelpSeparator1.Size = new System.Drawing.Size(228, 6);
     //
     // usersGuideToolStripMenuItem
     //
     this.usersGuideToolStripMenuItem.Name = "usersGuideToolStripMenuItem";
     this.usersGuideToolStripMenuItem.Size = new System.Drawing.Size(231, 22);
     this.usersGuideToolStripMenuItem.Text = "&User\'s Guide...";
     this.usersGuideToolStripMenuItem.Click += new System.EventHandler(this.usersGuideToolStripMenuItem_Click);
     //
     // mHelpSeparator2
     //
     this.mHelpSeparator2.Name = "mHelpSeparator2";
     this.mHelpSeparator2.Size = new System.Drawing.Size(228, 6);
     //
     // aboutToolStripMenuItem
     //
     this.aboutToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("aboutToolStripMenuItem.Image")));
     this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem";
     this.aboutToolStripMenuItem.Size = new System.Drawing.Size(231, 22);
     this.aboutToolStripMenuItem.Text = "&About SX1276 Evaluation Kit...";
     this.aboutToolStripMenuItem.Click += new System.EventHandler(this.aboutToolStripMenuItem_Click);
     //
     // tsBtnRefresh
     //
     this.tsBtnRefresh.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.tsBtnRefresh.Image = ((System.Drawing.Image)(resources.GetObject("tsBtnRefresh.Image")));
     this.tsBtnRefresh.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.tsBtnRefresh.Name = "tsBtnRefresh";
     this.tsBtnRefresh.Size = new System.Drawing.Size(23, 22);
     this.tsBtnRefresh.Text = "Refresh";
     this.tsBtnRefresh.Click += new System.EventHandler(this.refreshToolStripMenuItem_Click);
     //
     // toolStripSeparator3
     //
     this.toolStripSeparator3.Name = "toolStripSeparator3";
     this.toolStripSeparator3.Size = new System.Drawing.Size(6, 25);
     //
     // ofConfigFileOpenDlg
     //
     this.ofConfigFileOpenDlg.DefaultExt = "*.cfg";
     this.ofConfigFileOpenDlg.Filter = "Config Files(*.cfg)|*.cfg|AllFiles(*.*)|*.*";
     //
     // sfConfigFileSaveDlg
     //
     this.sfConfigFileSaveDlg.DefaultExt = "*.cfg";
     this.sfConfigFileSaveDlg.Filter = "Config Files(*.cfg)|*.cfg|AllFiles(*.*)|*.*";
     //
     // tipMainForm
     //
     this.tipMainForm.ShowAlways = true;
     //
     // toolStripContainer1
     //
     //
     // toolStripContainer1.BottomToolStripPanel
     //
     this.toolStripContainer1.BottomToolStripPanel.Controls.Add(this.ssMainStatus1);
     this.toolStripContainer1.BottomToolStripPanel.Controls.Add(this.ssMainStatus);
     this.toolStripContainer1.BottomToolStripPanel.MaximumSize = new System.Drawing.Size(0, 44);
     //
     // toolStripContainer1.ContentPanel
     //
     this.toolStripContainer1.ContentPanel.AutoScroll = true;
     this.toolStripContainer1.ContentPanel.Size = new System.Drawing.Size(1008, 524);
     this.toolStripContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.toolStripContainer1.LeftToolStripPanelVisible = false;
     this.toolStripContainer1.Location = new System.Drawing.Point(0, 0);
     this.toolStripContainer1.Name = "toolStripContainer1";
     this.toolStripContainer1.RightToolStripPanelVisible = false;
     this.toolStripContainer1.Size = new System.Drawing.Size(1008, 618);
     this.toolStripContainer1.TabIndex = 0;
     this.toolStripContainer1.Text = "toolStripContainer1";
     //
     // toolStripContainer1.TopToolStripPanel
     //
     this.toolStripContainer1.TopToolStripPanel.Controls.Add(this.msMainMenu);
     this.toolStripContainer1.TopToolStripPanel.Controls.Add(this.tsActionToolbar);
     this.toolStripContainer1.TopToolStripPanel.MaximumSize = new System.Drawing.Size(0, 50);
     //
     // tsActionToolbar
     //
     this.tsActionToolbar.ClickThrough = true;
     this.tsActionToolbar.Dock = System.Windows.Forms.DockStyle.None;
     this.tsActionToolbar.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
     this.tsActionToolbar.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.tsBtnOpenFile,
     this.tsBtnSaveFile,
     this.tbFileSeparator1,
     this.btnOpenDevice,
     this.toolStripSeparator7,
     this.tsLblModem,
     this.tsModemLoRa,
     this.tsModemFSK,
     this.toolStripSeparator5,
     this.tsBtnReset,
     this.toolStripSeparator1,
     this.tsBtnRefresh,
     this.tsBtnStartupTime,
     this.toolStripSeparator2,
     this.tsBtnShowRegisters,
     this.toolStripSeparator4,
     this.tsLblMonitor,
     this.tsBtnMonitorOn,
     this.tsBtnMonitorOff,
     this.toolStripSeparator6,
     this.tsBtnShowHelp,
     this.tsSeparatorPerModeOn,
     this.tsLblPerModeOn,
     this.tsSeparatorDebugOn,
     this.tsLblDebugOn});
     this.tsActionToolbar.LayoutStyle = System.Windows.Forms.ToolStripLayoutStyle.HorizontalStackWithOverflow;
     this.tsActionToolbar.Location = new System.Drawing.Point(3, 24);
     this.tsActionToolbar.Name = "tsActionToolbar";
     this.tsActionToolbar.Size = new System.Drawing.Size(698, 25);
     this.tsActionToolbar.SuppressHighlighting = false;
     this.tsActionToolbar.TabIndex = 2;
     this.tsActionToolbar.Text = "Action";
     //
     // tsBtnOpenFile
     //
     this.tsBtnOpenFile.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.tsBtnOpenFile.Enabled = false;
     this.tsBtnOpenFile.Image = ((System.Drawing.Image)(resources.GetObject("tsBtnOpenFile.Image")));
     this.tsBtnOpenFile.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.tsBtnOpenFile.Name = "tsBtnOpenFile";
     this.tsBtnOpenFile.Size = new System.Drawing.Size(23, 22);
     this.tsBtnOpenFile.Text = "Open Config file";
     this.tsBtnOpenFile.Click += new System.EventHandler(this.btnOpenConfig_Click);
     //
     // tsBtnSaveFile
     //
     this.tsBtnSaveFile.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.tsBtnSaveFile.Enabled = false;
     this.tsBtnSaveFile.Image = ((System.Drawing.Image)(resources.GetObject("tsBtnSaveFile.Image")));
     this.tsBtnSaveFile.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.tsBtnSaveFile.Name = "tsBtnSaveFile";
     this.tsBtnSaveFile.Size = new System.Drawing.Size(23, 22);
     this.tsBtnSaveFile.Text = "Save Config file";
     this.tsBtnSaveFile.Click += new System.EventHandler(this.btnSaveConfig_Click);
     //
     // tbFileSeparator1
     //
     this.tbFileSeparator1.Name = "tbFileSeparator1";
     this.tbFileSeparator1.Size = new System.Drawing.Size(6, 25);
     //
     // btnOpenDevice
     //
     this.btnOpenDevice.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btnOpenDevice.Image = ((System.Drawing.Image)(resources.GetObject("tsBtnOpenDevice.Image")));
     this.btnOpenDevice.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnOpenDevice.Name = "btnOpenDevice";
     this.btnOpenDevice.Size = new System.Drawing.Size(23, 22);
     this.btnOpenDevice.Text = "Connect";
     this.btnOpenDevice.Click += new System.EventHandler(this.btnOpenDevice_Click);
     //
     // toolStripSeparator7
     //
     this.toolStripSeparator7.Name = "toolStripSeparator7";
     this.toolStripSeparator7.Size = new System.Drawing.Size(6, 25);
     //
     // tsLblModem
     //
     this.tsLblModem.Name = "tsLblModem";
     this.tsLblModem.Size = new System.Drawing.Size(52, 22);
     this.tsLblModem.Text = "Modem:";
     //
     // tsBtnModemLoRa
     //
     this.tsModemLoRa.Checked = true;
     this.tsModemLoRa.CheckState = System.Windows.Forms.CheckState.Checked;
     this.tsModemLoRa.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.tsModemLoRa.Image = ((System.Drawing.Image)(resources.GetObject("tsBtnModemLoRa.Image")));
     this.tsModemLoRa.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.tsModemLoRa.Name = "tsBtnModemLoRa";
     this.tsModemLoRa.Size = new System.Drawing.Size(37, 22);
     this.tsModemLoRa.Text = "LoRa";
     this.tsModemLoRa.ToolTipText = "Enables the SX1276 LoRa modem";
     this.tsModemLoRa.Click += new System.EventHandler(this.modemToolStripMenuItem_Click);
     //
     // tsBtnModemFsk
     //
     this.tsModemFSK.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.tsModemFSK.Image = ((System.Drawing.Image)(resources.GetObject("tsBtnModemFsk.Image")));
     this.tsModemFSK.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.tsModemFSK.Name = "tsBtnModemFsk";
     this.tsModemFSK.Size = new System.Drawing.Size(30, 22);
     this.tsModemFSK.Text = "FSK";
     this.tsModemFSK.ToolTipText = "Enables the SX1276 FSK modem";
     this.tsModemFSK.Click += new System.EventHandler(this.modemToolStripMenuItem_Click);
     //
     // toolStripSeparator5
     //
     this.toolStripSeparator5.Name = "toolStripSeparator5";
     this.toolStripSeparator5.Size = new System.Drawing.Size(6, 25);
     //
     // tsBtnReset
     //
     this.tsBtnReset.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.tsBtnReset.Image = ((System.Drawing.Image)(resources.GetObject("tsBtnReset.Image")));
     this.tsBtnReset.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.tsBtnReset.Name = "tsBtnReset";
     this.tsBtnReset.Size = new System.Drawing.Size(39, 22);
     this.tsBtnReset.Text = "Reset";
     this.tsBtnReset.Click += new System.EventHandler(this.resetToolStripMenuItem_Click);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25);
     //
     // tsBtnStartupTime
     //
     this.tsBtnStartupTime.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.tsBtnStartupTime.Image = ((System.Drawing.Image)(resources.GetObject("tsBtnStartupTime.Image")));
     this.tsBtnStartupTime.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.tsBtnStartupTime.Name = "tsBtnStartupTime";
     this.tsBtnStartupTime.Size = new System.Drawing.Size(23, 22);
     this.tsBtnStartupTime.Text = "Startup time";
     this.tsBtnStartupTime.Click += new System.EventHandler(this.startuptimeToolStripMenuItem_Click);
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(6, 25);
     //
     // tsBtnShowRegisters
     //
     this.tsBtnShowRegisters.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.tsBtnShowRegisters.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.tsBtnShowRegisters.Image = ((System.Drawing.Image)(resources.GetObject("tsBtnShowRegisters.Image")));
     this.tsBtnShowRegisters.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.tsBtnShowRegisters.Name = "tsBtnShowRegisters";
     this.tsBtnShowRegisters.Size = new System.Drawing.Size(33, 22);
     this.tsBtnShowRegisters.Text = "Reg";
     this.tsBtnShowRegisters.ToolTipText = "Displays SX1276 raw registers window";
     this.tsBtnShowRegisters.Click += new System.EventHandler(this.showRegistersToolStripMenuItem_Click);
     //
     // toolStripSeparator4
     //
     this.toolStripSeparator4.Name = "toolStripSeparator4";
     this.toolStripSeparator4.Size = new System.Drawing.Size(6, 25);
     //
     // tsLblMonitor
     //
     this.tsLblMonitor.Name = "tsLblMonitor";
     this.tsLblMonitor.Size = new System.Drawing.Size(53, 22);
     this.tsLblMonitor.Text = "Monitor:";
     //
     // tsBtnMonitorOn
     //
     this.tsBtnMonitorOn.Checked = true;
     this.tsBtnMonitorOn.CheckState = System.Windows.Forms.CheckState.Checked;
     this.tsBtnMonitorOn.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.tsBtnMonitorOn.Image = ((System.Drawing.Image)(resources.GetObject("tsBtnMonitorOn.Image")));
     this.tsBtnMonitorOn.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.tsBtnMonitorOn.Name = "tsBtnMonitorOn";
     this.tsBtnMonitorOn.Size = new System.Drawing.Size(29, 22);
     this.tsBtnMonitorOn.Text = "ON";
     this.tsBtnMonitorOn.ToolTipText = "Enables the SX1276 monitor mode";
     this.tsBtnMonitorOn.Click += new System.EventHandler(this.monitorToolStripMenuItem_Click);
     //
     // tsBtnMonitorOff
     //
     this.tsBtnMonitorOff.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.tsBtnMonitorOff.Image = ((System.Drawing.Image)(resources.GetObject("tsBtnMonitorOff.Image")));
     this.tsBtnMonitorOff.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.tsBtnMonitorOff.Name = "tsBtnMonitorOff";
     this.tsBtnMonitorOff.Size = new System.Drawing.Size(32, 22);
     this.tsBtnMonitorOff.Text = "OFF";
     this.tsBtnMonitorOff.ToolTipText = "Disables the SX1276 monitor mode";
     this.tsBtnMonitorOff.Click += new System.EventHandler(this.monitorToolStripMenuItem_Click);
     //
     // toolStripSeparator6
     //
     this.toolStripSeparator6.Name = "toolStripSeparator6";
     this.toolStripSeparator6.Size = new System.Drawing.Size(6, 25);
     //
     // tsBtnShowHelp
     //
     this.tsBtnShowHelp.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.tsBtnShowHelp.Enabled = false;
     this.tsBtnShowHelp.Image = ((System.Drawing.Image)(resources.GetObject("tsBtnShowHelp.Image")));
     this.tsBtnShowHelp.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.tsBtnShowHelp.Name = "tsBtnShowHelp";
     this.tsBtnShowHelp.Size = new System.Drawing.Size(23, 22);
     this.tsBtnShowHelp.Text = "Help";
     this.tsBtnShowHelp.Click += new System.EventHandler(this.showHelpToolStripMenuItem_Click);
     //
     // tsSeparatorPerModeOn
     //
     this.tsSeparatorPerModeOn.Name = "tsSeparatorPerModeOn";
     this.tsSeparatorPerModeOn.Size = new System.Drawing.Size(6, 25);
     this.tsSeparatorPerModeOn.Visible = false;
     //
     // tsLblPerModeOn
     //
     this.tsLblPerModeOn.ForeColor = System.Drawing.Color.Red;
     this.tsLblPerModeOn.Name = "tsLblPerModeOn";
     this.tsLblPerModeOn.Size = new System.Drawing.Size(82, 22);
     this.tsLblPerModeOn.Text = "PER mode ON";
     this.tsLblPerModeOn.Visible = false;
     //
     // tsSeparatorDebugOn
     //
     this.tsSeparatorDebugOn.Name = "tsSeparatorDebugOn";
     this.tsSeparatorDebugOn.Size = new System.Drawing.Size(6, 25);
     this.tsSeparatorDebugOn.Visible = false;
     //
     // tsLblDebugOn
     //
     this.tsLblDebugOn.ForeColor = System.Drawing.Color.Red;
     this.tsLblDebugOn.Name = "tsLblDebugOn";
     this.tsLblDebugOn.Size = new System.Drawing.Size(85, 22);
     this.tsLblDebugOn.Text = "DBG mode ON";
     this.tsLblDebugOn.Visible = false;
     //
     // toolStripLabel1
     //
     this.toolStripLabel1.Name = "toolStripLabel1";
     this.toolStripLabel1.Size = new System.Drawing.Size(62, 22);
     this.toolStripLabel1.Text = "Product ID:";
     //
     // MainForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1008, 618);
     this.Controls.Add(this.toolStripContainer1);
     this.DoubleBuffered = true;
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.KeyPreview = true;
     this.MainMenuStrip = this.msMainMenu;
     this.MaximizeBox = false;
     this.Name = "MainForm";
     this.Text = "SX1276 Evaluation Kit";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Mainform_FormClosing);
     this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.MainForm_FormClosed);
     this.Load += new System.EventHandler(this.MainForm_Load);
     this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Mainform_KeyDown);
     this.ssMainStatus.ResumeLayout(false);
     this.ssMainStatus.PerformLayout();
     this.ssMainStatus1.ResumeLayout(false);
     this.ssMainStatus1.PerformLayout();
     this.msMainMenu.ResumeLayout(false);
     this.msMainMenu.PerformLayout();
     this.toolStripContainer1.BottomToolStripPanel.ResumeLayout(false);
     this.toolStripContainer1.BottomToolStripPanel.PerformLayout();
     this.toolStripContainer1.TopToolStripPanel.ResumeLayout(false);
     this.toolStripContainer1.TopToolStripPanel.PerformLayout();
     this.toolStripContainer1.ResumeLayout(false);
     this.toolStripContainer1.PerformLayout();
     this.tsActionToolbar.ResumeLayout(false);
     this.tsActionToolbar.PerformLayout();
     this.ResumeLayout(false);
 }
예제 #8
0
		private void InitializeComponent()
		{
			this.components = new System.ComponentModel.Container();
			System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
			this.ssMainStatus = new System.Windows.Forms.StatusStrip();
			this.tsLblStatus = new System.Windows.Forms.ToolStripStatusLabel();
			this.tsLblSeparator1 = new System.Windows.Forms.ToolStripStatusLabel();
			this.tsLblChipVersion = new System.Windows.Forms.ToolStripStatusLabel();
			this.tsLblSeparator2 = new System.Windows.Forms.ToolStripStatusLabel();
			this.tsLblConfigFileName = new System.Windows.Forms.ToolStripStatusLabel();
			this.msMainMenu = new SemtechLib.Controls.MenuStripEx();
			this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
			this.connectToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
			this.mFileSeparator1 = new System.Windows.Forms.ToolStripSeparator();
			this.loadToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
			this.saveToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
			this.saveAsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
			this.mFileSeparator2 = new System.Windows.Forms.ToolStripSeparator();
			this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
			this.actionToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
			this.resetToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
			this.refreshToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
			this.showRegistersToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
			this.monitorToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
			this.monitorOffToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
			this.monitorOnToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
			this.toolsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
			this.rssiAnalyserToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
			this.spectrumAnalyserToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
			this.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
			this.showHelpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
			this.mHelpSeparator1 = new System.Windows.Forms.ToolStripSeparator();
			this.usersGuideToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
			this.mHelpSeparator2 = new System.Windows.Forms.ToolStripSeparator();
			this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
			this.tsMainToolbar = new SemtechLib.Controls.ToolStripEx();
			this.tsBtnOpenFile = new System.Windows.Forms.ToolStripButton();
			this.tsBtnSaveFile = new System.Windows.Forms.ToolStripButton();
			this.tbFileSeparator1 = new System.Windows.Forms.ToolStripSeparator();
			this.tsBtnOpenDevice = new System.Windows.Forms.ToolStripButton();
			this.tsBtnRefresh = new System.Windows.Forms.ToolStripButton();
			this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
			this.ofConfigFileOpenDlg = new System.Windows.Forms.OpenFileDialog();
			this.sfConfigFileSaveDlg = new System.Windows.Forms.SaveFileDialog();
			this.tipMainForm = new System.Windows.Forms.ToolTip(this.components);
			this.toolStripContainer1 = new System.Windows.Forms.ToolStripContainer();
			this.tsHelpToolbar = new SemtechLib.Controls.ToolStripEx();
			this.tsBtnShowHelp = new System.Windows.Forms.ToolStripButton();
			this.tsActionToolbar = new SemtechLib.Controls.ToolStripEx();
			this.tsBtnReset = new System.Windows.Forms.ToolStripButton();
			this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
			this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
			this.tsBtnShowRegisters = new System.Windows.Forms.ToolStripButton();
			this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
			this.toolStripLabel2 = new System.Windows.Forms.ToolStripLabel();
			this.tsBtnMonitorOn = new System.Windows.Forms.ToolStripButton();
			this.tsBtnMonitorOff = new System.Windows.Forms.ToolStripButton();
			this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
			this.sx1231ViewControl = new SemtechLib.Devices.SX1231.Controls.DeviceViewControl();
			this.ssMainStatus.SuspendLayout();
			this.msMainMenu.SuspendLayout();
			this.tsMainToolbar.SuspendLayout();
			this.toolStripContainer1.BottomToolStripPanel.SuspendLayout();
			this.toolStripContainer1.ContentPanel.SuspendLayout();
			this.toolStripContainer1.TopToolStripPanel.SuspendLayout();
			this.toolStripContainer1.SuspendLayout();
			this.tsHelpToolbar.SuspendLayout();
			this.tsActionToolbar.SuspendLayout();
			this.SuspendLayout();
			// 
			// ssMainStatus
			// 
			this.ssMainStatus.Dock = System.Windows.Forms.DockStyle.None;
			this.ssMainStatus.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.tsLblStatus,
            this.tsLblSeparator1,
            this.tsLblChipVersion,
            this.tsLblSeparator2,
            this.tsLblConfigFileName});
			this.ssMainStatus.Location = new System.Drawing.Point(0, 0);
			this.ssMainStatus.Name = "ssMainStatus";
			this.ssMainStatus.ShowItemToolTips = true;
			this.ssMainStatus.Size = new System.Drawing.Size(1008, 22);
			this.ssMainStatus.SizingGrip = false;
			this.ssMainStatus.TabIndex = 3;
			this.ssMainStatus.Text = "statusStrip1";
			// 
			// tsLblStatus
			// 
			this.tsLblStatus.Name = "tsLblStatus";
			this.tsLblStatus.Size = new System.Drawing.Size(433, 17);
			this.tsLblStatus.Spring = true;
			this.tsLblStatus.Text = "-";
			this.tsLblStatus.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this.tsLblStatus.ToolTipText = "Shows EVK messages.";
			// 
			// tsLblSeparator1
			// 
			this.tsLblSeparator1.Name = "tsLblSeparator1";
			this.tsLblSeparator1.Size = new System.Drawing.Size(11, 17);
			this.tsLblSeparator1.Text = "|";
			// 
			// tsLblChipVersion
			// 
			this.tsLblChipVersion.Name = "tsLblChipVersion";
			this.tsLblChipVersion.Size = new System.Drawing.Size(105, 17);
			this.tsLblChipVersion.Text = "Chip version: --.-";
			// 
			// tsLblSeparator2
			// 
			this.tsLblSeparator2.Name = "tsLblSeparator2";
			this.tsLblSeparator2.Size = new System.Drawing.Size(11, 17);
			this.tsLblSeparator2.Text = "|";
			// 
			// tsLblConfigFileName
			// 
			this.tsLblConfigFileName.AutoToolTip = true;
			this.tsLblConfigFileName.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
			this.tsLblConfigFileName.Name = "tsLblConfigFileName";
			this.tsLblConfigFileName.Size = new System.Drawing.Size(433, 17);
			this.tsLblConfigFileName.Spring = true;
			this.tsLblConfigFileName.Text = "Config File:";
			this.tsLblConfigFileName.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this.tsLblConfigFileName.ToolTipText = "Shows the active Config file when File-> Open/Save is used";
			// 
			// msMainMenu
			// 
			this.msMainMenu.ClickThrough = true;
			this.msMainMenu.Dock = System.Windows.Forms.DockStyle.None;
			this.msMainMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.fileToolStripMenuItem,
            this.actionToolStripMenuItem,
            this.toolsToolStripMenuItem,
            this.helpToolStripMenuItem});
			this.msMainMenu.Location = new System.Drawing.Point(0, 25);
			this.msMainMenu.Name = "msMainMenu";
			this.msMainMenu.Size = new System.Drawing.Size(1008, 25);
			this.msMainMenu.SuppressHighlighting = false;
			this.msMainMenu.TabIndex = 0;
			this.msMainMenu.Text = "File";
			// 
			// actionToolStripMenuItem
			// 
			this.actionToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.resetToolStripMenuItem,
            this.refreshToolStripMenuItem,
            this.showRegistersToolStripMenuItem,
            this.monitorToolStripMenuItem});
			this.actionToolStripMenuItem.Name = "actionToolStripMenuItem";
			this.actionToolStripMenuItem.Size = new System.Drawing.Size(56, 21);
			this.actionToolStripMenuItem.Text = "&Action";
			// 
			// fileToolStripMenuItem
			// 
			this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.connectToolStripMenuItem,
            this.mFileSeparator1,
            this.loadToolStripMenuItem,
            this.saveToolStripMenuItem,
            this.saveAsToolStripMenuItem,
            this.mFileSeparator2,
            this.exitToolStripMenuItem});
			this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
			this.fileToolStripMenuItem.Size = new System.Drawing.Size(39, 21);
			this.fileToolStripMenuItem.Text = "&File";
			// 
			// connectToolStripMenuItem
			// 
			this.connectToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("connectToolStripMenuItem.Image")));
			this.connectToolStripMenuItem.Name = "connectToolStripMenuItem";
			this.connectToolStripMenuItem.Size = new System.Drawing.Size(172, 22);
			this.connectToolStripMenuItem.Text = "&Connect";
			this.connectToolStripMenuItem.Click += new System.EventHandler(this.tsBtnOpenDevice_Click);
			// 
			// mFileSeparator1
			// 
			this.mFileSeparator1.Name = "mFileSeparator1";
			this.mFileSeparator1.Size = new System.Drawing.Size(169, 6);
			// 
			// loadToolStripMenuItem
			// 
			this.loadToolStripMenuItem.Enabled = false;
			this.loadToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("loadToolStripMenuItem.Image")));
			this.loadToolStripMenuItem.Name = "loadToolStripMenuItem";
			this.loadToolStripMenuItem.Size = new System.Drawing.Size(172, 22);
			this.loadToolStripMenuItem.Text = "&Open Config...";
			this.loadToolStripMenuItem.Click += new System.EventHandler(this.loadToolStripMenuItem_Click);
			// 
			// saveToolStripMenuItem
			// 
			this.saveToolStripMenuItem.Enabled = false;
			this.saveToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("saveToolStripMenuItem.Image")));
			this.saveToolStripMenuItem.Name = "saveToolStripMenuItem";
			this.saveToolStripMenuItem.Size = new System.Drawing.Size(172, 22);
			this.saveToolStripMenuItem.Text = "&Save Config";
			this.saveToolStripMenuItem.Click += new System.EventHandler(this.saveToolStripMenuItem_Click);
			// 
			// saveAsToolStripMenuItem
			// 
			this.saveAsToolStripMenuItem.Enabled = false;
			this.saveAsToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("saveAsToolStripMenuItem.Image")));
			this.saveAsToolStripMenuItem.Name = "saveAsToolStripMenuItem";
			this.saveAsToolStripMenuItem.Size = new System.Drawing.Size(172, 22);
			this.saveAsToolStripMenuItem.Text = "Save Config &As...";
			this.saveAsToolStripMenuItem.Click += new System.EventHandler(this.saveAsToolStripMenuItem_Click);
			// 
			// mFileSeparator2
			// 
			this.mFileSeparator2.Name = "mFileSeparator2";
			this.mFileSeparator2.Size = new System.Drawing.Size(169, 6);
			// 
			// exitToolStripMenuItem
			// 
			this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
			this.exitToolStripMenuItem.Size = new System.Drawing.Size(172, 22);
			this.exitToolStripMenuItem.Text = "&Exit";
			this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
			// 
			// resetToolStripMenuItem
			// 
			this.resetToolStripMenuItem.Enabled = false;
			this.resetToolStripMenuItem.Name = "resetToolStripMenuItem";
			this.resetToolStripMenuItem.Size = new System.Drawing.Size(162, 22);
			this.resetToolStripMenuItem.Text = "R&eset";
			this.resetToolStripMenuItem.Click += new System.EventHandler(this.resetToolStripMenuItem_Click);
			// 
			// refreshToolStripMenuItem
			// 
			this.refreshToolStripMenuItem.Enabled = false;
			this.refreshToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("refreshToolStripMenuItem.Image")));
			this.refreshToolStripMenuItem.Name = "refreshToolStripMenuItem";
			this.refreshToolStripMenuItem.Size = new System.Drawing.Size(162, 22);
			this.refreshToolStripMenuItem.Text = "&Refresh";
			this.refreshToolStripMenuItem.Click += new System.EventHandler(this.refreshToolStripMenuItem_Click);
			// 
			// showRegistersToolStripMenuItem
			// 
			this.showRegistersToolStripMenuItem.Enabled = false;
			this.showRegistersToolStripMenuItem.Name = "showRegistersToolStripMenuItem";
			this.showRegistersToolStripMenuItem.Size = new System.Drawing.Size(162, 22);
			this.showRegistersToolStripMenuItem.Text = "&Show registers";
			this.showRegistersToolStripMenuItem.Click += new System.EventHandler(this.showRegistersToolStripMenuItem_Click);
			// 
			// monitorToolStripMenuItem
			// 
			this.monitorToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.monitorOffToolStripMenuItem,
            this.monitorOnToolStripMenuItem});
			this.monitorToolStripMenuItem.Enabled = false;
			this.monitorToolStripMenuItem.Name = "monitorToolStripMenuItem";
			this.monitorToolStripMenuItem.Size = new System.Drawing.Size(162, 22);
			this.monitorToolStripMenuItem.Text = "&Monitor";
			// 
			// monitorOffToolStripMenuItem
			// 
			this.monitorOffToolStripMenuItem.Name = "monitorOffToolStripMenuItem";
			this.monitorOffToolStripMenuItem.Size = new System.Drawing.Size(98, 22);
			this.monitorOffToolStripMenuItem.Text = "OFF";
			this.monitorOffToolStripMenuItem.Click += new System.EventHandler(this.monitorToolStripMenuItem_Click);
			// 
			// monitorOnToolStripMenuItem
			// 
			this.monitorOnToolStripMenuItem.Checked = true;
			this.monitorOnToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
			this.monitorOnToolStripMenuItem.Name = "monitorOnToolStripMenuItem";
			this.monitorOnToolStripMenuItem.Size = new System.Drawing.Size(98, 22);
			this.monitorOnToolStripMenuItem.Text = "&ON";
			this.monitorOnToolStripMenuItem.Click += new System.EventHandler(this.monitorToolStripMenuItem_Click);
			// 
			// toolsToolStripMenuItem
			// 
			this.toolsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.rssiAnalyserToolStripMenuItem,
            this.spectrumAnalyserToolStripMenuItem});
			this.toolsToolStripMenuItem.Name = "toolsToolStripMenuItem";
			this.toolsToolStripMenuItem.Size = new System.Drawing.Size(52, 21);
			this.toolsToolStripMenuItem.Text = "Tools";
			// 
			// rssiAnalyserToolStripMenuItem
			// 
			this.rssiAnalyserToolStripMenuItem.Enabled = false;
			this.rssiAnalyserToolStripMenuItem.Name = "rssiAnalyserToolStripMenuItem";
			this.rssiAnalyserToolStripMenuItem.Size = new System.Drawing.Size(183, 22);
			this.rssiAnalyserToolStripMenuItem.Text = "RSSI analyser";
			this.rssiAnalyserToolStripMenuItem.Click += new System.EventHandler(this.rssiAnalyserToolStripMenuItem_Click);
			// 
			// spectrumAnalyserToolStripMenuItem
			// 
			this.spectrumAnalyserToolStripMenuItem.Enabled = false;
			this.spectrumAnalyserToolStripMenuItem.Name = "spectrumAnalyserToolStripMenuItem";
			this.spectrumAnalyserToolStripMenuItem.Size = new System.Drawing.Size(183, 22);
			this.spectrumAnalyserToolStripMenuItem.Text = "Spectrum analyser";
			this.spectrumAnalyserToolStripMenuItem.Click += new System.EventHandler(this.spectrumAnalyserToolStripMenuItem_Click);
			// 
			// helpToolStripMenuItem
			// 
			this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.showHelpToolStripMenuItem,
            this.mHelpSeparator1,
            this.usersGuideToolStripMenuItem,
            this.mHelpSeparator2,
            this.aboutToolStripMenuItem});
			this.helpToolStripMenuItem.Name = "helpToolStripMenuItem";
			this.helpToolStripMenuItem.Size = new System.Drawing.Size(47, 21);
			this.helpToolStripMenuItem.Text = "&Help";
			// 
			// showHelpToolStripMenuItem
			// 
			this.showHelpToolStripMenuItem.Enabled = false;
			this.showHelpToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("showHelpToolStripMenuItem.Image")));
			this.showHelpToolStripMenuItem.Name = "showHelpToolStripMenuItem";
			this.showHelpToolStripMenuItem.Size = new System.Drawing.Size(249, 22);
			this.showHelpToolStripMenuItem.Text = "Help";
			this.showHelpToolStripMenuItem.Click += new System.EventHandler(this.showHelpToolStripMenuItem_Click);
			// 
			// mHelpSeparator1
			// 
			this.mHelpSeparator1.Name = "mHelpSeparator1";
			this.mHelpSeparator1.Size = new System.Drawing.Size(246, 6);
			// 
			// usersGuideToolStripMenuItem
			// 
			this.usersGuideToolStripMenuItem.Name = "usersGuideToolStripMenuItem";
			this.usersGuideToolStripMenuItem.Size = new System.Drawing.Size(249, 22);
			this.usersGuideToolStripMenuItem.Text = "&User\'s Guide...";
			this.usersGuideToolStripMenuItem.Click += new System.EventHandler(this.usersGuideToolStripMenuItem_Click);
			// 
			// mHelpSeparator2
			// 
			this.mHelpSeparator2.Name = "mHelpSeparator2";
			this.mHelpSeparator2.Size = new System.Drawing.Size(246, 6);
			// 
			// aboutToolStripMenuItem
			// 
			this.aboutToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("aboutToolStripMenuItem.Image")));
			this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem";
			this.aboutToolStripMenuItem.Size = new System.Drawing.Size(249, 22);
			this.aboutToolStripMenuItem.Text = "&About SX1231 Evaluation Kit...";
			this.aboutToolStripMenuItem.Click += new System.EventHandler(this.aboutToolStripMenuItem_Click);
			// 
			// tsMainToolbar
			// 
			this.tsMainToolbar.ClickThrough = true;
			this.tsMainToolbar.Dock = System.Windows.Forms.DockStyle.None;
			this.tsMainToolbar.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
			this.tsMainToolbar.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.tsBtnOpenFile,
            this.tsBtnSaveFile,
            this.tbFileSeparator1,
            this.tsBtnOpenDevice});
			this.tsMainToolbar.LayoutStyle = System.Windows.Forms.ToolStripLayoutStyle.HorizontalStackWithOverflow;
			this.tsMainToolbar.Location = new System.Drawing.Point(3, 0);
			this.tsMainToolbar.Name = "tsMainToolbar";
			this.tsMainToolbar.Size = new System.Drawing.Size(78, 25);
			this.tsMainToolbar.SuppressHighlighting = false;
			this.tsMainToolbar.TabIndex = 1;
			this.tsMainToolbar.Text = "Main";
			// 
			// tsBtnOpenFile
			// 
			this.tsBtnOpenFile.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
			this.tsBtnOpenFile.Enabled = false;
			this.tsBtnOpenFile.Image = ((System.Drawing.Image)(resources.GetObject("tsBtnOpenFile.Image")));
			this.tsBtnOpenFile.ImageTransparentColor = System.Drawing.Color.Magenta;
			this.tsBtnOpenFile.Name = "tsBtnOpenFile";
			this.tsBtnOpenFile.Size = new System.Drawing.Size(23, 22);
			this.tsBtnOpenFile.Text = "Open Config file";
			this.tsBtnOpenFile.Click += new System.EventHandler(this.loadToolStripMenuItem_Click);
			// 
			// tsBtnSaveFile
			// 
			this.tsBtnSaveFile.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
			this.tsBtnSaveFile.Enabled = false;
			this.tsBtnSaveFile.Image = ((System.Drawing.Image)(resources.GetObject("tsBtnSaveFile.Image")));
			this.tsBtnSaveFile.ImageTransparentColor = System.Drawing.Color.Magenta;
			this.tsBtnSaveFile.Name = "tsBtnSaveFile";
			this.tsBtnSaveFile.Size = new System.Drawing.Size(23, 22);
			this.tsBtnSaveFile.Text = "Save Config file";
			this.tsBtnSaveFile.Click += new System.EventHandler(this.saveToolStripMenuItem_Click);
			// 
			// tbFileSeparator1
			// 
			this.tbFileSeparator1.Name = "tbFileSeparator1";
			this.tbFileSeparator1.Size = new System.Drawing.Size(6, 25);
			// 
			// tsBtnOpenDevice
			// 
			this.tsBtnOpenDevice.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
			this.tsBtnOpenDevice.Image = ((System.Drawing.Image)(resources.GetObject("tsBtnOpenDevice.Image")));
			this.tsBtnOpenDevice.ImageTransparentColor = System.Drawing.Color.Magenta;
			this.tsBtnOpenDevice.Name = "tsBtnOpenDevice";
			this.tsBtnOpenDevice.Size = new System.Drawing.Size(23, 22);
			this.tsBtnOpenDevice.Text = "Connect";
			this.tsBtnOpenDevice.Click += new System.EventHandler(this.tsBtnOpenDevice_Click);
			// 
			// tsBtnRefresh
			// 
			this.tsBtnRefresh.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
			this.tsBtnRefresh.Image = ((System.Drawing.Image)(resources.GetObject("tsBtnRefresh.Image")));
			this.tsBtnRefresh.ImageTransparentColor = System.Drawing.Color.Magenta;
			this.tsBtnRefresh.Name = "tsBtnRefresh";
			this.tsBtnRefresh.Size = new System.Drawing.Size(23, 22);
			this.tsBtnRefresh.Text = "Refresh";
			this.tsBtnRefresh.Click += new System.EventHandler(this.refreshToolStripMenuItem_Click);
			// 
			// toolStripSeparator3
			// 
			this.toolStripSeparator3.Name = "toolStripSeparator3";
			this.toolStripSeparator3.Size = new System.Drawing.Size(6, 25);
			// 
			// ofConfigFileOpenDlg
			// 
			this.ofConfigFileOpenDlg.DefaultExt = "*.cfg";
			this.ofConfigFileOpenDlg.Filter = "Config Files(*.cfg)|*.cfg|AllFiles(*.*)|*.*";
			// 
			// sfConfigFileSaveDlg
			// 
			this.sfConfigFileSaveDlg.DefaultExt = "*.cfg";
			this.sfConfigFileSaveDlg.Filter = "Config Files(*.cfg)|*.cfg|AllFiles(*.*)|*.*";
			// 
			// tipMainForm
			// 
			this.tipMainForm.ShowAlways = true;
			// 
			// toolStripContainer1
			// 
			// 
			// toolStripContainer1.BottomToolStripPanel
			// 
			this.toolStripContainer1.BottomToolStripPanel.Controls.Add(this.ssMainStatus);
			// 
			// toolStripContainer1.ContentPanel
			// 
			this.toolStripContainer1.ContentPanel.AutoScroll = true;
			this.toolStripContainer1.ContentPanel.Controls.Add(this.sx1231ViewControl);
			this.toolStripContainer1.ContentPanel.Size = new System.Drawing.Size(1008, 524);
			this.toolStripContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
			this.toolStripContainer1.LeftToolStripPanelVisible = false;
			this.toolStripContainer1.Location = new System.Drawing.Point(0, 0);
			this.toolStripContainer1.Name = "toolStripContainer1";
			this.toolStripContainer1.RightToolStripPanelVisible = false;
			this.toolStripContainer1.Size = new System.Drawing.Size(1008, 596);
			this.toolStripContainer1.TabIndex = 4;
			this.toolStripContainer1.Text = "toolStripContainer1";
			// 
			// tsHelpToolbar
			// 
			this.tsHelpToolbar.ClickThrough = true;
			this.tsHelpToolbar.Dock = System.Windows.Forms.DockStyle.None;
			this.tsHelpToolbar.Enabled = false;
			this.tsHelpToolbar.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
			this.tsHelpToolbar.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.tsBtnShowHelp});
			this.tsHelpToolbar.Location = new System.Drawing.Point(81, 0);
			this.tsHelpToolbar.Name = "tsHelpToolbar";
			this.tsHelpToolbar.Size = new System.Drawing.Size(26, 25);
			this.tsHelpToolbar.SuppressHighlighting = false;
			this.tsHelpToolbar.TabIndex = 3;
			// 
			// tsBtnShowHelp
			// 
			this.tsBtnShowHelp.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
			this.tsBtnShowHelp.Image = ((System.Drawing.Image)(resources.GetObject("tsBtnShowHelp.Image")));
			this.tsBtnShowHelp.ImageTransparentColor = System.Drawing.Color.Magenta;
			this.tsBtnShowHelp.Name = "tsBtnShowHelp";
			this.tsBtnShowHelp.Size = new System.Drawing.Size(23, 22);
			this.tsBtnShowHelp.Text = "Help";
			this.tsBtnShowHelp.Click += new System.EventHandler(this.showHelpToolStripMenuItem_Click);
			// 
			// tsActionToolbar
			// 
			this.tsActionToolbar.ClickThrough = true;
			this.tsActionToolbar.Dock = System.Windows.Forms.DockStyle.None;
			this.tsActionToolbar.Enabled = false;
			this.tsActionToolbar.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
			this.tsActionToolbar.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.tsBtnReset,
            this.toolStripSeparator1,
            this.tsBtnRefresh,
            this.toolStripSeparator2,
            this.tsBtnShowRegisters,
            this.toolStripSeparator4,
            this.toolStripLabel2,
            this.tsBtnMonitorOn,
            this.tsBtnMonitorOff});
			this.tsActionToolbar.LayoutStyle = System.Windows.Forms.ToolStripLayoutStyle.HorizontalStackWithOverflow;
			this.tsActionToolbar.Location = new System.Drawing.Point(109, 0);
			this.tsActionToolbar.Name = "tsActionToolbar";
			this.tsActionToolbar.Size = new System.Drawing.Size(245, 25);
			this.tsActionToolbar.SuppressHighlighting = false;
			this.tsActionToolbar.TabIndex = 2;
			this.tsActionToolbar.Text = "Action";
			// 
			// toolStripContainer1.TopToolStripPanel
			// 
			this.toolStripContainer1.TopToolStripPanel.MaximumSize = new System.Drawing.Size(0, 50);
			this.toolStripContainer1.TopToolStripPanel.Controls.Add(this.msMainMenu);
			this.toolStripContainer1.TopToolStripPanel.Controls.Add(this.tsMainToolbar);
			this.toolStripContainer1.TopToolStripPanel.Controls.Add(this.tsHelpToolbar);
			this.toolStripContainer1.TopToolStripPanel.Controls.Add(this.tsActionToolbar);
			// 
			// tsBtnReset
			// 
			this.tsBtnReset.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
			this.tsBtnReset.Image = ((System.Drawing.Image)(resources.GetObject("tsBtnReset.Image")));
			this.tsBtnReset.ImageTransparentColor = System.Drawing.Color.Magenta;
			this.tsBtnReset.Name = "tsBtnReset";
			this.tsBtnReset.Size = new System.Drawing.Size(44, 22);
			this.tsBtnReset.Text = "Reset";
			this.tsBtnReset.Click += new System.EventHandler(this.resetToolStripMenuItem_Click);
			// 
			// toolStripSeparator1
			// 
			this.toolStripSeparator1.Name = "toolStripSeparator1";
			this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25);
			// 
			// toolStripSeparator2
			// 
			this.toolStripSeparator2.Name = "toolStripSeparator2";
			this.toolStripSeparator2.Size = new System.Drawing.Size(6, 25);
			// 
			// tsBtnShowRegisters
			// 
			this.tsBtnShowRegisters.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
			this.tsBtnShowRegisters.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
			this.tsBtnShowRegisters.Image = ((System.Drawing.Image)(resources.GetObject("tsBtnShowRegisters.Image")));
			this.tsBtnShowRegisters.ImageTransparentColor = System.Drawing.Color.Magenta;
			this.tsBtnShowRegisters.Name = "tsBtnShowRegisters";
			this.tsBtnShowRegisters.Size = new System.Drawing.Size(33, 22);
			this.tsBtnShowRegisters.Text = "Reg";
			this.tsBtnShowRegisters.ToolTipText = "Displays SX1231 raw registers window";
			this.tsBtnShowRegisters.Click += new System.EventHandler(this.showRegistersToolStripMenuItem_Click);
			// 
			// toolStripSeparator4
			// 
			this.toolStripSeparator4.Name = "toolStripSeparator4";
			this.toolStripSeparator4.Size = new System.Drawing.Size(6, 25);
			// 
			// toolStripLabel2
			// 
			this.toolStripLabel2.Name = "toolStripLabel2";
			this.toolStripLabel2.Size = new System.Drawing.Size(58, 22);
			this.toolStripLabel2.Text = "Monitor:";
			// 
			// tsBtnMonitorOn
			// 
			this.tsBtnMonitorOn.Checked = true;
			this.tsBtnMonitorOn.CheckState = System.Windows.Forms.CheckState.Checked;
			this.tsBtnMonitorOn.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
			this.tsBtnMonitorOn.Image = ((System.Drawing.Image)(resources.GetObject("tsBtnMonitorOn.Image")));
			this.tsBtnMonitorOn.ImageTransparentColor = System.Drawing.Color.Magenta;
			this.tsBtnMonitorOn.Name = "tsBtnMonitorOn";
			this.tsBtnMonitorOn.Size = new System.Drawing.Size(32, 22);
			this.tsBtnMonitorOn.Text = "ON";
			this.tsBtnMonitorOn.ToolTipText = "Enables the SX1231 monitor mode";
			this.tsBtnMonitorOn.Click += new System.EventHandler(this.monitorToolStripMenuItem_Click);
			// 
			// tsBtnMonitorOff
			// 
			this.tsBtnMonitorOff.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
			this.tsBtnMonitorOff.Image = ((System.Drawing.Image)(resources.GetObject("tsBtnMonitorOff.Image")));
			this.tsBtnMonitorOff.ImageTransparentColor = System.Drawing.Color.Magenta;
			this.tsBtnMonitorOff.Name = "tsBtnMonitorOff";
			this.tsBtnMonitorOff.Size = new System.Drawing.Size(34, 22);
			this.tsBtnMonitorOff.Text = "OFF";
			this.tsBtnMonitorOff.ToolTipText = "Disables the SX1231 monitor mode";
			this.tsBtnMonitorOff.Click += new System.EventHandler(this.monitorToolStripMenuItem_Click);
			// 
			// toolStripLabel1
			// 
			this.toolStripLabel1.Name = "toolStripLabel1";
			this.toolStripLabel1.Size = new System.Drawing.Size(62, 22);
			this.toolStripLabel1.Text = "Product ID:";
			// 
			// sx1231ViewControl
			// 
			this.sx1231ViewControl.Dock = System.Windows.Forms.DockStyle.Fill;
			this.sx1231ViewControl.Enabled = false;
			this.sx1231ViewControl.Location = new System.Drawing.Point(0, 0);
			this.sx1231ViewControl.Name = "sx1231ViewControl";
			this.sx1231ViewControl.Size = new System.Drawing.Size(1008, 524);
			this.sx1231ViewControl.TabIndex = 0;
			this.sx1231ViewControl.DocumentationChanged += new SemtechLib.General.Interfaces.DocumentationChangedEventHandler(this.sx1231ViewControl_DocumentationChanged);
			this.sx1231ViewControl.Error += new SemtechLib.General.Events.ErrorEventHandler(this.sx1231ViewControl_Error);
			// 
			// MainForm
			// 
			this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.ClientSize = new System.Drawing.Size(1008, 596);
			this.Controls.Add(this.toolStripContainer1);
			this.DoubleBuffered = true;
			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
			this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
			this.KeyPreview = true;
			this.MainMenuStrip = this.msMainMenu;
			this.MaximizeBox = false;
			this.Name = "MainForm";
			this.Text = "SX1231 Evaluation Kit";
			this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Mainform_FormClosing);
			this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.MainForm_FormClosed);
			this.Load += new System.EventHandler(this.MainForm_Load);
			this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Mainform_KeyDown);
			this.ssMainStatus.ResumeLayout(false);
			this.ssMainStatus.PerformLayout();
			this.msMainMenu.ResumeLayout(false);
			this.msMainMenu.PerformLayout();
			this.tsMainToolbar.ResumeLayout(false);
			this.tsMainToolbar.PerformLayout();
			this.toolStripContainer1.BottomToolStripPanel.ResumeLayout(false);
			this.toolStripContainer1.BottomToolStripPanel.PerformLayout();
			this.toolStripContainer1.ContentPanel.ResumeLayout(false);
			this.toolStripContainer1.TopToolStripPanel.ResumeLayout(false);
			this.toolStripContainer1.TopToolStripPanel.PerformLayout();
			this.toolStripContainer1.ResumeLayout(false);
			this.toolStripContainer1.PerformLayout();
			this.tsHelpToolbar.ResumeLayout(false);
			this.tsHelpToolbar.PerformLayout();
			this.tsActionToolbar.ResumeLayout(false);
			this.tsActionToolbar.PerformLayout();
			this.ResumeLayout(false);

		}
예제 #9
0
 private void InitializeComponent()
 {
     this.components = new Container();
     ComponentResourceManager manager = new ComponentResourceManager(typeof(MainForm));
     this.verticalSplit = new SplitContainer();
     this.panLeft = new Panel();
     this.splitLeft = new SplitContainer();
     this.schemaTree = new SchemaTree();
     this.tcQueryTrees = new TabControl();
     this.pagMyQueries = new TabPage();
     this.tvMyQueries = new MyQueries();
     this.panMyQueryOptions = new TableLayoutPanel();
     this.llSetFolder = new LinkLabel();
     this.llOrganize = new LinkLabel();
     this.pagSamples = new TabPage();
     this.sampleQueries = new SampleQueries();
     this.label1 = new Label();
     this.mainMenu = new MenuStripEx();
     this.fileToolStripMenuItem = new ToolStripMenuItem();
     this.newToolStripMenuItem = new ToolStripMenuItem();
     this.newQuerySamePropsItem = new ToolStripMenuItem();
     this.cloneQueryMenuItem = new ToolStripMenuItem();
     this.openToolStripMenuItem = new ToolStripMenuItem();
     this.toolStripSeparator2 = new ToolStripSeparator();
     this.closeToolStripMenuItem = new ToolStripMenuItem();
     this.closeAllToolStripMenuItem = new ToolStripMenuItem();
     this.toolStripSeparator = new ToolStripSeparator();
     this.saveToolStripMenuItem = new ToolStripMenuItem();
     this.saveAsToolStripMenuItem = new ToolStripMenuItem();
     this.toolStripMenuItem13 = new ToolStripSeparator();
     this.miPasswordManager = new ToolStripMenuItem();
     this.exitSeparator = new ToolStripSeparator();
     this.exitToolStripMenuItem = new ToolStripMenuItem();
     this.editToolStripMenuItem = new ToolStripMenuItem();
     this.undoToolStripMenuItem = new ToolStripMenuItem();
     this.redoToolStripMenuItem = new ToolStripMenuItem();
     this.toolStripSeparator3 = new ToolStripSeparator();
     this.cutToolStripMenuItem = new ToolStripMenuItem();
     this.copyToolStripMenuItem = new ToolStripMenuItem();
     this.copyPlainToolStripMenuItem = new ToolStripMenuItem();
     this.miCopyMarkdown = new ToolStripMenuItem();
     this.pasteToolStripMenuItem = new ToolStripMenuItem();
     this.miPasteEscapedString = new ToolStripMenuItem();
     this.toolStripSeparator4 = new ToolStripSeparator();
     this.selectAllToolStripMenuItem = new ToolStripMenuItem();
     this.toolStripMenuItem6 = new ToolStripSeparator();
     this.findAndReplaceToolStripMenuItem = new ToolStripMenuItem();
     this.findNextToolStripMenuItem = new ToolStripMenuItem();
     this.findPreviousToolStripMenuItem = new ToolStripMenuItem();
     this.miIncrementalSearch = new ToolStripMenuItem();
     this.navigateToToolStripMenuItem = new ToolStripMenuItem();
     this.findAllToolStripMenuItem = new ToolStripMenuItem();
     this.toolStripMenuItem10 = new ToolStripSeparator();
     this.outliningToolStripMenuItem = new ToolStripMenuItem();
     this.toggleOutliningExpansionToolStripMenuItem = new ToolStripMenuItem();
     this.toggleAllOutliningToolStripMenuItem = new ToolStripMenuItem();
     this.sepOutlining = new ToolStripSeparator();
     this.miAutocompletion = new ToolStripMenuItem();
     this.miCompleteWord = new ToolStripMenuItem();
     this.miListMembers = new ToolStripMenuItem();
     this.miListTables = new ToolStripMenuItem();
     this.toolStripMenuItem11 = new ToolStripSeparator();
     this.miCompleteParameters = new ToolStripMenuItem();
     this.toolStripMenuItem9 = new ToolStripSeparator();
     this.miInsertSnippet = new ToolStripMenuItem();
     this.miSurroundWith = new ToolStripMenuItem();
     this.miExecCmd = new ToolStripMenuItem();
     this.toolStripMenuItem2 = new ToolStripSeparator();
     this.optionsToolStripMenuItem = new ToolStripMenuItem();
     this.queryToolStripMenuItem = new ToolStripMenuItem();
     this.executeToolStripMenuItem = new ToolStripMenuItem();
     this.cancelToolStripMenuItem = new ToolStripMenuItem();
     this.miUnload = new ToolStripMenuItem();
     this.miGCSeparator = new ToolStripSeparator();
     this.showHideResultsToolStripMenuItem = new ToolStripMenuItem();
     this.miUndockResults = new ToolStripMenuItem();
     this.miVerticalResults = new ToolStripMenuItem();
     this.toolStripMenuItem14 = new ToolStripSeparator();
     this.miTextResults = new ToolStripMenuItem();
     this.miGridResults = new ToolStripMenuItem();
     this.miSep1 = new ToolStripSeparator();
     this.miAutoScroll = new ToolStripMenuItem();
     this.miExecutionTracking = new ToolStripMenuItem();
     this.miJumpToExecutionPoint = new ToolStripMenuItem();
     this.toolStripMenuItem8 = new ToolStripSeparator();
     this.miGC = new ToolStripMenuItem();
     this.toolStripMenuItem1 = new ToolStripSeparator();
     this.toolStripMenuItemAdvanced = new ToolStripMenuItem();
     this.helpToolStripMenuItem = new ToolStripMenuItem();
     this.miMemberHelp = new ToolStripMenuItem();
     this.miActivateReflector = new ToolStripMenuItem();
     this.toolStripMenuItem12 = new ToolStripSeparator();
     this.whatsNewtoolStripMenuItem = new ToolStripMenuItem();
     this.shortcutsMenuItem = new ToolStripMenuItem();
     this.fAQToolStripMenuItem = new ToolStripMenuItem();
     this.toolStripMenuItem4 = new ToolStripSeparator();
     this.viewSamplesToolStripMenuItem = new ToolStripMenuItem();
     this.bugReportToolStripMenuItem = new ToolStripMenuItem();
     this.miSuggestion = new ToolStripMenuItem();
     this.miCustomerService = new ToolStripMenuItem();
     this.forumToolStripMenuItem = new ToolStripMenuItem();
     this.microsoftLINQForumsToolStripMenuItem = new ToolStripMenuItem();
     this.lINQGeneralToolStripMenuItem = new ToolStripMenuItem();
     this.lINQToSQLToolStripMenuItem = new ToolStripMenuItem();
     this.lINQToEntitiesToolStripMenuItem = new ToolStripMenuItem();
     this.lINQToXMLToolStripMenuItem = new ToolStripMenuItem();
     this.pLINQToolStripMenuItem = new ToolStripMenuItem();
     this.reactiveFrameworkToolStripMenuItem = new ToolStripMenuItem();
     this.streamInsightToolStripMenuItem = new ToolStripMenuItem();
     this.c30InANutshellToolStripMenuItem = new ToolStripMenuItem();
     this.toolStripMenuItem7 = new ToolStripSeparator();
     this.miActivateAutocompletion = new ToolStripMenuItem();
     this.miManageActivations = new ToolStripMenuItem();
     this.miCheckForUpdates = new ToolStripMenuItem();
     this.toolStripMenuItem3 = new ToolStripSeparator();
     this.toolStripMenuItem5 = new ToolStripMenuItem();
     this.miHideExplorers = new ToolStripMenuItem();
     this.tcQueries = new QueryTabControl();
     this.panAppMessage = new Panel();
     this.btnRestart = new Button();
     this.panSpacer1 = new Panel();
     this.lblAppMessage = new Label();
     this.btnCloseAppMsg = new ClearButton();
     this.editManager = new EditManager(this.components);
     this.verticalSplit.Panel1.SuspendLayout();
     this.verticalSplit.Panel2.SuspendLayout();
     this.verticalSplit.SuspendLayout();
     this.panLeft.SuspendLayout();
     this.splitLeft.Panel1.SuspendLayout();
     this.splitLeft.Panel2.SuspendLayout();
     this.splitLeft.SuspendLayout();
     this.tcQueryTrees.SuspendLayout();
     this.pagMyQueries.SuspendLayout();
     this.panMyQueryOptions.SuspendLayout();
     this.pagSamples.SuspendLayout();
     this.mainMenu.SuspendLayout();
     this.panAppMessage.SuspendLayout();
     base.SuspendLayout();
     this.verticalSplit.Dock = DockStyle.Fill;
     this.verticalSplit.Location = new Point(0, 0);
     this.verticalSplit.Margin = new Padding(4);
     this.verticalSplit.Name = "verticalSplit";
     this.verticalSplit.Panel1.Controls.Add(this.panLeft);
     this.verticalSplit.Panel1.Controls.Add(this.mainMenu);
     this.verticalSplit.Panel2.Controls.Add(this.tcQueries);
     this.verticalSplit.Panel2.Controls.Add(this.panAppMessage);
     this.verticalSplit.Panel2.Padding = new Padding(0, 2, 1, 1);
     this.verticalSplit.Size = new Size(0x413, 0x397);
     this.verticalSplit.SplitterDistance = 0xf7;
     this.verticalSplit.SplitterWidth = 5;
     this.verticalSplit.TabIndex = 0;
     this.verticalSplit.SplitterMoved += new SplitterEventHandler(this.verticalSplit_SplitterMoved_1);
     this.panLeft.Controls.Add(this.splitLeft);
     this.panLeft.Dock = DockStyle.Fill;
     this.panLeft.Location = new Point(0, 0x1b);
     this.panLeft.Name = "panLeft";
     this.panLeft.Padding = new Padding(4, 4, 0, 1);
     this.panLeft.Size = new Size(0xf7, 0x37c);
     this.panLeft.TabIndex = 2;
     this.splitLeft.Dock = DockStyle.Fill;
     this.splitLeft.Location = new Point(4, 4);
     this.splitLeft.Name = "splitLeft";
     this.splitLeft.Orientation = Orientation.Horizontal;
     this.splitLeft.Panel1.Controls.Add(this.schemaTree);
     this.splitLeft.Panel1.Padding = new Padding(0, 0, 1, 0);
     this.splitLeft.Panel2.Controls.Add(this.tcQueryTrees);
     this.splitLeft.Size = new Size(0xf3, 0x377);
     this.splitLeft.SplitterDistance = 0x207;
     this.splitLeft.SplitterWidth = 7;
     this.splitLeft.TabIndex = 3;
     this.splitLeft.SplitterMoved += new SplitterEventHandler(this.splitLeft_SplitterMoved);
     this.schemaTree.Dock = DockStyle.Fill;
     this.schemaTree.FullRowSelect = true;
     this.schemaTree.ImageIndex = 0;
     this.schemaTree.Location = new Point(0, 0);
     this.schemaTree.Margin = new Padding(4);
     this.schemaTree.Name = "schemaTree";
     this.schemaTree.SelectedImageIndex = 0;
     this.schemaTree.ShowNodeToolTips = true;
     this.schemaTree.Size = new Size(0xf2, 0x207);
     this.schemaTree.TabIndex = 0;
     this.tcQueryTrees.Controls.Add(this.pagMyQueries);
     this.tcQueryTrees.Controls.Add(this.pagSamples);
     this.tcQueryTrees.Dock = DockStyle.Fill;
     this.tcQueryTrees.Location = new Point(0, 0);
     this.tcQueryTrees.Name = "tcQueryTrees";
     this.tcQueryTrees.SelectedIndex = 0;
     this.tcQueryTrees.Size = new Size(0xf3, 0x169);
     this.tcQueryTrees.TabIndex = 0;
     this.tcQueryTrees.SizeChanged += new EventHandler(this.tcQueryTrees_SizeChanged);
     this.pagMyQueries.Controls.Add(this.tvMyQueries);
     this.pagMyQueries.Controls.Add(this.panMyQueryOptions);
     this.pagMyQueries.Location = new Point(4, 0x1a);
     this.pagMyQueries.Name = "pagMyQueries";
     this.pagMyQueries.Padding = new Padding(3, 2, 4, 4);
     this.pagMyQueries.Size = new Size(0xeb, 0x14b);
     this.pagMyQueries.TabIndex = 0;
     this.pagMyQueries.Text = "My Queries";
     this.pagMyQueries.UseVisualStyleBackColor = true;
     this.tvMyQueries.Dock = DockStyle.Fill;
     this.tvMyQueries.HideSelection = false;
     this.tvMyQueries.ImageIndex = 0;
     this.tvMyQueries.Location = new Point(3, 0x15);
     this.tvMyQueries.Name = "tvMyQueries";
     this.tvMyQueries.SelectedImageIndex = 0;
     this.tvMyQueries.Size = new Size(0xe4, 0x132);
     this.tvMyQueries.TabIndex = 1;
     this.tvMyQueries.NodeMouseDoubleClick += new TreeNodeMouseClickEventHandler(this.tvMyQueries_NodeMouseDoubleClick);
     this.tvMyQueries.AfterSelect += new TreeViewEventHandler(this.tvMyQueries_AfterSelect);
     this.tvMyQueries.KeyPress += new KeyPressEventHandler(this.tvMyQueries_KeyPress);
     this.tvMyQueries.NodeMouseClick += new TreeNodeMouseClickEventHandler(this.tvMyQueries_NodeMouseClick);
     this.panMyQueryOptions.AutoSize = true;
     this.panMyQueryOptions.AutoSizeMode = AutoSizeMode.GrowAndShrink;
     this.panMyQueryOptions.ColumnCount = 2;
     this.panMyQueryOptions.ColumnStyles.Add(new ColumnStyle());
     this.panMyQueryOptions.ColumnStyles.Add(new ColumnStyle());
     this.panMyQueryOptions.Controls.Add(this.llSetFolder, 0, 0);
     this.panMyQueryOptions.Controls.Add(this.llOrganize, 0, 0);
     this.panMyQueryOptions.Dock = DockStyle.Top;
     this.panMyQueryOptions.Location = new Point(3, 2);
     this.panMyQueryOptions.Name = "panMyQueryOptions";
     this.panMyQueryOptions.RowCount = 1;
     this.panMyQueryOptions.RowStyles.Add(new RowStyle());
     this.panMyQueryOptions.Size = new Size(0xe4, 0x13);
     this.panMyQueryOptions.TabIndex = 2;
     this.llSetFolder.AutoSize = true;
     this.llSetFolder.Dock = DockStyle.Right;
     this.llSetFolder.Location = new Point(0x95, 0);
     this.llSetFolder.Margin = new Padding(3, 0, 0, 0);
     this.llSetFolder.Name = "llSetFolder";
     this.llSetFolder.Size = new Size(0x4f, 0x13);
     this.llSetFolder.TabIndex = 1;
     this.llSetFolder.TabStop = true;
     this.llSetFolder.Text = "Set Folder...";
     this.llSetFolder.LinkClicked += new LinkLabelLinkClickedEventHandler(this.llSetFolder_LinkClicked);
     this.llOrganize.AutoSize = true;
     this.llOrganize.Dock = DockStyle.Left;
     this.llOrganize.Location = new Point(0, 0);
     this.llOrganize.Margin = new Padding(0, 0, 9, 0);
     this.llOrganize.Name = "llOrganize";
     this.llOrganize.Size = new Size(0x49, 0x13);
     this.llOrganize.TabIndex = 0;
     this.llOrganize.TabStop = true;
     this.llOrganize.Text = "Organize...";
     this.llOrganize.LinkClicked += new LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked);
     this.pagSamples.Controls.Add(this.sampleQueries);
     this.pagSamples.Controls.Add(this.label1);
     this.pagSamples.Location = new Point(4, 0x1a);
     this.pagSamples.Name = "pagSamples";
     this.pagSamples.Padding = new Padding(3, 5, 4, 4);
     this.pagSamples.Size = new Size(0xeb, 0x14b);
     this.pagSamples.TabIndex = 1;
     this.pagSamples.Text = "Samples";
     this.pagSamples.UseVisualStyleBackColor = true;
     this.sampleQueries.Dock = DockStyle.Fill;
     this.sampleQueries.HideSelection = false;
     this.sampleQueries.ImageIndex = 0;
     this.sampleQueries.Location = new Point(3, 5);
     this.sampleQueries.Name = "sampleQueries";
     this.sampleQueries.SelectedImageIndex = 0;
     this.sampleQueries.Size = new Size(0xe4, 0x142);
     this.sampleQueries.TabIndex = 1;
     this.sampleQueries.NodeMouseDoubleClick += new TreeNodeMouseClickEventHandler(this.sampleQueries_NodeMouseDoubleClick);
     this.sampleQueries.AfterSelect += new TreeViewEventHandler(this.sampleQueries_AfterSelect);
     this.sampleQueries.KeyPress += new KeyPressEventHandler(this.sampleQueries_KeyPress);
     this.sampleQueries.NodeMouseClick += new TreeNodeMouseClickEventHandler(this.sampleQueries_NodeMouseClick);
     this.label1.AutoSize = true;
     this.label1.Location = new Point(1, 10);
     this.label1.Name = "label1";
     this.label1.Size = new Size(0x70, 0x13);
     this.label1.TabIndex = 0;
     this.label1.Text = "Coming shortly...";
     this.mainMenu.BackColor = Color.Transparent;
     this.mainMenu.Items.AddRange(new ToolStripItem[] { this.fileToolStripMenuItem, this.editToolStripMenuItem, this.queryToolStripMenuItem, this.helpToolStripMenuItem, this.miHideExplorers });
     this.mainMenu.Location = new Point(0, 0);
     this.mainMenu.Name = "mainMenu";
     this.mainMenu.Padding = new Padding(5, 2, 0, 2);
     this.mainMenu.Size = new Size(0xf7, 0x1b);
     this.mainMenu.TabIndex = 1;
     this.mainMenu.Text = "menuStrip1";
     this.fileToolStripMenuItem.DropDownItems.AddRange(new ToolStripItem[] { this.newToolStripMenuItem, this.newQuerySamePropsItem, this.cloneQueryMenuItem, this.openToolStripMenuItem, this.toolStripSeparator2, this.closeToolStripMenuItem, this.closeAllToolStripMenuItem, this.toolStripSeparator, this.saveToolStripMenuItem, this.saveAsToolStripMenuItem, this.toolStripMenuItem13, this.miPasswordManager, this.exitSeparator, this.exitToolStripMenuItem });
     this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
     this.fileToolStripMenuItem.Size = new Size(0x29, 0x17);
     this.fileToolStripMenuItem.Text = "&File";
     this.fileToolStripMenuItem.DropDownOpening += new EventHandler(this.fileToolStripMenuItem_DropDownOpening);
     this.newToolStripMenuItem.Image = (Image) manager.GetObject("newToolStripMenuItem.Image");
     this.newToolStripMenuItem.ImageTransparentColor = Color.Magenta;
     this.newToolStripMenuItem.Name = "newToolStripMenuItem";
     this.newToolStripMenuItem.ShortcutKeys = Keys.Control | Keys.N;
     this.newToolStripMenuItem.Size = new Size(340, 0x18);
     this.newToolStripMenuItem.Text = "&New Query";
     this.newToolStripMenuItem.Click += new EventHandler(this.newToolStripMenuItem_Click);
     this.newQuerySamePropsItem.Image = Resources.NewQuerySameProps;
     this.newQuerySamePropsItem.Name = "newQuerySamePropsItem";
     this.newQuerySamePropsItem.ShortcutKeys = Keys.Control | Keys.Shift | Keys.N;
     this.newQuerySamePropsItem.Size = new Size(340, 0x18);
     this.newQuerySamePropsItem.Text = "New Query, same properties";
     this.newQuerySamePropsItem.Click += new EventHandler(this.newQuerySamePropsItem_Click);
     this.cloneQueryMenuItem.Image = Resources.CloneQuery;
     this.cloneQueryMenuItem.Name = "cloneQueryMenuItem";
     this.cloneQueryMenuItem.ShortcutKeys = Keys.Control | Keys.Shift | Keys.C;
     this.cloneQueryMenuItem.Size = new Size(340, 0x18);
     this.cloneQueryMenuItem.Text = "Clone Query";
     this.cloneQueryMenuItem.Click += new EventHandler(this.cloneQueryMenuItem_Click);
     this.openToolStripMenuItem.Image = (Image) manager.GetObject("openToolStripMenuItem.Image");
     this.openToolStripMenuItem.ImageTransparentColor = Color.Magenta;
     this.openToolStripMenuItem.Name = "openToolStripMenuItem";
     this.openToolStripMenuItem.ShortcutKeys = Keys.Control | Keys.O;
     this.openToolStripMenuItem.Size = new Size(340, 0x18);
     this.openToolStripMenuItem.Text = "&Open";
     this.openToolStripMenuItem.Click += new EventHandler(this.openToolStripMenuItem_Click);
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new Size(0x151, 6);
     this.closeToolStripMenuItem.Name = "closeToolStripMenuItem";
     this.closeToolStripMenuItem.ShortcutKeys = Keys.Control | Keys.F4;
     this.closeToolStripMenuItem.Size = new Size(340, 0x18);
     this.closeToolStripMenuItem.Text = "&Close";
     this.closeToolStripMenuItem.Click += new EventHandler(this.closeToolStripMenuItem_Click);
     this.closeAllToolStripMenuItem.Name = "closeAllToolStripMenuItem";
     this.closeAllToolStripMenuItem.ShortcutKeys = Keys.Control | Keys.Shift | Keys.F4;
     this.closeAllToolStripMenuItem.Size = new Size(340, 0x18);
     this.closeAllToolStripMenuItem.Text = "C&lose All Queries";
     this.closeAllToolStripMenuItem.Click += new EventHandler(this.closeAllToolStripMenuItem_Click);
     this.toolStripSeparator.Name = "toolStripSeparator";
     this.toolStripSeparator.Size = new Size(0x151, 6);
     this.saveToolStripMenuItem.Image = (Image) manager.GetObject("saveToolStripMenuItem.Image");
     this.saveToolStripMenuItem.ImageTransparentColor = Color.Magenta;
     this.saveToolStripMenuItem.Name = "saveToolStripMenuItem";
     this.saveToolStripMenuItem.ShortcutKeys = Keys.Control | Keys.S;
     this.saveToolStripMenuItem.Size = new Size(340, 0x18);
     this.saveToolStripMenuItem.Text = "&Save";
     this.saveToolStripMenuItem.Click += new EventHandler(this.saveToolStripMenuItem_Click);
     this.saveAsToolStripMenuItem.Name = "saveAsToolStripMenuItem";
     this.saveAsToolStripMenuItem.Size = new Size(340, 0x18);
     this.saveAsToolStripMenuItem.Text = "Save &As";
     this.saveAsToolStripMenuItem.Click += new EventHandler(this.saveAsToolStripMenuItem_Click);
     this.toolStripMenuItem13.Name = "toolStripMenuItem13";
     this.toolStripMenuItem13.Size = new Size(0x151, 6);
     this.miPasswordManager.Name = "miPasswordManager";
     this.miPasswordManager.Size = new Size(340, 0x18);
     this.miPasswordManager.Text = "Password Manager";
     this.miPasswordManager.Click += new EventHandler(this.miPasswordManager_Click);
     this.exitSeparator.Name = "exitSeparator";
     this.exitSeparator.Size = new Size(0x151, 6);
     this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
     this.exitToolStripMenuItem.ShortcutKeys = Keys.Alt | Keys.F4;
     this.exitToolStripMenuItem.ShowShortcutKeys = false;
     this.exitToolStripMenuItem.Size = new Size(340, 0x18);
     this.exitToolStripMenuItem.Text = "E&xit";
     this.exitToolStripMenuItem.Click += new EventHandler(this.exitToolStripMenuItem_Click);
     this.editToolStripMenuItem.DropDownItems.AddRange(new ToolStripItem[] { 
         this.undoToolStripMenuItem, this.redoToolStripMenuItem, this.toolStripSeparator3, this.cutToolStripMenuItem, this.copyToolStripMenuItem, this.copyPlainToolStripMenuItem, this.miCopyMarkdown, this.pasteToolStripMenuItem, this.miPasteEscapedString, this.toolStripSeparator4, this.selectAllToolStripMenuItem, this.toolStripMenuItem6, this.findAndReplaceToolStripMenuItem, this.findNextToolStripMenuItem, this.findPreviousToolStripMenuItem, this.miIncrementalSearch, 
         this.navigateToToolStripMenuItem, this.findAllToolStripMenuItem, this.toolStripMenuItem10, this.outliningToolStripMenuItem, this.sepOutlining, this.miAutocompletion, this.miExecCmd, this.toolStripMenuItem2, this.optionsToolStripMenuItem
      });
     this.editToolStripMenuItem.Name = "editToolStripMenuItem";
     this.editToolStripMenuItem.Size = new Size(0x2c, 0x17);
     this.editToolStripMenuItem.Text = "&Edit";
     this.editToolStripMenuItem.DropDownOpening += new EventHandler(this.editToolStripMenuItem_DropDownOpening);
     this.undoToolStripMenuItem.Image = Resources.Undo;
     this.undoToolStripMenuItem.Name = "undoToolStripMenuItem";
     this.undoToolStripMenuItem.ShortcutKeys = Keys.Control | Keys.Z;
     this.undoToolStripMenuItem.Size = new Size(0x180, 0x18);
     this.undoToolStripMenuItem.Text = "&Undo ";
     this.redoToolStripMenuItem.Image = Resources.Redo;
     this.redoToolStripMenuItem.Name = "redoToolStripMenuItem";
     this.redoToolStripMenuItem.ShortcutKeys = Keys.Control | Keys.Y;
     this.redoToolStripMenuItem.Size = new Size(0x180, 0x18);
     this.redoToolStripMenuItem.Text = "&Redo ";
     this.toolStripSeparator3.Name = "toolStripSeparator3";
     this.toolStripSeparator3.Size = new Size(0x17d, 6);
     this.cutToolStripMenuItem.Image = (Image) manager.GetObject("cutToolStripMenuItem.Image");
     this.cutToolStripMenuItem.ImageTransparentColor = Color.Magenta;
     this.cutToolStripMenuItem.Name = "cutToolStripMenuItem";
     this.cutToolStripMenuItem.ShortcutKeys = Keys.Control | Keys.X;
     this.cutToolStripMenuItem.Size = new Size(0x180, 0x18);
     this.cutToolStripMenuItem.Text = "Cu&t";
     this.copyToolStripMenuItem.Image = (Image) manager.GetObject("copyToolStripMenuItem.Image");
     this.copyToolStripMenuItem.ImageTransparentColor = Color.Magenta;
     this.copyToolStripMenuItem.Name = "copyToolStripMenuItem";
     this.copyToolStripMenuItem.ShortcutKeys = Keys.Control | Keys.C;
     this.copyToolStripMenuItem.Size = new Size(0x180, 0x18);
     this.copyToolStripMenuItem.Text = "&Copy";
     this.copyPlainToolStripMenuItem.ImageTransparentColor = Color.Magenta;
     this.copyPlainToolStripMenuItem.Name = "copyPlainToolStripMenuItem";
     this.copyPlainToolStripMenuItem.ShortcutKeys = Keys.Alt | Keys.Shift | Keys.C;
     this.copyPlainToolStripMenuItem.Size = new Size(0x180, 0x18);
     this.copyPlainToolStripMenuItem.Text = "Copy without formatting";
     this.miCopyMarkdown.Name = "miCopyMarkdown";
     this.miCopyMarkdown.ShortcutKeys = Keys.Control | Keys.Shift | Keys.M;
     this.miCopyMarkdown.Size = new Size(0x180, 0x18);
     this.miCopyMarkdown.Text = "Copy for &Markdown/StackOverflow";
     this.pasteToolStripMenuItem.Image = (Image) manager.GetObject("pasteToolStripMenuItem.Image");
     this.pasteToolStripMenuItem.ImageTransparentColor = Color.Magenta;
     this.pasteToolStripMenuItem.Name = "pasteToolStripMenuItem";
     this.pasteToolStripMenuItem.ShortcutKeys = Keys.Control | Keys.V;
     this.pasteToolStripMenuItem.Size = new Size(0x180, 0x18);
     this.pasteToolStripMenuItem.Text = "&Paste";
     this.miPasteEscapedString.Name = "miPasteEscapedString";
     this.miPasteEscapedString.ShortcutKeys = Keys.Alt | Keys.Shift | Keys.V;
     this.miPasteEscapedString.Size = new Size(0x180, 0x18);
     this.miPasteEscapedString.Text = "Paste as &Escaped String";
     this.miPasteEscapedString.Click += new EventHandler(this.miPasteEscapedString_Click);
     this.toolStripSeparator4.Name = "toolStripSeparator4";
     this.toolStripSeparator4.Size = new Size(0x17d, 6);
     this.selectAllToolStripMenuItem.Name = "selectAllToolStripMenuItem";
     this.selectAllToolStripMenuItem.Size = new Size(0x180, 0x18);
     this.selectAllToolStripMenuItem.Text = "Select &All";
     this.toolStripMenuItem6.Name = "toolStripMenuItem6";
     this.toolStripMenuItem6.Size = new Size(0x17d, 6);
     this.findAndReplaceToolStripMenuItem.Image = Resources.FindReplace;
     this.findAndReplaceToolStripMenuItem.Name = "findAndReplaceToolStripMenuItem";
     this.findAndReplaceToolStripMenuItem.ShortcutKeys = Keys.Control | Keys.F;
     this.findAndReplaceToolStripMenuItem.Size = new Size(0x180, 0x18);
     this.findAndReplaceToolStripMenuItem.Text = "&Find and Replace...";
     this.findAndReplaceToolStripMenuItem.Click += new EventHandler(this.findAndReplaceToolStripMenuItem_Click);
     this.findNextToolStripMenuItem.Image = Resources.FindNext;
     this.findNextToolStripMenuItem.Name = "findNextToolStripMenuItem";
     this.findNextToolStripMenuItem.ShortcutKeys = Keys.F3;
     this.findNextToolStripMenuItem.Size = new Size(0x180, 0x18);
     this.findNextToolStripMenuItem.Text = "Find Next";
     this.findNextToolStripMenuItem.Click += new EventHandler(this.findNextToolStripMenuItem_Click);
     this.findPreviousToolStripMenuItem.Image = Resources.FindPrevious;
     this.findPreviousToolStripMenuItem.Name = "findPreviousToolStripMenuItem";
     this.findPreviousToolStripMenuItem.ShortcutKeys = Keys.Shift | Keys.F3;
     this.findPreviousToolStripMenuItem.Size = new Size(0x180, 0x18);
     this.findPreviousToolStripMenuItem.Text = "Find Previous";
     this.findPreviousToolStripMenuItem.Click += new EventHandler(this.findPreviousToolStripMenuItem_Click);
     this.miIncrementalSearch.Name = "miIncrementalSearch";
     this.miIncrementalSearch.ShortcutKeys = Keys.Control | Keys.I;
     this.miIncrementalSearch.Size = new Size(0x180, 0x18);
     this.miIncrementalSearch.Text = "Incremental Search";
     this.miIncrementalSearch.Click += new EventHandler(this.miIncrementalSearch_Click);
     this.navigateToToolStripMenuItem.Name = "navigateToToolStripMenuItem";
     this.navigateToToolStripMenuItem.ShortcutKeyDisplayString = "Ctrl+,";
     this.navigateToToolStripMenuItem.ShortcutKeys = Keys.Control | Keys.Oemcomma;
     this.navigateToToolStripMenuItem.Size = new Size(0x180, 0x18);
     this.navigateToToolStripMenuItem.Text = "Navigate To...";
     this.navigateToToolStripMenuItem.Click += new EventHandler(this.navigateToToolStripMenuItem_Click);
     this.findAllToolStripMenuItem.Name = "findAllToolStripMenuItem";
     this.findAllToolStripMenuItem.ShortcutKeys = Keys.Control | Keys.Shift | Keys.F;
     this.findAllToolStripMenuItem.Size = new Size(0x180, 0x18);
     this.findAllToolStripMenuItem.Text = "Search All Queries / Samples...";
     this.findAllToolStripMenuItem.Click += new EventHandler(this.findAllToolStripMenuItem_Click);
     this.toolStripMenuItem10.Name = "toolStripMenuItem10";
     this.toolStripMenuItem10.Size = new Size(0x17d, 6);
     this.outliningToolStripMenuItem.DropDownItems.AddRange(new ToolStripItem[] { this.toggleOutliningExpansionToolStripMenuItem, this.toggleAllOutliningToolStripMenuItem });
     this.outliningToolStripMenuItem.Name = "outliningToolStripMenuItem";
     this.outliningToolStripMenuItem.Size = new Size(0x180, 0x18);
     this.outliningToolStripMenuItem.Text = "Outlining";
     this.toggleOutliningExpansionToolStripMenuItem.Name = "toggleOutliningExpansionToolStripMenuItem";
     this.toggleOutliningExpansionToolStripMenuItem.Size = new Size(0xf5, 0x18);
     this.toggleOutliningExpansionToolStripMenuItem.Text = "Toggle Outlining Expansion";
     this.toggleOutliningExpansionToolStripMenuItem.Click += new EventHandler(this.toggleOutliningExpansionToolStripMenuItem_Click);
     this.toggleAllOutliningToolStripMenuItem.Name = "toggleAllOutliningToolStripMenuItem";
     this.toggleAllOutliningToolStripMenuItem.Size = new Size(0xf5, 0x18);
     this.toggleAllOutliningToolStripMenuItem.Text = "Toggle All Outlining";
     this.toggleAllOutliningToolStripMenuItem.Click += new EventHandler(this.toggleAllOutliningToolStripMenuItem_Click);
     this.sepOutlining.Name = "sepOutlining";
     this.sepOutlining.Size = new Size(0x17d, 6);
     this.miAutocompletion.DropDownItems.AddRange(new ToolStripItem[] { this.miCompleteWord, this.miListMembers, this.miListTables, this.toolStripMenuItem11, this.miCompleteParameters, this.toolStripMenuItem9, this.miInsertSnippet, this.miSurroundWith });
     this.miAutocompletion.Name = "miAutocompletion";
     this.miAutocompletion.ShortcutKeyDisplayString = "";
     this.miAutocompletion.Size = new Size(0x180, 0x18);
     this.miAutocompletion.Text = "Autocompletion";
     this.miCompleteWord.Name = "miCompleteWord";
     this.miCompleteWord.ShortcutKeyDisplayString = "Ctrl+Space";
     this.miCompleteWord.Size = new Size(370, 0x18);
     this.miCompleteWord.Text = "Complete Word";
     this.miCompleteWord.Click += new EventHandler(this.miCompleteWord_Click);
     this.miListMembers.Name = "miListMembers";
     this.miListMembers.Size = new Size(370, 0x18);
     this.miListMembers.Text = "List Members";
     this.miListMembers.Click += new EventHandler(this.miListMembers_Click);
     this.miListTables.Name = "miListTables";
     this.miListTables.ShortcutKeyDisplayString = "Ctrl+T";
     this.miListTables.Size = new Size(370, 0x18);
     this.miListTables.Text = "List Just Tables and Enumerable Objects";
     this.miListTables.Click += new EventHandler(this.miListTables_Click);
     this.toolStripMenuItem11.Name = "toolStripMenuItem11";
     this.toolStripMenuItem11.Size = new Size(0x16f, 6);
     this.miCompleteParameters.Name = "miCompleteParameters";
     this.miCompleteParameters.ShortcutKeyDisplayString = "Shift+Ctrl+Space";
     this.miCompleteParameters.Size = new Size(370, 0x18);
     this.miCompleteParameters.Text = "Parameter Info";
     this.miCompleteParameters.Click += new EventHandler(this.miCompleteParameters_Click);
     this.toolStripMenuItem9.Name = "toolStripMenuItem9";
     this.toolStripMenuItem9.Size = new Size(0x16f, 6);
     this.miInsertSnippet.Name = "miInsertSnippet";
     this.miInsertSnippet.Size = new Size(370, 0x18);
     this.miInsertSnippet.Text = "Insert Snippet...";
     this.miInsertSnippet.Click += new EventHandler(this.miInsertSnippet_Click);
     this.miSurroundWith.Name = "miSurroundWith";
     this.miSurroundWith.Size = new Size(370, 0x18);
     this.miSurroundWith.Text = "Surround With...";
     this.miSurroundWith.Click += new EventHandler(this.miSurroundWith_Click);
     this.miExecCmd.Name = "miExecCmd";
     this.miExecCmd.ShortcutKeyDisplayString = "Ctrl+Shift+X";
     this.miExecCmd.ShortcutKeys = Keys.Control | Keys.Shift | Keys.X;
     this.miExecCmd.Size = new Size(0x180, 0x18);
     this.miExecCmd.Text = "Execute shell command";
     this.miExecCmd.Click += new EventHandler(this.miExecCmd_Click);
     this.toolStripMenuItem2.Name = "toolStripMenuItem2";
     this.toolStripMenuItem2.Size = new Size(0x17d, 6);
     this.optionsToolStripMenuItem.Image = Resources.Preferences;
     this.optionsToolStripMenuItem.Name = "optionsToolStripMenuItem";
     this.optionsToolStripMenuItem.Size = new Size(0x180, 0x18);
     this.optionsToolStripMenuItem.Text = "Prefere&nces";
     this.optionsToolStripMenuItem.Click += new EventHandler(this.optionsToolStripMenuItem_Click);
     this.queryToolStripMenuItem.DropDownItems.AddRange(new ToolStripItem[] { 
         this.executeToolStripMenuItem, this.cancelToolStripMenuItem, this.miUnload, this.miGCSeparator, this.showHideResultsToolStripMenuItem, this.miUndockResults, this.miVerticalResults, this.toolStripMenuItem14, this.miTextResults, this.miGridResults, this.miSep1, this.miAutoScroll, this.miExecutionTracking, this.miJumpToExecutionPoint, this.toolStripMenuItem8, this.miGC, 
         this.toolStripMenuItem1, this.toolStripMenuItemAdvanced
      });
     this.queryToolStripMenuItem.Name = "queryToolStripMenuItem";
     this.queryToolStripMenuItem.Size = new Size(0x3b, 0x17);
     this.queryToolStripMenuItem.Text = "&Query";
     this.queryToolStripMenuItem.DropDownOpened += new EventHandler(this.queryToolStripMenuItem_DropDownOpened);
     this.executeToolStripMenuItem.Image = Resources.Execute;
     this.executeToolStripMenuItem.Name = "executeToolStripMenuItem";
     this.executeToolStripMenuItem.ShortcutKeys = Keys.F5;
     this.executeToolStripMenuItem.Size = new Size(0x164, 0x18);
     this.executeToolStripMenuItem.Text = "E&xecute";
     this.executeToolStripMenuItem.Click += new EventHandler(this.executeToolStripMenuItem_Click);
     this.cancelToolStripMenuItem.Image = Resources.Cancel;
     this.cancelToolStripMenuItem.Name = "cancelToolStripMenuItem";
     this.cancelToolStripMenuItem.ShortcutKeys = Keys.Shift | Keys.F5;
     this.cancelToolStripMenuItem.Size = new Size(0x164, 0x18);
     this.cancelToolStripMenuItem.Text = "&Cancel";
     this.cancelToolStripMenuItem.Click += new EventHandler(this.cancelToolStripMenuItem_Click);
     this.miUnload.Name = "miUnload";
     this.miUnload.Size = new Size(0x164, 0x18);
     this.miUnload.Text = "Unload Query Application Domain";
     this.miUnload.Click += new EventHandler(this.miUnload_Click);
     this.miGCSeparator.Name = "miGCSeparator";
     this.miGCSeparator.Size = new Size(0x161, 6);
     this.showHideResultsToolStripMenuItem.Image = Resources.Results;
     this.showHideResultsToolStripMenuItem.Name = "showHideResultsToolStripMenuItem";
     this.showHideResultsToolStripMenuItem.ShortcutKeys = Keys.Control | Keys.R;
     this.showHideResultsToolStripMenuItem.Size = new Size(0x164, 0x18);
     this.showHideResultsToolStripMenuItem.Text = "Hide Results";
     this.showHideResultsToolStripMenuItem.Click += new EventHandler(this.showHideResultsToolStripMenuItem_Click);
     this.miUndockResults.Name = "miUndockResults";
     this.miUndockResults.ShortcutKeys = Keys.F8;
     this.miUndockResults.Size = new Size(0x164, 0x18);
     this.miUndockResults.Text = "Dock / Undock Results";
     this.miUndockResults.Click += new EventHandler(this.miUndockResults_Click);
     this.miVerticalResults.Name = "miVerticalResults";
     this.miVerticalResults.ShortcutKeys = Keys.Control | Keys.F8;
     this.miVerticalResults.Size = new Size(0x164, 0x18);
     this.miVerticalResults.Text = "Arrange Results Panel Vertically";
     this.miVerticalResults.Click += new EventHandler(this.miVerticalResults_Click);
     this.toolStripMenuItem14.Name = "toolStripMenuItem14";
     this.toolStripMenuItem14.Size = new Size(0x161, 6);
     this.miTextResults.Name = "miTextResults";
     this.miTextResults.ShortcutKeys = Keys.Control | Keys.Shift | Keys.T;
     this.miTextResults.Size = new Size(0x164, 0x18);
     this.miTextResults.Text = "Results to Rich Text";
     this.miTextResults.Click += new EventHandler(this.miTextResults_Click);
     this.miGridResults.Name = "miGridResults";
     this.miGridResults.ShortcutKeys = Keys.Control | Keys.Shift | Keys.G;
     this.miGridResults.Size = new Size(0x164, 0x18);
     this.miGridResults.Text = "Results to Data Grids";
     this.miGridResults.Click += new EventHandler(this.miGridResults_Click);
     this.miSep1.Name = "miSep1";
     this.miSep1.Size = new Size(0x161, 6);
     this.miAutoScroll.CheckOnClick = true;
     this.miAutoScroll.Name = "miAutoScroll";
     this.miAutoScroll.ShortcutKeys = Keys.Control | Keys.Shift | Keys.E;
     this.miAutoScroll.Size = new Size(0x164, 0x18);
     this.miAutoScroll.Text = "Auto Scroll Results to End";
     this.miAutoScroll.Click += new EventHandler(this.miAutoScroll_Click);
     this.miExecutionTracking.Name = "miExecutionTracking";
     this.miExecutionTracking.ShortcutKeys = Keys.Control | Keys.Shift | Keys.A;
     this.miExecutionTracking.Size = new Size(0x164, 0x18);
     this.miExecutionTracking.Text = "Auto Execution Tracking";
     this.miExecutionTracking.Click += new EventHandler(this.miExecutionTracking_Click);
     this.miJumpToExecutionPoint.Name = "miJumpToExecutionPoint";
     this.miJumpToExecutionPoint.ShortcutKeys = Keys.Control | Keys.Shift | Keys.J;
     this.miJumpToExecutionPoint.Size = new Size(0x164, 0x18);
     this.miJumpToExecutionPoint.Text = "Jump to Execution Point";
     this.miJumpToExecutionPoint.Click += new EventHandler(this.miJumpToExecutionPoint_Click);
     this.toolStripMenuItem8.Name = "toolStripMenuItem8";
     this.toolStripMenuItem8.Size = new Size(0x161, 6);
     this.miGC.Name = "miGC";
     this.miGC.ShortcutKeys = Keys.Alt | Keys.Shift | Keys.G;
     this.miGC.Size = new Size(0x164, 0x18);
     this.miGC.Text = "Trigger Garbage Collection Now";
     this.miGC.Click += new EventHandler(this.miGC_Click);
     this.toolStripMenuItem1.Name = "toolStripMenuItem1";
     this.toolStripMenuItem1.Size = new Size(0x161, 6);
     this.toolStripMenuItemAdvanced.Image = Resources.AdvancedProperties;
     this.toolStripMenuItemAdvanced.Name = "toolStripMenuItemAdvanced";
     this.toolStripMenuItemAdvanced.ShortcutKeys = Keys.F4;
     this.toolStripMenuItemAdvanced.Size = new Size(0x164, 0x18);
     this.toolStripMenuItemAdvanced.Text = "Query Properties";
     this.toolStripMenuItemAdvanced.Click += new EventHandler(this.toolStripMenuItemAdvanced_Click);
     this.helpToolStripMenuItem.DropDownItems.AddRange(new ToolStripItem[] { 
         this.miMemberHelp, this.miActivateReflector, this.toolStripMenuItem12, this.whatsNewtoolStripMenuItem, this.shortcutsMenuItem, this.fAQToolStripMenuItem, this.toolStripMenuItem4, this.viewSamplesToolStripMenuItem, this.bugReportToolStripMenuItem, this.miSuggestion, this.miCustomerService, this.forumToolStripMenuItem, this.microsoftLINQForumsToolStripMenuItem, this.c30InANutshellToolStripMenuItem, this.toolStripMenuItem7, this.miActivateAutocompletion, 
         this.miManageActivations, this.miCheckForUpdates, this.toolStripMenuItem3, this.toolStripMenuItem5
      });
     this.helpToolStripMenuItem.Name = "helpToolStripMenuItem";
     this.helpToolStripMenuItem.Size = new Size(0x31, 0x17);
     this.helpToolStripMenuItem.Text = "&Help";
     this.helpToolStripMenuItem.DropDownOpening += new EventHandler(this.helpToolStripMenuItem_DropDownOpening);
     this.miMemberHelp.Name = "miMemberHelp";
     this.miMemberHelp.ShortcutKeyDisplayString = "F1";
     this.miMemberHelp.Size = new Size(340, 0x18);
     this.miMemberHelp.Text = "Help on Current Type/Member";
     this.miMemberHelp.Click += new EventHandler(this.miMemberHelp_Click);
     this.miActivateReflector.Name = "miActivateReflector";
     this.miActivateReflector.ShortcutKeyDisplayString = "Shift+F1";
     this.miActivateReflector.Size = new Size(340, 0x18);
     this.miActivateReflector.Text = "Reflect on Current Type/Member";
     this.miActivateReflector.Click += new EventHandler(this.miActivateReflector_Click);
     this.toolStripMenuItem12.Name = "toolStripMenuItem12";
     this.toolStripMenuItem12.Size = new Size(0x151, 6);
     this.whatsNewtoolStripMenuItem.Image = Resources.Add;
     this.whatsNewtoolStripMenuItem.Name = "whatsNewtoolStripMenuItem";
     this.whatsNewtoolStripMenuItem.Size = new Size(340, 0x18);
     this.whatsNewtoolStripMenuItem.Text = "What's New";
     this.whatsNewtoolStripMenuItem.Click += new EventHandler(this.whatsNewtoolStripMenuItem_Click);
     this.shortcutsMenuItem.Name = "shortcutsMenuItem";
     this.shortcutsMenuItem.Size = new Size(340, 0x18);
     this.shortcutsMenuItem.Text = "Keyboard/Mouse Shortcuts";
     this.shortcutsMenuItem.Click += new EventHandler(this.shortcutsMenuItem_Click);
     this.fAQToolStripMenuItem.Name = "fAQToolStripMenuItem";
     this.fAQToolStripMenuItem.Size = new Size(340, 0x18);
     this.fAQToolStripMenuItem.Text = "FAQ";
     this.fAQToolStripMenuItem.Click += new EventHandler(this.fAQToolStripMenuItem_Click);
     this.toolStripMenuItem4.Name = "toolStripMenuItem4";
     this.toolStripMenuItem4.Size = new Size(0x151, 6);
     this.viewSamplesToolStripMenuItem.Name = "viewSamplesToolStripMenuItem";
     this.viewSamplesToolStripMenuItem.Size = new Size(340, 0x18);
     this.viewSamplesToolStripMenuItem.Text = "View Samples";
     this.viewSamplesToolStripMenuItem.Click += new EventHandler(this.viewSamplesToolStripMenuItem_Click);
     this.bugReportToolStripMenuItem.Image = Resources.Feedback;
     this.bugReportToolStripMenuItem.Name = "bugReportToolStripMenuItem";
     this.bugReportToolStripMenuItem.Size = new Size(340, 0x18);
     this.bugReportToolStripMenuItem.Text = "Report Bug";
     this.bugReportToolStripMenuItem.Click += new EventHandler(this.bugReportToolStripMenuItem_Click);
     this.miSuggestion.Name = "miSuggestion";
     this.miSuggestion.Size = new Size(340, 0x18);
     this.miSuggestion.Text = "Make Suggestion";
     this.miSuggestion.Click += new EventHandler(this.miSuggestion_Click);
     this.miCustomerService.Name = "miCustomerService";
     this.miCustomerService.Size = new Size(340, 0x18);
     this.miCustomerService.Text = "Customer Service and Feedback Page";
     this.miCustomerService.Click += new EventHandler(this.miCustomerService_Click);
     this.forumToolStripMenuItem.Name = "forumToolStripMenuItem";
     this.forumToolStripMenuItem.Size = new Size(340, 0x18);
     this.forumToolStripMenuItem.Text = "LINQPad Forum";
     this.forumToolStripMenuItem.Click += new EventHandler(this.forumToolStripMenuItem_Click);
     this.microsoftLINQForumsToolStripMenuItem.DropDownItems.AddRange(new ToolStripItem[] { this.lINQGeneralToolStripMenuItem, this.lINQToSQLToolStripMenuItem, this.lINQToEntitiesToolStripMenuItem, this.lINQToXMLToolStripMenuItem, this.pLINQToolStripMenuItem, this.reactiveFrameworkToolStripMenuItem, this.streamInsightToolStripMenuItem });
     this.microsoftLINQForumsToolStripMenuItem.Name = "microsoftLINQForumsToolStripMenuItem";
     this.microsoftLINQForumsToolStripMenuItem.Size = new Size(340, 0x18);
     this.microsoftLINQForumsToolStripMenuItem.Text = "Microsoft Forums";
     this.lINQGeneralToolStripMenuItem.Name = "lINQGeneralToolStripMenuItem";
     this.lINQGeneralToolStripMenuItem.Size = new Size(200, 0x18);
     this.lINQGeneralToolStripMenuItem.Text = "LINQ - General";
     this.lINQGeneralToolStripMenuItem.Click += new EventHandler(this.lINQGeneralToolStripMenuItem_Click);
     this.lINQToSQLToolStripMenuItem.Name = "lINQToSQLToolStripMenuItem";
     this.lINQToSQLToolStripMenuItem.Size = new Size(200, 0x18);
     this.lINQToSQLToolStripMenuItem.Text = "LINQ to SQL";
     this.lINQToSQLToolStripMenuItem.Click += new EventHandler(this.lINQToSQLToolStripMenuItem_Click);
     this.lINQToEntitiesToolStripMenuItem.Name = "lINQToEntitiesToolStripMenuItem";
     this.lINQToEntitiesToolStripMenuItem.Size = new Size(200, 0x18);
     this.lINQToEntitiesToolStripMenuItem.Text = "LINQ to Entities";
     this.lINQToEntitiesToolStripMenuItem.Click += new EventHandler(this.lINQToEntitiesToolStripMenuItem_Click);
     this.lINQToXMLToolStripMenuItem.Name = "lINQToXMLToolStripMenuItem";
     this.lINQToXMLToolStripMenuItem.Size = new Size(200, 0x18);
     this.lINQToXMLToolStripMenuItem.Text = "LINQ to XML";
     this.lINQToXMLToolStripMenuItem.Click += new EventHandler(this.lINQToXMLToolStripMenuItem_Click);
     this.pLINQToolStripMenuItem.Name = "pLINQToolStripMenuItem";
     this.pLINQToolStripMenuItem.Size = new Size(200, 0x18);
     this.pLINQToolStripMenuItem.Text = "PLINQ";
     this.pLINQToolStripMenuItem.Click += new EventHandler(this.pLINQToolStripMenuItem_Click);
     this.reactiveFrameworkToolStripMenuItem.Name = "reactiveFrameworkToolStripMenuItem";
     this.reactiveFrameworkToolStripMenuItem.Size = new Size(200, 0x18);
     this.reactiveFrameworkToolStripMenuItem.Text = "Reactive Framework";
     this.reactiveFrameworkToolStripMenuItem.Click += new EventHandler(this.reactiveFrameworkToolStripMenuItem_Click);
     this.streamInsightToolStripMenuItem.Name = "streamInsightToolStripMenuItem";
     this.streamInsightToolStripMenuItem.Size = new Size(200, 0x18);
     this.streamInsightToolStripMenuItem.Text = "StreamInsight";
     this.streamInsightToolStripMenuItem.Click += new EventHandler(this.streamInsightToolStripMenuItem_Click);
     this.c30InANutshellToolStripMenuItem.Name = "c30InANutshellToolStripMenuItem";
     this.c30InANutshellToolStripMenuItem.Size = new Size(340, 0x18);
     this.c30InANutshellToolStripMenuItem.Text = "C# 4.0 in a Nutshell";
     this.c30InANutshellToolStripMenuItem.Click += new EventHandler(this.c30InANutshellToolStripMenuItem_Click);
     this.toolStripMenuItem7.Name = "toolStripMenuItem7";
     this.toolStripMenuItem7.Size = new Size(0x151, 6);
     this.miActivateAutocompletion.Name = "miActivateAutocompletion";
     this.miActivateAutocompletion.Size = new Size(340, 0x18);
     this.miActivateAutocompletion.Text = "Upgrade to LINQPad Pro or Premium...";
     this.miActivateAutocompletion.Click += new EventHandler(this.miActivateAutocompletion_Click);
     this.miManageActivations.Name = "miManageActivations";
     this.miManageActivations.Size = new Size(340, 0x18);
     this.miManageActivations.Text = "Manage Activations...";
     this.miManageActivations.Click += new EventHandler(this.miManageActivations_Click);
     this.miCheckForUpdates.Image = Resources.CheckUpdates;
     this.miCheckForUpdates.Name = "miCheckForUpdates";
     this.miCheckForUpdates.Size = new Size(340, 0x18);
     this.miCheckForUpdates.Text = "Check For Updates";
     this.miCheckForUpdates.Click += new EventHandler(this.miCheckForUpdates_Click);
     this.toolStripMenuItem3.Name = "toolStripMenuItem3";
     this.toolStripMenuItem3.Size = new Size(0x151, 6);
     this.toolStripMenuItem5.Name = "toolStripMenuItem5";
     this.toolStripMenuItem5.Size = new Size(340, 0x18);
     this.toolStripMenuItem5.Text = "&About LINQPad";
     this.toolStripMenuItem5.Click += new EventHandler(this.aboutToolStripMenuItem_Click);
     this.miHideExplorers.Alignment = ToolStripItemAlignment.Right;
     this.miHideExplorers.DisplayStyle = ToolStripItemDisplayStyle.Image;
     this.miHideExplorers.Image = Resources.Cross;
     this.miHideExplorers.ImageScaling = ToolStripItemImageScaling.None;
     this.miHideExplorers.Name = "miHideExplorers";
     this.miHideExplorers.Size = new Size(0x16, 0x17);
     this.miHideExplorers.Text = "miHideExplorers";
     this.miHideExplorers.Click += new EventHandler(this.miHideExplorers_Click);
     this.tcQueries.Dock = DockStyle.Fill;
     this.tcQueries.Location = new Point(0, 0x2c);
     this.tcQueries.Name = "tcQueries";
     this.tcQueries.SelectedIndex = 0;
     this.tcQueries.Size = new Size(790, 0x36a);
     this.tcQueries.TabIndex = 0;
     this.tcQueries.SelectedIndexChanged += new EventHandler(this.tcQueries_SelectedIndexChanged);
     this.panAppMessage.Controls.Add(this.btnRestart);
     this.panAppMessage.Controls.Add(this.panSpacer1);
     this.panAppMessage.Controls.Add(this.lblAppMessage);
     this.panAppMessage.Controls.Add(this.btnCloseAppMsg);
     this.panAppMessage.Dock = DockStyle.Top;
     this.panAppMessage.Location = new Point(0, 2);
     this.panAppMessage.Name = "panAppMessage";
     this.panAppMessage.Padding = new Padding(4, 5, 4, 5);
     this.panAppMessage.Size = new Size(790, 0x2a);
     this.panAppMessage.TabIndex = 1;
     this.panAppMessage.Visible = false;
     this.btnRestart.Dock = DockStyle.Right;
     this.btnRestart.Location = new Point(0x277, 5);
     this.btnRestart.Name = "btnRestart";
     this.btnRestart.Size = new Size(0x7d, 0x20);
     this.btnRestart.TabIndex = 3;
     this.btnRestart.Text = "Restart LINQPad";
     this.btnRestart.UseVisualStyleBackColor = true;
     this.btnRestart.Click += new EventHandler(this.btnRestart_Click);
     this.panSpacer1.Dock = DockStyle.Right;
     this.panSpacer1.Location = new Point(0x2f4, 5);
     this.panSpacer1.Name = "panSpacer1";
     this.panSpacer1.Size = new Size(7, 0x20);
     this.panSpacer1.TabIndex = 2;
     this.lblAppMessage.Dock = DockStyle.Fill;
     this.lblAppMessage.Location = new Point(4, 5);
     this.lblAppMessage.Name = "lblAppMessage";
     this.lblAppMessage.Size = new Size(0x2f7, 0x20);
     this.lblAppMessage.TabIndex = 0;
     this.lblAppMessage.Text = "A newer version of LINQPad has just been downloaded.";
     this.lblAppMessage.TextAlign = ContentAlignment.MiddleLeft;
     this.btnCloseAppMsg.Checked = false;
     this.btnCloseAppMsg.Dock = DockStyle.Right;
     this.btnCloseAppMsg.Location = new Point(0x2fb, 5);
     this.btnCloseAppMsg.Name = "btnCloseAppMsg";
     this.btnCloseAppMsg.NoImageScale = false;
     this.btnCloseAppMsg.Size = new Size(0x17, 0x20);
     this.btnCloseAppMsg.TabIndex = 4;
     this.btnCloseAppMsg.Text = "clearButton1";
     this.btnCloseAppMsg.ToolTipText = "";
     this.btnCloseAppMsg.Click += new EventHandler(this.btnCloseAppMsg_Click);
     this.editManager.AllowForwarding = true;
     this.editManager.MenuItemCopy = this.copyToolStripMenuItem;
     this.editManager.MenuItemCopyMarkdown = this.miCopyMarkdown;
     this.editManager.MenuItemCopyPlain = this.copyPlainToolStripMenuItem;
     this.editManager.MenuItemCut = this.cutToolStripMenuItem;
     this.editManager.MenuItemEdit = this.editToolStripMenuItem;
     this.editManager.MenuItemPaste = this.pasteToolStripMenuItem;
     this.editManager.MenuItemRedo = this.redoToolStripMenuItem;
     this.editManager.MenuItemSelectAll = this.selectAllToolStripMenuItem;
     this.editManager.MenuItemUndo = this.undoToolStripMenuItem;
     base.AutoScaleDimensions = new SizeF(7f, 17f);
     base.AutoScaleMode = AutoScaleMode.Font;
     base.ClientSize = new Size(0x413, 0x397);
     base.Controls.Add(this.verticalSplit);
     base.Location = new Point(0, 0);
     base.MainMenuStrip = this.mainMenu;
     base.Margin = new Padding(4);
     base.Name = "MainForm";
     base.StartPosition = FormStartPosition.Manual;
     this.Text = "LINQPad";
     this.verticalSplit.Panel1.ResumeLayout(false);
     this.verticalSplit.Panel1.PerformLayout();
     this.verticalSplit.Panel2.ResumeLayout(false);
     this.verticalSplit.ResumeLayout(false);
     this.panLeft.ResumeLayout(false);
     this.splitLeft.Panel1.ResumeLayout(false);
     this.splitLeft.Panel2.ResumeLayout(false);
     this.splitLeft.ResumeLayout(false);
     this.tcQueryTrees.ResumeLayout(false);
     this.pagMyQueries.ResumeLayout(false);
     this.pagMyQueries.PerformLayout();
     this.panMyQueryOptions.ResumeLayout(false);
     this.panMyQueryOptions.PerformLayout();
     this.pagSamples.ResumeLayout(false);
     this.pagSamples.PerformLayout();
     this.mainMenu.ResumeLayout(false);
     this.mainMenu.PerformLayout();
     this.panAppMessage.ResumeLayout(false);
     base.ResumeLayout(false);
 }