private void InitializeComponent()
        {
            InitializeAllComponents();

            TablesController.SuspendLayout();
            recipesTable.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(recipeGrid)).BeginInit();
            TableOfItems.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(IngredientTableCreator)).BeginInit();
            SuspendLayout();

            TablesController.Controls.Add(this.recipesTable);
            TablesController.Controls.Add(TableOfItems);
            this.TablesController.Dock          = System.Windows.Forms.DockStyle.Fill;
            this.TablesController.Location      = new System.Drawing.Point(0, 0);
            this.TablesController.Name          = "BookControl";
            this.TablesController.SelectedIndex = 0;
            this.TablesController.Size          = new System.Drawing.Size(1301, 548);
            this.TablesController.TabIndex      = 0;

            recipesTable.Controls.Add(createNewRecipeButton);
            recipesTable.Controls.Add(TextBoxForSearchRecipe);
            recipesTable.Controls.Add(recipeSearch);
            recipesTable.Controls.Add(recipeGrid);
            recipesTable.Controls.Add(recipeEditor);
            recipesTable.Location = new System.Drawing.Point(4, 22);
            recipesTable.Name     = "recipesTab";
            recipesTable.Padding  = new System.Windows.Forms.Padding(3);
            recipesTable.Size     = new System.Drawing.Size(1293, 522);
            recipesTable.TabIndex = 0;
            recipesTable.Text     = "Recipes";
            recipesTable.UseVisualStyleBackColor = true;

            this.createNewRecipeButton.Location = new System.Drawing.Point(180, 4);
            this.createNewRecipeButton.Name     = "createNewRecipeButton";
            this.createNewRecipeButton.Size     = new System.Drawing.Size(111, 23);
            this.createNewRecipeButton.TabIndex = 4;
            this.createNewRecipeButton.Text     = "Create New Recipe";
            this.createNewRecipeButton.UseVisualStyleBackColor = true;

            this.TextBoxForSearchRecipe.Location = new System.Drawing.Point(45, 4);
            this.TextBoxForSearchRecipe.Name     = "TextBoxForSearchRecipe";
            this.TextBoxForSearchRecipe.Size     = new System.Drawing.Size(128, 20);
            this.TextBoxForSearchRecipe.TabIndex = 3;

            recipeSearch.AutoSize = true;
            recipeSearch.Location = new System.Drawing.Point(4, 4);
            recipeSearch.Name     = "recipeSearch";
            recipeSearch.Size     = new System.Drawing.Size(25, 13);
            recipeSearch.TabIndex = 2;
            recipeSearch.Text     = "Search";

            System.Windows.Forms.DataGridViewColumn[] dataArray = new System.Windows.Forms.DataGridViewColumn[] { recipeNameColumn, deleteRecipeColumn, recipeIdColumn };
            recipeGrid.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            recipeGrid.Columns.AddRange(dataArray);
            recipeGrid.Location              = new System.Drawing.Point(4, 40);
            recipeGrid.Name                  = "RecipeTableForExisting";
            recipeGrid.Size                  = new System.Drawing.Size(293, 380);
            recipeGrid.AllowUserToAddRows    = false;
            recipeGrid.AllowUserToDeleteRows = false;
            recipeGrid.TabIndex              = 1;

            recipeNameColumn.HeaderText = "Recipe";
            recipeNameColumn.Name       = "recipeNameColumn";
            recipeNameColumn.ReadOnly   = true;
            recipeNameColumn.Width      = 200;

            deleteRecipeColumn.HeaderText = "";
            deleteRecipeColumn.Name       = "deleteRecipeColumn";
            deleteRecipeColumn.Width      = 50;

            recipeIdColumn.HeaderText = "";
            recipeIdColumn.Name       = "recipeIdColumn";
            recipeIdColumn.ReadOnly   = true;
            recipeIdColumn.Visible    = false;

            recipeEditor.CheckBoxMode = false;
            recipeEditor.Location     = new System.Drawing.Point(320, 7);
            recipeEditor.Name         = "EditRecipe";
            recipeEditor.ReadOnly     = true;
            recipeEditor.ShowSaveAsEditWhenReadOnly = true;
            recipeEditor.Size     = new System.Drawing.Size(814, 509);
            recipeEditor.TabIndex = 0;

            TableOfItems.Controls.Add(this.itemEditor);
            TableOfItems.Controls.Add(createNewItem);
            TableOfItems.Controls.Add(TextBoxForSearchItem);
            TableOfItems.Controls.Add(IngredientSearch);
            TableOfItems.Controls.Add(IngredientTableCreator);
            TableOfItems.Location = new System.Drawing.Point(4, 22);
            TableOfItems.Name     = "TableOfItems";
            TableOfItems.Padding  = new System.Windows.Forms.Padding(3);
            TableOfItems.Size     = new System.Drawing.Size(1293, 522);
            TableOfItems.TabIndex = 1;
            TableOfItems.Text     = "Items";
            TableOfItems.UseVisualStyleBackColor = true;

            itemEditor.Location = new System.Drawing.Point(400, 133);
            itemEditor.Name     = "itemEditor";
            itemEditor.ReadOnly = true;
            itemEditor.ShowSaveAsEditWhenReadOnly = true;
            itemEditor.Size     = new System.Drawing.Size(301, 218);
            itemEditor.TabIndex = 9;

            createNewItem.Location = new System.Drawing.Point(180, 4);
            createNewItem.Name     = "createNewItem";
            createNewItem.Size     = new System.Drawing.Size(111, 23);
            createNewItem.TabIndex = 8;
            createNewItem.Text     = "Create New Item";
            createNewItem.UseVisualStyleBackColor = true;

            TextBoxForSearchItem.Location = new System.Drawing.Point(45, 5);
            TextBoxForSearchItem.Name     = "TextBoxForSearchItem";
            TextBoxForSearchItem.Size     = new System.Drawing.Size(128, 20);
            TextBoxForSearchItem.TabIndex = 7;

            IngredientSearch.AutoSize = true;
            IngredientSearch.Location = new System.Drawing.Point(4, 5);
            IngredientSearch.Name     = "IngredientSearch";
            IngredientSearch.Size     = new System.Drawing.Size(41, 13);
            IngredientSearch.TabIndex = 6;
            IngredientSearch.Text     = "Search";

            System.Windows.Forms.DataGridViewColumn[] dataArrayItem = new System.Windows.Forms.DataGridViewColumn[] { IngredientNameColumn, IngredientDeleteColumn, IngredientIdColumn };
            IngredientTableCreator.AllowUserToAddRows          = false;
            IngredientTableCreator.AllowUserToDeleteRows       = false;
            IngredientTableCreator.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            IngredientTableCreator.Columns.AddRange(dataArrayItem);
            IngredientTableCreator.Location = new System.Drawing.Point(6, 41);
            IngredientTableCreator.Name     = "IngredientTableCreator";
            IngredientTableCreator.Size     = new System.Drawing.Size(293, 380);
            IngredientTableCreator.TabIndex = 5;

            IngredientNameColumn.HeaderText = "Item";
            IngredientNameColumn.Name       = "IngredientNameColumn";
            IngredientNameColumn.ReadOnly   = true;
            IngredientNameColumn.Width      = 200;

            IngredientDeleteColumn.HeaderText = "";
            IngredientDeleteColumn.Name       = "IngredientDeleteColumn";
            IngredientDeleteColumn.Width      = 50;

            IngredientIdColumn.HeaderText = "";
            IngredientIdColumn.Name       = "IngredientIdColumn";
            IngredientIdColumn.ReadOnly   = true;
            IngredientIdColumn.Visible    = false;

            AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
            Controls.Add(this.TablesController);
            Name = "Tables";
            Size = new System.Drawing.Size(1000, 480);
            TablesController.ResumeLayout(false);
            recipesTable.ResumeLayout(false);
            recipesTable.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.recipeGrid)).EndInit();
            TableOfItems.ResumeLayout(false);
            TableOfItems.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(IngredientTableCreator)).EndInit();
            ResumeLayout(false);
        }
Esempio n. 2
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.Label   cachePathLabel;
     System.Windows.Forms.TabPage advancedTabPage;
     System.Windows.Forms.TabPage cabinetsTabPage;
     System.Windows.Forms.TabPage suppressionsTabPage;
     this.verboseOutputCheckBox                 = new System.Windows.Forms.CheckBox();
     this.allowIdenticalRowsCheckBox            = new System.Windows.Forms.CheckBox();
     this.setMsiAssemblyNameFileVersionCheckBox = new System.Windows.Forms.CheckBox();
     this.leaveTemporaryFilesCheckBox           = new System.Windows.Forms.CheckBox();
     this.cabinetThreadsUpDown       = new System.Windows.Forms.NumericUpDown();
     this.reuseCabCheckBox           = new System.Windows.Forms.CheckBox();
     this.cabinetCacheTextBox        = new Microsoft.Tools.WindowsInstallerXml.VisualStudio.Controls.FolderBrowserTextBox();
     this.suppressIcesCheckBox       = new System.Windows.Forms.CheckBox();
     this.suppressValidationCheckBox = new System.Windows.Forms.CheckBox();
     this.suppressIntermediateFileVersionMismatchCheckBox = new System.Windows.Forms.CheckBox();
     this.suppressDefaultUISequenceCheckBox          = new System.Windows.Forms.CheckBox();
     this.suppressSchemaValidationCheckBox           = new System.Windows.Forms.CheckBox();
     this.suppressLayoutCheckBox                     = new System.Windows.Forms.CheckBox();
     this.suppressFileAndHashInfoCheckBox            = new System.Windows.Forms.CheckBox();
     this.suppressFilesCheckBox                      = new System.Windows.Forms.CheckBox();
     this.suppressMsiAssemblyTableProcessingCheckBox = new System.Windows.Forms.CheckBox();
     this.suppressDroppingUnrealTablesCheckBox       = new System.Windows.Forms.CheckBox();
     this.suppressDefaultAdvSequenceCheckBox         = new System.Windows.Forms.CheckBox();
     this.suppressDefaultAdminSequenceCheckBox       = new System.Windows.Forms.CheckBox();
     this.suppressAclResetCheckBox                   = new System.Windows.Forms.CheckBox();
     this.suppressAssembliesCheckBox                 = new System.Windows.Forms.CheckBox();
     this.iceExampleLabel        = new System.Windows.Forms.Label();
     this.suppressIcesTextBox    = new System.Windows.Forms.TextBox();
     this.okButton               = new System.Windows.Forms.Button();
     this.cancelButton           = new System.Windows.Forms.Button();
     this.folderBrowserDialog    = new System.Windows.Forms.FolderBrowserDialog();
     this.tabControl             = new System.Windows.Forms.TabControl();
     this.cabinetThreadsCheckBox = new System.Windows.Forms.CheckBox();
     cachePathLabel              = new System.Windows.Forms.Label();
     advancedTabPage             = new System.Windows.Forms.TabPage();
     cabinetsTabPage             = new System.Windows.Forms.TabPage();
     suppressionsTabPage         = new System.Windows.Forms.TabPage();
     advancedTabPage.SuspendLayout();
     cabinetsTabPage.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cabinetThreadsUpDown)).BeginInit();
     suppressionsTabPage.SuspendLayout();
     this.tabControl.SuspendLayout();
     this.SuspendLayout();
     //
     // cachePathLabel
     //
     cachePathLabel.AutoSize = true;
     cachePathLabel.Location = new System.Drawing.Point(9, 109);
     cachePathLabel.Name     = "cachePathLabel";
     cachePathLabel.Size     = new System.Drawing.Size(115, 13);
     cachePathLabel.TabIndex = 3;
     cachePathLabel.Text     = "&Path to cabinet cache:";
     //
     // advancedTabPage
     //
     advancedTabPage.Controls.Add(this.verboseOutputCheckBox);
     advancedTabPage.Controls.Add(this.allowIdenticalRowsCheckBox);
     advancedTabPage.Controls.Add(this.setMsiAssemblyNameFileVersionCheckBox);
     advancedTabPage.Controls.Add(this.leaveTemporaryFilesCheckBox);
     advancedTabPage.Location = new System.Drawing.Point(4, 22);
     advancedTabPage.Name     = "advancedTabPage";
     advancedTabPage.Padding  = new System.Windows.Forms.Padding(6);
     advancedTabPage.Size     = new System.Drawing.Size(414, 377);
     advancedTabPage.TabIndex = 0;
     advancedTabPage.Text     = "Advanced";
     advancedTabPage.UseVisualStyleBackColor = true;
     //
     // verboseOutputCheckBox
     //
     this.verboseOutputCheckBox.AutoSize = true;
     this.verboseOutputCheckBox.ImeMode  = System.Windows.Forms.ImeMode.NoControl;
     this.verboseOutputCheckBox.Location = new System.Drawing.Point(9, 9);
     this.verboseOutputCheckBox.Name     = "verboseOutputCheckBox";
     this.verboseOutputCheckBox.Size     = new System.Drawing.Size(100, 17);
     this.verboseOutputCheckBox.TabIndex = 0;
     this.verboseOutputCheckBox.Text     = "&Verbose output";
     this.verboseOutputCheckBox.UseVisualStyleBackColor = true;
     //
     // allowIdenticalRowsCheckBox
     //
     this.allowIdenticalRowsCheckBox.AutoSize = true;
     this.allowIdenticalRowsCheckBox.Location = new System.Drawing.Point(9, 32);
     this.allowIdenticalRowsCheckBox.Name     = "allowIdenticalRowsCheckBox";
     this.allowIdenticalRowsCheckBox.Size     = new System.Drawing.Size(233, 17);
     this.allowIdenticalRowsCheckBox.TabIndex = 1;
     this.allowIdenticalRowsCheckBox.Text     = "Allow &identical rows, but treat as a warning";
     this.allowIdenticalRowsCheckBox.UseVisualStyleBackColor = true;
     //
     // setMsiAssemblyNameFileVersionCheckBox
     //
     this.setMsiAssemblyNameFileVersionCheckBox.AutoSize = true;
     this.setMsiAssemblyNameFileVersionCheckBox.Location = new System.Drawing.Point(9, 55);
     this.setMsiAssemblyNameFileVersionCheckBox.Name     = "setMsiAssemblyNameFileVersionCheckBox";
     this.setMsiAssemblyNameFileVersionCheckBox.Size     = new System.Drawing.Size(366, 17);
     this.setMsiAssemblyNameFileVersionCheckBox.TabIndex = 2;
     this.setMsiAssemblyNameFileVersionCheckBox.Text     = "Add a \'&fileVersion\' entry to the MsiAssemblyName table (rarely needed)";
     this.setMsiAssemblyNameFileVersionCheckBox.UseVisualStyleBackColor = true;
     //
     // leaveTemporaryFilesCheckBox
     //
     this.leaveTemporaryFilesCheckBox.AutoSize = true;
     this.leaveTemporaryFilesCheckBox.Location = new System.Drawing.Point(9, 78);
     this.leaveTemporaryFilesCheckBox.Name     = "leaveTemporaryFilesCheckBox";
     this.leaveTemporaryFilesCheckBox.Size     = new System.Drawing.Size(276, 17);
     this.leaveTemporaryFilesCheckBox.TabIndex = 3;
     this.leaveTemporaryFilesCheckBox.Text     = "&Do not delete temporary files (useful for debugging)";
     this.leaveTemporaryFilesCheckBox.UseVisualStyleBackColor = true;
     //
     // cabinetsTabPage
     //
     cabinetsTabPage.Controls.Add(this.cabinetThreadsCheckBox);
     cabinetsTabPage.Controls.Add(this.cabinetThreadsUpDown);
     cabinetsTabPage.Controls.Add(cachePathLabel);
     cabinetsTabPage.Controls.Add(this.reuseCabCheckBox);
     cabinetsTabPage.Controls.Add(this.cabinetCacheTextBox);
     cabinetsTabPage.Location = new System.Drawing.Point(4, 22);
     cabinetsTabPage.Name     = "cabinetsTabPage";
     cabinetsTabPage.Padding  = new System.Windows.Forms.Padding(6, 12, 6, 6);
     cabinetsTabPage.Size     = new System.Drawing.Size(414, 377);
     cabinetsTabPage.TabIndex = 1;
     cabinetsTabPage.Text     = "Cabinets";
     cabinetsTabPage.UseVisualStyleBackColor = true;
     //
     // cabinetThreadsUpDown
     //
     this.cabinetThreadsUpDown.Enabled  = false;
     this.cabinetThreadsUpDown.Location = new System.Drawing.Point(28, 38);
     this.cabinetThreadsUpDown.Minimum  = new decimal(new int[] {
         1,
         0,
         0,
         0
     });
     this.cabinetThreadsUpDown.Name     = "cabinetThreadsUpDown";
     this.cabinetThreadsUpDown.Size     = new System.Drawing.Size(75, 21);
     this.cabinetThreadsUpDown.TabIndex = 1;
     this.cabinetThreadsUpDown.Value    = new decimal(new int[] {
         1,
         0,
         0,
         0
     });
     //
     // reuseCabCheckBox
     //
     this.reuseCabCheckBox.AutoSize = true;
     this.reuseCabCheckBox.Location = new System.Drawing.Point(9, 80);
     this.reuseCabCheckBox.Margin   = new System.Windows.Forms.Padding(3, 3, 3, 12);
     this.reuseCabCheckBox.Name     = "reuseCabCheckBox";
     this.reuseCabCheckBox.Size     = new System.Drawing.Size(193, 17);
     this.reuseCabCheckBox.TabIndex = 2;
     this.reuseCabCheckBox.Text     = "&Reuse cabinets from cabinet cache";
     this.reuseCabCheckBox.UseVisualStyleBackColor = true;
     //
     // cabinetCacheTextBox
     //
     this.cabinetCacheTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                             | System.Windows.Forms.AnchorStyles.Right)));
     this.cabinetCacheTextBox.DialogDescription = "Path to cabinet cache:";
     this.cabinetCacheTextBox.Location          = new System.Drawing.Point(9, 125);
     this.cabinetCacheTextBox.Name     = "cabinetCacheTextBox";
     this.cabinetCacheTextBox.Size     = new System.Drawing.Size(396, 22);
     this.cabinetCacheTextBox.TabIndex = 4;
     //
     // suppressionsTabPage
     //
     suppressionsTabPage.Controls.Add(this.suppressIcesCheckBox);
     suppressionsTabPage.Controls.Add(this.suppressValidationCheckBox);
     suppressionsTabPage.Controls.Add(this.suppressIntermediateFileVersionMismatchCheckBox);
     suppressionsTabPage.Controls.Add(this.suppressDefaultUISequenceCheckBox);
     suppressionsTabPage.Controls.Add(this.suppressSchemaValidationCheckBox);
     suppressionsTabPage.Controls.Add(this.suppressLayoutCheckBox);
     suppressionsTabPage.Controls.Add(this.suppressFileAndHashInfoCheckBox);
     suppressionsTabPage.Controls.Add(this.suppressFilesCheckBox);
     suppressionsTabPage.Controls.Add(this.suppressMsiAssemblyTableProcessingCheckBox);
     suppressionsTabPage.Controls.Add(this.suppressDroppingUnrealTablesCheckBox);
     suppressionsTabPage.Controls.Add(this.suppressDefaultAdvSequenceCheckBox);
     suppressionsTabPage.Controls.Add(this.suppressDefaultAdminSequenceCheckBox);
     suppressionsTabPage.Controls.Add(this.suppressAclResetCheckBox);
     suppressionsTabPage.Controls.Add(this.suppressAssembliesCheckBox);
     suppressionsTabPage.Controls.Add(this.iceExampleLabel);
     suppressionsTabPage.Controls.Add(this.suppressIcesTextBox);
     suppressionsTabPage.Location = new System.Drawing.Point(4, 22);
     suppressionsTabPage.Name     = "suppressionsTabPage";
     suppressionsTabPage.Padding  = new System.Windows.Forms.Padding(6);
     suppressionsTabPage.Size     = new System.Drawing.Size(414, 377);
     suppressionsTabPage.TabIndex = 2;
     suppressionsTabPage.Text     = "Suppressions";
     suppressionsTabPage.UseVisualStyleBackColor = true;
     //
     // suppressIcesCheckBox
     //
     this.suppressIcesCheckBox.AutoSize = true;
     this.suppressIcesCheckBox.Location = new System.Drawing.Point(9, 308);
     this.suppressIcesCheckBox.Name     = "suppressIcesCheckBox";
     this.suppressIcesCheckBox.Size     = new System.Drawing.Size(254, 17);
     this.suppressIcesCheckBox.TabIndex = 13;
     this.suppressIcesCheckBox.Text     = "Suppress internal consistency evaluators (I&CE):";
     this.suppressIcesCheckBox.UseVisualStyleBackColor = true;
     this.suppressIcesCheckBox.CheckedChanged         += new System.EventHandler(this.suppressIcesCheckBox_CheckedChanged);
     //
     // suppressValidationCheckBox
     //
     this.suppressValidationCheckBox.AutoSize = true;
     this.suppressValidationCheckBox.Location = new System.Drawing.Point(9, 285);
     this.suppressValidationCheckBox.Name     = "suppressValidationCheckBox";
     this.suppressValidationCheckBox.Size     = new System.Drawing.Size(166, 17);
     this.suppressValidationCheckBox.TabIndex = 12;
     this.suppressValidationCheckBox.Text     = "Suppress &MSI/MSM validation";
     this.suppressValidationCheckBox.UseVisualStyleBackColor = true;
     //
     // suppressIntermediateFileVersionMismatchCheckBox
     //
     this.suppressIntermediateFileVersionMismatchCheckBox.AutoSize = true;
     this.suppressIntermediateFileVersionMismatchCheckBox.Location = new System.Drawing.Point(9, 262);
     this.suppressIntermediateFileVersionMismatchCheckBox.Name     = "suppressIntermediateFileVersionMismatchCheckBox";
     this.suppressIntermediateFileVersionMismatchCheckBox.Size     = new System.Drawing.Size(279, 17);
     this.suppressIntermediateFileVersionMismatchCheckBox.TabIndex = 11;
     this.suppressIntermediateFileVersionMismatchCheckBox.Text     = "Suppress &intermediate file version mismatch checking";
     this.suppressIntermediateFileVersionMismatchCheckBox.UseVisualStyleBackColor = true;
     //
     // suppressDefaultUISequenceCheckBox
     //
     this.suppressDefaultUISequenceCheckBox.AutoSize = true;
     this.suppressDefaultUISequenceCheckBox.Location = new System.Drawing.Point(9, 239);
     this.suppressDefaultUISequenceCheckBox.Name     = "suppressDefaultUISequenceCheckBox";
     this.suppressDefaultUISequenceCheckBox.Size     = new System.Drawing.Size(207, 17);
     this.suppressDefaultUISequenceCheckBox.TabIndex = 10;
     this.suppressDefaultUISequenceCheckBox.Text     = "Suppress default &UI sequence actions";
     this.suppressDefaultUISequenceCheckBox.UseVisualStyleBackColor = true;
     //
     // suppressSchemaValidationCheckBox
     //
     this.suppressSchemaValidationCheckBox.AutoSize = true;
     this.suppressSchemaValidationCheckBox.Location = new System.Drawing.Point(9, 216);
     this.suppressSchemaValidationCheckBox.Name     = "suppressSchemaValidationCheckBox";
     this.suppressSchemaValidationCheckBox.Size     = new System.Drawing.Size(328, 17);
     this.suppressSchemaValidationCheckBox.TabIndex = 9;
     this.suppressSchemaValidationCheckBox.Text     = "Suppress &schema validation of documents (performance boost)";
     this.suppressSchemaValidationCheckBox.UseVisualStyleBackColor = true;
     //
     // suppressLayoutCheckBox
     //
     this.suppressLayoutCheckBox.AutoSize = true;
     this.suppressLayoutCheckBox.Location = new System.Drawing.Point(9, 193);
     this.suppressLayoutCheckBox.Name     = "suppressLayoutCheckBox";
     this.suppressLayoutCheckBox.Size     = new System.Drawing.Size(103, 17);
     this.suppressLayoutCheckBox.TabIndex = 8;
     this.suppressLayoutCheckBox.Text     = "Suppress &layout";
     this.suppressLayoutCheckBox.UseVisualStyleBackColor = true;
     //
     // suppressFileAndHashInfoCheckBox
     //
     this.suppressFileAndHashInfoCheckBox.AutoSize = true;
     this.suppressFileAndHashInfoCheckBox.Location = new System.Drawing.Point(9, 170);
     this.suppressFileAndHashInfoCheckBox.Name     = "suppressFileAndHashInfoCheckBox";
     this.suppressFileAndHashInfoCheckBox.Size     = new System.Drawing.Size(314, 17);
     this.suppressFileAndHashInfoCheckBox.TabIndex = 7;
     this.suppressFileAndHashInfoCheckBox.Text     = "Suppress file info (do not get &hash, version, language, etc.)";
     this.suppressFileAndHashInfoCheckBox.UseVisualStyleBackColor = true;
     //
     // suppressFilesCheckBox
     //
     this.suppressFilesCheckBox.AutoSize = true;
     this.suppressFilesCheckBox.Location = new System.Drawing.Point(9, 147);
     this.suppressFilesCheckBox.Name     = "suppressFilesCheckBox";
     this.suppressFilesCheckBox.Size     = new System.Drawing.Size(251, 17);
     this.suppressFilesCheckBox.TabIndex = 6;
     this.suppressFilesCheckBox.Text     = "Suppress &files  (do not get any file information)";
     this.suppressFilesCheckBox.UseVisualStyleBackColor = true;
     //
     // suppressMsiAssemblyTableProcessingCheckBox
     //
     this.suppressMsiAssemblyTableProcessingCheckBox.AutoSize = true;
     this.suppressMsiAssemblyTableProcessingCheckBox.Location = new System.Drawing.Point(9, 124);
     this.suppressMsiAssemblyTableProcessingCheckBox.Name     = "suppressMsiAssemblyTableProcessingCheckBox";
     this.suppressMsiAssemblyTableProcessingCheckBox.Size     = new System.Drawing.Size(269, 17);
     this.suppressMsiAssemblyTableProcessingCheckBox.TabIndex = 5;
     this.suppressMsiAssemblyTableProcessingCheckBox.Text     = "Suppress &processing the data in MsiAssembly table";
     this.suppressMsiAssemblyTableProcessingCheckBox.UseVisualStyleBackColor = true;
     //
     // suppressDroppingUnrealTablesCheckBox
     //
     this.suppressDroppingUnrealTablesCheckBox.AutoSize = true;
     this.suppressDroppingUnrealTablesCheckBox.Location = new System.Drawing.Point(9, 101);
     this.suppressDroppingUnrealTablesCheckBox.Name     = "suppressDroppingUnrealTablesCheckBox";
     this.suppressDroppingUnrealTablesCheckBox.Size     = new System.Drawing.Size(278, 17);
     this.suppressDroppingUnrealTablesCheckBox.TabIndex = 4;
     this.suppressDroppingUnrealTablesCheckBox.Text     = "Suppress &dropping unreal tables to the output image";
     this.suppressDroppingUnrealTablesCheckBox.UseVisualStyleBackColor = true;
     //
     // suppressDefaultAdvSequenceCheckBox
     //
     this.suppressDefaultAdvSequenceCheckBox.AutoSize = true;
     this.suppressDefaultAdvSequenceCheckBox.Location = new System.Drawing.Point(9, 78);
     this.suppressDefaultAdvSequenceCheckBox.Name     = "suppressDefaultAdvSequenceCheckBox";
     this.suppressDefaultAdvSequenceCheckBox.Size     = new System.Drawing.Size(214, 17);
     this.suppressDefaultAdvSequenceCheckBox.TabIndex = 3;
     this.suppressDefaultAdvSequenceCheckBox.Text     = "Suppress default ad&v sequence actions";
     this.suppressDefaultAdvSequenceCheckBox.UseVisualStyleBackColor = true;
     //
     // suppressDefaultAdminSequenceCheckBox
     //
     this.suppressDefaultAdminSequenceCheckBox.AutoSize = true;
     this.suppressDefaultAdminSequenceCheckBox.Location = new System.Drawing.Point(9, 55);
     this.suppressDefaultAdminSequenceCheckBox.Name     = "suppressDefaultAdminSequenceCheckBox";
     this.suppressDefaultAdminSequenceCheckBox.Size     = new System.Drawing.Size(224, 17);
     this.suppressDefaultAdminSequenceCheckBox.TabIndex = 2;
     this.suppressDefaultAdminSequenceCheckBox.Text     = "Suppress default admi&n sequence actions";
     this.suppressDefaultAdminSequenceCheckBox.UseVisualStyleBackColor = true;
     //
     // suppressAclResetCheckBox
     //
     this.suppressAclResetCheckBox.AutoSize = true;
     this.suppressAclResetCheckBox.Location = new System.Drawing.Point(9, 32);
     this.suppressAclResetCheckBox.Name     = "suppressAclResetCheckBox";
     this.suppressAclResetCheckBox.Size     = new System.Drawing.Size(387, 17);
     this.suppressAclResetCheckBox.TabIndex = 1;
     this.suppressAclResetCheckBox.Text     = "Suppress &resetting ACLs (useful when laying out image to a network share)";
     this.suppressAclResetCheckBox.UseVisualStyleBackColor = true;
     //
     // suppressAssembliesCheckBox
     //
     this.suppressAssembliesCheckBox.AutoSize = true;
     this.suppressAssembliesCheckBox.Location = new System.Drawing.Point(9, 9);
     this.suppressAssembliesCheckBox.Name     = "suppressAssembliesCheckBox";
     this.suppressAssembliesCheckBox.Size     = new System.Drawing.Size(389, 17);
     this.suppressAssembliesCheckBox.TabIndex = 0;
     this.suppressAssembliesCheckBox.Text     = "Suppress &assemblies (do not get assembly name information for assemblies)";
     this.suppressAssembliesCheckBox.UseVisualStyleBackColor = true;
     //
     // iceExampleLabel
     //
     this.iceExampleLabel.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.iceExampleLabel.AutoSize = true;
     this.iceExampleLabel.Enabled  = false;
     this.iceExampleLabel.ImeMode  = System.Windows.Forms.ImeMode.NoControl;
     this.iceExampleLabel.Location = new System.Drawing.Point(26, 355);
     this.iceExampleLabel.Margin   = new System.Windows.Forms.Padding(3, 0, 3, 6);
     this.iceExampleLabel.Name     = "iceExampleLabel";
     this.iceExampleLabel.Size     = new System.Drawing.Size(149, 13);
     this.iceExampleLabel.TabIndex = 14;
     this.iceExampleLabel.Text     = "Example: ICE33;ICE34;ICE35";
     //
     // suppressIcesTextBox
     //
     this.suppressIcesTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                                                                             | System.Windows.Forms.AnchorStyles.Right)));
     this.suppressIcesTextBox.Enabled  = false;
     this.suppressIcesTextBox.Location = new System.Drawing.Point(28, 331);
     this.suppressIcesTextBox.Name     = "suppressIcesTextBox";
     this.suppressIcesTextBox.Size     = new System.Drawing.Size(377, 21);
     this.suppressIcesTextBox.TabIndex = 14;
     //
     // okButton
     //
     this.okButton.Anchor                  = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.okButton.DialogResult            = System.Windows.Forms.DialogResult.OK;
     this.okButton.Location                = new System.Drawing.Point(278, 421);
     this.okButton.Name                    = "okButton";
     this.okButton.Size                    = new System.Drawing.Size(75, 23);
     this.okButton.TabIndex                = 15;
     this.okButton.Text                    = "OK";
     this.okButton.UseVisualStyleBackColor = true;
     //
     // cancelButton
     //
     this.cancelButton.Anchor                  = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.cancelButton.DialogResult            = System.Windows.Forms.DialogResult.Cancel;
     this.cancelButton.Location                = new System.Drawing.Point(359, 421);
     this.cancelButton.Name                    = "cancelButton";
     this.cancelButton.Size                    = new System.Drawing.Size(75, 23);
     this.cancelButton.TabIndex                = 16;
     this.cancelButton.Text                    = "Cancel";
     this.cancelButton.UseVisualStyleBackColor = true;
     //
     // tabControl
     //
     this.tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                     | System.Windows.Forms.AnchorStyles.Left)
                                                                    | System.Windows.Forms.AnchorStyles.Right)));
     this.tabControl.Controls.Add(advancedTabPage);
     this.tabControl.Controls.Add(cabinetsTabPage);
     this.tabControl.Controls.Add(suppressionsTabPage);
     this.tabControl.Location      = new System.Drawing.Point(12, 12);
     this.tabControl.Name          = "tabControl";
     this.tabControl.SelectedIndex = 0;
     this.tabControl.Size          = new System.Drawing.Size(422, 403);
     this.tabControl.TabIndex      = 17;
     //
     // cabinetThreadsCheckBox
     //
     this.cabinetThreadsCheckBox.AutoSize = true;
     this.cabinetThreadsCheckBox.Location = new System.Drawing.Point(9, 15);
     this.cabinetThreadsCheckBox.Name     = "cabinetThreadsCheckBox";
     this.cabinetThreadsCheckBox.Size     = new System.Drawing.Size(304, 17);
     this.cabinetThreadsCheckBox.TabIndex = 0;
     this.cabinetThreadsCheckBox.Text     = "&Specify number of threads to use when creating cabinets:";
     this.cabinetThreadsCheckBox.UseVisualStyleBackColor = true;
     this.cabinetThreadsCheckBox.CheckedChanged         += new System.EventHandler(this.cabinetThreadsCheckBox_CheckedChanged);
     //
     // WixLinkerAdvancedSettingsForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(446, 457);
     this.Controls.Add(this.tabControl);
     this.Controls.Add(this.cancelButton);
     this.Controls.Add(this.okButton);
     this.Font            = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.MinimumSize     = new System.Drawing.Size(430, 430);
     this.Name            = "WixLinkerAdvancedSettingsForm";
     this.ShowIcon        = false;
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text            = "Light Advanced Settings";
     advancedTabPage.ResumeLayout(false);
     advancedTabPage.PerformLayout();
     cabinetsTabPage.ResumeLayout(false);
     cabinetsTabPage.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cabinetThreadsUpDown)).EndInit();
     suppressionsTabPage.ResumeLayout(false);
     suppressionsTabPage.PerformLayout();
     this.tabControl.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Esempio n. 3
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Windows.Forms.TabPage tabPage3;
     System.Windows.Forms.TabPage tabPage2;
     System.Windows.Forms.Label   label3;
     System.Windows.Forms.Label   label1;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
     System.Windows.Forms.TabPage tabPage4;
     this.eventListView        = new System.Windows.Forms.ListView();
     this.columnHeader1        = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader2        = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader3        = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader4        = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader5        = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.ownCountLabel        = new System.Windows.Forms.Label();
     this.totalCountLabel      = new System.Windows.Forms.Label();
     this.allCallsListView     = new System.Windows.Forms.ListView();
     this.columnHeader6        = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader7        = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader8        = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader9        = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.imageList1           = new System.Windows.Forms.ImageList(this.components);
     this.clearButton          = new System.Windows.Forms.Button();
     this.callButton           = new System.Windows.Forms.Button();
     this.zeroButton           = new System.Windows.Forms.Button();
     this.nineButton           = new System.Windows.Forms.Button();
     this.eightButton          = new System.Windows.Forms.Button();
     this.sevenButton          = new System.Windows.Forms.Button();
     this.sixButton            = new System.Windows.Forms.Button();
     this.fiveButton           = new System.Windows.Forms.Button();
     this.fourButton           = new System.Windows.Forms.Button();
     this.threeButton          = new System.Windows.Forms.Button();
     this.twoButton            = new System.Windows.Forms.Button();
     this.oneButton            = new System.Windows.Forms.Button();
     this.numberTextBox        = new System.Windows.Forms.TextBox();
     this.activeCallTabPage    = new System.Windows.Forms.TabPage();
     this.activeCallPanel      = new System.Windows.Forms.FlowLayoutPanel();
     this.waitingForCallsLabel = new System.Windows.Forms.Label();
     this.tabControl1          = new System.Windows.Forms.TabControl();
     tabPage3 = new System.Windows.Forms.TabPage();
     tabPage2 = new System.Windows.Forms.TabPage();
     label3   = new System.Windows.Forms.Label();
     label1   = new System.Windows.Forms.Label();
     tabPage4 = new System.Windows.Forms.TabPage();
     tabPage3.SuspendLayout();
     tabPage2.SuspendLayout();
     tabPage4.SuspendLayout();
     this.activeCallTabPage.SuspendLayout();
     this.activeCallPanel.SuspendLayout();
     this.tabControl1.SuspendLayout();
     this.SuspendLayout();
     //
     // tabPage3
     //
     tabPage3.Controls.Add(this.eventListView);
     tabPage3.Location = new System.Drawing.Point(4, 22);
     tabPage3.Name     = "tabPage3";
     tabPage3.Size     = new System.Drawing.Size(740, 508);
     tabPage3.TabIndex = 2;
     tabPage3.Text     = "Ereignisse";
     tabPage3.UseVisualStyleBackColor = true;
     //
     // eventListView
     //
     this.eventListView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                        | System.Windows.Forms.AnchorStyles.Left)
                                                                       | System.Windows.Forms.AnchorStyles.Right)));
     this.eventListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.columnHeader1,
         this.columnHeader2,
         this.columnHeader3,
         this.columnHeader4,
         this.columnHeader5
     });
     this.eventListView.FullRowSelect = true;
     this.eventListView.Location      = new System.Drawing.Point(3, 3);
     this.eventListView.Name          = "eventListView";
     this.eventListView.Size          = new System.Drawing.Size(734, 428);
     this.eventListView.TabIndex      = 0;
     this.eventListView.UseCompatibleStateImageBehavior = false;
     this.eventListView.View = System.Windows.Forms.View.Details;
     //
     // columnHeader1
     //
     this.columnHeader1.Text = "Time";
     //
     // columnHeader2
     //
     this.columnHeader2.Text = "Line";
     //
     // columnHeader3
     //
     this.columnHeader3.Text = "Call";
     //
     // columnHeader4
     //
     this.columnHeader4.Text = "Event";
     //
     // columnHeader5
     //
     this.columnHeader5.Text = "Message";
     //
     // tabPage2
     //
     tabPage2.Controls.Add(this.ownCountLabel);
     tabPage2.Controls.Add(label3);
     tabPage2.Controls.Add(this.totalCountLabel);
     tabPage2.Controls.Add(label1);
     tabPage2.Controls.Add(this.allCallsListView);
     tabPage2.Location = new System.Drawing.Point(4, 22);
     tabPage2.Name     = "tabPage2";
     tabPage2.Padding  = new System.Windows.Forms.Padding(3);
     tabPage2.Size     = new System.Drawing.Size(740, 508);
     tabPage2.TabIndex = 1;
     tabPage2.Text     = "Alle Anrufe";
     tabPage2.UseVisualStyleBackColor = true;
     //
     // ownCountLabel
     //
     this.ownCountLabel.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.ownCountLabel.AutoSize = true;
     this.ownCountLabel.Location = new System.Drawing.Point(70, 485);
     this.ownCountLabel.Name     = "ownCountLabel";
     this.ownCountLabel.Size     = new System.Drawing.Size(13, 13);
     this.ownCountLabel.TabIndex = 4;
     this.ownCountLabel.Text     = "0";
     //
     // label3
     //
     label3.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     label3.AutoSize = true;
     label3.Location = new System.Drawing.Point(6, 485);
     label3.Name     = "label3";
     label3.Size     = new System.Drawing.Size(43, 13);
     label3.TabIndex = 3;
     label3.Text     = "Eigene:";
     //
     // totalCountLabel
     //
     this.totalCountLabel.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.totalCountLabel.AutoSize = true;
     this.totalCountLabel.Location = new System.Drawing.Point(70, 466);
     this.totalCountLabel.Name     = "totalCountLabel";
     this.totalCountLabel.Size     = new System.Drawing.Size(13, 13);
     this.totalCountLabel.TabIndex = 2;
     this.totalCountLabel.Text     = "0";
     //
     // label1
     //
     label1.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     label1.AutoSize = true;
     label1.Location = new System.Drawing.Point(6, 466);
     label1.Name     = "label1";
     label1.Size     = new System.Drawing.Size(58, 13);
     label1.TabIndex = 1;
     label1.Text     = "Insgesamt:";
     //
     // allCallsListView
     //
     this.allCallsListView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                           | System.Windows.Forms.AnchorStyles.Left)
                                                                          | System.Windows.Forms.AnchorStyles.Right)));
     this.allCallsListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.columnHeader6,
         this.columnHeader7,
         this.columnHeader8,
         this.columnHeader9
     });
     this.allCallsListView.FullRowSelect    = true;
     this.allCallsListView.LargeImageList   = this.imageList1;
     this.allCallsListView.Location         = new System.Drawing.Point(6, 6);
     this.allCallsListView.Name             = "allCallsListView";
     this.allCallsListView.ShowItemToolTips = true;
     this.allCallsListView.Size             = new System.Drawing.Size(728, 443);
     this.allCallsListView.SmallImageList   = this.imageList1;
     this.allCallsListView.TabIndex         = 0;
     this.allCallsListView.UseCompatibleStateImageBehavior = false;
     this.allCallsListView.View = System.Windows.Forms.View.Details;
     //
     // columnHeader6
     //
     this.columnHeader6.Text = "Zeit";
     //
     // columnHeader7
     //
     this.columnHeader7.Text = "Nummer";
     //
     // columnHeader8
     //
     this.columnHeader8.Text = "Name";
     //
     // columnHeader9
     //
     this.columnHeader9.Text = "Dauer";
     //
     // imageList1
     //
     this.imageList1.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList1.Images.SetKeyName(0, "arrow_left_blue.png");
     this.imageList1.Images.SetKeyName(1, "arrow_right_green.png");
     //
     // tabPage4
     //
     tabPage4.Controls.Add(this.clearButton);
     tabPage4.Controls.Add(this.callButton);
     tabPage4.Controls.Add(this.zeroButton);
     tabPage4.Controls.Add(this.nineButton);
     tabPage4.Controls.Add(this.eightButton);
     tabPage4.Controls.Add(this.sevenButton);
     tabPage4.Controls.Add(this.sixButton);
     tabPage4.Controls.Add(this.fiveButton);
     tabPage4.Controls.Add(this.fourButton);
     tabPage4.Controls.Add(this.threeButton);
     tabPage4.Controls.Add(this.twoButton);
     tabPage4.Controls.Add(this.oneButton);
     tabPage4.Controls.Add(this.numberTextBox);
     tabPage4.Location = new System.Drawing.Point(4, 22);
     tabPage4.Name     = "tabPage4";
     tabPage4.Size     = new System.Drawing.Size(740, 508);
     tabPage4.TabIndex = 3;
     tabPage4.Text     = "Neuer Anruf";
     tabPage4.UseVisualStyleBackColor = true;
     //
     // clearButton
     //
     this.clearButton.Font     = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.clearButton.Location = new System.Drawing.Point(147, 237);
     this.clearButton.Name     = "clearButton";
     this.clearButton.Size     = new System.Drawing.Size(60, 60);
     this.clearButton.TabIndex = 13;
     this.clearButton.Text     = "C";
     this.clearButton.UseVisualStyleBackColor = true;
     this.clearButton.Click += new System.EventHandler(this.ClearButton_Click);
     //
     // callButton
     //
     this.callButton.Font     = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.callButton.Location = new System.Drawing.Point(15, 303);
     this.callButton.Name     = "callButton";
     this.callButton.Size     = new System.Drawing.Size(192, 60);
     this.callButton.TabIndex = 12;
     this.callButton.Text     = "Anrufen";
     this.callButton.UseVisualStyleBackColor = true;
     this.callButton.Click += new System.EventHandler(this.CallButton_Click);
     //
     // zeroButton
     //
     this.zeroButton.Font     = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.zeroButton.Location = new System.Drawing.Point(81, 237);
     this.zeroButton.Name     = "zeroButton";
     this.zeroButton.Size     = new System.Drawing.Size(60, 60);
     this.zeroButton.TabIndex = 10;
     this.zeroButton.Tag      = "0";
     this.zeroButton.Text     = "0";
     this.zeroButton.UseVisualStyleBackColor = true;
     this.zeroButton.Click += new System.EventHandler(this.DigitButton_Click);
     //
     // nineButton
     //
     this.nineButton.Font     = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.nineButton.Location = new System.Drawing.Point(147, 171);
     this.nineButton.Name     = "nineButton";
     this.nineButton.Size     = new System.Drawing.Size(60, 60);
     this.nineButton.TabIndex = 9;
     this.nineButton.Tag      = "9";
     this.nineButton.Text     = "9";
     this.nineButton.UseVisualStyleBackColor = true;
     this.nineButton.Click += new System.EventHandler(this.DigitButton_Click);
     //
     // eightButton
     //
     this.eightButton.Font     = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.eightButton.Location = new System.Drawing.Point(81, 171);
     this.eightButton.Name     = "eightButton";
     this.eightButton.Size     = new System.Drawing.Size(60, 60);
     this.eightButton.TabIndex = 8;
     this.eightButton.Tag      = "8";
     this.eightButton.Text     = "8";
     this.eightButton.UseVisualStyleBackColor = true;
     this.eightButton.Click += new System.EventHandler(this.DigitButton_Click);
     //
     // sevenButton
     //
     this.sevenButton.Font     = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.sevenButton.Location = new System.Drawing.Point(15, 171);
     this.sevenButton.Name     = "sevenButton";
     this.sevenButton.Size     = new System.Drawing.Size(60, 60);
     this.sevenButton.TabIndex = 7;
     this.sevenButton.Tag      = "7";
     this.sevenButton.Text     = "7";
     this.sevenButton.UseVisualStyleBackColor = true;
     this.sevenButton.Click += new System.EventHandler(this.DigitButton_Click);
     //
     // sixButton
     //
     this.sixButton.Font     = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.sixButton.Location = new System.Drawing.Point(147, 105);
     this.sixButton.Name     = "sixButton";
     this.sixButton.Size     = new System.Drawing.Size(60, 60);
     this.sixButton.TabIndex = 6;
     this.sixButton.Tag      = "6";
     this.sixButton.Text     = "6";
     this.sixButton.UseVisualStyleBackColor = true;
     this.sixButton.Click += new System.EventHandler(this.DigitButton_Click);
     //
     // fiveButton
     //
     this.fiveButton.Font     = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.fiveButton.Location = new System.Drawing.Point(81, 105);
     this.fiveButton.Name     = "fiveButton";
     this.fiveButton.Size     = new System.Drawing.Size(60, 60);
     this.fiveButton.TabIndex = 5;
     this.fiveButton.Tag      = "5";
     this.fiveButton.Text     = "5";
     this.fiveButton.UseVisualStyleBackColor = true;
     this.fiveButton.Click += new System.EventHandler(this.DigitButton_Click);
     //
     // fourButton
     //
     this.fourButton.Font     = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.fourButton.Location = new System.Drawing.Point(15, 105);
     this.fourButton.Name     = "fourButton";
     this.fourButton.Size     = new System.Drawing.Size(60, 60);
     this.fourButton.TabIndex = 4;
     this.fourButton.Tag      = "4";
     this.fourButton.Text     = "4";
     this.fourButton.UseVisualStyleBackColor = true;
     this.fourButton.Click += new System.EventHandler(this.DigitButton_Click);
     //
     // threeButton
     //
     this.threeButton.Font     = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.threeButton.Location = new System.Drawing.Point(147, 39);
     this.threeButton.Name     = "threeButton";
     this.threeButton.Size     = new System.Drawing.Size(60, 60);
     this.threeButton.TabIndex = 3;
     this.threeButton.Tag      = "3";
     this.threeButton.Text     = "3";
     this.threeButton.UseVisualStyleBackColor = true;
     this.threeButton.Click += new System.EventHandler(this.DigitButton_Click);
     //
     // twoButton
     //
     this.twoButton.Font     = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.twoButton.Location = new System.Drawing.Point(81, 39);
     this.twoButton.Name     = "twoButton";
     this.twoButton.Size     = new System.Drawing.Size(60, 60);
     this.twoButton.TabIndex = 2;
     this.twoButton.Tag      = "2";
     this.twoButton.Text     = "2";
     this.twoButton.UseVisualStyleBackColor = true;
     this.twoButton.Click += new System.EventHandler(this.DigitButton_Click);
     //
     // oneButton
     //
     this.oneButton.Font     = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.oneButton.Location = new System.Drawing.Point(15, 39);
     this.oneButton.Name     = "oneButton";
     this.oneButton.Size     = new System.Drawing.Size(60, 60);
     this.oneButton.TabIndex = 1;
     this.oneButton.Tag      = "1";
     this.oneButton.Text     = "1";
     this.oneButton.UseVisualStyleBackColor = true;
     this.oneButton.Click += new System.EventHandler(this.DigitButton_Click);
     //
     // numberTextBox
     //
     this.numberTextBox.Location = new System.Drawing.Point(15, 13);
     this.numberTextBox.Name     = "numberTextBox";
     this.numberTextBox.Size     = new System.Drawing.Size(192, 20);
     this.numberTextBox.TabIndex = 0;
     //
     // activeCallTabPage
     //
     this.activeCallTabPage.Controls.Add(this.activeCallPanel);
     this.activeCallTabPage.Location = new System.Drawing.Point(4, 22);
     this.activeCallTabPage.Name     = "activeCallTabPage";
     this.activeCallTabPage.Padding  = new System.Windows.Forms.Padding(3);
     this.activeCallTabPage.Size     = new System.Drawing.Size(740, 508);
     this.activeCallTabPage.TabIndex = 0;
     this.activeCallTabPage.Text     = "Aktuelle Anrufe";
     this.activeCallTabPage.UseVisualStyleBackColor = true;
     //
     // activeCallPanel
     //
     this.activeCallPanel.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                          | System.Windows.Forms.AnchorStyles.Left)
                                                                         | System.Windows.Forms.AnchorStyles.Right)));
     this.activeCallPanel.AutoScroll = true;
     this.activeCallPanel.Controls.Add(this.waitingForCallsLabel);
     this.activeCallPanel.Location        = new System.Drawing.Point(6, 6);
     this.activeCallPanel.Name            = "activeCallPanel";
     this.activeCallPanel.Size            = new System.Drawing.Size(728, 496);
     this.activeCallPanel.TabIndex        = 0;
     this.activeCallPanel.ControlAdded   += new System.Windows.Forms.ControlEventHandler(this.ActiveCallPanel_ControlAdded);
     this.activeCallPanel.ControlRemoved += new System.Windows.Forms.ControlEventHandler(this.ActiveCallPanel_ControlRemoved);
     this.activeCallPanel.Layout         += new System.Windows.Forms.LayoutEventHandler(this.ActiveCallPanel_Layout);
     //
     // waitingForCallsLabel
     //
     this.waitingForCallsLabel.AutoSize = true;
     this.waitingForCallsLabel.Font     = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.waitingForCallsLabel.Location = new System.Drawing.Point(3, 0);
     this.waitingForCallsLabel.Name     = "waitingForCallsLabel";
     this.waitingForCallsLabel.Size     = new System.Drawing.Size(162, 20);
     this.waitingForCallsLabel.TabIndex = 0;
     this.waitingForCallsLabel.Text     = "Warte auf Anrufe...";
     //
     // tabControl1
     //
     this.tabControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                      | System.Windows.Forms.AnchorStyles.Left)
                                                                     | System.Windows.Forms.AnchorStyles.Right)));
     this.tabControl1.Controls.Add(this.activeCallTabPage);
     this.tabControl1.Controls.Add(tabPage4);
     this.tabControl1.Controls.Add(tabPage2);
     this.tabControl1.Controls.Add(tabPage3);
     this.tabControl1.Location      = new System.Drawing.Point(12, 12);
     this.tabControl1.Name          = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size          = new System.Drawing.Size(748, 534);
     this.tabControl1.TabIndex      = 0;
     //
     // MainForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(772, 558);
     this.Controls.Add(this.tabControl1);
     this.Icon  = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name  = "MainForm";
     this.Text  = "Telefon-Wächter";
     this.Load += new System.EventHandler(this.MainForm_Load);
     tabPage3.ResumeLayout(false);
     tabPage2.ResumeLayout(false);
     tabPage2.PerformLayout();
     tabPage4.ResumeLayout(false);
     tabPage4.PerformLayout();
     this.activeCallTabPage.ResumeLayout(false);
     this.activeCallPanel.ResumeLayout(false);
     this.activeCallPanel.PerformLayout();
     this.tabControl1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Esempio n. 4
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.TabControl tabControl1;
     System.Windows.Forms.TabPage    tabPage1;
     System.Windows.Forms.TabPage    tabPage2;
     System.Windows.Forms.Label      label1;
     this.splitContainer         = new System.Windows.Forms.SplitContainer();
     this.txtSourceCode          = new System.Windows.Forms.TextBox();
     this.descriptionControlCopy = new IronSmalltalk.Tools.ClassLibraryBrowser.Controls.DescriptionControl();
     this.txtMethodHeader        = new System.Windows.Forms.TextBox();
     this.descriptionControl     = new IronSmalltalk.Tools.ClassLibraryBrowser.Controls.DescriptionControl();
     this.txtNativeName          = new System.Windows.Forms.TextBox();
     tabControl1 = new System.Windows.Forms.TabControl();
     tabPage1    = new System.Windows.Forms.TabPage();
     tabPage2    = new System.Windows.Forms.TabPage();
     label1      = new System.Windows.Forms.Label();
     tabControl1.SuspendLayout();
     tabPage1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit();
     this.splitContainer.Panel1.SuspendLayout();
     this.splitContainer.Panel2.SuspendLayout();
     this.splitContainer.SuspendLayout();
     tabPage2.SuspendLayout();
     this.SuspendLayout();
     //
     // tabControl1
     //
     tabControl1.Controls.Add(tabPage1);
     tabControl1.Controls.Add(tabPage2);
     tabControl1.Dock          = System.Windows.Forms.DockStyle.Fill;
     tabControl1.Location      = new System.Drawing.Point(0, 0);
     tabControl1.Name          = "tabControl1";
     tabControl1.SelectedIndex = 0;
     tabControl1.Size          = new System.Drawing.Size(384, 223);
     tabControl1.TabIndex      = 1;
     //
     // tabPage1
     //
     tabPage1.Controls.Add(this.splitContainer);
     tabPage1.Controls.Add(this.txtMethodHeader);
     tabPage1.ImageKey = "source";
     tabPage1.Location = new System.Drawing.Point(4, 22);
     tabPage1.Name     = "tabPage1";
     tabPage1.Padding  = new System.Windows.Forms.Padding(3);
     tabPage1.Size     = new System.Drawing.Size(376, 197);
     tabPage1.TabIndex = 0;
     tabPage1.Text     = "Source";
     tabPage1.UseVisualStyleBackColor = true;
     //
     // splitContainer
     //
     this.splitContainer.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                         | System.Windows.Forms.AnchorStyles.Left)
                                                                        | System.Windows.Forms.AnchorStyles.Right)));
     this.splitContainer.Location = new System.Drawing.Point(6, 29);
     this.splitContainer.Name     = "splitContainer";
     //
     // splitContainer.Panel1
     //
     this.splitContainer.Panel1.Controls.Add(this.txtSourceCode);
     //
     // splitContainer.Panel2
     //
     this.splitContainer.Panel2.Controls.Add(this.descriptionControlCopy);
     this.splitContainer.Size             = new System.Drawing.Size(364, 162);
     this.splitContainer.SplitterDistance = 253;
     this.splitContainer.TabIndex         = 7;
     //
     // txtSourceCode
     //
     this.txtSourceCode.AcceptsTab   = true;
     this.txtSourceCode.Dock         = System.Windows.Forms.DockStyle.Fill;
     this.txtSourceCode.Font         = new System.Drawing.Font("Courier New", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtSourceCode.Location     = new System.Drawing.Point(0, 0);
     this.txtSourceCode.Multiline    = true;
     this.txtSourceCode.Name         = "txtSourceCode";
     this.txtSourceCode.Size         = new System.Drawing.Size(253, 162);
     this.txtSourceCode.TabIndex     = 7;
     this.txtSourceCode.TextChanged += new System.EventHandler(this.txtSourceCode_TextChanged);
     this.txtSourceCode.KeyDown     += new System.Windows.Forms.KeyEventHandler(this.txtSourceCode_KeyDown);
     //
     // descriptionControlCopy
     //
     this.descriptionControlCopy.Dock      = System.Windows.Forms.DockStyle.Fill;
     this.descriptionControlCopy.Enabled   = false;
     this.descriptionControlCopy.Location  = new System.Drawing.Point(0, 0);
     this.descriptionControlCopy.Margin    = new System.Windows.Forms.Padding(0);
     this.descriptionControlCopy.Name      = "descriptionControlCopy";
     this.descriptionControlCopy.ShowLabel = false;
     this.descriptionControlCopy.Size      = new System.Drawing.Size(107, 162);
     this.descriptionControlCopy.TabIndex  = 8;
     //
     // txtMethodHeader
     //
     this.txtMethodHeader.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                         | System.Windows.Forms.AnchorStyles.Right)));
     this.txtMethodHeader.Location     = new System.Drawing.Point(6, 3);
     this.txtMethodHeader.Name         = "txtMethodHeader";
     this.txtMethodHeader.ReadOnly     = true;
     this.txtMethodHeader.Size         = new System.Drawing.Size(364, 20);
     this.txtMethodHeader.TabIndex     = 5;
     this.txtMethodHeader.DoubleClick += new System.EventHandler(this.txtMethodHeader_DoubleClick);
     //
     // tabPage2
     //
     tabPage2.Controls.Add(label1);
     tabPage2.Controls.Add(this.txtNativeName);
     tabPage2.Controls.Add(this.descriptionControl);
     tabPage2.ImageKey = "document";
     tabPage2.Location = new System.Drawing.Point(4, 22);
     tabPage2.Name     = "tabPage2";
     tabPage2.Padding  = new System.Windows.Forms.Padding(3);
     tabPage2.Size     = new System.Drawing.Size(376, 197);
     tabPage2.TabIndex = 1;
     tabPage2.Text     = "Definition";
     tabPage2.UseVisualStyleBackColor = true;
     //
     // descriptionControl
     //
     this.descriptionControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                             | System.Windows.Forms.AnchorStyles.Left)
                                                                            | System.Windows.Forms.AnchorStyles.Right)));
     this.descriptionControl.Location  = new System.Drawing.Point(3, 33);
     this.descriptionControl.Margin    = new System.Windows.Forms.Padding(0);
     this.descriptionControl.Name      = "descriptionControl";
     this.descriptionControl.ShowLabel = false;
     this.descriptionControl.Size      = new System.Drawing.Size(370, 161);
     this.descriptionControl.TabIndex  = 7;
     //
     // txtNativeName
     //
     this.txtNativeName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                       | System.Windows.Forms.AnchorStyles.Right)));
     this.txtNativeName.Location     = new System.Drawing.Point(81, 7);
     this.txtNativeName.Name         = "txtNativeName";
     this.txtNativeName.Size         = new System.Drawing.Size(289, 20);
     this.txtNativeName.TabIndex     = 8;
     this.txtNativeName.TextChanged += new System.EventHandler(this.txtNativeName_TextChanged);
     //
     // label1
     //
     label1.AutoSize = true;
     label1.Location = new System.Drawing.Point(3, 10);
     label1.Name     = "label1";
     label1.Size     = new System.Drawing.Size(72, 13);
     label1.TabIndex = 9;
     label1.Text     = "Native Name:";
     //
     // MethodDefinitionControl
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(tabControl1);
     this.Name  = "MethodDefinitionControl";
     this.Size  = new System.Drawing.Size(384, 223);
     this.Load += new System.EventHandler(this.MethodDefinitionControl_Load);
     tabControl1.ResumeLayout(false);
     tabPage1.ResumeLayout(false);
     tabPage1.PerformLayout();
     this.splitContainer.Panel1.ResumeLayout(false);
     this.splitContainer.Panel1.PerformLayout();
     this.splitContainer.Panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).EndInit();
     this.splitContainer.ResumeLayout(false);
     tabPage2.ResumeLayout(false);
     tabPage2.PerformLayout();
     this.ResumeLayout(false);
 }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.Windows.Forms.TabPage tabPageMain;
            System.Windows.Forms.Label label7;
            System.Windows.Forms.Label label6;
            System.Windows.Forms.GroupBox groupBoxToken;
            System.Windows.Forms.Label label13;
            System.Windows.Forms.Label label8;
            System.Windows.Forms.Label label5;
            System.Windows.Forms.Label lblTokenType;
            System.Windows.Forms.Label label4;
            System.Windows.Forms.Label lblImpLevel;
            System.Windows.Forms.Label label3;
            System.Windows.Forms.Label label1;
            System.Windows.Forms.Label label2;
            System.Windows.Forms.TabPage tabPageGroups;
            System.Windows.Forms.ColumnHeader columnHeaderName;
            System.Windows.Forms.ColumnHeader columnHeaderFlags;
            System.Windows.Forms.TabPage tabPageDefaultDacl;
            System.Windows.Forms.ColumnHeader columnHeaderGroup;
            System.Windows.Forms.ColumnHeader columnHeaderAccess;
            System.Windows.Forms.ColumnHeader columnHeaderDaclFlags;
            System.Windows.Forms.ColumnHeader columnHeaderDaclType;
            System.Windows.Forms.Label label10;
            System.Windows.Forms.Label label9;
            System.Windows.Forms.Label label11;
            System.Windows.Forms.Label label12;
            System.Windows.Forms.GroupBox groupBoxDuplicate;
            System.Windows.Forms.Label lblILForDup;
            System.Windows.Forms.Label label15;
            System.Windows.Forms.Label label14;
            System.Windows.Forms.GroupBox groupBox1;
            System.Windows.Forms.Label label16;
            System.Windows.Forms.GroupBox groupBox2;
            System.Windows.Forms.Label label22;
            System.Windows.Forms.Label label20;
            System.Windows.Forms.Label label19;
            System.Windows.Forms.Label label18;
            System.Windows.Forms.Label label17;
            System.Windows.Forms.GroupBox groupBox3;
            System.Windows.Forms.Label label21;
            System.Windows.Forms.GroupBox groupBox4;
            System.Windows.Forms.Label label24;
            System.Windows.Forms.Label label23;
            System.Windows.Forms.ColumnHeader columnHeader5;
            System.Windows.Forms.ColumnHeader columnHeader6;
            this.groupBoxSource = new System.Windows.Forms.GroupBox();
            this.txtSourceId = new System.Windows.Forms.TextBox();
            this.txtSourceName = new System.Windows.Forms.TextBox();
            this.btnSetIL = new System.Windows.Forms.Button();
            this.comboBoxIL = new System.Windows.Forms.ComboBox();
            this.txtOriginLoginId = new System.Windows.Forms.TextBox();
            this.btnLinkedToken = new System.Windows.Forms.Button();
            this.txtElevationType = new System.Windows.Forms.TextBox();
            this.lblUsername = new System.Windows.Forms.Label();
            this.txtSessionId = new System.Windows.Forms.TextBox();
            this.txtUsername = new System.Windows.Forms.TextBox();
            this.lblUserSid = new System.Windows.Forms.Label();
            this.txtUserSid = new System.Windows.Forms.TextBox();
            this.txtTokenType = new System.Windows.Forms.TextBox();
            this.txtModifiedId = new System.Windows.Forms.TextBox();
            this.txtImpLevel = new System.Windows.Forms.TextBox();
            this.txtAuthId = new System.Windows.Forms.TextBox();
            this.txtTokenId = new System.Windows.Forms.TextBox();
            this.btnPermissions = new System.Windows.Forms.Button();
            this.listViewGroups = new System.Windows.Forms.ListView();
            this.listViewDefDacl = new System.Windows.Forms.ListView();
            this.txtPrimaryGroup = new System.Windows.Forms.TextBox();
            this.txtOwner = new System.Windows.Forms.TextBox();
            this.comboBoxILForDup = new System.Windows.Forms.ComboBox();
            this.btnDuplicate = new System.Windows.Forms.Button();
            this.comboBoxImpLevel = new System.Windows.Forms.ComboBox();
            this.comboBoxTokenType = new System.Windows.Forms.ComboBox();
            this.checkBoxMakeInteractive = new System.Windows.Forms.CheckBox();
            this.btnCreateProcess = new System.Windows.Forms.Button();
            this.txtCommandLine = new System.Windows.Forms.TextBox();
            this.txtMandatoryILPolicy = new System.Windows.Forms.TextBox();
            this.txtVirtualizationEnabled = new System.Windows.Forms.TextBox();
            this.txtVirtualizationAllowed = new System.Windows.Forms.TextBox();
            this.txtSandboxInert = new System.Windows.Forms.TextBox();
            this.txtUIAccess = new System.Windows.Forms.TextBox();
            this.comboBoxSaferLevel = new System.Windows.Forms.ComboBox();
            this.checkBoxSaferMakeInert = new System.Windows.Forms.CheckBox();
            this.btnComputeSafer = new System.Windows.Forms.Button();
            this.btnCreate = new System.Windows.Forms.Button();
            this.btnBrowse = new System.Windows.Forms.Button();
            this.txtFileContents = new System.Windows.Forms.TextBox();
            this.txtFilePath = new System.Windows.Forms.TextBox();
            this.tabControlMain = new System.Windows.Forms.TabControl();
            this.tabPagePrivs = new System.Windows.Forms.TabPage();
            this.listViewPrivs = new System.Windows.Forms.ListView();
            this.tabPageRestricted = new System.Windows.Forms.TabPage();
            this.listViewRestrictedSids = new System.Windows.Forms.ListView();
            this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.tabPageAppContainer = new System.Windows.Forms.TabPage();
            this.txtACNumber = new System.Windows.Forms.TextBox();
            this.listViewCapabilities = new System.Windows.Forms.ListView();
            this.columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.columnHeader4 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.txtPackageSid = new System.Windows.Forms.TextBox();
            this.tabPageMisc = new System.Windows.Forms.TabPage();
            this.tabPageOperations = new System.Windows.Forms.TabPage();
            this.contextMenuStripPrivileges = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.enablePrivilegeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            tabPageMain = new System.Windows.Forms.TabPage();
            label7 = new System.Windows.Forms.Label();
            label6 = new System.Windows.Forms.Label();
            groupBoxToken = new System.Windows.Forms.GroupBox();
            label13 = new System.Windows.Forms.Label();
            label8 = new System.Windows.Forms.Label();
            label5 = new System.Windows.Forms.Label();
            lblTokenType = new System.Windows.Forms.Label();
            label4 = new System.Windows.Forms.Label();
            lblImpLevel = new System.Windows.Forms.Label();
            label3 = new System.Windows.Forms.Label();
            label1 = new System.Windows.Forms.Label();
            label2 = new System.Windows.Forms.Label();
            tabPageGroups = new System.Windows.Forms.TabPage();
            columnHeaderName = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            columnHeaderFlags = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            tabPageDefaultDacl = new System.Windows.Forms.TabPage();
            columnHeaderGroup = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            columnHeaderAccess = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            columnHeaderDaclFlags = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            columnHeaderDaclType = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            label10 = new System.Windows.Forms.Label();
            label9 = new System.Windows.Forms.Label();
            label11 = new System.Windows.Forms.Label();
            label12 = new System.Windows.Forms.Label();
            groupBoxDuplicate = new System.Windows.Forms.GroupBox();
            lblILForDup = new System.Windows.Forms.Label();
            label15 = new System.Windows.Forms.Label();
            label14 = new System.Windows.Forms.Label();
            groupBox1 = new System.Windows.Forms.GroupBox();
            label16 = new System.Windows.Forms.Label();
            groupBox2 = new System.Windows.Forms.GroupBox();
            label22 = new System.Windows.Forms.Label();
            label20 = new System.Windows.Forms.Label();
            label19 = new System.Windows.Forms.Label();
            label18 = new System.Windows.Forms.Label();
            label17 = new System.Windows.Forms.Label();
            groupBox3 = new System.Windows.Forms.GroupBox();
            label21 = new System.Windows.Forms.Label();
            groupBox4 = new System.Windows.Forms.GroupBox();
            label24 = new System.Windows.Forms.Label();
            label23 = new System.Windows.Forms.Label();
            columnHeader5 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            columnHeader6 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            tabPageMain.SuspendLayout();
            this.groupBoxSource.SuspendLayout();
            groupBoxToken.SuspendLayout();
            tabPageGroups.SuspendLayout();
            tabPageDefaultDacl.SuspendLayout();
            groupBoxDuplicate.SuspendLayout();
            groupBox1.SuspendLayout();
            groupBox2.SuspendLayout();
            groupBox3.SuspendLayout();
            groupBox4.SuspendLayout();
            this.tabControlMain.SuspendLayout();
            this.tabPagePrivs.SuspendLayout();
            this.tabPageRestricted.SuspendLayout();
            this.tabPageAppContainer.SuspendLayout();
            this.tabPageMisc.SuspendLayout();
            this.tabPageOperations.SuspendLayout();
            this.contextMenuStripPrivileges.SuspendLayout();
            this.SuspendLayout();
            // 
            // tabPageMain
            // 
            tabPageMain.Controls.Add(this.groupBoxSource);
            tabPageMain.Controls.Add(groupBoxToken);
            tabPageMain.Controls.Add(this.btnPermissions);
            tabPageMain.Location = new System.Drawing.Point(4, 22);
            tabPageMain.Name = "tabPageMain";
            tabPageMain.Padding = new System.Windows.Forms.Padding(3);
            tabPageMain.Size = new System.Drawing.Size(467, 451);
            tabPageMain.TabIndex = 0;
            tabPageMain.Text = "Main Details";
            tabPageMain.UseVisualStyleBackColor = true;
            // 
            // groupBoxSource
            // 
            this.groupBoxSource.Controls.Add(this.txtSourceId);
            this.groupBoxSource.Controls.Add(label7);
            this.groupBoxSource.Controls.Add(this.txtSourceName);
            this.groupBoxSource.Controls.Add(label6);
            this.groupBoxSource.Location = new System.Drawing.Point(6, 338);
            this.groupBoxSource.Name = "groupBoxSource";
            this.groupBoxSource.Size = new System.Drawing.Size(453, 76);
            this.groupBoxSource.TabIndex = 20;
            this.groupBoxSource.TabStop = false;
            this.groupBoxSource.Text = "Source";
            // 
            // txtSourceId
            // 
            this.txtSourceId.Location = new System.Drawing.Point(115, 45);
            this.txtSourceId.Name = "txtSourceId";
            this.txtSourceId.ReadOnly = true;
            this.txtSourceId.Size = new System.Drawing.Size(142, 20);
            this.txtSourceId.TabIndex = 22;
            // 
            // label7
            // 
            label7.AutoSize = true;
            label7.Location = new System.Drawing.Point(8, 48);
            label7.Name = "label7";
            label7.Size = new System.Drawing.Size(19, 13);
            label7.TabIndex = 21;
            label7.Text = "Id:";
            // 
            // txtSourceName
            // 
            this.txtSourceName.Location = new System.Drawing.Point(115, 19);
            this.txtSourceName.Name = "txtSourceName";
            this.txtSourceName.ReadOnly = true;
            this.txtSourceName.Size = new System.Drawing.Size(142, 20);
            this.txtSourceName.TabIndex = 20;
            // 
            // label6
            // 
            label6.AutoSize = true;
            label6.Location = new System.Drawing.Point(8, 22);
            label6.Name = "label6";
            label6.Size = new System.Drawing.Size(38, 13);
            label6.TabIndex = 19;
            label6.Text = "Name:";
            // 
            // groupBoxToken
            // 
            groupBoxToken.Controls.Add(this.btnSetIL);
            groupBoxToken.Controls.Add(this.comboBoxIL);
            groupBoxToken.Controls.Add(this.txtOriginLoginId);
            groupBoxToken.Controls.Add(label13);
            groupBoxToken.Controls.Add(this.btnLinkedToken);
            groupBoxToken.Controls.Add(this.txtElevationType);
            groupBoxToken.Controls.Add(label8);
            groupBoxToken.Controls.Add(this.lblUsername);
            groupBoxToken.Controls.Add(this.txtSessionId);
            groupBoxToken.Controls.Add(this.txtUsername);
            groupBoxToken.Controls.Add(label5);
            groupBoxToken.Controls.Add(this.lblUserSid);
            groupBoxToken.Controls.Add(this.txtUserSid);
            groupBoxToken.Controls.Add(lblTokenType);
            groupBoxToken.Controls.Add(label4);
            groupBoxToken.Controls.Add(this.txtTokenType);
            groupBoxToken.Controls.Add(this.txtModifiedId);
            groupBoxToken.Controls.Add(lblImpLevel);
            groupBoxToken.Controls.Add(label3);
            groupBoxToken.Controls.Add(this.txtImpLevel);
            groupBoxToken.Controls.Add(this.txtAuthId);
            groupBoxToken.Controls.Add(label1);
            groupBoxToken.Controls.Add(label2);
            groupBoxToken.Controls.Add(this.txtTokenId);
            groupBoxToken.Location = new System.Drawing.Point(6, 6);
            groupBoxToken.Name = "groupBoxToken";
            groupBoxToken.Size = new System.Drawing.Size(453, 307);
            groupBoxToken.TabIndex = 19;
            groupBoxToken.TabStop = false;
            groupBoxToken.Text = "Token";
            // 
            // btnSetIL
            // 
            this.btnSetIL.Enabled = false;
            this.btnSetIL.Location = new System.Drawing.Point(288, 222);
            this.btnSetIL.Name = "btnSetIL";
            this.btnSetIL.Size = new System.Drawing.Size(101, 23);
            this.btnSetIL.TabIndex = 25;
            this.btnSetIL.Text = "Set Integrity Level";
            this.btnSetIL.UseVisualStyleBackColor = true;
            this.btnSetIL.Click += new System.EventHandler(this.btnSetIL_Click);
            // 
            // comboBoxIL
            // 
            this.comboBoxIL.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.comboBoxIL.FormattingEnabled = true;
            this.comboBoxIL.Location = new System.Drawing.Point(115, 224);
            this.comboBoxIL.Name = "comboBoxIL";
            this.comboBoxIL.Size = new System.Drawing.Size(142, 21);
            this.comboBoxIL.TabIndex = 24;
            this.comboBoxIL.SelectedIndexChanged += new System.EventHandler(this.comboBoxIL_SelectedIndexChanged);
            // 
            // txtOriginLoginId
            // 
            this.txtOriginLoginId.Location = new System.Drawing.Point(115, 171);
            this.txtOriginLoginId.Name = "txtOriginLoginId";
            this.txtOriginLoginId.ReadOnly = true;
            this.txtOriginLoginId.Size = new System.Drawing.Size(142, 20);
            this.txtOriginLoginId.TabIndex = 23;
            // 
            // label13
            // 
            label13.AutoSize = true;
            label13.Location = new System.Drawing.Point(8, 174);
            label13.Name = "label13";
            label13.Size = new System.Drawing.Size(80, 13);
            label13.TabIndex = 22;
            label13.Text = "Origin Login ID:";
            // 
            // btnLinkedToken
            // 
            this.btnLinkedToken.Location = new System.Drawing.Point(288, 275);
            this.btnLinkedToken.Name = "btnLinkedToken";
            this.btnLinkedToken.Size = new System.Drawing.Size(101, 23);
            this.btnLinkedToken.TabIndex = 21;
            this.btnLinkedToken.Text = "Linked Token";
            this.btnLinkedToken.UseVisualStyleBackColor = true;
            this.btnLinkedToken.Click += new System.EventHandler(this.btnLinkedToken_Click);
            // 
            // txtElevationType
            // 
            this.txtElevationType.Location = new System.Drawing.Point(115, 277);
            this.txtElevationType.Name = "txtElevationType";
            this.txtElevationType.ReadOnly = true;
            this.txtElevationType.Size = new System.Drawing.Size(142, 20);
            this.txtElevationType.TabIndex = 20;
            // 
            // label8
            // 
            label8.AutoSize = true;
            label8.Location = new System.Drawing.Point(8, 280);
            label8.Name = "label8";
            label8.Size = new System.Drawing.Size(81, 13);
            label8.TabIndex = 19;
            label8.Text = "Elevation Type:";
            // 
            // lblUsername
            // 
            this.lblUsername.AutoSize = true;
            this.lblUsername.Location = new System.Drawing.Point(6, 16);
            this.lblUsername.Name = "lblUsername";
            this.lblUsername.Size = new System.Drawing.Size(32, 13);
            this.lblUsername.TabIndex = 0;
            this.lblUsername.Text = "User:"******"txtSessionId";
            this.txtSessionId.ReadOnly = true;
            this.txtSessionId.Size = new System.Drawing.Size(142, 20);
            this.txtSessionId.TabIndex = 18;
            // 
            // txtUsername
            // 
            this.txtUsername.Location = new System.Drawing.Point(115, 16);
            this.txtUsername.Name = "txtUsername";
            this.txtUsername.ReadOnly = true;
            this.txtUsername.Size = new System.Drawing.Size(267, 20);
            this.txtUsername.TabIndex = 1;
            // 
            // label5
            // 
            label5.AutoSize = true;
            label5.Location = new System.Drawing.Point(8, 254);
            label5.Name = "label5";
            label5.Size = new System.Drawing.Size(61, 13);
            label5.TabIndex = 17;
            label5.Text = "Session ID:";
            // 
            // lblUserSid
            // 
            this.lblUserSid.AutoSize = true;
            this.lblUserSid.Location = new System.Drawing.Point(6, 44);
            this.lblUserSid.Name = "lblUserSid";
            this.lblUserSid.Size = new System.Drawing.Size(53, 13);
            this.lblUserSid.TabIndex = 2;
            this.lblUserSid.Text = "User SID:";
            // 
            // txtUserSid
            // 
            this.txtUserSid.Location = new System.Drawing.Point(115, 42);
            this.txtUserSid.Name = "txtUserSid";
            this.txtUserSid.ReadOnly = true;
            this.txtUserSid.Size = new System.Drawing.Size(267, 20);
            this.txtUserSid.TabIndex = 3;
            // 
            // lblTokenType
            // 
            lblTokenType.AutoSize = true;
            lblTokenType.Location = new System.Drawing.Point(8, 71);
            lblTokenType.Name = "lblTokenType";
            lblTokenType.Size = new System.Drawing.Size(68, 13);
            lblTokenType.TabIndex = 4;
            lblTokenType.Text = "Token Type:";
            // 
            // label4
            // 
            label4.AutoSize = true;
            label4.Location = new System.Drawing.Point(8, 227);
            label4.Name = "label4";
            label4.Size = new System.Drawing.Size(76, 13);
            label4.TabIndex = 14;
            label4.Text = "Integrity Level:";
            // 
            // txtTokenType
            // 
            this.txtTokenType.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
            this.txtTokenType.Location = new System.Drawing.Point(115, 68);
            this.txtTokenType.Name = "txtTokenType";
            this.txtTokenType.ReadOnly = true;
            this.txtTokenType.Size = new System.Drawing.Size(142, 20);
            this.txtTokenType.TabIndex = 5;
            // 
            // txtModifiedId
            // 
            this.txtModifiedId.Location = new System.Drawing.Point(115, 198);
            this.txtModifiedId.Name = "txtModifiedId";
            this.txtModifiedId.ReadOnly = true;
            this.txtModifiedId.Size = new System.Drawing.Size(142, 20);
            this.txtModifiedId.TabIndex = 13;
            // 
            // lblImpLevel
            // 
            lblImpLevel.AutoSize = true;
            lblImpLevel.Location = new System.Drawing.Point(8, 96);
            lblImpLevel.Name = "lblImpLevel";
            lblImpLevel.Size = new System.Drawing.Size(105, 13);
            lblImpLevel.TabIndex = 6;
            lblImpLevel.Text = "Impersonation Level:";
            // 
            // label3
            // 
            label3.AutoSize = true;
            label3.Location = new System.Drawing.Point(8, 201);
            label3.Name = "label3";
            label3.Size = new System.Drawing.Size(64, 13);
            label3.TabIndex = 12;
            label3.Text = "Modified ID:";
            // 
            // txtImpLevel
            // 
            this.txtImpLevel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(128)))));
            this.txtImpLevel.Location = new System.Drawing.Point(115, 93);
            this.txtImpLevel.Name = "txtImpLevel";
            this.txtImpLevel.ReadOnly = true;
            this.txtImpLevel.Size = new System.Drawing.Size(142, 20);
            this.txtImpLevel.TabIndex = 7;
            // 
            // txtAuthId
            // 
            this.txtAuthId.Location = new System.Drawing.Point(115, 145);
            this.txtAuthId.Name = "txtAuthId";
            this.txtAuthId.ReadOnly = true;
            this.txtAuthId.Size = new System.Drawing.Size(142, 20);
            this.txtAuthId.TabIndex = 11;
            // 
            // label1
            // 
            label1.AutoSize = true;
            label1.Location = new System.Drawing.Point(8, 122);
            label1.Name = "label1";
            label1.Size = new System.Drawing.Size(55, 13);
            label1.TabIndex = 8;
            label1.Text = "Token ID:";
            // 
            // label2
            // 
            label2.AutoSize = true;
            label2.Location = new System.Drawing.Point(8, 148);
            label2.Name = "label2";
            label2.Size = new System.Drawing.Size(92, 13);
            label2.TabIndex = 10;
            label2.Text = "Authentication ID:";
            // 
            // txtTokenId
            // 
            this.txtTokenId.Location = new System.Drawing.Point(115, 119);
            this.txtTokenId.Name = "txtTokenId";
            this.txtTokenId.ReadOnly = true;
            this.txtTokenId.Size = new System.Drawing.Size(142, 20);
            this.txtTokenId.TabIndex = 9;
            // 
            // btnPermissions
            // 
            this.btnPermissions.Location = new System.Drawing.Point(3, 420);
            this.btnPermissions.Name = "btnPermissions";
            this.btnPermissions.Size = new System.Drawing.Size(75, 23);
            this.btnPermissions.TabIndex = 16;
            this.btnPermissions.Text = "Permissions";
            this.btnPermissions.UseVisualStyleBackColor = true;
            this.btnPermissions.Click += new System.EventHandler(this.btnPermissions_Click);
            // 
            // tabPageGroups
            // 
            tabPageGroups.Controls.Add(this.listViewGroups);
            tabPageGroups.Location = new System.Drawing.Point(4, 22);
            tabPageGroups.Name = "tabPageGroups";
            tabPageGroups.Padding = new System.Windows.Forms.Padding(3);
            tabPageGroups.Size = new System.Drawing.Size(467, 451);
            tabPageGroups.TabIndex = 1;
            tabPageGroups.Text = "Groups";
            tabPageGroups.UseVisualStyleBackColor = true;
            // 
            // listViewGroups
            // 
            this.listViewGroups.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            columnHeaderName,
            columnHeaderFlags});
            this.listViewGroups.Dock = System.Windows.Forms.DockStyle.Fill;
            this.listViewGroups.FullRowSelect = true;
            this.listViewGroups.Location = new System.Drawing.Point(3, 3);
            this.listViewGroups.Name = "listViewGroups";
            this.listViewGroups.Size = new System.Drawing.Size(461, 445);
            this.listViewGroups.TabIndex = 0;
            this.listViewGroups.UseCompatibleStateImageBehavior = false;
            this.listViewGroups.View = System.Windows.Forms.View.Details;
            // 
            // columnHeaderName
            // 
            columnHeaderName.Text = "Name";
            columnHeaderName.Width = 210;
            // 
            // columnHeaderFlags
            // 
            columnHeaderFlags.Text = "Flags";
            columnHeaderFlags.Width = 194;
            // 
            // tabPageDefaultDacl
            // 
            tabPageDefaultDacl.Controls.Add(this.listViewDefDacl);
            tabPageDefaultDacl.Controls.Add(label10);
            tabPageDefaultDacl.Controls.Add(this.txtPrimaryGroup);
            tabPageDefaultDacl.Controls.Add(label9);
            tabPageDefaultDacl.Controls.Add(this.txtOwner);
            tabPageDefaultDacl.Location = new System.Drawing.Point(4, 22);
            tabPageDefaultDacl.Name = "tabPageDefaultDacl";
            tabPageDefaultDacl.Padding = new System.Windows.Forms.Padding(3);
            tabPageDefaultDacl.Size = new System.Drawing.Size(467, 451);
            tabPageDefaultDacl.TabIndex = 2;
            tabPageDefaultDacl.Text = "Default Dacl";
            tabPageDefaultDacl.UseVisualStyleBackColor = true;
            // 
            // listViewDefDacl
            // 
            this.listViewDefDacl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.listViewDefDacl.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            columnHeaderGroup,
            columnHeaderAccess,
            columnHeaderDaclFlags,
            columnHeaderDaclType});
            this.listViewDefDacl.FullRowSelect = true;
            this.listViewDefDacl.Location = new System.Drawing.Point(3, 69);
            this.listViewDefDacl.Name = "listViewDefDacl";
            this.listViewDefDacl.Size = new System.Drawing.Size(461, 379);
            this.listViewDefDacl.TabIndex = 10;
            this.listViewDefDacl.UseCompatibleStateImageBehavior = false;
            this.listViewDefDacl.View = System.Windows.Forms.View.Details;
            // 
            // columnHeaderGroup
            // 
            columnHeaderGroup.Text = "Group";
            columnHeaderGroup.Width = 160;
            // 
            // columnHeaderAccess
            // 
            columnHeaderAccess.Text = "Access";
            columnHeaderAccess.Width = 83;
            // 
            // columnHeaderDaclFlags
            // 
            columnHeaderDaclFlags.Text = "Flags";
            columnHeaderDaclFlags.Width = 103;
            // 
            // columnHeaderDaclType
            // 
            columnHeaderDaclType.Text = "Type";
            // 
            // label10
            // 
            label10.AutoSize = true;
            label10.Location = new System.Drawing.Point(22, 40);
            label10.Name = "label10";
            label10.Size = new System.Drawing.Size(76, 13);
            label10.TabIndex = 8;
            label10.Text = "Primary Group:";
            // 
            // txtPrimaryGroup
            // 
            this.txtPrimaryGroup.Location = new System.Drawing.Point(131, 40);
            this.txtPrimaryGroup.Name = "txtPrimaryGroup";
            this.txtPrimaryGroup.ReadOnly = true;
            this.txtPrimaryGroup.Size = new System.Drawing.Size(267, 20);
            this.txtPrimaryGroup.TabIndex = 9;
            // 
            // label9
            // 
            label9.AutoSize = true;
            label9.Location = new System.Drawing.Point(22, 14);
            label9.Name = "label9";
            label9.Size = new System.Drawing.Size(78, 13);
            label9.TabIndex = 6;
            label9.Text = "Default Owner:";
            // 
            // txtOwner
            // 
            this.txtOwner.Location = new System.Drawing.Point(131, 14);
            this.txtOwner.Name = "txtOwner";
            this.txtOwner.ReadOnly = true;
            this.txtOwner.Size = new System.Drawing.Size(267, 20);
            this.txtOwner.TabIndex = 7;
            // 
            // label11
            // 
            label11.AutoSize = true;
            label11.Location = new System.Drawing.Point(22, 14);
            label11.Name = "label11";
            label11.Size = new System.Drawing.Size(74, 13);
            label11.TabIndex = 8;
            label11.Text = "Package SID:";
            // 
            // label12
            // 
            label12.AutoSize = true;
            label12.Location = new System.Drawing.Point(22, 40);
            label12.Name = "label12";
            label12.Size = new System.Drawing.Size(117, 13);
            label12.TabIndex = 11;
            label12.Text = "App Container Number:";
            // 
            // groupBoxDuplicate
            // 
            groupBoxDuplicate.Controls.Add(lblILForDup);
            groupBoxDuplicate.Controls.Add(this.comboBoxILForDup);
            groupBoxDuplicate.Controls.Add(this.btnDuplicate);
            groupBoxDuplicate.Controls.Add(label15);
            groupBoxDuplicate.Controls.Add(this.comboBoxImpLevel);
            groupBoxDuplicate.Controls.Add(label14);
            groupBoxDuplicate.Controls.Add(this.comboBoxTokenType);
            groupBoxDuplicate.Location = new System.Drawing.Point(3, 6);
            groupBoxDuplicate.Name = "groupBoxDuplicate";
            groupBoxDuplicate.Size = new System.Drawing.Size(456, 116);
            groupBoxDuplicate.TabIndex = 0;
            groupBoxDuplicate.TabStop = false;
            groupBoxDuplicate.Text = "Duplicate Token";
            // 
            // lblILForDup
            // 
            lblILForDup.AutoSize = true;
            lblILForDup.Location = new System.Drawing.Point(259, 25);
            lblILForDup.Name = "lblILForDup";
            lblILForDup.Size = new System.Drawing.Size(53, 13);
            lblILForDup.TabIndex = 6;
            lblILForDup.Text = "Token IL:";
            // 
            // comboBoxILForDup
            // 
            this.comboBoxILForDup.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.comboBoxILForDup.FormattingEnabled = true;
            this.comboBoxILForDup.Location = new System.Drawing.Point(317, 22);
            this.comboBoxILForDup.Name = "comboBoxILForDup";
            this.comboBoxILForDup.Size = new System.Drawing.Size(121, 21);
            this.comboBoxILForDup.TabIndex = 5;
            // 
            // btnDuplicate
            // 
            this.btnDuplicate.Location = new System.Drawing.Point(9, 76);
            this.btnDuplicate.Name = "btnDuplicate";
            this.btnDuplicate.Size = new System.Drawing.Size(75, 23);
            this.btnDuplicate.TabIndex = 4;
            this.btnDuplicate.Text = "Duplicate";
            this.btnDuplicate.UseVisualStyleBackColor = true;
            this.btnDuplicate.Click += new System.EventHandler(this.btnDuplicate_Click);
            // 
            // label15
            // 
            label15.AutoSize = true;
            label15.Location = new System.Drawing.Point(6, 49);
            label15.Name = "label15";
            label15.Size = new System.Drawing.Size(105, 13);
            label15.TabIndex = 3;
            label15.Text = "Impersonation Level:";
            // 
            // comboBoxImpLevel
            // 
            this.comboBoxImpLevel.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.comboBoxImpLevel.FormattingEnabled = true;
            this.comboBoxImpLevel.Location = new System.Drawing.Point(117, 46);
            this.comboBoxImpLevel.Name = "comboBoxImpLevel";
            this.comboBoxImpLevel.Size = new System.Drawing.Size(121, 21);
            this.comboBoxImpLevel.TabIndex = 2;
            // 
            // label14
            // 
            label14.AutoSize = true;
            label14.Location = new System.Drawing.Point(6, 22);
            label14.Name = "label14";
            label14.Size = new System.Drawing.Size(68, 13);
            label14.TabIndex = 1;
            label14.Text = "Token Type:";
            // 
            // comboBoxTokenType
            // 
            this.comboBoxTokenType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.comboBoxTokenType.FormattingEnabled = true;
            this.comboBoxTokenType.Location = new System.Drawing.Point(117, 19);
            this.comboBoxTokenType.Name = "comboBoxTokenType";
            this.comboBoxTokenType.Size = new System.Drawing.Size(121, 21);
            this.comboBoxTokenType.TabIndex = 0;
            this.comboBoxTokenType.SelectedIndexChanged += new System.EventHandler(this.comboBoxTokenType_SelectedIndexChanged);
            // 
            // groupBox1
            // 
            groupBox1.Controls.Add(this.checkBoxMakeInteractive);
            groupBox1.Controls.Add(this.btnCreateProcess);
            groupBox1.Controls.Add(this.txtCommandLine);
            groupBox1.Controls.Add(label16);
            groupBox1.Location = new System.Drawing.Point(3, 128);
            groupBox1.Name = "groupBox1";
            groupBox1.Size = new System.Drawing.Size(456, 91);
            groupBox1.TabIndex = 1;
            groupBox1.TabStop = false;
            groupBox1.Text = "Create Process";
            // 
            // checkBoxMakeInteractive
            // 
            this.checkBoxMakeInteractive.AutoSize = true;
            this.checkBoxMakeInteractive.Location = new System.Drawing.Point(90, 59);
            this.checkBoxMakeInteractive.Name = "checkBoxMakeInteractive";
            this.checkBoxMakeInteractive.Size = new System.Drawing.Size(106, 17);
            this.checkBoxMakeInteractive.TabIndex = 3;
            this.checkBoxMakeInteractive.Text = "Make Interactive";
            this.checkBoxMakeInteractive.UseVisualStyleBackColor = true;
            // 
            // btnCreateProcess
            // 
            this.btnCreateProcess.Location = new System.Drawing.Point(9, 55);
            this.btnCreateProcess.Name = "btnCreateProcess";
            this.btnCreateProcess.Size = new System.Drawing.Size(75, 23);
            this.btnCreateProcess.TabIndex = 2;
            this.btnCreateProcess.Text = "Create";
            this.btnCreateProcess.UseVisualStyleBackColor = true;
            this.btnCreateProcess.Click += new System.EventHandler(this.btnCreateProcess_Click);
            // 
            // txtCommandLine
            // 
            this.txtCommandLine.Location = new System.Drawing.Point(92, 22);
            this.txtCommandLine.Name = "txtCommandLine";
            this.txtCommandLine.Size = new System.Drawing.Size(308, 20);
            this.txtCommandLine.TabIndex = 1;
            this.txtCommandLine.Text = "cmd.exe";
            // 
            // label16
            // 
            label16.AutoSize = true;
            label16.Location = new System.Drawing.Point(6, 25);
            label16.Name = "label16";
            label16.Size = new System.Drawing.Size(80, 13);
            label16.TabIndex = 0;
            label16.Text = "Command Line:";
            // 
            // groupBox2
            // 
            groupBox2.Controls.Add(label22);
            groupBox2.Controls.Add(this.txtMandatoryILPolicy);
            groupBox2.Controls.Add(label20);
            groupBox2.Controls.Add(this.txtVirtualizationEnabled);
            groupBox2.Controls.Add(label19);
            groupBox2.Controls.Add(this.txtVirtualizationAllowed);
            groupBox2.Controls.Add(label18);
            groupBox2.Controls.Add(this.txtSandboxInert);
            groupBox2.Controls.Add(label17);
            groupBox2.Controls.Add(this.txtUIAccess);
            groupBox2.Location = new System.Drawing.Point(8, 6);
            groupBox2.Name = "groupBox2";
            groupBox2.Size = new System.Drawing.Size(451, 157);
            groupBox2.TabIndex = 0;
            groupBox2.TabStop = false;
            groupBox2.Text = "Additional Properties";
            // 
            // label22
            // 
            label22.AutoSize = true;
            label22.Location = new System.Drawing.Point(6, 121);
            label22.Name = "label22";
            label22.Size = new System.Drawing.Size(103, 13);
            label22.TabIndex = 14;
            label22.Text = "Mandatory IL Policy:";
            // 
            // txtMandatoryILPolicy
            // 
            this.txtMandatoryILPolicy.Location = new System.Drawing.Point(121, 118);
            this.txtMandatoryILPolicy.Name = "txtMandatoryILPolicy";
            this.txtMandatoryILPolicy.ReadOnly = true;
            this.txtMandatoryILPolicy.Size = new System.Drawing.Size(217, 20);
            this.txtMandatoryILPolicy.TabIndex = 15;
            // 
            // label20
            // 
            label20.AutoSize = true;
            label20.Location = new System.Drawing.Point(6, 95);
            label20.Name = "label20";
            label20.Size = new System.Drawing.Size(111, 13);
            label20.TabIndex = 12;
            label20.Text = "Virtualization Enabled:";
            // 
            // txtVirtualizationEnabled
            // 
            this.txtVirtualizationEnabled.Location = new System.Drawing.Point(121, 92);
            this.txtVirtualizationEnabled.Name = "txtVirtualizationEnabled";
            this.txtVirtualizationEnabled.ReadOnly = true;
            this.txtVirtualizationEnabled.Size = new System.Drawing.Size(108, 20);
            this.txtVirtualizationEnabled.TabIndex = 13;
            // 
            // label19
            // 
            label19.AutoSize = true;
            label19.Location = new System.Drawing.Point(6, 69);
            label19.Name = "label19";
            label19.Size = new System.Drawing.Size(109, 13);
            label19.TabIndex = 10;
            label19.Text = "Virtualization Allowed:";
            // 
            // txtVirtualizationAllowed
            // 
            this.txtVirtualizationAllowed.Location = new System.Drawing.Point(121, 66);
            this.txtVirtualizationAllowed.Name = "txtVirtualizationAllowed";
            this.txtVirtualizationAllowed.ReadOnly = true;
            this.txtVirtualizationAllowed.Size = new System.Drawing.Size(108, 20);
            this.txtVirtualizationAllowed.TabIndex = 11;
            // 
            // label18
            // 
            label18.AutoSize = true;
            label18.Location = new System.Drawing.Point(6, 43);
            label18.Name = "label18";
            label18.Size = new System.Drawing.Size(76, 13);
            label18.TabIndex = 8;
            label18.Text = "Sandbox Inert:";
            // 
            // txtSandboxInert
            // 
            this.txtSandboxInert.Location = new System.Drawing.Point(121, 39);
            this.txtSandboxInert.Name = "txtSandboxInert";
            this.txtSandboxInert.ReadOnly = true;
            this.txtSandboxInert.Size = new System.Drawing.Size(108, 20);
            this.txtSandboxInert.TabIndex = 9;
            // 
            // label17
            // 
            label17.AutoSize = true;
            label17.Location = new System.Drawing.Point(6, 16);
            label17.Name = "label17";
            label17.Size = new System.Drawing.Size(59, 13);
            label17.TabIndex = 6;
            label17.Text = "UI Access:";
            // 
            // txtUIAccess
            // 
            this.txtUIAccess.Location = new System.Drawing.Point(121, 13);
            this.txtUIAccess.Name = "txtUIAccess";
            this.txtUIAccess.ReadOnly = true;
            this.txtUIAccess.Size = new System.Drawing.Size(108, 20);
            this.txtUIAccess.TabIndex = 7;
            // 
            // groupBox3
            // 
            groupBox3.Controls.Add(label21);
            groupBox3.Controls.Add(this.comboBoxSaferLevel);
            groupBox3.Controls.Add(this.checkBoxSaferMakeInert);
            groupBox3.Controls.Add(this.btnComputeSafer);
            groupBox3.Location = new System.Drawing.Point(3, 225);
            groupBox3.Name = "groupBox3";
            groupBox3.Size = new System.Drawing.Size(458, 90);
            groupBox3.TabIndex = 2;
            groupBox3.TabStop = false;
            groupBox3.Text = "Computer Safer Token";
            // 
            // label21
            // 
            label21.AutoSize = true;
            label21.Location = new System.Drawing.Point(8, 31);
            label21.Name = "label21";
            label21.Size = new System.Drawing.Size(64, 13);
            label21.TabIndex = 6;
            label21.Text = "Safer Level:";
            // 
            // comboBoxSaferLevel
            // 
            this.comboBoxSaferLevel.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.comboBoxSaferLevel.FormattingEnabled = true;
            this.comboBoxSaferLevel.Location = new System.Drawing.Point(101, 28);
            this.comboBoxSaferLevel.Name = "comboBoxSaferLevel";
            this.comboBoxSaferLevel.Size = new System.Drawing.Size(121, 21);
            this.comboBoxSaferLevel.TabIndex = 5;
            // 
            // checkBoxSaferMakeInert
            // 
            this.checkBoxSaferMakeInert.AutoSize = true;
            this.checkBoxSaferMakeInert.Location = new System.Drawing.Point(239, 32);
            this.checkBoxSaferMakeInert.Name = "checkBoxSaferMakeInert";
            this.checkBoxSaferMakeInert.Size = new System.Drawing.Size(77, 17);
            this.checkBoxSaferMakeInert.TabIndex = 4;
            this.checkBoxSaferMakeInert.Text = "Make Inert";
            this.checkBoxSaferMakeInert.UseVisualStyleBackColor = true;
            // 
            // btnComputeSafer
            // 
            this.btnComputeSafer.Location = new System.Drawing.Point(9, 56);
            this.btnComputeSafer.Name = "btnComputeSafer";
            this.btnComputeSafer.Size = new System.Drawing.Size(75, 23);
            this.btnComputeSafer.TabIndex = 3;
            this.btnComputeSafer.Text = "Create";
            this.btnComputeSafer.UseVisualStyleBackColor = true;
            this.btnComputeSafer.Click += new System.EventHandler(this.btnComputeSafer_Click);
            // 
            // groupBox4
            // 
            groupBox4.Controls.Add(this.btnCreate);
            groupBox4.Controls.Add(this.btnBrowse);
            groupBox4.Controls.Add(label24);
            groupBox4.Controls.Add(this.txtFileContents);
            groupBox4.Controls.Add(this.txtFilePath);
            groupBox4.Controls.Add(label23);
            groupBox4.Location = new System.Drawing.Point(3, 321);
            groupBox4.Name = "groupBox4";
            groupBox4.Size = new System.Drawing.Size(456, 100);
            groupBox4.TabIndex = 3;
            groupBox4.TabStop = false;
            groupBox4.Text = "Impersonate and Create File";
            // 
            // btnCreate
            // 
            this.btnCreate.Location = new System.Drawing.Point(363, 54);
            this.btnCreate.Name = "btnCreate";
            this.btnCreate.Size = new System.Drawing.Size(75, 23);
            this.btnCreate.TabIndex = 5;
            this.btnCreate.Text = "Create";
            this.btnCreate.UseVisualStyleBackColor = true;
            this.btnCreate.Click += new System.EventHandler(this.btnCreate_Click);
            // 
            // btnBrowse
            // 
            this.btnBrowse.Location = new System.Drawing.Point(363, 16);
            this.btnBrowse.Name = "btnBrowse";
            this.btnBrowse.Size = new System.Drawing.Size(75, 23);
            this.btnBrowse.TabIndex = 4;
            this.btnBrowse.Text = "Browse";
            this.btnBrowse.UseVisualStyleBackColor = true;
            this.btnBrowse.Click += new System.EventHandler(this.btnBrowse_Click);
            // 
            // label24
            // 
            label24.AutoSize = true;
            label24.Location = new System.Drawing.Point(8, 45);
            label24.Name = "label24";
            label24.Size = new System.Drawing.Size(52, 13);
            label24.TabIndex = 3;
            label24.Text = "Contents:";
            // 
            // txtFileContents
            // 
            this.txtFileContents.Location = new System.Drawing.Point(65, 42);
            this.txtFileContents.Multiline = true;
            this.txtFileContents.Name = "txtFileContents";
            this.txtFileContents.Size = new System.Drawing.Size(280, 52);
            this.txtFileContents.TabIndex = 2;
            this.txtFileContents.Text = "Hello World!";
            // 
            // txtFilePath
            // 
            this.txtFilePath.Location = new System.Drawing.Point(65, 16);
            this.txtFilePath.Name = "txtFilePath";
            this.txtFilePath.Size = new System.Drawing.Size(280, 20);
            this.txtFilePath.TabIndex = 1;
            this.txtFilePath.Text = "c:\\windows\\test.txt";
            // 
            // label23
            // 
            label23.AutoSize = true;
            label23.Location = new System.Drawing.Point(8, 19);
            label23.Name = "label23";
            label23.Size = new System.Drawing.Size(51, 13);
            label23.TabIndex = 0;
            label23.Text = "File Path:";
            // 
            // columnHeader5
            // 
            columnHeader5.Text = "Name";
            columnHeader5.Width = 210;
            // 
            // columnHeader6
            // 
            columnHeader6.Text = "Flags";
            columnHeader6.Width = 194;
            // 
            // tabControlMain
            // 
            this.tabControlMain.Controls.Add(tabPageMain);
            this.tabControlMain.Controls.Add(tabPageGroups);
            this.tabControlMain.Controls.Add(this.tabPagePrivs);
            this.tabControlMain.Controls.Add(this.tabPageRestricted);
            this.tabControlMain.Controls.Add(this.tabPageAppContainer);
            this.tabControlMain.Controls.Add(tabPageDefaultDacl);
            this.tabControlMain.Controls.Add(this.tabPageMisc);
            this.tabControlMain.Controls.Add(this.tabPageOperations);
            this.tabControlMain.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tabControlMain.Location = new System.Drawing.Point(0, 0);
            this.tabControlMain.Name = "tabControlMain";
            this.tabControlMain.SelectedIndex = 0;
            this.tabControlMain.Size = new System.Drawing.Size(475, 477);
            this.tabControlMain.TabIndex = 0;
            // 
            // tabPagePrivs
            // 
            this.tabPagePrivs.Controls.Add(this.listViewPrivs);
            this.tabPagePrivs.Location = new System.Drawing.Point(4, 22);
            this.tabPagePrivs.Name = "tabPagePrivs";
            this.tabPagePrivs.Padding = new System.Windows.Forms.Padding(3);
            this.tabPagePrivs.Size = new System.Drawing.Size(467, 451);
            this.tabPagePrivs.TabIndex = 7;
            this.tabPagePrivs.Text = "Privileges";
            this.tabPagePrivs.UseVisualStyleBackColor = true;
            // 
            // listViewPrivs
            // 
            this.listViewPrivs.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            columnHeader5,
            columnHeader6});
            this.listViewPrivs.ContextMenuStrip = this.contextMenuStripPrivileges;
            this.listViewPrivs.Dock = System.Windows.Forms.DockStyle.Fill;
            this.listViewPrivs.FullRowSelect = true;
            this.listViewPrivs.Location = new System.Drawing.Point(3, 3);
            this.listViewPrivs.Name = "listViewPrivs";
            this.listViewPrivs.Size = new System.Drawing.Size(461, 445);
            this.listViewPrivs.TabIndex = 1;
            this.listViewPrivs.UseCompatibleStateImageBehavior = false;
            this.listViewPrivs.View = System.Windows.Forms.View.Details;
            // 
            // tabPageRestricted
            // 
            this.tabPageRestricted.Controls.Add(this.listViewRestrictedSids);
            this.tabPageRestricted.Location = new System.Drawing.Point(4, 22);
            this.tabPageRestricted.Name = "tabPageRestricted";
            this.tabPageRestricted.Padding = new System.Windows.Forms.Padding(3);
            this.tabPageRestricted.Size = new System.Drawing.Size(467, 451);
            this.tabPageRestricted.TabIndex = 3;
            this.tabPageRestricted.Text = "Restricted SIDs";
            this.tabPageRestricted.UseVisualStyleBackColor = true;
            // 
            // listViewRestrictedSids
            // 
            this.listViewRestrictedSids.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            this.columnHeader1,
            this.columnHeader2});
            this.listViewRestrictedSids.Dock = System.Windows.Forms.DockStyle.Fill;
            this.listViewRestrictedSids.FullRowSelect = true;
            this.listViewRestrictedSids.Location = new System.Drawing.Point(3, 3);
            this.listViewRestrictedSids.Name = "listViewRestrictedSids";
            this.listViewRestrictedSids.Size = new System.Drawing.Size(461, 445);
            this.listViewRestrictedSids.TabIndex = 1;
            this.listViewRestrictedSids.UseCompatibleStateImageBehavior = false;
            this.listViewRestrictedSids.View = System.Windows.Forms.View.Details;
            // 
            // columnHeader1
            // 
            this.columnHeader1.Text = "Name";
            this.columnHeader1.Width = 210;
            // 
            // columnHeader2
            // 
            this.columnHeader2.Text = "Flags";
            this.columnHeader2.Width = 194;
            // 
            // tabPageAppContainer
            // 
            this.tabPageAppContainer.Controls.Add(label12);
            this.tabPageAppContainer.Controls.Add(this.txtACNumber);
            this.tabPageAppContainer.Controls.Add(this.listViewCapabilities);
            this.tabPageAppContainer.Controls.Add(label11);
            this.tabPageAppContainer.Controls.Add(this.txtPackageSid);
            this.tabPageAppContainer.Location = new System.Drawing.Point(4, 22);
            this.tabPageAppContainer.Name = "tabPageAppContainer";
            this.tabPageAppContainer.Padding = new System.Windows.Forms.Padding(3);
            this.tabPageAppContainer.Size = new System.Drawing.Size(467, 451);
            this.tabPageAppContainer.TabIndex = 4;
            this.tabPageAppContainer.Text = "App Container";
            this.tabPageAppContainer.UseVisualStyleBackColor = true;
            // 
            // txtACNumber
            // 
            this.txtACNumber.Location = new System.Drawing.Point(142, 40);
            this.txtACNumber.Name = "txtACNumber";
            this.txtACNumber.ReadOnly = true;
            this.txtACNumber.Size = new System.Drawing.Size(84, 20);
            this.txtACNumber.TabIndex = 12;
            // 
            // listViewCapabilities
            // 
            this.listViewCapabilities.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.listViewCapabilities.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            this.columnHeader3,
            this.columnHeader4});
            this.listViewCapabilities.FullRowSelect = true;
            this.listViewCapabilities.Location = new System.Drawing.Point(3, 66);
            this.listViewCapabilities.Name = "listViewCapabilities";
            this.listViewCapabilities.Size = new System.Drawing.Size(461, 382);
            this.listViewCapabilities.TabIndex = 10;
            this.listViewCapabilities.UseCompatibleStateImageBehavior = false;
            this.listViewCapabilities.View = System.Windows.Forms.View.Details;
            // 
            // columnHeader3
            // 
            this.columnHeader3.Text = "Name";
            this.columnHeader3.Width = 210;
            // 
            // columnHeader4
            // 
            this.columnHeader4.Text = "Flags";
            this.columnHeader4.Width = 194;
            // 
            // txtPackageSid
            // 
            this.txtPackageSid.Location = new System.Drawing.Point(142, 14);
            this.txtPackageSid.Name = "txtPackageSid";
            this.txtPackageSid.ReadOnly = true;
            this.txtPackageSid.Size = new System.Drawing.Size(256, 20);
            this.txtPackageSid.TabIndex = 9;
            // 
            // tabPageMisc
            // 
            this.tabPageMisc.Controls.Add(groupBox2);
            this.tabPageMisc.Location = new System.Drawing.Point(4, 22);
            this.tabPageMisc.Name = "tabPageMisc";
            this.tabPageMisc.Padding = new System.Windows.Forms.Padding(3);
            this.tabPageMisc.Size = new System.Drawing.Size(467, 451);
            this.tabPageMisc.TabIndex = 6;
            this.tabPageMisc.Text = "Misc";
            this.tabPageMisc.UseVisualStyleBackColor = true;
            // 
            // tabPageOperations
            // 
            this.tabPageOperations.Controls.Add(groupBox4);
            this.tabPageOperations.Controls.Add(groupBox3);
            this.tabPageOperations.Controls.Add(groupBox1);
            this.tabPageOperations.Controls.Add(groupBoxDuplicate);
            this.tabPageOperations.Location = new System.Drawing.Point(4, 22);
            this.tabPageOperations.Name = "tabPageOperations";
            this.tabPageOperations.Padding = new System.Windows.Forms.Padding(3);
            this.tabPageOperations.Size = new System.Drawing.Size(467, 451);
            this.tabPageOperations.TabIndex = 5;
            this.tabPageOperations.Text = "Operations";
            this.tabPageOperations.UseVisualStyleBackColor = true;
            // 
            // contextMenuStripPrivileges
            // 
            this.contextMenuStripPrivileges.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.enablePrivilegeToolStripMenuItem});
            this.contextMenuStripPrivileges.Name = "contextMenuStripPrivileges";
            this.contextMenuStripPrivileges.Size = new System.Drawing.Size(158, 26);
            this.contextMenuStripPrivileges.Opening += new System.ComponentModel.CancelEventHandler(this.contextMenuStripPrivileges_Opening);
            // 
            // enablePrivilegeToolStripMenuItem
            // 
            this.enablePrivilegeToolStripMenuItem.Name = "enablePrivilegeToolStripMenuItem";
            this.enablePrivilegeToolStripMenuItem.Size = new System.Drawing.Size(157, 22);
            this.enablePrivilegeToolStripMenuItem.Text = "Enable Privilege";
            this.enablePrivilegeToolStripMenuItem.Click += new System.EventHandler(this.enablePrivilegeToolStripMenuItem_Click);
            // 
            // TokenForm
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(475, 477);
            this.Controls.Add(this.tabControlMain);
            this.MinimumSize = new System.Drawing.Size(491, 516);
            this.Name = "TokenForm";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
            this.Text = "Token View";
            tabPageMain.ResumeLayout(false);
            this.groupBoxSource.ResumeLayout(false);
            this.groupBoxSource.PerformLayout();
            groupBoxToken.ResumeLayout(false);
            groupBoxToken.PerformLayout();
            tabPageGroups.ResumeLayout(false);
            tabPageDefaultDacl.ResumeLayout(false);
            tabPageDefaultDacl.PerformLayout();
            groupBoxDuplicate.ResumeLayout(false);
            groupBoxDuplicate.PerformLayout();
            groupBox1.ResumeLayout(false);
            groupBox1.PerformLayout();
            groupBox2.ResumeLayout(false);
            groupBox2.PerformLayout();
            groupBox3.ResumeLayout(false);
            groupBox3.PerformLayout();
            groupBox4.ResumeLayout(false);
            groupBox4.PerformLayout();
            this.tabControlMain.ResumeLayout(false);
            this.tabPagePrivs.ResumeLayout(false);
            this.tabPageRestricted.ResumeLayout(false);
            this.tabPageAppContainer.ResumeLayout(false);
            this.tabPageAppContainer.PerformLayout();
            this.tabPageMisc.ResumeLayout(false);
            this.tabPageOperations.ResumeLayout(false);
            this.contextMenuStripPrivileges.ResumeLayout(false);
            this.ResumeLayout(false);

        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.ToolStrip toolStrip1;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
     System.Windows.Forms.ToolStripButton           runButton;
     System.Windows.Forms.SplitContainer            splitContainer1;
     System.Windows.Forms.TabControl tabControl1;
     System.Windows.Forms.TabPage    tabPage1;
     System.Windows.Forms.TabPage    tabPage2;
     this.parseButton       = new System.Windows.Forms.ToolStripButton();
     this.textBox           = new System.Windows.Forms.TextBox();
     this.sexpTextBox       = new System.Windows.Forms.TextBox();
     this.primitivesTextBox = new System.Windows.Forms.TextBox();
     toolStrip1             = new System.Windows.Forms.ToolStrip();
     runButton       = new System.Windows.Forms.ToolStripButton();
     splitContainer1 = new System.Windows.Forms.SplitContainer();
     tabControl1     = new System.Windows.Forms.TabControl();
     tabPage1        = new System.Windows.Forms.TabPage();
     tabPage2        = new System.Windows.Forms.TabPage();
     toolStrip1.SuspendLayout();
     splitContainer1.Panel1.SuspendLayout();
     splitContainer1.Panel2.SuspendLayout();
     splitContainer1.SuspendLayout();
     tabControl1.SuspendLayout();
     tabPage1.SuspendLayout();
     tabPage2.SuspendLayout();
     this.SuspendLayout();
     //
     // toolStrip1
     //
     toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.parseButton,
         runButton
     });
     toolStrip1.Location = new System.Drawing.Point(0, 0);
     toolStrip1.Name     = "toolStrip1";
     toolStrip1.Size     = new System.Drawing.Size(292, 25);
     toolStrip1.TabIndex = 0;
     toolStrip1.Text     = "toolStrip1";
     //
     // parseButton
     //
     this.parseButton.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.parseButton.Image                 = ((System.Drawing.Image)(resources.GetObject("parseButton.Image")));
     this.parseButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.parseButton.Name   = "parseButton";
     this.parseButton.Size   = new System.Drawing.Size(38, 22);
     this.parseButton.Text   = "&Parse";
     this.parseButton.Click += new System.EventHandler(this.parseButton_Click);
     //
     // runButton
     //
     runButton.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     runButton.Image                 = ((System.Drawing.Image)(resources.GetObject("runButton.Image")));
     runButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     runButton.Name   = "runButton";
     runButton.Size   = new System.Drawing.Size(30, 22);
     runButton.Text   = "&Run";
     runButton.Click += new System.EventHandler(this.runButton_Click);
     //
     // splitContainer1
     //
     splitContainer1.Dock        = System.Windows.Forms.DockStyle.Fill;
     splitContainer1.FixedPanel  = System.Windows.Forms.FixedPanel.Panel2;
     splitContainer1.Location    = new System.Drawing.Point(0, 25);
     splitContainer1.Name        = "splitContainer1";
     splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // splitContainer1.Panel1
     //
     splitContainer1.Panel1.Controls.Add(this.textBox);
     //
     // splitContainer1.Panel2
     //
     splitContainer1.Panel2.Controls.Add(tabControl1);
     splitContainer1.Size             = new System.Drawing.Size(292, 241);
     splitContainer1.SplitterDistance = 25;
     splitContainer1.TabIndex         = 3;
     //
     // textBox
     //
     this.textBox.AcceptsReturn = true;
     this.textBox.AcceptsTab    = true;
     this.textBox.Dock          = System.Windows.Forms.DockStyle.Fill;
     this.textBox.Location      = new System.Drawing.Point(0, 0);
     this.textBox.Multiline     = true;
     this.textBox.Name          = "textBox";
     this.textBox.ScrollBars    = System.Windows.Forms.ScrollBars.Vertical;
     this.textBox.Size          = new System.Drawing.Size(292, 25);
     this.textBox.TabIndex      = 1;
     this.textBox.Text          = "(define (fact n) (if (= n 0) 1 (* n (fact (- n 1)))))\r\n(MessageBox.Show (String.F" +
                                  "ormat \"6! = {0}\" (fact 6)) \"Lisp Demo\")";
     this.textBox.WordWrap = false;
     //
     // tabControl1
     //
     tabControl1.Controls.Add(tabPage1);
     tabControl1.Controls.Add(tabPage2);
     tabControl1.Dock          = System.Windows.Forms.DockStyle.Fill;
     tabControl1.Location      = new System.Drawing.Point(0, 0);
     tabControl1.Name          = "tabControl1";
     tabControl1.SelectedIndex = 0;
     tabControl1.Size          = new System.Drawing.Size(292, 212);
     tabControl1.TabIndex      = 3;
     //
     // tabPage1
     //
     tabPage1.Controls.Add(this.sexpTextBox);
     tabPage1.Location = new System.Drawing.Point(4, 22);
     tabPage1.Name     = "tabPage1";
     tabPage1.Padding  = new System.Windows.Forms.Padding(3);
     tabPage1.Size     = new System.Drawing.Size(284, 186);
     tabPage1.TabIndex = 0;
     tabPage1.Text     = "S-Expressions";
     tabPage1.UseVisualStyleBackColor = true;
     //
     // sexpTextBox
     //
     this.sexpTextBox.Dock       = System.Windows.Forms.DockStyle.Fill;
     this.sexpTextBox.Location   = new System.Drawing.Point(3, 3);
     this.sexpTextBox.Multiline  = true;
     this.sexpTextBox.Name       = "sexpTextBox";
     this.sexpTextBox.ReadOnly   = true;
     this.sexpTextBox.ScrollBars = System.Windows.Forms.ScrollBars.Both;
     this.sexpTextBox.Size       = new System.Drawing.Size(278, 180);
     this.sexpTextBox.TabIndex   = 2;
     this.sexpTextBox.WordWrap   = false;
     //
     // tabPage2
     //
     tabPage2.Controls.Add(this.primitivesTextBox);
     tabPage2.Location = new System.Drawing.Point(4, 22);
     tabPage2.Name     = "tabPage2";
     tabPage2.Padding  = new System.Windows.Forms.Padding(3);
     tabPage2.Size     = new System.Drawing.Size(284, 100);
     tabPage2.TabIndex = 1;
     tabPage2.Text     = "Primitives";
     tabPage2.UseVisualStyleBackColor = true;
     //
     // primitivesTextBox
     //
     this.primitivesTextBox.Dock       = System.Windows.Forms.DockStyle.Fill;
     this.primitivesTextBox.Location   = new System.Drawing.Point(3, 3);
     this.primitivesTextBox.Multiline  = true;
     this.primitivesTextBox.Name       = "primitivesTextBox";
     this.primitivesTextBox.ReadOnly   = true;
     this.primitivesTextBox.ScrollBars = System.Windows.Forms.ScrollBars.Both;
     this.primitivesTextBox.Size       = new System.Drawing.Size(278, 94);
     this.primitivesTextBox.TabIndex   = 3;
     this.primitivesTextBox.WordWrap   = false;
     //
     // MainForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(292, 266);
     this.Controls.Add(splitContainer1);
     this.Controls.Add(toolStrip1);
     this.Name          = "MainForm";
     this.StartPosition = System.Windows.Forms.FormStartPosition.WindowsDefaultBounds;
     this.Text          = "Lisp Compiler Demo";
     toolStrip1.ResumeLayout(false);
     toolStrip1.PerformLayout();
     splitContainer1.Panel1.ResumeLayout(false);
     splitContainer1.Panel1.PerformLayout();
     splitContainer1.Panel2.ResumeLayout(false);
     splitContainer1.ResumeLayout(false);
     tabControl1.ResumeLayout(false);
     tabPage1.ResumeLayout(false);
     tabPage1.PerformLayout();
     tabPage2.ResumeLayout(false);
     tabPage2.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Esempio n. 7
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.TabPage tabPage1;
     this.label6          = new System.Windows.Forms.Label();
     this.listBox2        = new System.Windows.Forms.ListBox();
     this.textBox4        = new System.Windows.Forms.TextBox();
     this.textBox3        = new System.Windows.Forms.TextBox();
     this.textBox2        = new System.Windows.Forms.TextBox();
     this.textBox1        = new System.Windows.Forms.TextBox();
     this.label5          = new System.Windows.Forms.Label();
     this.label4          = new System.Windows.Forms.Label();
     this.label3          = new System.Windows.Forms.Label();
     this.label2          = new System.Windows.Forms.Label();
     this.pictureBox1     = new System.Windows.Forms.PictureBox();
     this.listBox1        = new System.Windows.Forms.ListBox();
     this.label1          = new System.Windows.Forms.Label();
     this.button1         = new System.Windows.Forms.Button();
     this.button2         = new System.Windows.Forms.Button();
     this.button3         = new System.Windows.Forms.Button();
     this.button4         = new System.Windows.Forms.Button();
     this.tabControl1     = new System.Windows.Forms.TabControl();
     this.tabPage2        = new System.Windows.Forms.TabPage();
     this.button10        = new System.Windows.Forms.Button();
     this.comboBox1       = new System.Windows.Forms.ComboBox();
     this.textBox10       = new System.Windows.Forms.TextBox();
     this.label12         = new System.Windows.Forms.Label();
     this.button9         = new System.Windows.Forms.Button();
     this.button8         = new System.Windows.Forms.Button();
     this.button7         = new System.Windows.Forms.Button();
     this.button6         = new System.Windows.Forms.Button();
     this.textBox9        = new System.Windows.Forms.TextBox();
     this.label11         = new System.Windows.Forms.Label();
     this.button5         = new System.Windows.Forms.Button();
     this.checkedListBox1 = new System.Windows.Forms.CheckedListBox();
     this.textBox5        = new System.Windows.Forms.TextBox();
     this.textBox6        = new System.Windows.Forms.TextBox();
     this.textBox8        = new System.Windows.Forms.TextBox();
     this.label7          = new System.Windows.Forms.Label();
     this.label8          = new System.Windows.Forms.Label();
     this.label9          = new System.Windows.Forms.Label();
     this.label10         = new System.Windows.Forms.Label();
     tabPage1             = new System.Windows.Forms.TabPage();
     tabPage1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     this.tabControl1.SuspendLayout();
     this.tabPage2.SuspendLayout();
     this.SuspendLayout();
     //
     // tabPage1
     //
     tabPage1.Controls.Add(this.label6);
     tabPage1.Controls.Add(this.listBox2);
     tabPage1.Controls.Add(this.textBox4);
     tabPage1.Controls.Add(this.textBox3);
     tabPage1.Controls.Add(this.textBox2);
     tabPage1.Controls.Add(this.textBox1);
     tabPage1.Controls.Add(this.label5);
     tabPage1.Controls.Add(this.label4);
     tabPage1.Controls.Add(this.label3);
     tabPage1.Controls.Add(this.label2);
     tabPage1.Controls.Add(this.pictureBox1);
     tabPage1.Location = new System.Drawing.Point(4, 22);
     tabPage1.Name     = "tabPage1";
     tabPage1.Padding  = new System.Windows.Forms.Padding(3);
     tabPage1.Size     = new System.Drawing.Size(386, 585);
     tabPage1.TabIndex = 0;
     tabPage1.Text     = "Информация о телефоне";
     tabPage1.UseVisualStyleBackColor = true;
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Font     = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.label6.Location = new System.Drawing.Point(12, 436);
     this.label6.Name     = "label6";
     this.label6.Size     = new System.Drawing.Size(50, 16);
     this.label6.TabIndex = 10;
     this.label6.Text     = "Опции";
     //
     // listBox2
     //
     this.listBox2.FormattingEnabled = true;
     this.listBox2.Location          = new System.Drawing.Point(9, 459);
     this.listBox2.Name     = "listBox2";
     this.listBox2.Size     = new System.Drawing.Size(360, 121);
     this.listBox2.TabIndex = 9;
     //
     // textBox4
     //
     this.textBox4.Location = new System.Drawing.Point(237, 401);
     this.textBox4.Name     = "textBox4";
     this.textBox4.ReadOnly = true;
     this.textBox4.Size     = new System.Drawing.Size(132, 20);
     this.textBox4.TabIndex = 8;
     //
     // textBox3
     //
     this.textBox3.Location = new System.Drawing.Point(237, 364);
     this.textBox3.Name     = "textBox3";
     this.textBox3.ReadOnly = true;
     this.textBox3.Size     = new System.Drawing.Size(132, 20);
     this.textBox3.TabIndex = 7;
     //
     // textBox2
     //
     this.textBox2.Location = new System.Drawing.Point(237, 331);
     this.textBox2.Name     = "textBox2";
     this.textBox2.ReadOnly = true;
     this.textBox2.Size     = new System.Drawing.Size(132, 20);
     this.textBox2.TabIndex = 6;
     //
     // textBox1
     //
     this.textBox1.Location = new System.Drawing.Point(237, 301);
     this.textBox1.Name     = "textBox1";
     this.textBox1.ReadOnly = true;
     this.textBox1.Size     = new System.Drawing.Size(132, 20);
     this.textBox1.TabIndex = 5;
     //
     // label5
     //
     this.label5.AutoSize  = true;
     this.label5.Font      = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.label5.ForeColor = System.Drawing.Color.Red;
     this.label5.Location  = new System.Drawing.Point(6, 405);
     this.label5.Name      = "label5";
     this.label5.Size      = new System.Drawing.Size(45, 16);
     this.label5.TabIndex  = 4;
     this.label5.Text      = "Цена";
     //
     // label4
     //
     this.label4.AutoSize  = true;
     this.label4.Font      = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.label4.ForeColor = System.Drawing.Color.Blue;
     this.label4.Location  = new System.Drawing.Point(6, 368);
     this.label4.Name      = "label4";
     this.label4.Size      = new System.Drawing.Size(39, 16);
     this.label4.TabIndex  = 3;
     this.label4.Text      = "CPU";
     //
     // label3
     //
     this.label3.AutoSize  = true;
     this.label3.Font      = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.label3.ForeColor = System.Drawing.Color.Blue;
     this.label3.Location  = new System.Drawing.Point(6, 335);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(29, 16);
     this.label3.TabIndex  = 2;
     this.label3.Text      = "OS";
     //
     // label2
     //
     this.label2.AutoSize  = true;
     this.label2.Font      = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.label2.ForeColor = System.Drawing.Color.Blue;
     this.label2.Location  = new System.Drawing.Point(6, 305);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(64, 16);
     this.label2.TabIndex  = 1;
     this.label2.Text      = "Модель";
     //
     // pictureBox1
     //
     this.pictureBox1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
     this.pictureBox1.Location = new System.Drawing.Point(6, 6);
     this.pictureBox1.Name     = "pictureBox1";
     this.pictureBox1.Size     = new System.Drawing.Size(363, 276);
     this.pictureBox1.TabIndex = 0;
     this.pictureBox1.TabStop  = false;
     //
     // listBox1
     //
     this.listBox1.FormattingEnabled = true;
     this.listBox1.Location          = new System.Drawing.Point(27, 50);
     this.listBox1.Name                  = "listBox1";
     this.listBox1.Size                  = new System.Drawing.Size(248, 459);
     this.listBox1.TabIndex              = 0;
     this.listBox1.SelectedIndexChanged += new System.EventHandler(this.listBox1_SelectedIndexChanged);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(24, 20);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(154, 13);
     this.label1.TabIndex = 1;
     this.label1.Text     = "Список телефонов магазина";
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(27, 527);
     this.button1.Name     = "button1";
     this.button1.Size     = new System.Drawing.Size(115, 45);
     this.button1.TabIndex = 2;
     this.button1.Text     = "Удалить текущую";
     this.button1.UseVisualStyleBackColor = true;
     this.button1.Click += new System.EventHandler(this.button1_Click);
     //
     // button2
     //
     this.button2.Location = new System.Drawing.Point(148, 527);
     this.button2.Name     = "button2";
     this.button2.Size     = new System.Drawing.Size(127, 45);
     this.button2.TabIndex = 3;
     this.button2.Text     = "Очистить список";
     this.button2.UseVisualStyleBackColor = true;
     this.button2.Click += new System.EventHandler(this.button2_Click);
     //
     // button3
     //
     this.button3.Location = new System.Drawing.Point(148, 594);
     this.button3.Name     = "button3";
     this.button3.Size     = new System.Drawing.Size(127, 45);
     this.button3.TabIndex = 4;
     this.button3.Text     = "Сохранить в файл";
     this.button3.UseVisualStyleBackColor = true;
     this.button3.Click += new System.EventHandler(this.button3_Click);
     //
     // button4
     //
     this.button4.Location = new System.Drawing.Point(27, 594);
     this.button4.Name     = "button4";
     this.button4.Size     = new System.Drawing.Size(115, 45);
     this.button4.TabIndex = 5;
     this.button4.Text     = "Прочитать из файла";
     this.button4.UseVisualStyleBackColor = true;
     this.button4.Click += new System.EventHandler(this.button4_Click);
     //
     // tabControl1
     //
     this.tabControl1.Controls.Add(tabPage1);
     this.tabControl1.Controls.Add(this.tabPage2);
     this.tabControl1.Location      = new System.Drawing.Point(307, 38);
     this.tabControl1.Name          = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size          = new System.Drawing.Size(394, 611);
     this.tabControl1.TabIndex      = 6;
     //
     // tabPage2
     //
     this.tabPage2.Controls.Add(this.button10);
     this.tabPage2.Controls.Add(this.comboBox1);
     this.tabPage2.Controls.Add(this.textBox10);
     this.tabPage2.Controls.Add(this.label12);
     this.tabPage2.Controls.Add(this.button9);
     this.tabPage2.Controls.Add(this.button8);
     this.tabPage2.Controls.Add(this.button7);
     this.tabPage2.Controls.Add(this.button6);
     this.tabPage2.Controls.Add(this.textBox9);
     this.tabPage2.Controls.Add(this.label11);
     this.tabPage2.Controls.Add(this.button5);
     this.tabPage2.Controls.Add(this.checkedListBox1);
     this.tabPage2.Controls.Add(this.textBox5);
     this.tabPage2.Controls.Add(this.textBox6);
     this.tabPage2.Controls.Add(this.textBox8);
     this.tabPage2.Controls.Add(this.label7);
     this.tabPage2.Controls.Add(this.label8);
     this.tabPage2.Controls.Add(this.label9);
     this.tabPage2.Controls.Add(this.label10);
     this.tabPage2.Location = new System.Drawing.Point(4, 22);
     this.tabPage2.Name     = "tabPage2";
     this.tabPage2.Padding  = new System.Windows.Forms.Padding(3);
     this.tabPage2.Size     = new System.Drawing.Size(386, 585);
     this.tabPage2.TabIndex = 1;
     this.tabPage2.Text     = "Редактирование информации";
     this.tabPage2.UseVisualStyleBackColor = true;
     //
     // button10
     //
     this.button10.Location = new System.Drawing.Point(339, 106);
     this.button10.Name     = "button10";
     this.button10.Size     = new System.Drawing.Size(24, 21);
     this.button10.TabIndex = 29;
     this.button10.Text     = "...";
     this.button10.UseVisualStyleBackColor = true;
     this.button10.Click += new System.EventHandler(this.button10_Click);
     //
     // comboBox1
     //
     this.comboBox1.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBox1.FormattingEnabled = true;
     this.comboBox1.Items.AddRange(new object[] {
         "Android 2.0",
         "Android 4.0",
         "Android 5.0",
         "Windows Phone 8.0",
         "Windows Phone 8.1",
         "Windows Phone 10.0",
         "iOS"
     });
     this.comboBox1.Location = new System.Drawing.Point(220, 39);
     this.comboBox1.Name     = "comboBox1";
     this.comboBox1.Size     = new System.Drawing.Size(143, 21);
     this.comboBox1.TabIndex = 28;
     //
     // textBox10
     //
     this.textBox10.Location = new System.Drawing.Point(220, 107);
     this.textBox10.Name     = "textBox10";
     this.textBox10.ReadOnly = true;
     this.textBox10.Size     = new System.Drawing.Size(120, 20);
     this.textBox10.TabIndex = 26;
     //
     // label12
     //
     this.label12.AutoSize  = true;
     this.label12.Font      = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.label12.ForeColor = System.Drawing.Color.Blue;
     this.label12.Location  = new System.Drawing.Point(32, 111);
     this.label12.Name      = "label12";
     this.label12.Size      = new System.Drawing.Size(78, 16);
     this.label12.TabIndex  = 25;
     this.label12.Text      = "Картинка";
     //
     // button9
     //
     this.button9.Location = new System.Drawing.Point(220, 534);
     this.button9.Name     = "button9";
     this.button9.Size     = new System.Drawing.Size(143, 43);
     this.button9.TabIndex = 24;
     this.button9.Text     = "Добавить новый телефон";
     this.button9.UseVisualStyleBackColor = true;
     this.button9.Click += new System.EventHandler(this.button9_Click);
     //
     // button8
     //
     this.button8.Location = new System.Drawing.Point(38, 534);
     this.button8.Name     = "button8";
     this.button8.Size     = new System.Drawing.Size(141, 43);
     this.button8.TabIndex = 23;
     this.button8.Text     = "Очистить поля";
     this.button8.UseVisualStyleBackColor = true;
     this.button8.Click += new System.EventHandler(this.button8_Click);
     //
     // button7
     //
     this.button7.Location = new System.Drawing.Point(38, 467);
     this.button7.Name     = "button7";
     this.button7.Size     = new System.Drawing.Size(141, 43);
     this.button7.TabIndex = 22;
     this.button7.Text     = "Удалить опцию";
     this.button7.UseVisualStyleBackColor = true;
     this.button7.Click += new System.EventHandler(this.button7_Click);
     //
     // button6
     //
     this.button6.Location = new System.Drawing.Point(220, 467);
     this.button6.Name     = "button6";
     this.button6.Size     = new System.Drawing.Size(143, 43);
     this.button6.TabIndex = 21;
     this.button6.Text     = "Добавить опцию";
     this.button6.UseVisualStyleBackColor = true;
     this.button6.Click += new System.EventHandler(this.button6_Click);
     //
     // textBox9
     //
     this.textBox9.Location = new System.Drawing.Point(220, 420);
     this.textBox9.Name     = "textBox9";
     this.textBox9.Size     = new System.Drawing.Size(143, 20);
     this.textBox9.TabIndex = 20;
     //
     // label11
     //
     this.label11.AutoSize  = true;
     this.label11.Font      = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.label11.ForeColor = System.Drawing.Color.Red;
     this.label11.Location  = new System.Drawing.Point(35, 421);
     this.label11.Name      = "label11";
     this.label11.Size      = new System.Drawing.Size(131, 16);
     this.label11.TabIndex  = 19;
     this.label11.Text      = "Название опции";
     //
     // button5
     //
     this.button5.Location = new System.Drawing.Point(35, 351);
     this.button5.Name     = "button5";
     this.button5.Size     = new System.Drawing.Size(328, 49);
     this.button5.TabIndex = 18;
     this.button5.Text     = "Сохранить изменения";
     this.button5.UseVisualStyleBackColor = true;
     this.button5.Click += new System.EventHandler(this.button5_Click);
     //
     // checkedListBox1
     //
     this.checkedListBox1.CheckOnClick      = true;
     this.checkedListBox1.FormattingEnabled = true;
     this.checkedListBox1.Location          = new System.Drawing.Point(35, 182);
     this.checkedListBox1.Name     = "checkedListBox1";
     this.checkedListBox1.Size     = new System.Drawing.Size(328, 154);
     this.checkedListBox1.TabIndex = 17;
     //
     // textBox5
     //
     this.textBox5.Location = new System.Drawing.Point(220, 147);
     this.textBox5.Name     = "textBox5";
     this.textBox5.Size     = new System.Drawing.Size(143, 20);
     this.textBox5.TabIndex = 16;
     //
     // textBox6
     //
     this.textBox6.Location = new System.Drawing.Point(220, 72);
     this.textBox6.Name     = "textBox6";
     this.textBox6.Size     = new System.Drawing.Size(143, 20);
     this.textBox6.TabIndex = 15;
     //
     // textBox8
     //
     this.textBox8.Location = new System.Drawing.Point(220, 6);
     this.textBox8.Name     = "textBox8";
     this.textBox8.Size     = new System.Drawing.Size(143, 20);
     this.textBox8.TabIndex = 13;
     //
     // label7
     //
     this.label7.AutoSize  = true;
     this.label7.Font      = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.label7.ForeColor = System.Drawing.Color.Red;
     this.label7.Location  = new System.Drawing.Point(35, 147);
     this.label7.Name      = "label7";
     this.label7.Size      = new System.Drawing.Size(45, 16);
     this.label7.TabIndex  = 12;
     this.label7.Text      = "Цена";
     //
     // label8
     //
     this.label8.AutoSize  = true;
     this.label8.Font      = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.label8.ForeColor = System.Drawing.Color.Blue;
     this.label8.Location  = new System.Drawing.Point(32, 73);
     this.label8.Name      = "label8";
     this.label8.Size      = new System.Drawing.Size(39, 16);
     this.label8.TabIndex  = 11;
     this.label8.Text      = "CPU";
     //
     // label9
     //
     this.label9.AutoSize  = true;
     this.label9.Font      = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.label9.ForeColor = System.Drawing.Color.Blue;
     this.label9.Location  = new System.Drawing.Point(32, 40);
     this.label9.Name      = "label9";
     this.label9.Size      = new System.Drawing.Size(29, 16);
     this.label9.TabIndex  = 10;
     this.label9.Text      = "OS";
     //
     // label10
     //
     this.label10.AutoSize  = true;
     this.label10.Font      = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.label10.ForeColor = System.Drawing.Color.Blue;
     this.label10.Location  = new System.Drawing.Point(32, 10);
     this.label10.Name      = "label10";
     this.label10.Size      = new System.Drawing.Size(64, 16);
     this.label10.TabIndex  = 9;
     this.label10.Text      = "Модель";
     //
     // Form1
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(735, 656);
     this.Controls.Add(this.tabControl1);
     this.Controls.Add(this.button4);
     this.Controls.Add(this.button3);
     this.Controls.Add(this.button2);
     this.Controls.Add(this.button1);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.listBox1);
     this.Name = "Form1";
     this.Text = "Mobile Store";
     tabPage1.ResumeLayout(false);
     tabPage1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     this.tabControl1.ResumeLayout(false);
     this.tabPage2.ResumeLayout(false);
     this.tabPage2.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Esempio n. 8
0
 /// <summary>
 /// Требуемый метод для поддержки конструктора — не изменяйте
 /// содержимое этого метода с помощью редактора кода.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.TabPage tabEditor;
     this.btnTrueOrFalse        = new System.Windows.Forms.CheckBox();
     this.groupBox1             = new System.Windows.Forms.GroupBox();
     this.btnUpdate             = new System.Windows.Forms.Button();
     this.questionsCount        = new System.Windows.Forms.Label();
     this.label1                = new System.Windows.Forms.Label();
     this.questionIndex         = new System.Windows.Forms.NumericUpDown();
     this.btnSave               = new System.Windows.Forms.Button();
     this.dtnDelete             = new System.Windows.Forms.Button();
     this.btnAdd                = new System.Windows.Forms.Button();
     this.questionText          = new System.Windows.Forms.RichTextBox();
     this.menuStrip1            = new System.Windows.Forms.MenuStrip();
     this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.loadFile              = new System.Windows.Forms.ToolStripMenuItem();
     this.saveAs                = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem2    = new System.Windows.Forms.ToolStripSeparator();
     this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.about               = new System.Windows.Forms.ToolStripMenuItem();
     this.tabControl1         = new System.Windows.Forms.TabControl();
     this.tabGame             = new System.Windows.Forms.TabPage();
     this.startScreen         = new System.Windows.Forms.GroupBox();
     this.btnSelectTrue       = new System.Windows.Forms.Button();
     this.btnSelectFalse      = new System.Windows.Forms.Button();
     this.gameQuestionText    = new System.Windows.Forms.Label();
     this.btnStartGame        = new System.Windows.Forms.Button();
     this.answerCheck         = new System.Windows.Forms.Label();
     this.correctAnswersCount = new System.Windows.Forms.Label();
     this.label5              = new System.Windows.Forms.Label();
     this.label2              = new System.Windows.Forms.Label();
     this.loadedFilename      = new System.Windows.Forms.Label();
     tabEditor = new System.Windows.Forms.TabPage();
     tabEditor.SuspendLayout();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.questionIndex)).BeginInit();
     this.menuStrip1.SuspendLayout();
     this.tabControl1.SuspendLayout();
     this.tabGame.SuspendLayout();
     this.startScreen.SuspendLayout();
     this.SuspendLayout();
     //
     // tabEditor
     //
     tabEditor.Controls.Add(this.btnTrueOrFalse);
     tabEditor.Controls.Add(this.groupBox1);
     tabEditor.Controls.Add(this.questionText);
     tabEditor.Location = new System.Drawing.Point(4, 22);
     tabEditor.Name     = "tabEditor";
     tabEditor.Padding  = new System.Windows.Forms.Padding(3);
     tabEditor.Size     = new System.Drawing.Size(566, 404);
     tabEditor.TabIndex = 0;
     tabEditor.Text     = "Questions Editor";
     tabEditor.UseVisualStyleBackColor = true;
     //
     // btnTrueOrFalse
     //
     this.btnTrueOrFalse.Appearance = System.Windows.Forms.Appearance.Button;
     this.btnTrueOrFalse.AutoSize   = true;
     this.btnTrueOrFalse.Dock       = System.Windows.Forms.DockStyle.Bottom;
     this.btnTrueOrFalse.Font       = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.btnTrueOrFalse.ForeColor  = System.Drawing.Color.Red;
     this.btnTrueOrFalse.Location   = new System.Drawing.Point(3, 308);
     this.btnTrueOrFalse.Name       = "btnTrueOrFalse";
     this.btnTrueOrFalse.Size       = new System.Drawing.Size(560, 23);
     this.btnTrueOrFalse.TabIndex   = 4;
     this.btnTrueOrFalse.Text       = "False";
     this.btnTrueOrFalse.TextAlign  = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnTrueOrFalse.UseVisualStyleBackColor = true;
     this.btnTrueOrFalse.CheckedChanged         += new System.EventHandler(this.BtnTrueOrFalse_CheckedChanged);
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.btnUpdate);
     this.groupBox1.Controls.Add(this.questionsCount);
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Controls.Add(this.questionIndex);
     this.groupBox1.Controls.Add(this.btnSave);
     this.groupBox1.Controls.Add(this.dtnDelete);
     this.groupBox1.Controls.Add(this.btnAdd);
     this.groupBox1.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.groupBox1.Location = new System.Drawing.Point(3, 331);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(560, 70);
     this.groupBox1.TabIndex = 1;
     this.groupBox1.TabStop  = false;
     //
     // btnUpdate
     //
     this.btnUpdate.Location = new System.Drawing.Point(178, 19);
     this.btnUpdate.Name     = "btnUpdate";
     this.btnUpdate.Size     = new System.Drawing.Size(75, 23);
     this.btnUpdate.TabIndex = 6;
     this.btnUpdate.Text     = "Update";
     this.btnUpdate.UseVisualStyleBackColor = true;
     this.btnUpdate.Click += new System.EventHandler(this.BtnUpdate_Click);
     //
     // questionsCount
     //
     this.questionsCount.AutoSize = true;
     this.questionsCount.Location = new System.Drawing.Point(113, 54);
     this.questionsCount.Name     = "questionsCount";
     this.questionsCount.Size     = new System.Drawing.Size(13, 13);
     this.questionsCount.TabIndex = 5;
     this.questionsCount.Text     = "0";
     //
     // label1
     //
     this.label1.AutoSize  = true;
     this.label1.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.label1.ForeColor = System.Drawing.Color.Green;
     this.label1.Location  = new System.Drawing.Point(0, 54);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(107, 13);
     this.label1.TabIndex  = 4;
     this.label1.Text      = "Questions count: ";
     //
     // questionIndex
     //
     this.questionIndex.Location      = new System.Drawing.Point(121, 22);
     this.questionIndex.Name          = "questionIndex";
     this.questionIndex.Size          = new System.Drawing.Size(51, 20);
     this.questionIndex.TabIndex      = 3;
     this.questionIndex.ValueChanged += new System.EventHandler(this.QuestionIndex_ValueChanged);
     //
     // btnSave
     //
     this.btnSave.BackColor = System.Drawing.Color.Transparent;
     this.btnSave.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.btnSave.Location  = new System.Drawing.Point(403, 19);
     this.btnSave.Name      = "btnSave";
     this.btnSave.Size      = new System.Drawing.Size(151, 35);
     this.btnSave.TabIndex  = 2;
     this.btnSave.Text      = "Save Questions Data";
     this.btnSave.UseVisualStyleBackColor = false;
     this.btnSave.Click += new System.EventHandler(this.BtnSave_Click);
     //
     // dtnDelete
     //
     this.dtnDelete.Location = new System.Drawing.Point(259, 19);
     this.dtnDelete.Name     = "dtnDelete";
     this.dtnDelete.Size     = new System.Drawing.Size(75, 23);
     this.dtnDelete.TabIndex = 1;
     this.dtnDelete.Text     = "Delete";
     this.dtnDelete.UseVisualStyleBackColor = true;
     this.dtnDelete.Click += new System.EventHandler(this.DtnDelete_Click);
     //
     // btnAdd
     //
     this.btnAdd.Location = new System.Drawing.Point(6, 20);
     this.btnAdd.Name     = "btnAdd";
     this.btnAdd.Size     = new System.Drawing.Size(75, 23);
     this.btnAdd.TabIndex = 0;
     this.btnAdd.Text     = "Add";
     this.btnAdd.UseVisualStyleBackColor = true;
     this.btnAdd.Click += new System.EventHandler(this.BtnAdd_Click);
     //
     // questionText
     //
     this.questionText.Dock     = System.Windows.Forms.DockStyle.Top;
     this.questionText.Location = new System.Drawing.Point(3, 3);
     this.questionText.Name     = "questionText";
     this.questionText.Size     = new System.Drawing.Size(560, 299);
     this.questionText.TabIndex = 0;
     this.questionText.Text     = "";
     //
     // menuStrip1
     //
     this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.fileToolStripMenuItem,
         this.helpToolStripMenuItem
     });
     this.menuStrip1.Location = new System.Drawing.Point(0, 0);
     this.menuStrip1.Name     = "menuStrip1";
     this.menuStrip1.Size     = new System.Drawing.Size(574, 24);
     this.menuStrip1.TabIndex = 0;
     this.menuStrip1.Text     = "menuStrip1";
     //
     // fileToolStripMenuItem
     //
     this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.loadFile,
         this.saveAs,
         this.toolStripMenuItem2,
         this.exitToolStripMenuItem
     });
     this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
     this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
     this.fileToolStripMenuItem.Text = "File";
     //
     // loadFile
     //
     this.loadFile.Name   = "loadFile";
     this.loadFile.Size   = new System.Drawing.Size(114, 22);
     this.loadFile.Text   = "Load";
     this.loadFile.Click += new System.EventHandler(this.LoadFile_Click);
     //
     // saveAs
     //
     this.saveAs.Name   = "saveAs";
     this.saveAs.Size   = new System.Drawing.Size(114, 22);
     this.saveAs.Text   = "Save As";
     this.saveAs.Click += new System.EventHandler(this.SaveAs_Click);
     //
     // toolStripMenuItem2
     //
     this.toolStripMenuItem2.Name = "toolStripMenuItem2";
     this.toolStripMenuItem2.Size = new System.Drawing.Size(111, 6);
     //
     // exitToolStripMenuItem
     //
     this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
     this.exitToolStripMenuItem.Size = new System.Drawing.Size(114, 22);
     this.exitToolStripMenuItem.Text = "Exit";
     //
     // helpToolStripMenuItem
     //
     this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.about
     });
     this.helpToolStripMenuItem.Name = "helpToolStripMenuItem";
     this.helpToolStripMenuItem.Size = new System.Drawing.Size(44, 20);
     this.helpToolStripMenuItem.Text = "Help";
     //
     // about
     //
     this.about.Name   = "about";
     this.about.Size   = new System.Drawing.Size(107, 22);
     this.about.Text   = "About";
     this.about.Click += new System.EventHandler(this.about_Click);
     //
     // tabControl1
     //
     this.tabControl1.Controls.Add(this.tabGame);
     this.tabControl1.Controls.Add(tabEditor);
     this.tabControl1.Dock          = System.Windows.Forms.DockStyle.Top;
     this.tabControl1.ImeMode       = System.Windows.Forms.ImeMode.NoControl;
     this.tabControl1.Location      = new System.Drawing.Point(0, 24);
     this.tabControl1.Name          = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size          = new System.Drawing.Size(574, 430);
     this.tabControl1.TabIndex      = 1;
     //
     // tabGame
     //
     this.tabGame.Controls.Add(this.startScreen);
     this.tabGame.Controls.Add(this.correctAnswersCount);
     this.tabGame.Controls.Add(this.label5);
     this.tabGame.Location = new System.Drawing.Point(4, 22);
     this.tabGame.Name     = "tabGame";
     this.tabGame.Padding  = new System.Windows.Forms.Padding(3);
     this.tabGame.Size     = new System.Drawing.Size(566, 404);
     this.tabGame.TabIndex = 1;
     this.tabGame.Text     = "Game";
     this.tabGame.UseVisualStyleBackColor = true;
     //
     // startScreen
     //
     this.startScreen.Controls.Add(this.btnSelectTrue);
     this.startScreen.Controls.Add(this.btnSelectFalse);
     this.startScreen.Controls.Add(this.gameQuestionText);
     this.startScreen.Controls.Add(this.btnStartGame);
     this.startScreen.Controls.Add(this.answerCheck);
     this.startScreen.Location = new System.Drawing.Point(0, 0);
     this.startScreen.Name     = "startScreen";
     this.startScreen.Size     = new System.Drawing.Size(566, 352);
     this.startScreen.TabIndex = 7;
     this.startScreen.TabStop  = false;
     //
     // btnSelectTrue
     //
     this.btnSelectTrue.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.btnSelectTrue.ForeColor = System.Drawing.Color.Green;
     this.btnSelectTrue.Location  = new System.Drawing.Point(3, 287);
     this.btnSelectTrue.Name      = "btnSelectTrue";
     this.btnSelectTrue.Size      = new System.Drawing.Size(283, 23);
     this.btnSelectTrue.TabIndex  = 2;
     this.btnSelectTrue.Text      = "True";
     this.btnSelectTrue.UseVisualStyleBackColor = true;
     this.btnSelectTrue.Click += new System.EventHandler(this.BtnSelectTrue_Click);
     //
     // btnSelectFalse
     //
     this.btnSelectFalse.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.btnSelectFalse.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.btnSelectFalse.Location  = new System.Drawing.Point(286, 287);
     this.btnSelectFalse.Name      = "btnSelectFalse";
     this.btnSelectFalse.Size      = new System.Drawing.Size(280, 23);
     this.btnSelectFalse.TabIndex  = 3;
     this.btnSelectFalse.Text      = "False";
     this.btnSelectFalse.UseVisualStyleBackColor = true;
     this.btnSelectFalse.Click += new System.EventHandler(this.BtnSelectFalse_Click);
     //
     // gameQuestionText
     //
     this.gameQuestionText.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.gameQuestionText.Location  = new System.Drawing.Point(27, 58);
     this.gameQuestionText.Name      = "gameQuestionText";
     this.gameQuestionText.Size      = new System.Drawing.Size(506, 136);
     this.gameQuestionText.TabIndex  = 0;
     this.gameQuestionText.Text      = "Please Load Questions\r\nAnd Press \"Start to Play Game\"";
     this.gameQuestionText.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // btnStartGame
     //
     this.btnStartGame.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.btnStartGame.Location = new System.Drawing.Point(172, 235);
     this.btnStartGame.Name     = "btnStartGame";
     this.btnStartGame.Size     = new System.Drawing.Size(244, 28);
     this.btnStartGame.TabIndex = 6;
     this.btnStartGame.Text     = "Start";
     this.btnStartGame.UseVisualStyleBackColor = true;
     this.btnStartGame.Click += new System.EventHandler(this.BtnStartGame_Click);
     //
     // answerCheck
     //
     this.answerCheck.AutoSize = true;
     this.answerCheck.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.answerCheck.Location = new System.Drawing.Point(256, 194);
     this.answerCheck.Name     = "answerCheck";
     this.answerCheck.Size     = new System.Drawing.Size(0, 13);
     this.answerCheck.TabIndex = 1;
     //
     // correctAnswersCount
     //
     this.correctAnswersCount.AutoSize = true;
     this.correctAnswersCount.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.correctAnswersCount.Location = new System.Drawing.Point(70, 370);
     this.correctAnswersCount.Name     = "correctAnswersCount";
     this.correctAnswersCount.Size     = new System.Drawing.Size(14, 13);
     this.correctAnswersCount.TabIndex = 5;
     this.correctAnswersCount.Text     = "0";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.label5.Location = new System.Drawing.Point(11, 370);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(52, 13);
     this.label5.TabIndex = 4;
     this.label5.Text     = "Correct:";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.label2.Location = new System.Drawing.Point(12, 463);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(81, 13);
     this.label2.TabIndex = 2;
     this.label2.Text     = "Loaded File: ";
     //
     // loadedFilename
     //
     this.loadedFilename.AutoSize = true;
     this.loadedFilename.Location = new System.Drawing.Point(86, 463);
     this.loadedFilename.Name     = "loadedFilename";
     this.loadedFilename.Size     = new System.Drawing.Size(0, 13);
     this.loadedFilename.TabIndex = 3;
     //
     // Form1
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(574, 482);
     this.Controls.Add(this.loadedFilename);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.tabControl1);
     this.Controls.Add(this.menuStrip1);
     this.MainMenuStrip = this.menuStrip1;
     this.Name          = "Form1";
     this.Text          = "Form1";
     tabEditor.ResumeLayout(false);
     tabEditor.PerformLayout();
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.questionIndex)).EndInit();
     this.menuStrip1.ResumeLayout(false);
     this.menuStrip1.PerformLayout();
     this.tabControl1.ResumeLayout(false);
     this.tabGame.ResumeLayout(false);
     this.tabGame.PerformLayout();
     this.startScreen.ResumeLayout(false);
     this.startScreen.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Esempio n. 9
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Windows.Forms.TabPage tabBusiness_Date_Info;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmFuelConsole));
     this.textBox1      = new System.Windows.Forms.TextBox();
     this.panel1        = new System.Windows.Forms.Panel();
     this.label3        = new System.Windows.Forms.Label();
     this.label2        = new System.Windows.Forms.Label();
     this.dataGridView1 = new System.Windows.Forms.DataGridView();
     this.Column1       = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column2       = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.textBox2      = new System.Windows.Forms.TextBox();
     this.listBox1      = new System.Windows.Forms.ListBox();
     this.label1        = new System.Windows.Forms.Label();
     this.statusStrip1  = new System.Windows.Forms.StatusStrip();
     this.toolStripUserLoggedInStatusLabel = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStrip1                  = new System.Windows.Forms.ToolStrip();
     this.splitContainer1             = new System.Windows.Forms.SplitContainer();
     this.treeView1                   = new System.Windows.Forms.TreeView();
     this.tabFuelConsole              = new System.Windows.Forms.TabControl();
     this.tabPump_Overview            = new System.Windows.Forms.TabPage();
     this.splitContainer2             = new System.Windows.Forms.SplitContainer();
     this.tabPump_SaleInformation     = new System.Windows.Forms.TabPage();
     this.tabPump_Firmware            = new System.Windows.Forms.TabPage();
     this.tabPump_EventLog            = new System.Windows.Forms.TabPage();
     this.notifyIcon1                 = new System.Windows.Forms.NotifyIcon(this.components);
     this.groupBox1                   = new System.Windows.Forms.GroupBox();
     this.dataGridView3               = new System.Windows.Forms.DataGridView();
     this.ColumnField                 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ColumnValue                 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ColumnMSR                   = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ColumnPrinter               = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ColumnLock                  = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ColumnTotal                 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ColumnICR                   = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ColumnPump                  = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ColumnNumber                = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ColumnIcon                  = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridView2               = new System.Windows.Forms.DataGridView();
     this.splitContainer3             = new System.Windows.Forms.SplitContainer();
     this.dataGridView4               = new System.Windows.Forms.DataGridView();
     this.dataGridViewTextBoxColumn1  = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn2  = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn3  = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn4  = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn5  = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn6  = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn7  = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn8  = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.groupBox2                   = new System.Windows.Forms.GroupBox();
     this.dataGridView5               = new System.Windows.Forms.DataGridView();
     this.dataGridViewTextBoxColumn9  = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn10 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.splitContainer4             = new System.Windows.Forms.SplitContainer();
     this.groupBox3                   = new System.Windows.Forms.GroupBox();
     this.groupBox4                   = new System.Windows.Forms.GroupBox();
     this.dataGridView6               = new System.Windows.Forms.DataGridView();
     this.Column3          = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column4          = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column5          = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridView7    = new System.Windows.Forms.DataGridView();
     this.Column6          = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column7          = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridView8    = new System.Windows.Forms.DataGridView();
     this.Column8          = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column9          = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column10         = new System.Windows.Forms.DataGridViewTextBoxColumn();
     tabBusiness_Date_Info = new System.Windows.Forms.TabPage();
     tabBusiness_Date_Info.SuspendLayout();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
     this.statusStrip1.SuspendLayout();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     this.tabFuelConsole.SuspendLayout();
     this.tabPump_Overview.SuspendLayout();
     this.splitContainer2.Panel1.SuspendLayout();
     this.splitContainer2.Panel2.SuspendLayout();
     this.splitContainer2.SuspendLayout();
     this.tabPump_SaleInformation.SuspendLayout();
     this.tabPump_Firmware.SuspendLayout();
     this.tabPump_EventLog.SuspendLayout();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView2)).BeginInit();
     this.splitContainer3.Panel1.SuspendLayout();
     this.splitContainer3.Panel2.SuspendLayout();
     this.splitContainer3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView4)).BeginInit();
     this.groupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView5)).BeginInit();
     this.splitContainer4.Panel1.SuspendLayout();
     this.splitContainer4.Panel2.SuspendLayout();
     this.splitContainer4.SuspendLayout();
     this.groupBox3.SuspendLayout();
     this.groupBox4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView8)).BeginInit();
     this.SuspendLayout();
     //
     // tabBusiness_Date_Info
     //
     tabBusiness_Date_Info.Controls.Add(this.textBox1);
     tabBusiness_Date_Info.Controls.Add(this.panel1);
     tabBusiness_Date_Info.Controls.Add(this.label1);
     tabBusiness_Date_Info.Location = new System.Drawing.Point(4, 22);
     tabBusiness_Date_Info.Name     = "tabBusiness_Date_Info";
     tabBusiness_Date_Info.Padding  = new System.Windows.Forms.Padding(3);
     tabBusiness_Date_Info.Size     = new System.Drawing.Size(498, 428);
     tabBusiness_Date_Info.TabIndex = 0;
     tabBusiness_Date_Info.Text     = "Business Date Info";
     tabBusiness_Date_Info.UseVisualStyleBackColor = true;
     //
     // textBox1
     //
     this.textBox1.Location = new System.Drawing.Point(95, 24);
     this.textBox1.Name     = "textBox1";
     this.textBox1.Size     = new System.Drawing.Size(100, 20);
     this.textBox1.TabIndex = 2;
     //
     // panel1
     //
     this.panel1.Controls.Add(this.label3);
     this.panel1.Controls.Add(this.label2);
     this.panel1.Controls.Add(this.dataGridView1);
     this.panel1.Controls.Add(this.textBox2);
     this.panel1.Controls.Add(this.listBox1);
     this.panel1.Location = new System.Drawing.Point(42, 67);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(383, 276);
     this.panel1.TabIndex = 1;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(41, 23);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(35, 13);
     this.label3.TabIndex = 4;
     this.label3.Text     = "label3";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(38, 88);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(35, 13);
     this.label2.TabIndex = 3;
     this.label2.Text     = "label2";
     //
     // dataGridView1
     //
     this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
         this.Column1,
         this.Column2
     });
     this.dataGridView1.Location = new System.Drawing.Point(41, 144);
     this.dataGridView1.Name     = "dataGridView1";
     this.dataGridView1.Size     = new System.Drawing.Size(281, 109);
     this.dataGridView1.TabIndex = 2;
     //
     // Column1
     //
     this.Column1.HeaderText = "Process";
     this.Column1.Name       = "Column1";
     //
     // Column2
     //
     this.Column2.HeaderText = "Status";
     this.Column2.Name       = "Column2";
     //
     // textBox2
     //
     this.textBox2.Location = new System.Drawing.Point(222, 88);
     this.textBox2.Name     = "textBox2";
     this.textBox2.Size     = new System.Drawing.Size(100, 20);
     this.textBox2.TabIndex = 1;
     //
     // listBox1
     //
     this.listBox1.FormattingEnabled = true;
     this.listBox1.Location          = new System.Drawing.Point(180, 23);
     this.listBox1.Name     = "listBox1";
     this.listBox1.Size     = new System.Drawing.Size(142, 17);
     this.listBox1.TabIndex = 0;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(39, 31);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(35, 13);
     this.label1.TabIndex = 0;
     this.label1.Text     = "label1";
     //
     // statusStrip1
     //
     this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.toolStripUserLoggedInStatusLabel
     });
     this.statusStrip1.Location = new System.Drawing.Point(0, 481);
     this.statusStrip1.Name     = "statusStrip1";
     this.statusStrip1.Size     = new System.Drawing.Size(671, 22);
     this.statusStrip1.TabIndex = 0;
     this.statusStrip1.Text     = "statusStrip1";
     //
     // toolStripUserLoggedInStatusLabel
     //
     this.toolStripUserLoggedInStatusLabel.Name = "toolStripUserLoggedInStatusLabel";
     this.toolStripUserLoggedInStatusLabel.Size = new System.Drawing.Size(100, 17);
     this.toolStripUserLoggedInStatusLabel.Text = "User Not Logged In";
     //
     // toolStrip1
     //
     this.toolStrip1.GripStyle  = System.Windows.Forms.ToolStripGripStyle.Hidden;
     this.toolStrip1.Location   = new System.Drawing.Point(0, 0);
     this.toolStrip1.Name       = "toolStrip1";
     this.toolStrip1.RenderMode = System.Windows.Forms.ToolStripRenderMode.System;
     this.toolStrip1.Size       = new System.Drawing.Size(671, 25);
     this.toolStrip1.TabIndex   = 1;
     this.toolStrip1.Text       = "toolStrip1";
     //
     // splitContainer1
     //
     this.splitContainer1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.splitContainer1.Dock        = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer1.Location    = new System.Drawing.Point(0, 25);
     this.splitContainer1.Name        = "splitContainer1";
     //
     // splitContainer1.Panel1
     //
     this.splitContainer1.Panel1.Controls.Add(this.treeView1);
     //
     // splitContainer1.Panel2
     //
     this.splitContainer1.Panel2.Controls.Add(this.tabFuelConsole);
     this.splitContainer1.Size             = new System.Drawing.Size(671, 456);
     this.splitContainer1.SplitterDistance = 159;
     this.splitContainer1.TabIndex         = 2;
     //
     // treeView1
     //
     this.treeView1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.treeView1.Location = new System.Drawing.Point(0, 0);
     this.treeView1.Name     = "treeView1";
     this.treeView1.Size     = new System.Drawing.Size(157, 454);
     this.treeView1.TabIndex = 0;
     //
     // tabFuelConsole
     //
     this.tabFuelConsole.Controls.Add(tabBusiness_Date_Info);
     this.tabFuelConsole.Controls.Add(this.tabPump_Overview);
     this.tabFuelConsole.Controls.Add(this.tabPump_SaleInformation);
     this.tabFuelConsole.Controls.Add(this.tabPump_Firmware);
     this.tabFuelConsole.Controls.Add(this.tabPump_EventLog);
     this.tabFuelConsole.Dock          = System.Windows.Forms.DockStyle.Fill;
     this.tabFuelConsole.Location      = new System.Drawing.Point(0, 0);
     this.tabFuelConsole.Name          = "tabFuelConsole";
     this.tabFuelConsole.SelectedIndex = 0;
     this.tabFuelConsole.Size          = new System.Drawing.Size(506, 454);
     this.tabFuelConsole.TabIndex      = 0;
     //
     // tabPump_Overview
     //
     this.tabPump_Overview.Controls.Add(this.splitContainer2);
     this.tabPump_Overview.Location = new System.Drawing.Point(4, 22);
     this.tabPump_Overview.Name     = "tabPump_Overview";
     this.tabPump_Overview.Padding  = new System.Windows.Forms.Padding(3);
     this.tabPump_Overview.Size     = new System.Drawing.Size(498, 428);
     this.tabPump_Overview.TabIndex = 1;
     this.tabPump_Overview.Text     = "Pump Overview";
     this.tabPump_Overview.UseVisualStyleBackColor = true;
     //
     // splitContainer2
     //
     this.splitContainer2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.splitContainer2.Dock        = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer2.Location    = new System.Drawing.Point(3, 3);
     this.splitContainer2.Name        = "splitContainer2";
     this.splitContainer2.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // splitContainer2.Panel1
     //
     this.splitContainer2.Panel1.Controls.Add(this.dataGridView2);
     //
     // splitContainer2.Panel2
     //
     this.splitContainer2.Panel2.Controls.Add(this.groupBox1);
     this.splitContainer2.Size             = new System.Drawing.Size(492, 422);
     this.splitContainer2.SplitterDistance = 160;
     this.splitContainer2.TabIndex         = 0;
     //
     // tabPump_SaleInformation
     //
     this.tabPump_SaleInformation.Controls.Add(this.splitContainer3);
     this.tabPump_SaleInformation.Location = new System.Drawing.Point(4, 22);
     this.tabPump_SaleInformation.Name     = "tabPump_SaleInformation";
     this.tabPump_SaleInformation.Padding  = new System.Windows.Forms.Padding(3);
     this.tabPump_SaleInformation.Size     = new System.Drawing.Size(498, 428);
     this.tabPump_SaleInformation.TabIndex = 2;
     this.tabPump_SaleInformation.Text     = "Sale Information";
     this.tabPump_SaleInformation.UseVisualStyleBackColor = true;
     //
     // tabPump_Firmware
     //
     this.tabPump_Firmware.Controls.Add(this.splitContainer4);
     this.tabPump_Firmware.Location = new System.Drawing.Point(4, 22);
     this.tabPump_Firmware.Name     = "tabPump_Firmware";
     this.tabPump_Firmware.Padding  = new System.Windows.Forms.Padding(3);
     this.tabPump_Firmware.Size     = new System.Drawing.Size(498, 428);
     this.tabPump_Firmware.TabIndex = 3;
     this.tabPump_Firmware.Text     = "Pump\\ICR Firmware";
     this.tabPump_Firmware.UseVisualStyleBackColor = true;
     //
     // tabPump_EventLog
     //
     this.tabPump_EventLog.Controls.Add(this.dataGridView8);
     this.tabPump_EventLog.Location = new System.Drawing.Point(4, 22);
     this.tabPump_EventLog.Name     = "tabPump_EventLog";
     this.tabPump_EventLog.Padding  = new System.Windows.Forms.Padding(3);
     this.tabPump_EventLog.Size     = new System.Drawing.Size(498, 428);
     this.tabPump_EventLog.TabIndex = 4;
     this.tabPump_EventLog.Text     = "Event Log";
     this.tabPump_EventLog.UseVisualStyleBackColor = true;
     //
     // notifyIcon1
     //
     this.notifyIcon1.Icon    = ((System.Drawing.Icon)(resources.GetObject("notifyIcon1.Icon")));
     this.notifyIcon1.Text    = "notifyIcon1";
     this.notifyIcon1.Visible = true;
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.dataGridView3);
     this.groupBox1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.groupBox1.Location = new System.Drawing.Point(0, 0);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(490, 256);
     this.groupBox1.TabIndex = 0;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "Current Sale Information";
     //
     // dataGridView3
     //
     this.dataGridView3.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dataGridView3.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
         this.ColumnField,
         this.ColumnValue
     });
     this.dataGridView3.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.dataGridView3.Location = new System.Drawing.Point(3, 16);
     this.dataGridView3.Name     = "dataGridView3";
     this.dataGridView3.Size     = new System.Drawing.Size(484, 237);
     this.dataGridView3.TabIndex = 0;
     //
     // ColumnField
     //
     this.ColumnField.HeaderText = "Field";
     this.ColumnField.Name       = "ColumnField";
     //
     // ColumnValue
     //
     this.ColumnValue.HeaderText = "Value";
     this.ColumnValue.Name       = "ColumnValue";
     //
     // ColumnMSR
     //
     this.ColumnMSR.HeaderText = "MSR";
     this.ColumnMSR.Name       = "ColumnMSR";
     //
     // ColumnPrinter
     //
     this.ColumnPrinter.HeaderText = "Printer";
     this.ColumnPrinter.Name       = "ColumnPrinter";
     //
     // ColumnLock
     //
     this.ColumnLock.HeaderText = "Lock";
     this.ColumnLock.Name       = "ColumnLock";
     //
     // ColumnTotal
     //
     this.ColumnTotal.HeaderText = "ColumnTotal";
     this.ColumnTotal.Name       = "ColumnTotal";
     //
     // ColumnICR
     //
     this.ColumnICR.HeaderText = "ICR";
     this.ColumnICR.Name       = "ColumnICR";
     //
     // ColumnPump
     //
     this.ColumnPump.HeaderText = "Pump";
     this.ColumnPump.Name       = "ColumnPump";
     //
     // ColumnNumber
     //
     this.ColumnNumber.HeaderText = "##";
     this.ColumnNumber.Name       = "ColumnNumber";
     //
     // ColumnIcon
     //
     this.ColumnIcon.HeaderText = "";
     this.ColumnIcon.Name       = "ColumnIcon";
     //
     // dataGridView2
     //
     this.dataGridView2.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.dataGridView2.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dataGridView2.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
         this.ColumnIcon,
         this.ColumnNumber,
         this.ColumnPump,
         this.ColumnICR,
         this.ColumnTotal,
         this.ColumnLock,
         this.ColumnPrinter,
         this.ColumnMSR
     });
     this.dataGridView2.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.dataGridView2.Location = new System.Drawing.Point(0, 0);
     this.dataGridView2.Name     = "dataGridView2";
     this.dataGridView2.Size     = new System.Drawing.Size(490, 158);
     this.dataGridView2.TabIndex = 0;
     //
     // splitContainer3
     //
     this.splitContainer3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.splitContainer3.Dock        = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer3.Location    = new System.Drawing.Point(3, 3);
     this.splitContainer3.Name        = "splitContainer3";
     this.splitContainer3.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // splitContainer3.Panel1
     //
     this.splitContainer3.Panel1.Controls.Add(this.dataGridView4);
     //
     // splitContainer3.Panel2
     //
     this.splitContainer3.Panel2.Controls.Add(this.groupBox2);
     this.splitContainer3.Size             = new System.Drawing.Size(492, 422);
     this.splitContainer3.SplitterDistance = 160;
     this.splitContainer3.TabIndex         = 1;
     //
     // dataGridView4
     //
     this.dataGridView4.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.dataGridView4.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dataGridView4.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
         this.dataGridViewTextBoxColumn1,
         this.dataGridViewTextBoxColumn2,
         this.dataGridViewTextBoxColumn3,
         this.dataGridViewTextBoxColumn4,
         this.dataGridViewTextBoxColumn5,
         this.dataGridViewTextBoxColumn6,
         this.dataGridViewTextBoxColumn7,
         this.dataGridViewTextBoxColumn8
     });
     this.dataGridView4.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.dataGridView4.Location = new System.Drawing.Point(0, 0);
     this.dataGridView4.Name     = "dataGridView4";
     this.dataGridView4.Size     = new System.Drawing.Size(490, 158);
     this.dataGridView4.TabIndex = 0;
     //
     // dataGridViewTextBoxColumn1
     //
     this.dataGridViewTextBoxColumn1.HeaderText = "";
     this.dataGridViewTextBoxColumn1.Name       = "dataGridViewTextBoxColumn1";
     //
     // dataGridViewTextBoxColumn2
     //
     this.dataGridViewTextBoxColumn2.HeaderText = "##";
     this.dataGridViewTextBoxColumn2.Name       = "dataGridViewTextBoxColumn2";
     //
     // dataGridViewTextBoxColumn3
     //
     this.dataGridViewTextBoxColumn3.HeaderText = "Pump";
     this.dataGridViewTextBoxColumn3.Name       = "dataGridViewTextBoxColumn3";
     //
     // dataGridViewTextBoxColumn4
     //
     this.dataGridViewTextBoxColumn4.HeaderText = "ICR";
     this.dataGridViewTextBoxColumn4.Name       = "dataGridViewTextBoxColumn4";
     //
     // dataGridViewTextBoxColumn5
     //
     this.dataGridViewTextBoxColumn5.HeaderText = "ColumnTotal";
     this.dataGridViewTextBoxColumn5.Name       = "dataGridViewTextBoxColumn5";
     //
     // dataGridViewTextBoxColumn6
     //
     this.dataGridViewTextBoxColumn6.HeaderText = "Lock";
     this.dataGridViewTextBoxColumn6.Name       = "dataGridViewTextBoxColumn6";
     //
     // dataGridViewTextBoxColumn7
     //
     this.dataGridViewTextBoxColumn7.HeaderText = "Printer";
     this.dataGridViewTextBoxColumn7.Name       = "dataGridViewTextBoxColumn7";
     //
     // dataGridViewTextBoxColumn8
     //
     this.dataGridViewTextBoxColumn8.HeaderText = "MSR";
     this.dataGridViewTextBoxColumn8.Name       = "dataGridViewTextBoxColumn8";
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.dataGridView5);
     this.groupBox2.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.groupBox2.Location = new System.Drawing.Point(0, 0);
     this.groupBox2.Name     = "groupBox2";
     this.groupBox2.Size     = new System.Drawing.Size(490, 256);
     this.groupBox2.TabIndex = 0;
     this.groupBox2.TabStop  = false;
     this.groupBox2.Text     = "Selected Sale Information";
     //
     // dataGridView5
     //
     this.dataGridView5.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dataGridView5.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
         this.dataGridViewTextBoxColumn9,
         this.dataGridViewTextBoxColumn10
     });
     this.dataGridView5.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.dataGridView5.Location = new System.Drawing.Point(3, 16);
     this.dataGridView5.Name     = "dataGridView5";
     this.dataGridView5.Size     = new System.Drawing.Size(484, 237);
     this.dataGridView5.TabIndex = 0;
     //
     // dataGridViewTextBoxColumn9
     //
     this.dataGridViewTextBoxColumn9.HeaderText = "Field";
     this.dataGridViewTextBoxColumn9.Name       = "dataGridViewTextBoxColumn9";
     //
     // dataGridViewTextBoxColumn10
     //
     this.dataGridViewTextBoxColumn10.HeaderText = "Value";
     this.dataGridViewTextBoxColumn10.Name       = "dataGridViewTextBoxColumn10";
     //
     // splitContainer4
     //
     this.splitContainer4.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer4.Location = new System.Drawing.Point(3, 3);
     this.splitContainer4.Name     = "splitContainer4";
     //
     // splitContainer4.Panel1
     //
     this.splitContainer4.Panel1.Controls.Add(this.groupBox3);
     //
     // splitContainer4.Panel2
     //
     this.splitContainer4.Panel2.Controls.Add(this.groupBox4);
     this.splitContainer4.Size             = new System.Drawing.Size(492, 422);
     this.splitContainer4.SplitterDistance = 239;
     this.splitContainer4.TabIndex         = 0;
     //
     // groupBox3
     //
     this.groupBox3.Controls.Add(this.dataGridView6);
     this.groupBox3.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.groupBox3.Location = new System.Drawing.Point(0, 0);
     this.groupBox3.Name     = "groupBox3";
     this.groupBox3.Size     = new System.Drawing.Size(239, 422);
     this.groupBox3.TabIndex = 0;
     this.groupBox3.TabStop  = false;
     this.groupBox3.Text     = "Pump Info";
     //
     // groupBox4
     //
     this.groupBox4.Controls.Add(this.dataGridView7);
     this.groupBox4.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.groupBox4.Location = new System.Drawing.Point(0, 0);
     this.groupBox4.Name     = "groupBox4";
     this.groupBox4.Size     = new System.Drawing.Size(249, 422);
     this.groupBox4.TabIndex = 0;
     this.groupBox4.TabStop  = false;
     this.groupBox4.Text     = "ICR Info";
     //
     // dataGridView6
     //
     this.dataGridView6.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dataGridView6.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
         this.Column3,
         this.Column4,
         this.Column5
     });
     this.dataGridView6.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.dataGridView6.Location = new System.Drawing.Point(3, 16);
     this.dataGridView6.Name     = "dataGridView6";
     this.dataGridView6.Size     = new System.Drawing.Size(233, 403);
     this.dataGridView6.TabIndex = 0;
     //
     // Column3
     //
     this.Column3.HeaderText = "Name";
     this.Column3.Name       = "Column3";
     //
     // Column4
     //
     this.Column4.HeaderText = "Value";
     this.Column4.Name       = "Column4";
     //
     // Column5
     //
     this.Column5.HeaderText = "Column5";
     this.Column5.Name       = "Column5";
     //
     // dataGridView7
     //
     this.dataGridView7.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dataGridView7.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
         this.Column6,
         this.Column7
     });
     this.dataGridView7.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.dataGridView7.Location = new System.Drawing.Point(3, 16);
     this.dataGridView7.Name     = "dataGridView7";
     this.dataGridView7.Size     = new System.Drawing.Size(243, 403);
     this.dataGridView7.TabIndex = 0;
     //
     // Column6
     //
     this.Column6.HeaderText = "Name";
     this.Column6.Name       = "Column6";
     //
     // Column7
     //
     this.Column7.HeaderText = "Value";
     this.Column7.Name       = "Column7";
     //
     // dataGridView8
     //
     this.dataGridView8.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dataGridView8.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
         this.Column8,
         this.Column9,
         this.Column10
     });
     this.dataGridView8.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.dataGridView8.Location = new System.Drawing.Point(3, 3);
     this.dataGridView8.Name     = "dataGridView8";
     this.dataGridView8.Size     = new System.Drawing.Size(492, 422);
     this.dataGridView8.TabIndex = 0;
     //
     // Column8
     //
     this.Column8.HeaderText = "Time";
     this.Column8.Name       = "Column8";
     //
     // Column9
     //
     this.Column9.HeaderText = "Event";
     this.Column9.Name       = "Column9";
     //
     // Column10
     //
     this.Column10.HeaderText = "Data";
     this.Column10.Name       = "Column10";
     //
     // FrmFuelConsole
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(671, 503);
     this.Controls.Add(this.splitContainer1);
     this.Controls.Add(this.toolStrip1);
     this.Controls.Add(this.statusStrip1);
     this.Name = "FrmFuelConsole";
     this.Text = "FuelConsole";
     tabBusiness_Date_Info.ResumeLayout(false);
     tabBusiness_Date_Info.PerformLayout();
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
     this.statusStrip1.ResumeLayout(false);
     this.statusStrip1.PerformLayout();
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel2.ResumeLayout(false);
     this.splitContainer1.ResumeLayout(false);
     this.tabFuelConsole.ResumeLayout(false);
     this.tabPump_Overview.ResumeLayout(false);
     this.splitContainer2.Panel1.ResumeLayout(false);
     this.splitContainer2.Panel2.ResumeLayout(false);
     this.splitContainer2.ResumeLayout(false);
     this.tabPump_SaleInformation.ResumeLayout(false);
     this.tabPump_Firmware.ResumeLayout(false);
     this.tabPump_EventLog.ResumeLayout(false);
     this.groupBox1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView2)).EndInit();
     this.splitContainer3.Panel1.ResumeLayout(false);
     this.splitContainer3.Panel2.ResumeLayout(false);
     this.splitContainer3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView4)).EndInit();
     this.groupBox2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView5)).EndInit();
     this.splitContainer4.Panel1.ResumeLayout(false);
     this.splitContainer4.Panel2.ResumeLayout(false);
     this.splitContainer4.ResumeLayout(false);
     this.groupBox3.ResumeLayout(false);
     this.groupBox4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView8)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Esempio n. 10
0
		/// <summary>
		/// Required method for Designer support - do not modify
		/// the contents of this method with the code editor.
		/// </summary>
		void InitializeComponent()
		{
            this.components = new System.ComponentModel.Container();
            System.Windows.Forms.TabPage tbpOptions;
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormMain));
            this.lblBiggerIsFaster = new System.Windows.Forms.Label();
            this.btnRefreshDebugInfo = new System.Windows.Forms.Button();
            this.lblNotRespond = new System.Windows.Forms.Label();
            this.lblDoEvents = new System.Windows.Forms.Label();
            this.cboDoEvents = new System.Windows.Forms.ComboBox();
            this.btnPauseResume = new System.Windows.Forms.Button();
            this.grbDebugVariables = new System.Windows.Forms.GroupBox();
            this.txtDebugVariables = new System.Windows.Forms.TextBox();
            this.tslStatus = new System.Windows.Forms.ToolStripStatusLabel();
            this.chkIsJoinFileGenerating = new System.Windows.Forms.CheckBox();
            this.txtNumberOfFiles = new System.Windows.Forms.TextBox();
            this.txtNumberOfBytesAfterSplit = new System.Windows.Forms.TextBox();
            this.btnSplitFile = new System.Windows.Forms.Button();
            this.lblSplitNumberOfPieces = new System.Windows.Forms.Label();
            this.lblSplitFileSize = new System.Windows.Forms.Label();
            this.txtSplitFolder = new System.Windows.Forms.TextBox();
            this.txtSplitFileName = new System.Windows.Forms.TextBox();
            this.btnBrowseSplitFolder = new System.Windows.Forms.Button();
            this.btnBrowseSplitFile = new System.Windows.Forms.Button();
            this.cmnSize = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.cmi360KB = new System.Windows.Forms.ToolStripMenuItem();
            this.cmi720KB = new System.Windows.Forms.ToolStripMenuItem();
            this.cmi12MB = new System.Windows.Forms.ToolStripMenuItem();
            this.cmi13MB = new System.Windows.Forms.ToolStripMenuItem();
            this.tssMain = new System.Windows.Forms.ToolStripSeparator();
            this.cmiCustom = new System.Windows.Forms.ToolStripMenuItem();
            this.grbSplitFile = new System.Windows.Forms.GroupBox();
            this.grbSplitFolder = new System.Windows.Forms.GroupBox();
            this.grbNumberOfBytes = new System.Windows.Forms.GroupBox();
            this.cboFileSizes = new System.Windows.Forms.ComboBox();
            this.grbSplitInfo = new System.Windows.Forms.GroupBox();
            this.tcMain = new System.Windows.Forms.TabControl();
            this.tbpFileSplitter = new System.Windows.Forms.TabPage();
            this.grbNumberOfFiles = new System.Windows.Forms.GroupBox();
            this.btnPauseSplitting = new System.Windows.Forms.Button();
            this.prbSplitting = new System.Windows.Forms.ProgressBar();
            this.tbpFileJoiner = new System.Windows.Forms.TabPage();
            this.btnPauseJoining = new System.Windows.Forms.Button();
            this.grbJoinInfo = new System.Windows.Forms.GroupBox();
            this.lblJoinFileName = new System.Windows.Forms.Label();
            this.lblJoinNumberOfPieces = new System.Windows.Forms.Label();
            this.cboIsPiecesDeletedAfterJoining = new System.Windows.Forms.CheckBox();
            this.grbJoinFolder = new System.Windows.Forms.GroupBox();
            this.btnJoinBrowseFolder = new System.Windows.Forms.Button();
            this.txtJoinFolder = new System.Windows.Forms.TextBox();
            this.grbJoinFile = new System.Windows.Forms.GroupBox();
            this.txtJoinFileName = new System.Windows.Forms.TextBox();
            this.btnJoinBrowseFile = new System.Windows.Forms.Button();
            this.prbJoining = new System.Windows.Forms.ProgressBar();
            this.btnJoinFile = new System.Windows.Forms.Button();
            this.stsMain = new System.Windows.Forms.StatusStrip();
            this.ucBottom = new FileSplitterAndJoiner.BottomControl();
            this.ucTop = new FileSplitterAndJoiner.TopControl();
            tbpOptions = new System.Windows.Forms.TabPage();
            tbpOptions.SuspendLayout();
            this.grbDebugVariables.SuspendLayout();
            this.cmnSize.SuspendLayout();
            this.grbSplitFile.SuspendLayout();
            this.grbSplitFolder.SuspendLayout();
            this.grbNumberOfBytes.SuspendLayout();
            this.grbSplitInfo.SuspendLayout();
            this.tcMain.SuspendLayout();
            this.tbpFileSplitter.SuspendLayout();
            this.grbNumberOfFiles.SuspendLayout();
            this.tbpFileJoiner.SuspendLayout();
            this.grbJoinInfo.SuspendLayout();
            this.grbJoinFolder.SuspendLayout();
            this.grbJoinFile.SuspendLayout();
            this.SuspendLayout();
            // 
            // tbpOptions
            // 
            tbpOptions.Controls.Add(this.lblBiggerIsFaster);
            tbpOptions.Controls.Add(this.btnRefreshDebugInfo);
            tbpOptions.Controls.Add(this.lblNotRespond);
            tbpOptions.Controls.Add(this.lblDoEvents);
            tbpOptions.Controls.Add(this.cboDoEvents);
            tbpOptions.Controls.Add(this.btnPauseResume);
            tbpOptions.Controls.Add(this.grbDebugVariables);
            tbpOptions.Location = new System.Drawing.Point(4, 24);
            tbpOptions.Name = "tbpOptions";
            tbpOptions.Padding = new System.Windows.Forms.Padding(3);
            tbpOptions.Size = new System.Drawing.Size(435, 281);
            tbpOptions.TabIndex = 2;
            tbpOptions.Text = "Options";
            tbpOptions.UseVisualStyleBackColor = true;
            // 
            // lblBiggerIsFaster
            // 
            this.lblBiggerIsFaster.AutoSize = true;
            this.lblBiggerIsFaster.Location = new System.Drawing.Point(226, 10);
            this.lblBiggerIsFaster.Name = "lblBiggerIsFaster";
            this.lblBiggerIsFaster.Size = new System.Drawing.Size(81, 13);
            this.lblBiggerIsFaster.TabIndex = 6;
            this.lblBiggerIsFaster.Text = "(bigger is faster)";
            // 
            // btnRefreshDebugInfo
            // 
            this.btnRefreshDebugInfo.Location = new System.Drawing.Point(349, 134);
            this.btnRefreshDebugInfo.Name = "btnRefreshDebugInfo";
            this.btnRefreshDebugInfo.Size = new System.Drawing.Size(75, 57);
            this.btnRefreshDebugInfo.TabIndex = 3;
            this.btnRefreshDebugInfo.Text = "Refresh debug info";
            this.btnRefreshDebugInfo.UseVisualStyleBackColor = true;
            this.btnRefreshDebugInfo.Click += new System.EventHandler(this.ButtonRefreshDebugInfo_Click);
            // 
            // lblNotRespond
            // 
            this.lblNotRespond.AutoSize = true;
            this.lblNotRespond.Location = new System.Drawing.Point(8, 33);
            this.lblNotRespond.Name = "lblNotRespond";
            this.lblNotRespond.Size = new System.Drawing.Size(365, 13);
            this.lblNotRespond.TabIndex = 5;
            this.lblNotRespond.Text = "(the application may not respond for filename long time if the value is too big)";
            // 
            // lblDoEvents
            // 
            this.lblDoEvents.AutoSize = true;
            this.lblDoEvents.Location = new System.Drawing.Point(8, 10);
            this.lblDoEvents.Name = "lblDoEvents";
            this.lblDoEvents.Size = new System.Drawing.Size(122, 13);
            this.lblDoEvents.TabIndex = 4;
            this.lblDoEvents.Text = "Do events also at every:";
            // 
            // cboDoEvents
            // 
            this.cboDoEvents.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cboDoEvents.FormattingEnabled = true;
            this.cboDoEvents.Items.AddRange(new object[] {
            " 1 MB",
            " 5 MB",
            "15 MB",
            "25 MB",
            "35 MB",
            "45 MB"});
            this.cboDoEvents.Location = new System.Drawing.Point(154, 6);
            this.cboDoEvents.Name = "cboDoEvents";
            this.cboDoEvents.Size = new System.Drawing.Size(66, 21);
            this.cboDoEvents.TabIndex = 0;
            this.cboDoEvents.SelectedIndexChanged += new System.EventHandler(this.cboDoEvents_SelectedIndexChanged);
            // 
            // btnPauseResume
            // 
            this.btnPauseResume.Location = new System.Drawing.Point(349, 71);
            this.btnPauseResume.Name = "btnPauseResume";
            this.btnPauseResume.Size = new System.Drawing.Size(75, 57);
            this.btnPauseResume.TabIndex = 2;
            this.btnPauseResume.Text = "Pause Resume";
            this.btnPauseResume.UseVisualStyleBackColor = true;
            this.btnPauseResume.Click += new System.EventHandler(this.btnPauseResume_Click);
            // 
            // grbDebugVariables
            // 
            this.grbDebugVariables.Controls.Add(this.txtDebugVariables);
            this.grbDebugVariables.Location = new System.Drawing.Point(11, 51);
            this.grbDebugVariables.Name = "grbDebugVariables";
            this.grbDebugVariables.Size = new System.Drawing.Size(332, 219);
            this.grbDebugVariables.TabIndex = 0;
            this.grbDebugVariables.TabStop = false;
            this.grbDebugVariables.Text = "Debug variables";
            // 
            // txtDebugVariables
            // 
            this.txtDebugVariables.Dock = System.Windows.Forms.DockStyle.Fill;
            this.txtDebugVariables.Location = new System.Drawing.Point(3, 16);
            this.txtDebugVariables.Name = "txtDebugVariables";
            this.txtDebugVariables.Size = new System.Drawing.Size(326, 20);
            this.txtDebugVariables.TabIndex = 0;
            // 
            // tslStatus
            // 
            this.tslStatus.Name = "tslStatus";
            this.tslStatus.Size = new System.Drawing.Size(26, 17);
            this.tslStatus.Text = "idle";
            // 
            // chkIsJoinFileGenerating
            // 
            this.chkIsJoinFileGenerating.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.chkIsJoinFileGenerating.AutoSize = true;
            this.chkIsJoinFileGenerating.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
            this.chkIsJoinFileGenerating.ForeColor = System.Drawing.Color.Black;
            this.chkIsJoinFileGenerating.Location = new System.Drawing.Point(258, 213);
            this.chkIsJoinFileGenerating.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
            this.chkIsJoinFileGenerating.Name = "chkIsJoinFileGenerating";
            this.chkIsJoinFileGenerating.Size = new System.Drawing.Size(224, 19);
            this.chkIsJoinFileGenerating.TabIndex = 17;
            this.chkIsJoinFileGenerating.Text = "Add filename self-joining executable";
            this.chkIsJoinFileGenerating.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            this.chkIsJoinFileGenerating.UseVisualStyleBackColor = true;
            // 
            // txtNumberOfFiles
            // 
            this.txtNumberOfFiles.Enabled = false;
            this.txtNumberOfFiles.Location = new System.Drawing.Point(6, 51);
            this.txtNumberOfFiles.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
            this.txtNumberOfFiles.MaxLength = 4;
            this.txtNumberOfFiles.Name = "txtNumberOfFiles";
            this.txtNumberOfFiles.Size = new System.Drawing.Size(111, 21);
            this.txtNumberOfFiles.TabIndex = 16;
            this.txtNumberOfFiles.TextChanged += new System.EventHandler(this.txtNumberOfFiles_TextChanged);
            this.txtNumberOfFiles.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtNumberOfFiles_KeyDown);
            // 
            // txtNumberOfBytesAfterSplit
            // 
            this.txtNumberOfBytesAfterSplit.Enabled = false;
            this.txtNumberOfBytesAfterSplit.Location = new System.Drawing.Point(6, 51);
            this.txtNumberOfBytesAfterSplit.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
            this.txtNumberOfBytesAfterSplit.MaxLength = 14;
            this.txtNumberOfBytesAfterSplit.Name = "txtNumberOfBytesAfterSplit";
            this.txtNumberOfBytesAfterSplit.Size = new System.Drawing.Size(95, 21);
            this.txtNumberOfBytesAfterSplit.TabIndex = 14;
            this.txtNumberOfBytesAfterSplit.TextChanged += new System.EventHandler(this.txtNumberOfBytesAfterSplit_TextChanged);
            this.txtNumberOfBytesAfterSplit.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtNumberOfBytesAfterSplit_KeyDown);
            this.txtNumberOfBytesAfterSplit.KeyUp += new System.Windows.Forms.KeyEventHandler(this.txtNumberOfBytesAfterSplit_KeyUp);
            this.txtNumberOfBytesAfterSplit.MouseDown += new System.Windows.Forms.MouseEventHandler(this.txtNumberOfBytesAfterSplit_MouseDown);
            // 
            // btnSplitFile
            // 
            this.btnSplitFile.Enabled = false;
            this.btnSplitFile.Location = new System.Drawing.Point(250, 262);
            this.btnSplitFile.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
            this.btnSplitFile.Name = "btnSplitFile";
            this.btnSplitFile.Size = new System.Drawing.Size(121, 26);
            this.btnSplitFile.TabIndex = 9;
            this.btnSplitFile.Text = "Split file";
            this.btnSplitFile.UseVisualStyleBackColor = true;
            this.btnSplitFile.Click += new System.EventHandler(this.btnSplitFile_Click);
            // 
            // lblSplitNumberOfPieces
            // 
            this.lblSplitNumberOfPieces.AutoSize = true;
            this.lblSplitNumberOfPieces.Location = new System.Drawing.Point(6, 35);
            this.lblSplitNumberOfPieces.Name = "lblSplitNumberOfPieces";
            this.lblSplitNumberOfPieces.Size = new System.Drawing.Size(107, 15);
            this.lblSplitNumberOfPieces.TabIndex = 8;
            this.lblSplitNumberOfPieces.Text = "Number of pieces:";
            // 
            // lblSplitFileSize
            // 
            this.lblSplitFileSize.AutoSize = true;
            this.lblSplitFileSize.Location = new System.Drawing.Point(6, 19);
            this.lblSplitFileSize.Name = "lblSplitFileSize";
            this.lblSplitFileSize.Size = new System.Drawing.Size(55, 15);
            this.lblSplitFileSize.TabIndex = 7;
            this.lblSplitFileSize.Text = "File size:";
            // 
            // txtSplitFolder
            // 
            this.txtSplitFolder.Location = new System.Drawing.Point(6, 20);
            this.txtSplitFolder.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
            this.txtSplitFolder.MaxLength = 1000;
            this.txtSplitFolder.Name = "txtSplitFolder";
            this.txtSplitFolder.ReadOnly = true;
            this.txtSplitFolder.Size = new System.Drawing.Size(417, 21);
            this.txtSplitFolder.TabIndex = 5;
            this.txtSplitFolder.TextChanged += new System.EventHandler(this.txtSplitFileName_TextChanged);
            // 
            // txtSplitFileName
            // 
            this.txtSplitFileName.Location = new System.Drawing.Point(6, 20);
            this.txtSplitFileName.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
            this.txtSplitFileName.MaxLength = 1000;
            this.txtSplitFileName.Name = "txtSplitFileName";
            this.txtSplitFileName.ReadOnly = true;
            this.txtSplitFileName.Size = new System.Drawing.Size(417, 21);
            this.txtSplitFileName.TabIndex = 4;
            this.txtSplitFileName.TextChanged += new System.EventHandler(this.txtSplitFileName_TextChanged);
            this.txtSplitFileName.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtSplitFileName_KeyDown);
            // 
            // btnBrowseSplitFolder
            // 
            this.btnBrowseSplitFolder.Location = new System.Drawing.Point(429, 18);
            this.btnBrowseSplitFolder.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
            this.btnBrowseSplitFolder.Name = "btnBrowseSplitFolder";
            this.btnBrowseSplitFolder.Size = new System.Drawing.Size(41, 23);
            this.btnBrowseSplitFolder.TabIndex = 1;
            this.btnBrowseSplitFolder.Text = "...";
            this.btnBrowseSplitFolder.UseVisualStyleBackColor = true;
            this.btnBrowseSplitFolder.Click += new System.EventHandler(this.btnBrowseSplitFolder_Click);
            // 
            // btnBrowseSplitFile
            // 
            this.btnBrowseSplitFile.Location = new System.Drawing.Point(429, 18);
            this.btnBrowseSplitFile.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
            this.btnBrowseSplitFile.Name = "btnBrowseSplitFile";
            this.btnBrowseSplitFile.Size = new System.Drawing.Size(41, 23);
            this.btnBrowseSplitFile.TabIndex = 0;
            this.btnBrowseSplitFile.Text = "...";
            this.btnBrowseSplitFile.UseVisualStyleBackColor = true;
            this.btnBrowseSplitFile.Click += new System.EventHandler(this.btnBrowseSplitFile_Click);
            // 
            // cmnSize
            // 
            this.cmnSize.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.cmi360KB,
            this.cmi720KB,
            this.cmi12MB,
            this.cmi13MB,
            this.tssMain,
            this.cmiCustom});
            this.cmnSize.Name = "contextMenuStrip1";
            this.cmnSize.ShowImageMargin = false;
            this.cmnSize.Size = new System.Drawing.Size(149, 120);
            // 
            // cmi360KB
            // 
            this.cmi360KB.Name = "cmi360KB";
            this.cmi360KB.Size = new System.Drawing.Size(148, 22);
            this.cmi360KB.Text = "360 KB (minimum)";
            this.cmi360KB.Click += new System.EventHandler(this.cmi360KB_Click);
            // 
            // cmi720KB
            // 
            this.cmi720KB.Name = "cmi720KB";
            this.cmi720KB.Size = new System.Drawing.Size(148, 22);
            this.cmi720KB.Text = "720 KB";
            this.cmi720KB.Click += new System.EventHandler(this.cmi720KB_Click);
            // 
            // cmi12MB
            // 
            this.cmi12MB.Name = "cmi12MB";
            this.cmi12MB.Size = new System.Drawing.Size(148, 22);
            this.cmi12MB.Text = "1.2 MB";
            this.cmi12MB.Click += new System.EventHandler(this.cmi12MB_Click);
            // 
            // cmi13MB
            // 
            this.cmi13MB.Name = "cmi13MB";
            this.cmi13MB.Size = new System.Drawing.Size(148, 22);
            this.cmi13MB.Text = "1.38 MB";
            this.cmi13MB.Click += new System.EventHandler(this.cmi13MB_Click);
            // 
            // tssMain
            // 
            this.tssMain.Name = "tssMain";
            this.tssMain.Size = new System.Drawing.Size(145, 6);
            // 
            // cmiCustom
            // 
            this.cmiCustom.Name = "cmiCustom";
            this.cmiCustom.Size = new System.Drawing.Size(148, 22);
            this.cmiCustom.Text = "Custom";
            this.cmiCustom.Click += new System.EventHandler(this.cmiCustom_Click);
            // 
            // grbSplitFile
            // 
            this.grbSplitFile.Controls.Add(this.btnBrowseSplitFile);
            this.grbSplitFile.Controls.Add(this.txtSplitFileName);
            this.grbSplitFile.ForeColor = System.Drawing.Color.Black;
            this.grbSplitFile.Location = new System.Drawing.Point(6, 6);
            this.grbSplitFile.Name = "grbSplitFile";
            this.grbSplitFile.Size = new System.Drawing.Size(476, 51);
            this.grbSplitFile.TabIndex = 21;
            this.grbSplitFile.TabStop = false;
            this.grbSplitFile.Text = "Select file to split";
            // 
            // grbSplitFolder
            // 
            this.grbSplitFolder.Controls.Add(this.btnBrowseSplitFolder);
            this.grbSplitFolder.Controls.Add(this.txtSplitFolder);
            this.grbSplitFolder.ForeColor = System.Drawing.Color.Black;
            this.grbSplitFolder.Location = new System.Drawing.Point(6, 64);
            this.grbSplitFolder.Name = "grbSplitFolder";
            this.grbSplitFolder.Size = new System.Drawing.Size(476, 51);
            this.grbSplitFolder.TabIndex = 22;
            this.grbSplitFolder.TabStop = false;
            this.grbSplitFolder.Text = "Save pieces in folder";
            // 
            // grbNumberOfBytes
            // 
            this.grbNumberOfBytes.Controls.Add(this.cboFileSizes);
            this.grbNumberOfBytes.Controls.Add(this.txtNumberOfBytesAfterSplit);
            this.grbNumberOfBytes.ForeColor = System.Drawing.Color.Black;
            this.grbNumberOfBytes.Location = new System.Drawing.Point(6, 122);
            this.grbNumberOfBytes.Name = "grbNumberOfBytes";
            this.grbNumberOfBytes.Size = new System.Drawing.Size(164, 84);
            this.grbNumberOfBytes.TabIndex = 23;
            this.grbNumberOfBytes.TabStop = false;
            this.grbNumberOfBytes.Text = "data size in which splitting occurs after";
            // 
            // cboFileSizes
            // 
            this.cboFileSizes.Enabled = false;
            this.cboFileSizes.FormattingEnabled = true;
            this.cboFileSizes.Location = new System.Drawing.Point(107, 51);
            this.cboFileSizes.Name = "cboFileSizes";
            this.cboFileSizes.Size = new System.Drawing.Size(50, 23);
            this.cboFileSizes.TabIndex = 15;
            this.cboFileSizes.SelectedIndexChanged += new System.EventHandler(this.cboFileSizes_SelectedIndexChanged);
            // 
            // grbSplitInfo
            // 
            this.grbSplitInfo.Controls.Add(this.lblSplitFileSize);
            this.grbSplitInfo.Controls.Add(this.lblSplitNumberOfPieces);
            this.grbSplitInfo.ForeColor = System.Drawing.Color.Black;
            this.grbSplitInfo.Location = new System.Drawing.Point(305, 122);
            this.grbSplitInfo.Name = "grbSplitInfo";
            this.grbSplitInfo.Size = new System.Drawing.Size(177, 84);
            this.grbSplitInfo.TabIndex = 25;
            this.grbSplitInfo.TabStop = false;
            this.grbSplitInfo.Text = "Split Info";
            // 
            // tcMain
            // 
            this.tcMain.Controls.Add(this.tbpFileSplitter);
            this.tcMain.Controls.Add(this.tbpFileJoiner);
            this.tcMain.Location = new System.Drawing.Point(1, 70);
            this.tcMain.Name = "tcMain";
            this.tcMain.SelectedIndex = 0;
            this.tcMain.Size = new System.Drawing.Size(498, 324);
            this.tcMain.TabIndex = 4;
            // 
            // tbpFileSplitter
            // 
            this.tbpFileSplitter.Controls.Add(this.grbNumberOfFiles);
            this.tbpFileSplitter.Controls.Add(this.btnPauseSplitting);
            this.tbpFileSplitter.Controls.Add(this.grbSplitInfo);
            this.tbpFileSplitter.Controls.Add(this.grbSplitFile);
            this.tbpFileSplitter.Controls.Add(this.btnSplitFile);
            this.tbpFileSplitter.Controls.Add(this.chkIsJoinFileGenerating);
            this.tbpFileSplitter.Controls.Add(this.prbSplitting);
            this.tbpFileSplitter.Controls.Add(this.grbSplitFolder);
            this.tbpFileSplitter.Controls.Add(this.grbNumberOfBytes);
            this.tbpFileSplitter.Location = new System.Drawing.Point(4, 24);
            this.tbpFileSplitter.Name = "tbpFileSplitter";
            this.tbpFileSplitter.Padding = new System.Windows.Forms.Padding(3);
            this.tbpFileSplitter.Size = new System.Drawing.Size(490, 296);
            this.tbpFileSplitter.TabIndex = 0;
            this.tbpFileSplitter.Text = "File Splitter";
            this.tbpFileSplitter.UseVisualStyleBackColor = true;
            // 
            // grbNumberOfFiles
            // 
            this.grbNumberOfFiles.Controls.Add(this.txtNumberOfFiles);
            this.grbNumberOfFiles.ForeColor = System.Drawing.Color.Black;
            this.grbNumberOfFiles.Location = new System.Drawing.Point(176, 122);
            this.grbNumberOfFiles.Name = "grbNumberOfFiles";
            this.grbNumberOfFiles.Size = new System.Drawing.Size(123, 84);
            this.grbNumberOfFiles.TabIndex = 27;
            this.grbNumberOfFiles.TabStop = false;
            this.grbNumberOfFiles.Text = "Number of files to split your file into";
            // 
            // btnPauseSplitting
            // 
            this.btnPauseSplitting.Enabled = false;
            this.btnPauseSplitting.Location = new System.Drawing.Point(377, 262);
            this.btnPauseSplitting.Name = "btnPauseSplitting";
            this.btnPauseSplitting.Size = new System.Drawing.Size(105, 26);
            this.btnPauseSplitting.TabIndex = 26;
            this.btnPauseSplitting.Text = "Pause";
            this.btnPauseSplitting.UseVisualStyleBackColor = true;
            this.btnPauseSplitting.Click += new System.EventHandler(this.btnSplitPause_Click);
            // 
            // prbSplitting
            // 
            this.prbSplitting.Location = new System.Drawing.Point(13, 244);
            this.prbSplitting.Name = "prbSplitting";
            this.prbSplitting.Size = new System.Drawing.Size(469, 12);
            this.prbSplitting.TabIndex = 20;
            // 
            // tbpFileJoiner
            // 
            this.tbpFileJoiner.Controls.Add(this.btnPauseJoining);
            this.tbpFileJoiner.Controls.Add(this.grbJoinInfo);
            this.tbpFileJoiner.Controls.Add(this.cboIsPiecesDeletedAfterJoining);
            this.tbpFileJoiner.Controls.Add(this.grbJoinFolder);
            this.tbpFileJoiner.Controls.Add(this.grbJoinFile);
            this.tbpFileJoiner.Controls.Add(this.prbJoining);
            this.tbpFileJoiner.Controls.Add(this.btnJoinFile);
            this.tbpFileJoiner.Location = new System.Drawing.Point(4, 24);
            this.tbpFileJoiner.Name = "tbpFileJoiner";
            this.tbpFileJoiner.Padding = new System.Windows.Forms.Padding(3);
            this.tbpFileJoiner.Size = new System.Drawing.Size(490, 296);
            this.tbpFileJoiner.TabIndex = 1;
            this.tbpFileJoiner.Text = "File Joiner";
            this.tbpFileJoiner.UseVisualStyleBackColor = true;
            // 
            // btnPauseJoining
            // 
            this.btnPauseJoining.Enabled = false;
            this.btnPauseJoining.Location = new System.Drawing.Point(377, 262);
            this.btnPauseJoining.Name = "btnPauseJoining";
            this.btnPauseJoining.Size = new System.Drawing.Size(105, 26);
            this.btnPauseJoining.TabIndex = 27;
            this.btnPauseJoining.Text = "Pause";
            this.btnPauseJoining.UseVisualStyleBackColor = true;
            this.btnPauseJoining.Click += new System.EventHandler(this.btnJoinPause_Click);
            // 
            // grbJoinInfo
            // 
            this.grbJoinInfo.Controls.Add(this.lblJoinFileName);
            this.grbJoinInfo.Controls.Add(this.lblJoinNumberOfPieces);
            this.grbJoinInfo.ForeColor = System.Drawing.Color.Black;
            this.grbJoinInfo.Location = new System.Drawing.Point(6, 122);
            this.grbJoinInfo.Name = "grbJoinInfo";
            this.grbJoinInfo.Size = new System.Drawing.Size(476, 63);
            this.grbJoinInfo.TabIndex = 26;
            this.grbJoinInfo.TabStop = false;
            this.grbJoinInfo.Text = "Joining Info (.Join file content)";
            // 
            // lblJoinFileName
            // 
            this.lblJoinFileName.AutoSize = true;
            this.lblJoinFileName.ForeColor = System.Drawing.Color.Black;
            this.lblJoinFileName.Location = new System.Drawing.Point(6, 19);
            this.lblJoinFileName.Name = "lblJoinFileName";
            this.lblJoinFileName.Size = new System.Drawing.Size(65, 15);
            this.lblJoinFileName.TabIndex = 7;
            this.lblJoinFileName.Text = "File name:";
            // 
            // lblJoinNumberOfPieces
            // 
            this.lblJoinNumberOfPieces.AutoSize = true;
            this.lblJoinNumberOfPieces.ForeColor = System.Drawing.Color.Black;
            this.lblJoinNumberOfPieces.Location = new System.Drawing.Point(6, 35);
            this.lblJoinNumberOfPieces.Name = "lblJoinNumberOfPieces";
            this.lblJoinNumberOfPieces.Size = new System.Drawing.Size(107, 15);
            this.lblJoinNumberOfPieces.TabIndex = 8;
            this.lblJoinNumberOfPieces.Text = "Number of pieces:";
            // 
            // cboIsPiecesDeletedAfterJoining
            // 
            this.cboIsPiecesDeletedAfterJoining.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.cboIsPiecesDeletedAfterJoining.AutoSize = true;
            this.cboIsPiecesDeletedAfterJoining.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
            this.cboIsPiecesDeletedAfterJoining.Checked = true;
            this.cboIsPiecesDeletedAfterJoining.CheckState = System.Windows.Forms.CheckState.Checked;
            this.cboIsPiecesDeletedAfterJoining.ForeColor = System.Drawing.Color.Black;
            this.cboIsPiecesDeletedAfterJoining.Location = new System.Drawing.Point(208, 198);
            this.cboIsPiecesDeletedAfterJoining.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
            this.cboIsPiecesDeletedAfterJoining.Name = "cboIsPiecesDeletedAfterJoining";
            this.cboIsPiecesDeletedAfterJoining.Size = new System.Drawing.Size(274, 19);
            this.cboIsPiecesDeletedAfterJoining.TabIndex = 24;
            this.cboIsPiecesDeletedAfterJoining.Text = "Delete pieces and executable file after joining";
            this.cboIsPiecesDeletedAfterJoining.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            this.cboIsPiecesDeletedAfterJoining.UseVisualStyleBackColor = true;
            // 
            // grbJoinFolder
            // 
            this.grbJoinFolder.Controls.Add(this.btnJoinBrowseFolder);
            this.grbJoinFolder.Controls.Add(this.txtJoinFolder);
            this.grbJoinFolder.ForeColor = System.Drawing.Color.Black;
            this.grbJoinFolder.Location = new System.Drawing.Point(6, 64);
            this.grbJoinFolder.Name = "grbJoinFolder";
            this.grbJoinFolder.Size = new System.Drawing.Size(476, 51);
            this.grbJoinFolder.TabIndex = 23;
            this.grbJoinFolder.TabStop = false;
            this.grbJoinFolder.Text = "Save joined file in folder";
            // 
            // btnJoinBrowseFolder
            // 
            this.btnJoinBrowseFolder.Location = new System.Drawing.Point(429, 18);
            this.btnJoinBrowseFolder.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
            this.btnJoinBrowseFolder.Name = "btnJoinBrowseFolder";
            this.btnJoinBrowseFolder.Size = new System.Drawing.Size(41, 23);
            this.btnJoinBrowseFolder.TabIndex = 1;
            this.btnJoinBrowseFolder.Text = "...";
            this.btnJoinBrowseFolder.UseVisualStyleBackColor = true;
            this.btnJoinBrowseFolder.Click += new System.EventHandler(this.btnJoinBrowseFolder_Click);
            // 
            // txtJoinFolder
            // 
            this.txtJoinFolder.Location = new System.Drawing.Point(6, 20);
            this.txtJoinFolder.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
            this.txtJoinFolder.MaxLength = 1000;
            this.txtJoinFolder.Name = "txtJoinFolder";
            this.txtJoinFolder.ReadOnly = true;
            this.txtJoinFolder.Size = new System.Drawing.Size(417, 21);
            this.txtJoinFolder.TabIndex = 5;
            this.txtJoinFolder.TextChanged += new System.EventHandler(this.txtJoinFileName_TextChanged);
            // 
            // grbJoinFile
            // 
            this.grbJoinFile.Controls.Add(this.txtJoinFileName);
            this.grbJoinFile.Controls.Add(this.btnJoinBrowseFile);
            this.grbJoinFile.ForeColor = System.Drawing.Color.Black;
            this.grbJoinFile.Location = new System.Drawing.Point(6, 6);
            this.grbJoinFile.Name = "grbJoinFile";
            this.grbJoinFile.Size = new System.Drawing.Size(476, 51);
            this.grbJoinFile.TabIndex = 22;
            this.grbJoinFile.TabStop = false;
            this.grbJoinFile.Text = "Browse for file part";
            // 
            // txtJoinFileName
            // 
            this.txtJoinFileName.Location = new System.Drawing.Point(6, 20);
            this.txtJoinFileName.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
            this.txtJoinFileName.MaxLength = 1000;
            this.txtJoinFileName.Name = "txtJoinFileName";
            this.txtJoinFileName.ReadOnly = true;
            this.txtJoinFileName.Size = new System.Drawing.Size(417, 21);
            this.txtJoinFileName.TabIndex = 5;
            this.txtJoinFileName.TextChanged += new System.EventHandler(this.txtJoinFileName_TextChanged);
            this.txtJoinFileName.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtBoxJoinFileName_KeyDown);
            // 
            // btnJoinBrowseFile
            // 
            this.btnJoinBrowseFile.Location = new System.Drawing.Point(429, 18);
            this.btnJoinBrowseFile.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
            this.btnJoinBrowseFile.Name = "btnJoinBrowseFile";
            this.btnJoinBrowseFile.Size = new System.Drawing.Size(41, 23);
            this.btnJoinBrowseFile.TabIndex = 6;
            this.btnJoinBrowseFile.Text = "...";
            this.btnJoinBrowseFile.UseVisualStyleBackColor = true;
            this.btnJoinBrowseFile.Click += new System.EventHandler(this.btnJoinBrowseFile_Click);
            // 
            // prbJoining
            // 
            this.prbJoining.Location = new System.Drawing.Point(13, 244);
            this.prbJoining.Name = "prbJoining";
            this.prbJoining.Size = new System.Drawing.Size(469, 12);
            this.prbJoining.TabIndex = 21;
            // 
            // btnJoinFile
            // 
            this.btnJoinFile.Enabled = false;
            this.btnJoinFile.Location = new System.Drawing.Point(249, 262);
            this.btnJoinFile.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
            this.btnJoinFile.Name = "btnJoinFile";
            this.btnJoinFile.Size = new System.Drawing.Size(122, 26);
            this.btnJoinFile.TabIndex = 10;
            this.btnJoinFile.Text = "Join file";
            this.btnJoinFile.UseVisualStyleBackColor = true;
            this.btnJoinFile.Click += new System.EventHandler(this.btnJoinFile_Click);
            // 
            // stsMain
            // 
            this.stsMain.Location = new System.Drawing.Point(0, 397);
            this.stsMain.Name = "stsMain";
            this.stsMain.Size = new System.Drawing.Size(499, 22);
            this.stsMain.TabIndex = 8;
            this.stsMain.Text = "statusStrip1";
            // 
            // ucBottom
            // 
            this.ucBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.ucBottom.Location = new System.Drawing.Point(0, 419);
            this.ucBottom.Margin = new System.Windows.Forms.Padding(0);
            this.ucBottom.MaximumSize = new System.Drawing.Size(0, 36);
            this.ucBottom.MinimumSize = new System.Drawing.Size(0, 36);
            this.ucBottom.Name = "ucBottom";
            this.ucBottom.Size = new System.Drawing.Size(499, 36);
            this.ucBottom.TabIndex = 7;
            // 
            // ucTop
            // 
            this.ucTop.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(245)))), ((int)(((byte)(246)))), ((int)(((byte)(247)))));
            this.ucTop.Dock = System.Windows.Forms.DockStyle.Top;
            this.ucTop.Location = new System.Drawing.Point(0, 0);
            this.ucTop.Name = "ucTop";
            this.ucTop.Size = new System.Drawing.Size(499, 64);
            this.ucTop.TabIndex = 6;
            // 
            // FormMain
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
            this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(245)))), ((int)(((byte)(246)))), ((int)(((byte)(247)))));
            this.ClientSize = new System.Drawing.Size(499, 455);
            this.Controls.Add(this.stsMain);
            this.Controls.Add(this.ucBottom);
            this.Controls.Add(this.ucTop);
            this.Controls.Add(this.tcMain);
            this.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.Name = "FormMain";
            this.Text = "File Splitter and Joiner";
            this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frmMain_FormClosing);
            this.Load += new System.EventHandler(this.frmMain_Load);
            tbpOptions.ResumeLayout(false);
            tbpOptions.PerformLayout();
            this.grbDebugVariables.ResumeLayout(false);
            this.grbDebugVariables.PerformLayout();
            this.cmnSize.ResumeLayout(false);
            this.grbSplitFile.ResumeLayout(false);
            this.grbSplitFile.PerformLayout();
            this.grbSplitFolder.ResumeLayout(false);
            this.grbSplitFolder.PerformLayout();
            this.grbNumberOfBytes.ResumeLayout(false);
            this.grbNumberOfBytes.PerformLayout();
            this.grbSplitInfo.ResumeLayout(false);
            this.grbSplitInfo.PerformLayout();
            this.tcMain.ResumeLayout(false);
            this.tbpFileSplitter.ResumeLayout(false);
            this.tbpFileSplitter.PerformLayout();
            this.grbNumberOfFiles.ResumeLayout(false);
            this.grbNumberOfFiles.PerformLayout();
            this.tbpFileJoiner.ResumeLayout(false);
            this.tbpFileJoiner.PerformLayout();
            this.grbJoinInfo.ResumeLayout(false);
            this.grbJoinInfo.PerformLayout();
            this.grbJoinFolder.ResumeLayout(false);
            this.grbJoinFolder.PerformLayout();
            this.grbJoinFile.ResumeLayout(false);
            this.grbJoinFile.PerformLayout();
            this.ResumeLayout(false);
            this.PerformLayout();

		}
Esempio n. 11
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.Windows.Forms.TabPage tabpgGeneralSetting;
            System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
            System.Windows.Forms.DataVisualization.Charting.Legend legend1 = new System.Windows.Forms.DataVisualization.Charting.Legend();
            System.Windows.Forms.DataVisualization.Charting.Series series1 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormMain));
            this.label16 = new System.Windows.Forms.Label();
            this.label15 = new System.Windows.Forms.Label();
            this.label14 = new System.Windows.Forms.Label();
            this.label11 = new System.Windows.Forms.Label();
            this.numGeneratedSignalMin = new System.Windows.Forms.NumericUpDown();
            this.numGeneratedSignalMax = new System.Windows.Forms.NumericUpDown();
            this.cmbSignalType = new System.Windows.Forms.ComboBox();
            this.numPointsInPeriod = new System.Windows.Forms.NumericUpDown();
            this.btnGenerate = new System.Windows.Forms.Button();
            this.btnConnect = new System.Windows.Forms.Button();
            this.dgvConnectedInstruments = new System.Windows.Forms.DataGridView();
            this.tabMainForm = new System.Windows.Forms.TabControl();
            this.tabpgExperimentsControl = new System.Windows.Forms.TabPage();
            this.tabInstrumnets = new System.Windows.Forms.TabControl();
            this.tabpgSignalGenerator = new System.Windows.Forms.TabPage();
            this.chkUpdateFromInstruments = new System.Windows.Forms.CheckBox();
            this.numSignalGeneratorVoltageLow = new System.Windows.Forms.NumericUpDown();
            this.numSignalGeneratorVoltageHigh = new System.Windows.Forms.NumericUpDown();
            this.numSignalGeneratorFrequency = new System.Windows.Forms.NumericUpDown();
            this.label3 = new System.Windows.Forms.Label();
            this.label2 = new System.Windows.Forms.Label();
            this.label1 = new System.Windows.Forms.Label();
            this.tabpScope = new System.Windows.Forms.TabPage();
            this.cmbScopeSampleRate = new System.Windows.Forms.ComboBox();
            this.label27 = new System.Windows.Forms.Label();
            this.numBufferToRecord = new System.Windows.Forms.NumericUpDown();
            this.label12 = new System.Windows.Forms.Label();
            this.btnRunExperiment = new System.Windows.Forms.Button();
            this.btnAddNewExperiment = new System.Windows.Forms.Button();
            this.dgvExperiments = new System.Windows.Forms.DataGridView();
            this.ID = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.FilePath = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.PhotodiodeOutputPhase = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.SignalGeneratorPhase = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.CalcedPhaseDifference = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.LockingPhaseDifference = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.MaxHarmonic = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.tabpSignalFixer = new System.Windows.Forms.TabPage();
            this.grpbGeneralAlgorithmSettings = new System.Windows.Forms.GroupBox();
            this.numSGFilterLength = new System.Windows.Forms.NumericUpDown();
            this.label26 = new System.Windows.Forms.Label();
            this.numSGPolyOrder = new System.Windows.Forms.NumericUpDown();
            this.label25 = new System.Windows.Forms.Label();
            this.numFixEveryNSample = new System.Windows.Forms.NumericUpDown();
            this.label24 = new System.Windows.Forms.Label();
            this.numFixFromSample = new System.Windows.Forms.NumericUpDown();
            this.label23 = new System.Windows.Forms.Label();
            this.chkRescaleAfterSmoothing = new System.Windows.Forms.CheckBox();
            this.numMaxErrorToFixFrom = new System.Windows.Forms.NumericUpDown();
            this.label22 = new System.Windows.Forms.Label();
            this.btnSaveSignalGeneratorFile = new System.Windows.Forms.Button();
            this.btnClearIteratinData = new System.Windows.Forms.Button();
            this.btnFixSignal = new System.Windows.Forms.Button();
            this.cmbAlgorithmToUse = new System.Windows.Forms.ComboBox();
            this.label7 = new System.Windows.Forms.Label();
            this.cmbSignalToFix = new System.Windows.Forms.ComboBox();
            this.numIterationCount = new System.Windows.Forms.NumericUpDown();
            this.cmbMinMaxDetermination = new System.Windows.Forms.ComboBox();
            this.label6 = new System.Windows.Forms.Label();
            this.label5 = new System.Windows.Forms.Label();
            this.label4 = new System.Windows.Forms.Label();
            this.tabControl1 = new System.Windows.Forms.TabControl();
            this.tabpPIDSettings = new System.Windows.Forms.TabPage();
            this.numEpsilonFactor = new System.Windows.Forms.NumericUpDown();
            this.label21 = new System.Windows.Forms.Label();
            this.chkUseDerivative = new System.Windows.Forms.CheckBox();
            this.numDFactor = new System.Windows.Forms.NumericUpDown();
            this.numIFactor = new System.Windows.Forms.NumericUpDown();
            this.numPFactor = new System.Windows.Forms.NumericUpDown();
            this.label8 = new System.Windows.Forms.Label();
            this.label9 = new System.Windows.Forms.Label();
            this.label10 = new System.Windows.Forms.Label();
            this.tabpFreqDistortionSettings = new System.Windows.Forms.TabPage();
            this.numFFTScaling = new System.Windows.Forms.NumericUpDown();
            this.label30 = new System.Windows.Forms.Label();
            this.cmbFDAScaleFix = new System.Windows.Forms.CheckBox();
            this.numFDAHarmony = new System.Windows.Forms.NumericUpDown();
            this.label13 = new System.Windows.Forms.Label();
            this.numRange = new System.Windows.Forms.NumericUpDown();
            this.numMidPoint = new System.Windows.Forms.NumericUpDown();
            this.label28 = new System.Windows.Forms.Label();
            this.label29 = new System.Windows.Forms.Label();
            this.tabpFrequencyDomain = new System.Windows.Forms.TabPage();
            this.chlFixScale = new System.Windows.Forms.CheckBox();
            this.numHarmonyToFix = new System.Windows.Forms.NumericUpDown();
            this.label20 = new System.Windows.Forms.Label();
            this.numFixEnd = new System.Windows.Forms.NumericUpDown();
            this.numFixStart = new System.Windows.Forms.NumericUpDown();
            this.label19 = new System.Windows.Forms.Label();
            this.label18 = new System.Windows.Forms.Label();
            this.numMaxHarmonic = new System.Windows.Forms.NumericUpDown();
            this.label17 = new System.Windows.Forms.Label();
            this.tbpDesertLionSettings = new System.Windows.Forms.TabPage();
            this.tabpFirstOrderSettings = new System.Windows.Forms.TabPage();
            this.dgvIterationsData = new System.Windows.Forms.DataGridView();
            this.IterationID = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.AlgorithmType = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.AverageError = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.MeanAbsoluteError = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.IterationMaxHarmonic = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.tabpGraphs = new System.Windows.Forms.TabPage();
            this.btnChartPhaseMatched = new System.Windows.Forms.Button();
            this.chartGraphs = new System.Windows.Forms.DataVisualization.Charting.Chart();
            this.numConstantPhaseAdjustment = new System.Windows.Forms.NumericUpDown();
            this.label31 = new System.Windows.Forms.Label();
            this.instrumentModelDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.statusDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.instrumentStautsBindingSource = new System.Windows.Forms.BindingSource(this.components);
            tabpgGeneralSetting = new System.Windows.Forms.TabPage();
            tabpgGeneralSetting.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.numGeneratedSignalMin)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.numGeneratedSignalMax)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.numPointsInPeriod)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dgvConnectedInstruments)).BeginInit();
            this.tabMainForm.SuspendLayout();
            this.tabpgExperimentsControl.SuspendLayout();
            this.tabInstrumnets.SuspendLayout();
            this.tabpgSignalGenerator.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.numSignalGeneratorVoltageLow)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.numSignalGeneratorVoltageHigh)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.numSignalGeneratorFrequency)).BeginInit();
            this.tabpScope.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.numBufferToRecord)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dgvExperiments)).BeginInit();
            this.tabpSignalFixer.SuspendLayout();
            this.grpbGeneralAlgorithmSettings.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.numSGFilterLength)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.numSGPolyOrder)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.numFixEveryNSample)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.numFixFromSample)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.numMaxErrorToFixFrom)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.numIterationCount)).BeginInit();
            this.tabControl1.SuspendLayout();
            this.tabpPIDSettings.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.numEpsilonFactor)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.numDFactor)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.numIFactor)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.numPFactor)).BeginInit();
            this.tabpFreqDistortionSettings.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.numFFTScaling)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.numFDAHarmony)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.numRange)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.numMidPoint)).BeginInit();
            this.tabpFrequencyDomain.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.numHarmonyToFix)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.numFixEnd)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.numFixStart)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.numMaxHarmonic)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dgvIterationsData)).BeginInit();
            this.tabpGraphs.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.chartGraphs)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.numConstantPhaseAdjustment)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.instrumentStautsBindingSource)).BeginInit();
            this.SuspendLayout();
            // 
            // tabpgGeneralSetting
            // 
            tabpgGeneralSetting.Controls.Add(this.label16);
            tabpgGeneralSetting.Controls.Add(this.label15);
            tabpgGeneralSetting.Controls.Add(this.label14);
            tabpgGeneralSetting.Controls.Add(this.label11);
            tabpgGeneralSetting.Controls.Add(this.numGeneratedSignalMin);
            tabpgGeneralSetting.Controls.Add(this.numGeneratedSignalMax);
            tabpgGeneralSetting.Controls.Add(this.cmbSignalType);
            tabpgGeneralSetting.Controls.Add(this.numPointsInPeriod);
            tabpgGeneralSetting.Controls.Add(this.btnGenerate);
            tabpgGeneralSetting.Controls.Add(this.btnConnect);
            tabpgGeneralSetting.Controls.Add(this.dgvConnectedInstruments);
            tabpgGeneralSetting.Location = new System.Drawing.Point(4, 22);
            tabpgGeneralSetting.Name = "tabpgGeneralSetting";
            tabpgGeneralSetting.Padding = new System.Windows.Forms.Padding(3);
            tabpgGeneralSetting.Size = new System.Drawing.Size(1111, 494);
            tabpgGeneralSetting.TabIndex = 0;
            tabpgGeneralSetting.Text = "General Settings";
            tabpgGeneralSetting.UseVisualStyleBackColor = true;
            // 
            // label16
            // 
            this.label16.AutoSize = true;
            this.label16.Location = new System.Drawing.Point(149, 254);
            this.label16.Name = "label16";
            this.label16.Size = new System.Drawing.Size(27, 13);
            this.label16.TabIndex = 12;
            this.label16.Text = "Max";
            // 
            // label15
            // 
            this.label15.AutoSize = true;
            this.label15.Location = new System.Drawing.Point(6, 255);
            this.label15.Name = "label15";
            this.label15.Size = new System.Drawing.Size(24, 13);
            this.label15.TabIndex = 11;
            this.label15.Text = "Min";
            // 
            // label14
            // 
            this.label14.AutoSize = true;
            this.label14.Location = new System.Drawing.Point(149, 213);
            this.label14.Name = "label14";
            this.label14.Size = new System.Drawing.Size(58, 13);
            this.label14.TabIndex = 10;
            this.label14.Text = "# of Points";
            // 
            // label11
            // 
            this.label11.AutoSize = true;
            this.label11.Location = new System.Drawing.Point(8, 213);
            this.label11.Name = "label11";
            this.label11.Size = new System.Drawing.Size(63, 13);
            this.label11.TabIndex = 9;
            this.label11.Text = "Signal Type";
            // 
            // numGeneratedSignalMin
            // 
            this.numGeneratedSignalMin.Location = new System.Drawing.Point(9, 271);
            this.numGeneratedSignalMin.Maximum = new decimal(new int[] {
            1000000,
            0,
            0,
            0});
            this.numGeneratedSignalMin.Minimum = new decimal(new int[] {
            1000000,
            0,
            0,
            -2147483648});
            this.numGeneratedSignalMin.Name = "numGeneratedSignalMin";
            this.numGeneratedSignalMin.Size = new System.Drawing.Size(72, 20);
            this.numGeneratedSignalMin.TabIndex = 8;
            this.numGeneratedSignalMin.Value = new decimal(new int[] {
            1000,
            0,
            0,
            0});
            // 
            // numGeneratedSignalMax
            // 
            this.numGeneratedSignalMax.Location = new System.Drawing.Point(152, 271);
            this.numGeneratedSignalMax.Maximum = new decimal(new int[] {
            1000000,
            0,
            0,
            0});
            this.numGeneratedSignalMax.Minimum = new decimal(new int[] {
            1000000,
            0,
            0,
            -2147483648});
            this.numGeneratedSignalMax.Name = "numGeneratedSignalMax";
            this.numGeneratedSignalMax.Size = new System.Drawing.Size(67, 20);
            this.numGeneratedSignalMax.TabIndex = 7;
            this.numGeneratedSignalMax.Value = new decimal(new int[] {
            15383,
            0,
            0,
            0});
            // 
            // cmbSignalType
            // 
            this.cmbSignalType.FormattingEnabled = true;
            this.cmbSignalType.Items.AddRange(new object[] {
            "Triangle Wave",
            "Sine"});
            this.cmbSignalType.Location = new System.Drawing.Point(8, 231);
            this.cmbSignalType.Name = "cmbSignalType";
            this.cmbSignalType.Size = new System.Drawing.Size(121, 21);
            this.cmbSignalType.TabIndex = 6;
            // 
            // numPointsInPeriod
            // 
            this.numPointsInPeriod.Increment = new decimal(new int[] {
            100,
            0,
            0,
            0});
            this.numPointsInPeriod.Location = new System.Drawing.Point(152, 231);
            this.numPointsInPeriod.Maximum = new decimal(new int[] {
            1000000,
            0,
            0,
            0});
            this.numPointsInPeriod.Minimum = new decimal(new int[] {
            100,
            0,
            0,
            0});
            this.numPointsInPeriod.Name = "numPointsInPeriod";
            this.numPointsInPeriod.Size = new System.Drawing.Size(101, 20);
            this.numPointsInPeriod.TabIndex = 5;
            this.numPointsInPeriod.Value = new decimal(new int[] {
            1000,
            0,
            0,
            0});
            // 
            // btnGenerate
            // 
            this.btnGenerate.Location = new System.Drawing.Point(270, 266);
            this.btnGenerate.Name = "btnGenerate";
            this.btnGenerate.Size = new System.Drawing.Size(61, 23);
            this.btnGenerate.TabIndex = 4;
            this.btnGenerate.Text = "Generate";
            this.btnGenerate.UseVisualStyleBackColor = true;
            this.btnGenerate.Click += new System.EventHandler(this.btnGenerate_Click);
            // 
            // btnConnect
            // 
            this.btnConnect.Location = new System.Drawing.Point(8, 167);
            this.btnConnect.Name = "btnConnect";
            this.btnConnect.Size = new System.Drawing.Size(51, 35);
            this.btnConnect.TabIndex = 3;
            this.btnConnect.Text = "Connect";
            this.btnConnect.UseVisualStyleBackColor = true;
            this.btnConnect.Click += new System.EventHandler(this.btnConnect_Click);
            // 
            // dgvConnectedInstruments
            // 
            this.dgvConnectedInstruments.AllowUserToAddRows = false;
            this.dgvConnectedInstruments.AllowUserToDeleteRows = false;
            this.dgvConnectedInstruments.AllowUserToOrderColumns = true;
            this.dgvConnectedInstruments.AutoGenerateColumns = false;
            this.dgvConnectedInstruments.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.dgvConnectedInstruments.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
            this.instrumentModelDataGridViewTextBoxColumn,
            this.statusDataGridViewTextBoxColumn});
            this.dgvConnectedInstruments.DataBindings.Add(new System.Windows.Forms.Binding("Tag", this.instrumentStautsBindingSource, "InstrumentModel", true));
            this.dgvConnectedInstruments.DataSource = this.instrumentStautsBindingSource;
            this.dgvConnectedInstruments.Dock = System.Windows.Forms.DockStyle.Top;
            this.dgvConnectedInstruments.GridColor = System.Drawing.SystemColors.ControlDarkDark;
            this.dgvConnectedInstruments.Location = new System.Drawing.Point(3, 3);
            this.dgvConnectedInstruments.MultiSelect = false;
            this.dgvConnectedInstruments.Name = "dgvConnectedInstruments";
            this.dgvConnectedInstruments.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
            this.dgvConnectedInstruments.Size = new System.Drawing.Size(1105, 158);
            this.dgvConnectedInstruments.TabIndex = 2;
            // 
            // tabMainForm
            // 
            this.tabMainForm.Controls.Add(tabpgGeneralSetting);
            this.tabMainForm.Controls.Add(this.tabpgExperimentsControl);
            this.tabMainForm.Controls.Add(this.tabpSignalFixer);
            this.tabMainForm.Controls.Add(this.tabpGraphs);
            this.tabMainForm.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tabMainForm.Location = new System.Drawing.Point(0, 0);
            this.tabMainForm.Name = "tabMainForm";
            this.tabMainForm.SelectedIndex = 0;
            this.tabMainForm.Size = new System.Drawing.Size(1119, 520);
            this.tabMainForm.TabIndex = 2;
            // 
            // tabpgExperimentsControl
            // 
            this.tabpgExperimentsControl.Controls.Add(this.tabInstrumnets);
            this.tabpgExperimentsControl.Controls.Add(this.btnRunExperiment);
            this.tabpgExperimentsControl.Controls.Add(this.btnAddNewExperiment);
            this.tabpgExperimentsControl.Controls.Add(this.dgvExperiments);
            this.tabpgExperimentsControl.Location = new System.Drawing.Point(4, 22);
            this.tabpgExperimentsControl.Name = "tabpgExperimentsControl";
            this.tabpgExperimentsControl.Padding = new System.Windows.Forms.Padding(3);
            this.tabpgExperimentsControl.Size = new System.Drawing.Size(1111, 494);
            this.tabpgExperimentsControl.TabIndex = 1;
            this.tabpgExperimentsControl.Text = "Experiments Control";
            this.tabpgExperimentsControl.UseVisualStyleBackColor = true;
            // 
            // tabInstrumnets
            // 
            this.tabInstrumnets.Controls.Add(this.tabpgSignalGenerator);
            this.tabInstrumnets.Controls.Add(this.tabpScope);
            this.tabInstrumnets.Location = new System.Drawing.Point(8, 251);
            this.tabInstrumnets.Name = "tabInstrumnets";
            this.tabInstrumnets.SelectedIndex = 0;
            this.tabInstrumnets.Size = new System.Drawing.Size(376, 235);
            this.tabInstrumnets.TabIndex = 3;
            // 
            // tabpgSignalGenerator
            // 
            this.tabpgSignalGenerator.Controls.Add(this.chkUpdateFromInstruments);
            this.tabpgSignalGenerator.Controls.Add(this.numSignalGeneratorVoltageLow);
            this.tabpgSignalGenerator.Controls.Add(this.numSignalGeneratorVoltageHigh);
            this.tabpgSignalGenerator.Controls.Add(this.numSignalGeneratorFrequency);
            this.tabpgSignalGenerator.Controls.Add(this.label3);
            this.tabpgSignalGenerator.Controls.Add(this.label2);
            this.tabpgSignalGenerator.Controls.Add(this.label1);
            this.tabpgSignalGenerator.Location = new System.Drawing.Point(4, 22);
            this.tabpgSignalGenerator.Name = "tabpgSignalGenerator";
            this.tabpgSignalGenerator.Padding = new System.Windows.Forms.Padding(3);
            this.tabpgSignalGenerator.Size = new System.Drawing.Size(368, 209);
            this.tabpgSignalGenerator.TabIndex = 1;
            this.tabpgSignalGenerator.Text = "Signal Generator";
            this.tabpgSignalGenerator.UseVisualStyleBackColor = true;
            // 
            // chkUpdateFromInstruments
            // 
            this.chkUpdateFromInstruments.AutoSize = true;
            this.chkUpdateFromInstruments.Checked = true;
            this.chkUpdateFromInstruments.CheckState = System.Windows.Forms.CheckState.Checked;
            this.chkUpdateFromInstruments.Location = new System.Drawing.Point(9, 91);
            this.chkUpdateFromInstruments.Name = "chkUpdateFromInstruments";
            this.chkUpdateFromInstruments.Size = new System.Drawing.Size(162, 17);
            this.chkUpdateFromInstruments.TabIndex = 6;
            this.chkUpdateFromInstruments.Text = "Update from signal generator";
            this.chkUpdateFromInstruments.UseVisualStyleBackColor = true;
            // 
            // numSignalGeneratorVoltageLow
            // 
            this.numSignalGeneratorVoltageLow.DecimalPlaces = 4;
            this.numSignalGeneratorVoltageLow.Increment = new decimal(new int[] {
            1,
            0,
            0,
            196608});
            this.numSignalGeneratorVoltageLow.Location = new System.Drawing.Point(133, 54);
            this.numSignalGeneratorVoltageLow.Maximum = new decimal(new int[] {
            10,
            0,
            0,
            0});
            this.numSignalGeneratorVoltageLow.Minimum = new decimal(new int[] {
            10,
            0,
            0,
            -2147483648});
            this.numSignalGeneratorVoltageLow.Name = "numSignalGeneratorVoltageLow";
            this.numSignalGeneratorVoltageLow.Size = new System.Drawing.Size(94, 20);
            this.numSignalGeneratorVoltageLow.TabIndex = 5;
            // 
            // numSignalGeneratorVoltageHigh
            // 
            this.numSignalGeneratorVoltageHigh.DecimalPlaces = 4;
            this.numSignalGeneratorVoltageHigh.Increment = new decimal(new int[] {
            1,
            0,
            0,
            196608});
            this.numSignalGeneratorVoltageHigh.Location = new System.Drawing.Point(133, 28);
            this.numSignalGeneratorVoltageHigh.Maximum = new decimal(new int[] {
            10,
            0,
            0,
            0});
            this.numSignalGeneratorVoltageHigh.Minimum = new decimal(new int[] {
            10,
            0,
            0,
            -2147483648});
            this.numSignalGeneratorVoltageHigh.Name = "numSignalGeneratorVoltageHigh";
            this.numSignalGeneratorVoltageHigh.Size = new System.Drawing.Size(94, 20);
            this.numSignalGeneratorVoltageHigh.TabIndex = 4;
            this.numSignalGeneratorVoltageHigh.Value = new decimal(new int[] {
            10,
            0,
            0,
            0});
            // 
            // numSignalGeneratorFrequency
            // 
            this.numSignalGeneratorFrequency.DecimalPlaces = 3;
            this.numSignalGeneratorFrequency.Location = new System.Drawing.Point(133, 3);
            this.numSignalGeneratorFrequency.Maximum = new decimal(new int[] {
            50000,
            0,
            0,
            0});
            this.numSignalGeneratorFrequency.Name = "numSignalGeneratorFrequency";
            this.numSignalGeneratorFrequency.Size = new System.Drawing.Size(94, 20);
            this.numSignalGeneratorFrequency.TabIndex = 3;
            this.numSignalGeneratorFrequency.Value = new decimal(new int[] {
            1000,
            0,
            0,
            0});
            // 
            // label3
            // 
            this.label3.AutoSize = true;
            this.label3.Location = new System.Drawing.Point(6, 54);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(85, 13);
            this.label3.TabIndex = 2;
            this.label3.Text = "Voltage Low [V]:";
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Location = new System.Drawing.Point(6, 28);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(87, 13);
            this.label2.TabIndex = 1;
            this.label2.Text = "Voltage High [V]:";
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(6, 3);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(124, 13);
            this.label1.TabIndex = 0;
            this.label1.Text = "Output Frequency [KHz]:";
            // 
            // tabpScope
            // 
            this.tabpScope.Controls.Add(this.cmbScopeSampleRate);
            this.tabpScope.Controls.Add(this.label27);
            this.tabpScope.Controls.Add(this.numBufferToRecord);
            this.tabpScope.Controls.Add(this.label12);
            this.tabpScope.Location = new System.Drawing.Point(4, 22);
            this.tabpScope.Name = "tabpScope";
            this.tabpScope.Size = new System.Drawing.Size(368, 209);
            this.tabpScope.TabIndex = 2;
            this.tabpScope.Text = "Scope";
            this.tabpScope.UseVisualStyleBackColor = true;
            // 
            // cmbScopeSampleRate
            // 
            this.cmbScopeSampleRate.FormattingEnabled = true;
            this.cmbScopeSampleRate.Items.AddRange(new object[] {
            "1.8  GHz",
            "900 MHz",
            "450 MHz",
            "225 Mhz",
            "113 MHz",
            "56.2 MHz",
            "28.1 MHz",
            "14.0 MHz"});
            this.cmbScopeSampleRate.Location = new System.Drawing.Point(139, 8);
            this.cmbScopeSampleRate.Name = "cmbScopeSampleRate";
            this.cmbScopeSampleRate.Size = new System.Drawing.Size(94, 21);
            this.cmbScopeSampleRate.TabIndex = 13;
            // 
            // label27
            // 
            this.label27.AutoSize = true;
            this.label27.Location = new System.Drawing.Point(9, 9);
            this.label27.Name = "label27";
            this.label27.Size = new System.Drawing.Size(98, 13);
            this.label27.TabIndex = 12;
            this.label27.Text = "Scope sample rate:";
            // 
            // numBufferToRecord
            // 
            this.numBufferToRecord.Location = new System.Drawing.Point(139, 35);
            this.numBufferToRecord.Maximum = new decimal(new int[] {
            100000,
            0,
            0,
            0});
            this.numBufferToRecord.Minimum = new decimal(new int[] {
            1,
            0,
            0,
            0});
            this.numBufferToRecord.Name = "numBufferToRecord";
            this.numBufferToRecord.Size = new System.Drawing.Size(94, 20);
            this.numBufferToRecord.TabIndex = 11;
            this.numBufferToRecord.Value = new decimal(new int[] {
            1,
            0,
            0,
            0});
            // 
            // label12
            // 
            this.label12.AutoSize = true;
            this.label12.Location = new System.Drawing.Point(9, 34);
            this.label12.Name = "label12";
            this.label12.Size = new System.Drawing.Size(83, 13);
            this.label12.TabIndex = 5;
            this.label12.Text = "Buffer to record:";
            // 
            // btnRunExperiment
            // 
            this.btnRunExperiment.Enabled = false;
            this.btnRunExperiment.Location = new System.Drawing.Point(108, 222);
            this.btnRunExperiment.Name = "btnRunExperiment";
            this.btnRunExperiment.Size = new System.Drawing.Size(94, 23);
            this.btnRunExperiment.TabIndex = 2;
            this.btnRunExperiment.Text = "Run Experiment";
            this.btnRunExperiment.UseVisualStyleBackColor = true;
            // 
            // btnAddNewExperiment
            // 
            this.btnAddNewExperiment.Location = new System.Drawing.Point(8, 222);
            this.btnAddNewExperiment.Name = "btnAddNewExperiment";
            this.btnAddNewExperiment.Size = new System.Drawing.Size(94, 23);
            this.btnAddNewExperiment.TabIndex = 1;
            this.btnAddNewExperiment.Text = "Add Experiment";
            this.btnAddNewExperiment.UseVisualStyleBackColor = true;
            this.btnAddNewExperiment.Click += new System.EventHandler(this.btnAddNewExperiment_Click);
            // 
            // dgvExperiments
            // 
            this.dgvExperiments.AllowUserToAddRows = false;
            this.dgvExperiments.AllowUserToDeleteRows = false;
            this.dgvExperiments.AllowUserToOrderColumns = true;
            this.dgvExperiments.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.dgvExperiments.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
            this.ID,
            this.FilePath,
            this.PhotodiodeOutputPhase,
            this.SignalGeneratorPhase,
            this.CalcedPhaseDifference,
            this.LockingPhaseDifference,
            this.MaxHarmonic});
            this.dgvExperiments.Dock = System.Windows.Forms.DockStyle.Top;
            this.dgvExperiments.Location = new System.Drawing.Point(3, 3);
            this.dgvExperiments.Name = "dgvExperiments";
            this.dgvExperiments.ReadOnly = true;
            this.dgvExperiments.Size = new System.Drawing.Size(1105, 213);
            this.dgvExperiments.TabIndex = 0;
            // 
            // ID
            // 
            this.ID.HeaderText = "ID";
            this.ID.Name = "ID";
            this.ID.ReadOnly = true;
            // 
            // FilePath
            // 
            this.FilePath.HeaderText = "Sig. Gen. File Path";
            this.FilePath.Name = "FilePath";
            this.FilePath.ReadOnly = true;
            // 
            // PhotodiodeOutputPhase
            // 
            this.PhotodiodeOutputPhase.HeaderText = "Output Phase [deg]";
            this.PhotodiodeOutputPhase.Name = "PhotodiodeOutputPhase";
            this.PhotodiodeOutputPhase.ReadOnly = true;
            // 
            // SignalGeneratorPhase
            // 
            this.SignalGeneratorPhase.HeaderText = "InputPhase [deg]";
            this.SignalGeneratorPhase.Name = "SignalGeneratorPhase";
            this.SignalGeneratorPhase.ReadOnly = true;
            // 
            // CalcedPhaseDifference
            // 
            this.CalcedPhaseDifference.HeaderText = "Phase Difference [deg]";
            this.CalcedPhaseDifference.Name = "CalcedPhaseDifference";
            this.CalcedPhaseDifference.ReadOnly = true;
            // 
            // LockingPhaseDifference
            // 
            this.LockingPhaseDifference.HeaderText = "Locking Phase Difference [deg]";
            this.LockingPhaseDifference.Name = "LockingPhaseDifference";
            this.LockingPhaseDifference.ReadOnly = true;
            // 
            // MaxHarmonic
            // 
            this.MaxHarmonic.HeaderText = "MaxHarmonic [uV]";
            this.MaxHarmonic.Name = "MaxHarmonic";
            this.MaxHarmonic.ReadOnly = true;
            // 
            // tabpSignalFixer
            // 
            this.tabpSignalFixer.Controls.Add(this.grpbGeneralAlgorithmSettings);
            this.tabpSignalFixer.Controls.Add(this.tabControl1);
            this.tabpSignalFixer.Controls.Add(this.dgvIterationsData);
            this.tabpSignalFixer.Location = new System.Drawing.Point(4, 22);
            this.tabpSignalFixer.Name = "tabpSignalFixer";
            this.tabpSignalFixer.Size = new System.Drawing.Size(1111, 494);
            this.tabpSignalFixer.TabIndex = 3;
            this.tabpSignalFixer.Text = "Signal Corrections";
            this.tabpSignalFixer.UseVisualStyleBackColor = true;
            // 
            // grpbGeneralAlgorithmSettings
            // 
            this.grpbGeneralAlgorithmSettings.Controls.Add(this.numEpsilonFactor);
            this.grpbGeneralAlgorithmSettings.Controls.Add(this.label21);
            this.grpbGeneralAlgorithmSettings.Controls.Add(this.numConstantPhaseAdjustment);
            this.grpbGeneralAlgorithmSettings.Controls.Add(this.label31);
            this.grpbGeneralAlgorithmSettings.Controls.Add(this.chkUseDerivative);
            this.grpbGeneralAlgorithmSettings.Controls.Add(this.numSGFilterLength);
            this.grpbGeneralAlgorithmSettings.Controls.Add(this.label26);
            this.grpbGeneralAlgorithmSettings.Controls.Add(this.numSGPolyOrder);
            this.grpbGeneralAlgorithmSettings.Controls.Add(this.label25);
            this.grpbGeneralAlgorithmSettings.Controls.Add(this.numFixEveryNSample);
            this.grpbGeneralAlgorithmSettings.Controls.Add(this.label24);
            this.grpbGeneralAlgorithmSettings.Controls.Add(this.numFixFromSample);
            this.grpbGeneralAlgorithmSettings.Controls.Add(this.label23);
            this.grpbGeneralAlgorithmSettings.Controls.Add(this.chkRescaleAfterSmoothing);
            this.grpbGeneralAlgorithmSettings.Controls.Add(this.numMaxErrorToFixFrom);
            this.grpbGeneralAlgorithmSettings.Controls.Add(this.label22);
            this.grpbGeneralAlgorithmSettings.Controls.Add(this.btnSaveSignalGeneratorFile);
            this.grpbGeneralAlgorithmSettings.Controls.Add(this.btnClearIteratinData);
            this.grpbGeneralAlgorithmSettings.Controls.Add(this.btnFixSignal);
            this.grpbGeneralAlgorithmSettings.Controls.Add(this.cmbAlgorithmToUse);
            this.grpbGeneralAlgorithmSettings.Controls.Add(this.label7);
            this.grpbGeneralAlgorithmSettings.Controls.Add(this.cmbSignalToFix);
            this.grpbGeneralAlgorithmSettings.Controls.Add(this.numIterationCount);
            this.grpbGeneralAlgorithmSettings.Controls.Add(this.cmbMinMaxDetermination);
            this.grpbGeneralAlgorithmSettings.Controls.Add(this.label6);
            this.grpbGeneralAlgorithmSettings.Controls.Add(this.label5);
            this.grpbGeneralAlgorithmSettings.Controls.Add(this.label4);
            this.grpbGeneralAlgorithmSettings.Dock = System.Windows.Forms.DockStyle.Left;
            this.grpbGeneralAlgorithmSettings.Location = new System.Drawing.Point(0, 203);
            this.grpbGeneralAlgorithmSettings.Name = "grpbGeneralAlgorithmSettings";
            this.grpbGeneralAlgorithmSettings.Size = new System.Drawing.Size(459, 291);
            this.grpbGeneralAlgorithmSettings.TabIndex = 2;
            this.grpbGeneralAlgorithmSettings.TabStop = false;
            this.grpbGeneralAlgorithmSettings.Text = "General Settings";
            this.grpbGeneralAlgorithmSettings.Enter += new System.EventHandler(this.grpbGeneralAlgorithmSettings_Enter);
            // 
            // numSGFilterLength
            // 
            this.numSGFilterLength.Location = new System.Drawing.Point(358, 77);
            this.numSGFilterLength.Maximum = new decimal(new int[] {
            100000,
            0,
            0,
            0});
            this.numSGFilterLength.Minimum = new decimal(new int[] {
            3,
            0,
            0,
            0});
            this.numSGFilterLength.Name = "numSGFilterLength";
            this.numSGFilterLength.Size = new System.Drawing.Size(56, 20);
            this.numSGFilterLength.TabIndex = 21;
            this.numSGFilterLength.Value = new decimal(new int[] {
            3,
            0,
            0,
            0});
            // 
            // label26
            // 
            this.label26.AutoSize = true;
            this.label26.Location = new System.Drawing.Point(271, 79);
            this.label26.Name = "label26";
            this.label26.Size = new System.Drawing.Size(61, 13);
            this.label26.TabIndex = 20;
            this.label26.Text = "LPF length:";
            // 
            // numSGPolyOrder
            // 
            this.numSGPolyOrder.Location = new System.Drawing.Point(358, 49);
            this.numSGPolyOrder.Name = "numSGPolyOrder";
            this.numSGPolyOrder.Size = new System.Drawing.Size(56, 20);
            this.numSGPolyOrder.TabIndex = 19;
            this.numSGPolyOrder.Value = new decimal(new int[] {
            2,
            0,
            0,
            0});
            // 
            // label25
            // 
            this.label25.AutoSize = true;
            this.label25.Location = new System.Drawing.Point(271, 51);
            this.label25.Name = "label25";
            this.label25.Size = new System.Drawing.Size(78, 13);
            this.label25.TabIndex = 18;
            this.label25.Text = "LPF poly order:";
            // 
            // numFixEveryNSample
            // 
            this.numFixEveryNSample.Increment = new decimal(new int[] {
            5,
            0,
            0,
            0});
            this.numFixEveryNSample.Location = new System.Drawing.Point(132, 188);
            this.numFixEveryNSample.Maximum = new decimal(new int[] {
            10000,
            0,
            0,
            0});
            this.numFixEveryNSample.Minimum = new decimal(new int[] {
            1,
            0,
            0,
            0});
            this.numFixEveryNSample.Name = "numFixEveryNSample";
            this.numFixEveryNSample.Size = new System.Drawing.Size(84, 20);
            this.numFixEveryNSample.TabIndex = 17;
            this.numFixEveryNSample.Value = new decimal(new int[] {
            1,
            0,
            0,
            0});
            // 
            // label24
            // 
            this.label24.AutoSize = true;
            this.label24.Location = new System.Drawing.Point(6, 190);
            this.label24.Name = "label24";
            this.label24.Size = new System.Drawing.Size(99, 13);
            this.label24.TabIndex = 16;
            this.label24.Text = "Fix every N sample:";
            // 
            // numFixFromSample
            // 
            this.numFixFromSample.Location = new System.Drawing.Point(133, 162);
            this.numFixFromSample.Maximum = new decimal(new int[] {
            100000,
            0,
            0,
            0});
            this.numFixFromSample.Name = "numFixFromSample";
            this.numFixFromSample.Size = new System.Drawing.Size(84, 20);
            this.numFixFromSample.TabIndex = 15;
            // 
            // label23
            // 
            this.label23.AutoSize = true;
            this.label23.Location = new System.Drawing.Point(8, 162);
            this.label23.Name = "label23";
            this.label23.Size = new System.Drawing.Size(82, 13);
            this.label23.TabIndex = 14;
            this.label23.Text = "Fix from sample:";
            // 
            // chkRescaleAfterSmoothing
            // 
            this.chkRescaleAfterSmoothing.AutoSize = true;
            this.chkRescaleAfterSmoothing.Checked = true;
            this.chkRescaleAfterSmoothing.CheckState = System.Windows.Forms.CheckState.Checked;
            this.chkRescaleAfterSmoothing.Location = new System.Drawing.Point(274, 23);
            this.chkRescaleAfterSmoothing.Name = "chkRescaleAfterSmoothing";
            this.chkRescaleAfterSmoothing.Size = new System.Drawing.Size(140, 17);
            this.chkRescaleAfterSmoothing.TabIndex = 13;
            this.chkRescaleAfterSmoothing.Text = "Rescale after smoothing";
            this.chkRescaleAfterSmoothing.UseVisualStyleBackColor = true;
            // 
            // numMaxErrorToFixFrom
            // 
            this.numMaxErrorToFixFrom.Increment = new decimal(new int[] {
            5,
            0,
            0,
            0});
            this.numMaxErrorToFixFrom.Location = new System.Drawing.Point(133, 77);
            this.numMaxErrorToFixFrom.Name = "numMaxErrorToFixFrom";
            this.numMaxErrorToFixFrom.Size = new System.Drawing.Size(120, 20);
            this.numMaxErrorToFixFrom.TabIndex = 12;
            // 
            // label22
            // 
            this.label22.AutoSize = true;
            this.label22.Location = new System.Drawing.Point(9, 79);
            this.label22.Name = "label22";
            this.label22.Size = new System.Drawing.Size(80, 13);
            this.label22.TabIndex = 11;
            this.label22.Text = "Max Error to fix:";
            // 
            // btnSaveSignalGeneratorFile
            // 
            this.btnSaveSignalGeneratorFile.Location = new System.Drawing.Point(11, 262);
            this.btnSaveSignalGeneratorFile.Name = "btnSaveSignalGeneratorFile";
            this.btnSaveSignalGeneratorFile.Size = new System.Drawing.Size(75, 23);
            this.btnSaveSignalGeneratorFile.TabIndex = 10;
            this.btnSaveSignalGeneratorFile.Text = "Save Signal Generator File";
            this.btnSaveSignalGeneratorFile.UseVisualStyleBackColor = true;
            this.btnSaveSignalGeneratorFile.Click += new System.EventHandler(this.btnSaveSignalGeneratorFile_Click);
            // 
            // btnClearIteratinData
            // 
            this.btnClearIteratinData.Location = new System.Drawing.Point(177, 233);
            this.btnClearIteratinData.Name = "btnClearIteratinData";
            this.btnClearIteratinData.Size = new System.Drawing.Size(75, 23);
            this.btnClearIteratinData.TabIndex = 9;
            this.btnClearIteratinData.Text = "Clear";
            this.btnClearIteratinData.UseVisualStyleBackColor = true;
            this.btnClearIteratinData.Click += new System.EventHandler(this.btnClearIteratinData_Click);
            // 
            // btnFixSignal
            // 
            this.btnFixSignal.Location = new System.Drawing.Point(11, 233);
            this.btnFixSignal.Name = "btnFixSignal";
            this.btnFixSignal.Size = new System.Drawing.Size(75, 23);
            this.btnFixSignal.TabIndex = 8;
            this.btnFixSignal.Text = "Fix Signal";
            this.btnFixSignal.UseVisualStyleBackColor = true;
            this.btnFixSignal.Click += new System.EventHandler(this.btnFixSignal_Click);
            // 
            // cmbAlgorithmToUse
            // 
            this.cmbAlgorithmToUse.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cmbAlgorithmToUse.FormattingEnabled = true;
            this.cmbAlgorithmToUse.Location = new System.Drawing.Point(132, 133);
            this.cmbAlgorithmToUse.Name = "cmbAlgorithmToUse";
            this.cmbAlgorithmToUse.Size = new System.Drawing.Size(121, 21);
            this.cmbAlgorithmToUse.TabIndex = 7;
            // 
            // label7
            // 
            this.label7.AutoSize = true;
            this.label7.Location = new System.Drawing.Point(8, 136);
            this.label7.Name = "label7";
            this.label7.Size = new System.Drawing.Size(85, 13);
            this.label7.TabIndex = 6;
            this.label7.Text = "Algorithm to use:";
            // 
            // cmbSignalToFix
            // 
            this.cmbSignalToFix.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cmbSignalToFix.FormattingEnabled = true;
            this.cmbSignalToFix.Location = new System.Drawing.Point(132, 106);
            this.cmbSignalToFix.Name = "cmbSignalToFix";
            this.cmbSignalToFix.Size = new System.Drawing.Size(121, 21);
            this.cmbSignalToFix.TabIndex = 5;
            // 
            // numIterationCount
            // 
            this.numIterationCount.Increment = new decimal(new int[] {
            5,
            0,
            0,
            0});
            this.numIterationCount.Location = new System.Drawing.Point(132, 46);
            this.numIterationCount.Minimum = new decimal(new int[] {
            1,
            0,
            0,
            0});
            this.numIterationCount.Name = "numIterationCount";
            this.numIterationCount.Size = new System.Drawing.Size(120, 20);
            this.numIterationCount.TabIndex = 4;
            this.numIterationCount.Value = new decimal(new int[] {
            10,
            0,
            0,
            0});
            // 
            // cmbMinMaxDetermination
            // 
            this.cmbMinMaxDetermination.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cmbMinMaxDetermination.FormattingEnabled = true;
            this.cmbMinMaxDetermination.Location = new System.Drawing.Point(132, 19);
            this.cmbMinMaxDetermination.Name = "cmbMinMaxDetermination";
            this.cmbMinMaxDetermination.Size = new System.Drawing.Size(121, 21);
            this.cmbMinMaxDetermination.TabIndex = 3;
            // 
            // label6
            // 
            this.label6.AutoSize = true;
            this.label6.Location = new System.Drawing.Point(8, 109);
            this.label6.Name = "label6";
            this.label6.Size = new System.Drawing.Size(64, 13);
            this.label6.TabIndex = 2;
            this.label6.Text = "Signal to fix:";
            // 
            // label5
            // 
            this.label5.AutoSize = true;
            this.label5.Location = new System.Drawing.Point(8, 48);
            this.label5.Name = "label5";
            this.label5.Size = new System.Drawing.Size(74, 13);
            this.label5.TabIndex = 1;
            this.label5.Text = "# of iterations:";
            // 
            // label4
            // 
            this.label4.AutoSize = true;
            this.label4.Location = new System.Drawing.Point(8, 22);
            this.label4.Name = "label4";
            this.label4.Size = new System.Drawing.Size(118, 13);
            this.label4.TabIndex = 0;
            this.label4.Text = "Min/Max determination:";
            // 
            // tabControl1
            // 
            this.tabControl1.Controls.Add(this.tabpPIDSettings);
            this.tabControl1.Controls.Add(this.tabpFreqDistortionSettings);
            this.tabControl1.Controls.Add(this.tabpFrequencyDomain);
            this.tabControl1.Controls.Add(this.tbpDesertLionSettings);
            this.tabControl1.Controls.Add(this.tabpFirstOrderSettings);
            this.tabControl1.Dock = System.Windows.Forms.DockStyle.Right;
            this.tabControl1.Location = new System.Drawing.Point(465, 203);
            this.tabControl1.Name = "tabControl1";
            this.tabControl1.SelectedIndex = 0;
            this.tabControl1.Size = new System.Drawing.Size(646, 291);
            this.tabControl1.TabIndex = 1;
            // 
            // tabpPIDSettings
            // 
            this.tabpPIDSettings.Controls.Add(this.numDFactor);
            this.tabpPIDSettings.Controls.Add(this.numIFactor);
            this.tabpPIDSettings.Controls.Add(this.numPFactor);
            this.tabpPIDSettings.Controls.Add(this.label8);
            this.tabpPIDSettings.Controls.Add(this.label9);
            this.tabpPIDSettings.Controls.Add(this.label10);
            this.tabpPIDSettings.Location = new System.Drawing.Point(4, 22);
            this.tabpPIDSettings.Name = "tabpPIDSettings";
            this.tabpPIDSettings.Padding = new System.Windows.Forms.Padding(3);
            this.tabpPIDSettings.Size = new System.Drawing.Size(638, 265);
            this.tabpPIDSettings.TabIndex = 0;
            this.tabpPIDSettings.Text = "PID";
            this.tabpPIDSettings.UseVisualStyleBackColor = true;
            this.tabpPIDSettings.Click += new System.EventHandler(this.tabpPIDSettings_Click);
            // 
            // numEpsilonFactor
            // 
            this.numEpsilonFactor.DecimalPlaces = 5;
            this.numEpsilonFactor.Increment = new decimal(new int[] {
            1,
            0,
            0,
            196608});
            this.numEpsilonFactor.Location = new System.Drawing.Point(369, 149);
            this.numEpsilonFactor.Maximum = new decimal(new int[] {
            1000,
            0,
            0,
            0});
            this.numEpsilonFactor.Name = "numEpsilonFactor";
            this.numEpsilonFactor.Size = new System.Drawing.Size(71, 20);
            this.numEpsilonFactor.TabIndex = 11;
            this.numEpsilonFactor.Value = new decimal(new int[] {
            8,
            0,
            0,
            65536});
            // 
            // label21
            // 
            this.label21.AutoSize = true;
            this.label21.Location = new System.Drawing.Point(275, 149);
            this.label21.Name = "label21";
            this.label21.Size = new System.Drawing.Size(74, 13);
            this.label21.TabIndex = 10;
            this.label21.Text = "Epsilon factor:";
            // 
            // chkUseDerivative
            // 
            this.chkUseDerivative.AutoSize = true;
            this.chkUseDerivative.Location = new System.Drawing.Point(277, 126);
            this.chkUseDerivative.Name = "chkUseDerivative";
            this.chkUseDerivative.Size = new System.Drawing.Size(107, 17);
            this.chkUseDerivative.TabIndex = 9;
            this.chkUseDerivative.Text = "Use derivative fix";
            this.chkUseDerivative.UseVisualStyleBackColor = true;
            // 
            // numDFactor
            // 
            this.numDFactor.DecimalPlaces = 8;
            this.numDFactor.Increment = new decimal(new int[] {
            1,
            0,
            0,
            196608});
            this.numDFactor.Location = new System.Drawing.Point(62, 55);
            this.numDFactor.Maximum = new decimal(new int[] {
            1000,
            0,
            0,
            0});
            this.numDFactor.Name = "numDFactor";
            this.numDFactor.Size = new System.Drawing.Size(120, 20);
            this.numDFactor.TabIndex = 8;
            // 
            // numIFactor
            // 
            this.numIFactor.DecimalPlaces = 4;
            this.numIFactor.Increment = new decimal(new int[] {
            1,
            0,
            0,
            196608});
            this.numIFactor.Location = new System.Drawing.Point(62, 29);
            this.numIFactor.Maximum = new decimal(new int[] {
            1000,
            0,
            0,
            0});
            this.numIFactor.Name = "numIFactor";
            this.numIFactor.Size = new System.Drawing.Size(120, 20);
            this.numIFactor.TabIndex = 7;
            // 
            // numPFactor
            // 
            this.numPFactor.DecimalPlaces = 4;
            this.numPFactor.Increment = new decimal(new int[] {
            1,
            0,
            0,
            196608});
            this.numPFactor.Location = new System.Drawing.Point(62, 3);
            this.numPFactor.Maximum = new decimal(new int[] {
            1000,
            0,
            0,
            0});
            this.numPFactor.Minimum = new decimal(new int[] {
            1000,
            0,
            0,
            -2147483648});
            this.numPFactor.Name = "numPFactor";
            this.numPFactor.Size = new System.Drawing.Size(120, 20);
            this.numPFactor.TabIndex = 6;
            this.numPFactor.Value = new decimal(new int[] {
            5,
            0,
            0,
            131072});
            // 
            // label8
            // 
            this.label8.AutoSize = true;
            this.label8.Location = new System.Drawing.Point(6, 58);
            this.label8.Name = "label8";
            this.label8.Size = new System.Drawing.Size(51, 13);
            this.label8.TabIndex = 5;
            this.label8.Text = "D Factor:";
            // 
            // label9
            // 
            this.label9.AutoSize = true;
            this.label9.Location = new System.Drawing.Point(6, 31);
            this.label9.Name = "label9";
            this.label9.Size = new System.Drawing.Size(46, 13);
            this.label9.TabIndex = 4;
            this.label9.Text = "I Factor:";
            // 
            // label10
            // 
            this.label10.AutoSize = true;
            this.label10.Location = new System.Drawing.Point(6, 5);
            this.label10.Name = "label10";
            this.label10.Size = new System.Drawing.Size(50, 13);
            this.label10.TabIndex = 3;
            this.label10.Text = "P Factor:";
            // 
            // tabpFreqDistortionSettings
            // 
            this.tabpFreqDistortionSettings.Controls.Add(this.numFFTScaling);
            this.tabpFreqDistortionSettings.Controls.Add(this.label30);
            this.tabpFreqDistortionSettings.Controls.Add(this.cmbFDAScaleFix);
            this.tabpFreqDistortionSettings.Controls.Add(this.numFDAHarmony);
            this.tabpFreqDistortionSettings.Controls.Add(this.label13);
            this.tabpFreqDistortionSettings.Controls.Add(this.numRange);
            this.tabpFreqDistortionSettings.Controls.Add(this.numMidPoint);
            this.tabpFreqDistortionSettings.Controls.Add(this.label28);
            this.tabpFreqDistortionSettings.Controls.Add(this.label29);
            this.tabpFreqDistortionSettings.Location = new System.Drawing.Point(4, 22);
            this.tabpFreqDistortionSettings.Name = "tabpFreqDistortionSettings";
            this.tabpFreqDistortionSettings.Padding = new System.Windows.Forms.Padding(3);
            this.tabpFreqDistortionSettings.Size = new System.Drawing.Size(638, 265);
            this.tabpFreqDistortionSettings.TabIndex = 4;
            this.tabpFreqDistortionSettings.Text = "Magic Algorith,";
            this.tabpFreqDistortionSettings.UseVisualStyleBackColor = true;
            // 
            // numFFTScaling
            // 
            this.numFFTScaling.Location = new System.Drawing.Point(83, 115);
            this.numFFTScaling.Maximum = new decimal(new int[] {
            100000,
            0,
            0,
            0});
            this.numFFTScaling.Minimum = new decimal(new int[] {
            1,
            0,
            0,
            0});
            this.numFFTScaling.Name = "numFFTScaling";
            this.numFFTScaling.Size = new System.Drawing.Size(99, 20);
            this.numFFTScaling.TabIndex = 25;
            this.numFFTScaling.Value = new decimal(new int[] {
            10,
            0,
            0,
            0});
            // 
            // label30
            // 
            this.label30.AutoSize = true;
            this.label30.Location = new System.Drawing.Point(6, 119);
            this.label30.Name = "label30";
            this.label30.Size = new System.Drawing.Size(65, 13);
            this.label30.TabIndex = 24;
            this.label30.Text = "FFT scaling:";
            // 
            // cmbFDAScaleFix
            // 
            this.cmbFDAScaleFix.AutoSize = true;
            this.cmbFDAScaleFix.Checked = true;
            this.cmbFDAScaleFix.CheckState = System.Windows.Forms.CheckState.Checked;
            this.cmbFDAScaleFix.Location = new System.Drawing.Point(9, 4);
            this.cmbFDAScaleFix.Name = "cmbFDAScaleFix";
            this.cmbFDAScaleFix.Size = new System.Drawing.Size(75, 17);
            this.cmbFDAScaleFix.TabIndex = 23;
            this.cmbFDAScaleFix.Text = "Fix scaling";
            this.cmbFDAScaleFix.UseVisualStyleBackColor = true;
            // 
            // numFDAHarmony
            // 
            this.numFDAHarmony.Increment = new decimal(new int[] {
            1,
            0,
            0,
            196608});
            this.numFDAHarmony.Location = new System.Drawing.Point(83, 88);
            this.numFDAHarmony.Maximum = new decimal(new int[] {
            100000,
            0,
            0,
            0});
            this.numFDAHarmony.Minimum = new decimal(new int[] {
            2,
            0,
            0,
            0});
            this.numFDAHarmony.Name = "numFDAHarmony";
            this.numFDAHarmony.Size = new System.Drawing.Size(99, 20);
            this.numFDAHarmony.TabIndex = 22;
            this.numFDAHarmony.Value = new decimal(new int[] {
            2,
            0,
            0,
            0});
            // 
            // label13
            // 
            this.label13.AutoSize = true;
            this.label13.Location = new System.Drawing.Point(6, 92);
            this.label13.Name = "label13";
            this.label13.Size = new System.Drawing.Size(52, 13);
            this.label13.TabIndex = 21;
            this.label13.Text = "Harmony:";
            // 
            // numRange
            // 
            this.numRange.DecimalPlaces = 6;
            this.numRange.Increment = new decimal(new int[] {
            1,
            0,
            0,
            196608});
            this.numRange.Location = new System.Drawing.Point(83, 57);
            this.numRange.Maximum = new decimal(new int[] {
            1410065408,
            2,
            0,
            0});
            this.numRange.Minimum = new decimal(new int[] {
            1410065408,
            2,
            0,
            -2147483648});
            this.numRange.Name = "numRange";
            this.numRange.Size = new System.Drawing.Size(99, 20);
            this.numRange.TabIndex = 20;
            this.numRange.Value = new decimal(new int[] {
            7,
            0,
            0,
            65536});
            // 
            // numMidPoint
            // 
            this.numMidPoint.DecimalPlaces = 6;
            this.numMidPoint.Increment = new decimal(new int[] {
            1,
            0,
            0,
            196608});
            this.numMidPoint.Location = new System.Drawing.Point(83, 27);
            this.numMidPoint.Maximum = new decimal(new int[] {
            1410065408,
            2,
            0,
            0});
            this.numMidPoint.Minimum = new decimal(new int[] {
            1410065408,
            2,
            0,
            -2147483648});
            this.numMidPoint.Name = "numMidPoint";
            this.numMidPoint.Size = new System.Drawing.Size(99, 20);
            this.numMidPoint.TabIndex = 19;
            this.numMidPoint.Value = new decimal(new int[] {
            1,
            0,
            0,
            0});
            // 
            // label28
            // 
            this.label28.AutoSize = true;
            this.label28.Location = new System.Drawing.Point(6, 29);
            this.label28.Name = "label28";
            this.label28.Size = new System.Drawing.Size(53, 13);
            this.label28.TabIndex = 18;
            this.label28.Text = "Mid point:";
            // 
            // label29
            // 
            this.label29.AutoSize = true;
            this.label29.Location = new System.Drawing.Point(6, 61);
            this.label29.Name = "label29";
            this.label29.Size = new System.Drawing.Size(71, 13);
            this.label29.TabIndex = 17;
            this.label29.Text = "Check range:";
            // 
            // tabpFrequencyDomain
            // 
            this.tabpFrequencyDomain.Controls.Add(this.chlFixScale);
            this.tabpFrequencyDomain.Controls.Add(this.numHarmonyToFix);
            this.tabpFrequencyDomain.Controls.Add(this.label20);
            this.tabpFrequencyDomain.Controls.Add(this.numFixEnd);
            this.tabpFrequencyDomain.Controls.Add(this.numFixStart);
            this.tabpFrequencyDomain.Controls.Add(this.label19);
            this.tabpFrequencyDomain.Controls.Add(this.label18);
            this.tabpFrequencyDomain.Controls.Add(this.numMaxHarmonic);
            this.tabpFrequencyDomain.Controls.Add(this.label17);
            this.tabpFrequencyDomain.Location = new System.Drawing.Point(4, 22);
            this.tabpFrequencyDomain.Name = "tabpFrequencyDomain";
            this.tabpFrequencyDomain.Size = new System.Drawing.Size(638, 265);
            this.tabpFrequencyDomain.TabIndex = 3;
            this.tabpFrequencyDomain.Text = "Frequency Domain";
            this.tabpFrequencyDomain.UseVisualStyleBackColor = true;
            this.tabpFrequencyDomain.Click += new System.EventHandler(this.tabpFrequencyDomain_Click);
            // 
            // chlFixScale
            // 
            this.chlFixScale.AutoSize = true;
            this.chlFixScale.Location = new System.Drawing.Point(12, 142);
            this.chlFixScale.Name = "chlFixScale";
            this.chlFixScale.Size = new System.Drawing.Size(75, 17);
            this.chlFixScale.TabIndex = 16;
            this.chlFixScale.Text = "Fix scaling";
            this.chlFixScale.UseVisualStyleBackColor = true;
            // 
            // numHarmonyToFix
            // 
            this.numHarmonyToFix.Increment = new decimal(new int[] {
            1,
            0,
            0,
            196608});
            this.numHarmonyToFix.Location = new System.Drawing.Point(65, 109);
            this.numHarmonyToFix.Maximum = new decimal(new int[] {
            100000,
            0,
            0,
            0});
            this.numHarmonyToFix.Minimum = new decimal(new int[] {
            2,
            0,
            0,
            0});
            this.numHarmonyToFix.Name = "numHarmonyToFix";
            this.numHarmonyToFix.Size = new System.Drawing.Size(120, 20);
            this.numHarmonyToFix.TabIndex = 15;
            this.numHarmonyToFix.Value = new decimal(new int[] {
            2,
            0,
            0,
            0});
            // 
            // label20
            // 
            this.label20.AutoSize = true;
            this.label20.Location = new System.Drawing.Point(9, 113);
            this.label20.Name = "label20";
            this.label20.Size = new System.Drawing.Size(52, 13);
            this.label20.TabIndex = 14;
            this.label20.Text = "Harmony:";
            // 
            // numFixEnd
            // 
            this.numFixEnd.DecimalPlaces = 4;
            this.numFixEnd.Increment = new decimal(new int[] {
            1,
            0,
            0,
            196608});
            this.numFixEnd.Location = new System.Drawing.Point(65, 78);
            this.numFixEnd.Maximum = new decimal(new int[] {
            1410065408,
            2,
            0,
            0});
            this.numFixEnd.Minimum = new decimal(new int[] {
            1410065408,
            2,
            0,
            -2147483648});
            this.numFixEnd.Name = "numFixEnd";
            this.numFixEnd.Size = new System.Drawing.Size(120, 20);
            this.numFixEnd.TabIndex = 13;
            this.numFixEnd.Value = new decimal(new int[] {
            1410065408,
            2,
            0,
            -2147483648});
            // 
            // numFixStart
            // 
            this.numFixStart.DecimalPlaces = 4;
            this.numFixStart.Increment = new decimal(new int[] {
            1,
            0,
            0,
            196608});
            this.numFixStart.Location = new System.Drawing.Point(65, 48);
            this.numFixStart.Maximum = new decimal(new int[] {
            1410065408,
            2,
            0,
            0});
            this.numFixStart.Minimum = new decimal(new int[] {
            1410065408,
            2,
            0,
            -2147483648});
            this.numFixStart.Name = "numFixStart";
            this.numFixStart.Size = new System.Drawing.Size(120, 20);
            this.numFixStart.TabIndex = 12;
            // 
            // label19
            // 
            this.label19.AutoSize = true;
            this.label19.Location = new System.Drawing.Point(9, 50);
            this.label19.Name = "label19";
            this.label19.Size = new System.Drawing.Size(46, 13);
            this.label19.TabIndex = 11;
            this.label19.Text = "Fix start:";
            // 
            // label18
            // 
            this.label18.AutoSize = true;
            this.label18.Location = new System.Drawing.Point(9, 82);
            this.label18.Name = "label18";
            this.label18.Size = new System.Drawing.Size(44, 13);
            this.label18.TabIndex = 9;
            this.label18.Text = "Fix end:";
            // 
            // numMaxHarmonic
            // 
            this.numMaxHarmonic.Location = new System.Drawing.Point(152, 12);
            this.numMaxHarmonic.Maximum = new decimal(new int[] {
            500,
            0,
            0,
            0});
            this.numMaxHarmonic.Minimum = new decimal(new int[] {
            1,
            0,
            0,
            0});
            this.numMaxHarmonic.Name = "numMaxHarmonic";
            this.numMaxHarmonic.Size = new System.Drawing.Size(68, 20);
            this.numMaxHarmonic.TabIndex = 8;
            this.numMaxHarmonic.Value = new decimal(new int[] {
            30,
            0,
            0,
            0});
            // 
            // label17
            // 
            this.label17.AutoSize = true;
            this.label17.Location = new System.Drawing.Point(9, 14);
            this.label17.Name = "label17";
            this.label17.Size = new System.Drawing.Size(130, 13);
            this.label17.TabIndex = 7;
            this.label17.Text = "Max Harmonic Value (μV):";
            // 
            // tbpDesertLionSettings
            // 
            this.tbpDesertLionSettings.Location = new System.Drawing.Point(4, 22);
            this.tbpDesertLionSettings.Name = "tbpDesertLionSettings";
            this.tbpDesertLionSettings.Size = new System.Drawing.Size(638, 265);
            this.tbpDesertLionSettings.TabIndex = 2;
            this.tbpDesertLionSettings.Text = "Desert Lion";
            this.tbpDesertLionSettings.UseVisualStyleBackColor = true;
            // 
            // tabpFirstOrderSettings
            // 
            this.tabpFirstOrderSettings.Location = new System.Drawing.Point(4, 22);
            this.tabpFirstOrderSettings.Name = "tabpFirstOrderSettings";
            this.tabpFirstOrderSettings.Padding = new System.Windows.Forms.Padding(3);
            this.tabpFirstOrderSettings.Size = new System.Drawing.Size(638, 265);
            this.tabpFirstOrderSettings.TabIndex = 1;
            this.tabpFirstOrderSettings.Text = "First Order";
            this.tabpFirstOrderSettings.UseVisualStyleBackColor = true;
            // 
            // dgvIterationsData
            // 
            this.dgvIterationsData.AllowUserToAddRows = false;
            this.dgvIterationsData.AllowUserToDeleteRows = false;
            this.dgvIterationsData.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.dgvIterationsData.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
            this.IterationID,
            this.AlgorithmType,
            this.AverageError,
            this.MeanAbsoluteError,
            this.IterationMaxHarmonic});
            this.dgvIterationsData.Dock = System.Windows.Forms.DockStyle.Top;
            this.dgvIterationsData.Location = new System.Drawing.Point(0, 0);
            this.dgvIterationsData.Name = "dgvIterationsData";
            this.dgvIterationsData.ReadOnly = true;
            this.dgvIterationsData.Size = new System.Drawing.Size(1111, 203);
            this.dgvIterationsData.TabIndex = 0;
            this.dgvIterationsData.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvIterationsData_CellContentClick);
            this.dgvIterationsData.CellDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvIterationsData_CellDoubleClick);
            // 
            // IterationID
            // 
            this.IterationID.HeaderText = "ID";
            this.IterationID.Name = "IterationID";
            this.IterationID.ReadOnly = true;
            // 
            // AlgorithmType
            // 
            this.AlgorithmType.HeaderText = "Algorithm Type";
            this.AlgorithmType.Name = "AlgorithmType";
            this.AlgorithmType.ReadOnly = true;
            // 
            // AverageError
            // 
            this.AverageError.HeaderText = "Mean Error";
            this.AverageError.Name = "AverageError";
            this.AverageError.ReadOnly = true;
            this.AverageError.Width = 200;
            // 
            // MeanAbsoluteError
            // 
            this.MeanAbsoluteError.HeaderText = "Mean Absolute Error";
            this.MeanAbsoluteError.Name = "MeanAbsoluteError";
            this.MeanAbsoluteError.ReadOnly = true;
            this.MeanAbsoluteError.Width = 200;
            // 
            // IterationMaxHarmonic
            // 
            this.IterationMaxHarmonic.HeaderText = "Maximum Harmonic Data";
            this.IterationMaxHarmonic.Name = "IterationMaxHarmonic";
            this.IterationMaxHarmonic.ReadOnly = true;
            this.IterationMaxHarmonic.Width = 200;
            // 
            // tabpGraphs
            // 
            this.tabpGraphs.Controls.Add(this.btnChartPhaseMatched);
            this.tabpGraphs.Controls.Add(this.chartGraphs);
            this.tabpGraphs.Location = new System.Drawing.Point(4, 22);
            this.tabpGraphs.Name = "tabpGraphs";
            this.tabpGraphs.Size = new System.Drawing.Size(1111, 494);
            this.tabpGraphs.TabIndex = 2;
            this.tabpGraphs.Text = "Graphs";
            this.tabpGraphs.UseVisualStyleBackColor = true;
            // 
            // btnChartPhaseMatched
            // 
            this.btnChartPhaseMatched.Location = new System.Drawing.Point(8, 14);
            this.btnChartPhaseMatched.Name = "btnChartPhaseMatched";
            this.btnChartPhaseMatched.Size = new System.Drawing.Size(75, 23);
            this.btnChartPhaseMatched.TabIndex = 6;
            this.btnChartPhaseMatched.Text = "Phase Match";
            this.btnChartPhaseMatched.UseVisualStyleBackColor = true;
            this.btnChartPhaseMatched.Click += new System.EventHandler(this.btnChartPhaseMatched_Click);
            // 
            // chartGraphs
            // 
            chartArea1.CursorX.IsUserEnabled = true;
            chartArea1.CursorX.IsUserSelectionEnabled = true;
            chartArea1.CursorY.IsUserEnabled = true;
            chartArea1.CursorY.IsUserSelectionEnabled = true;
            chartArea1.Name = "ChartArea1";
            this.chartGraphs.ChartAreas.Add(chartArea1);
            this.chartGraphs.Dock = System.Windows.Forms.DockStyle.Right;
            legend1.Name = "Legend1";
            this.chartGraphs.Legends.Add(legend1);
            this.chartGraphs.Location = new System.Drawing.Point(116, 0);
            this.chartGraphs.Name = "chartGraphs";
            series1.ChartArea = "ChartArea1";
            series1.Legend = "Legend1";
            series1.Name = "Series1";
            this.chartGraphs.Series.Add(series1);
            this.chartGraphs.Size = new System.Drawing.Size(995, 494);
            this.chartGraphs.TabIndex = 5;
            this.chartGraphs.Text = "chart1";
            this.chartGraphs.MouseClick += new System.Windows.Forms.MouseEventHandler(this.chartGraphs_MouseClick);
            // 
            // numConstantPhaseAdjustment
            // 
            this.numConstantPhaseAdjustment.Increment = new decimal(new int[] {
            5,
            0,
            0,
            0});
            this.numConstantPhaseAdjustment.Location = new System.Drawing.Point(358, 100);
            this.numConstantPhaseAdjustment.Maximum = new decimal(new int[] {
            100000,
            0,
            0,
            0});
            this.numConstantPhaseAdjustment.Minimum = new decimal(new int[] {
            100000,
            0,
            0,
            -2147483648});
            this.numConstantPhaseAdjustment.Name = "numConstantPhaseAdjustment";
            this.numConstantPhaseAdjustment.Size = new System.Drawing.Size(56, 20);
            this.numConstantPhaseAdjustment.TabIndex = 23;
            // 
            // label31
            // 
            this.label31.AutoSize = true;
            this.label31.Location = new System.Drawing.Point(274, 104);
            this.label31.Name = "label31";
            this.label31.Size = new System.Drawing.Size(74, 13);
            this.label31.TabIndex = 22;
            this.label31.Text = "Add fix phase;";
            // 
            // instrumentModelDataGridViewTextBoxColumn
            // 
            this.instrumentModelDataGridViewTextBoxColumn.DataPropertyName = "InstrumentModel";
            this.instrumentModelDataGridViewTextBoxColumn.HeaderText = "Instrument Model";
            this.instrumentModelDataGridViewTextBoxColumn.Name = "instrumentModelDataGridViewTextBoxColumn";
            this.instrumentModelDataGridViewTextBoxColumn.ReadOnly = true;
            this.instrumentModelDataGridViewTextBoxColumn.Width = 200;
            // 
            // statusDataGridViewTextBoxColumn
            // 
            this.statusDataGridViewTextBoxColumn.DataPropertyName = "Status";
            this.statusDataGridViewTextBoxColumn.HeaderText = "Status";
            this.statusDataGridViewTextBoxColumn.Name = "statusDataGridViewTextBoxColumn";
            this.statusDataGridViewTextBoxColumn.ReadOnly = true;
            this.statusDataGridViewTextBoxColumn.Width = 200;
            // 
            // instrumentStautsBindingSource
            // 
            this.instrumentStautsBindingSource.DataSource = typeof(LaserModulation.Instruments.Classes.InstrumentStauts);
            // 
            // FormMain
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(1119, 520);
            this.Controls.Add(this.tabMainForm);
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.Name = "FormMain";
            this.Text = "Laser Modulation";
            this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FormMain_FormClosing);
            tabpgGeneralSetting.ResumeLayout(false);
            tabpgGeneralSetting.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.numGeneratedSignalMin)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.numGeneratedSignalMax)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.numPointsInPeriod)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dgvConnectedInstruments)).EndInit();
            this.tabMainForm.ResumeLayout(false);
            this.tabpgExperimentsControl.ResumeLayout(false);
            this.tabInstrumnets.ResumeLayout(false);
            this.tabpgSignalGenerator.ResumeLayout(false);
            this.tabpgSignalGenerator.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.numSignalGeneratorVoltageLow)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.numSignalGeneratorVoltageHigh)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.numSignalGeneratorFrequency)).EndInit();
            this.tabpScope.ResumeLayout(false);
            this.tabpScope.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.numBufferToRecord)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dgvExperiments)).EndInit();
            this.tabpSignalFixer.ResumeLayout(false);
            this.grpbGeneralAlgorithmSettings.ResumeLayout(false);
            this.grpbGeneralAlgorithmSettings.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.numSGFilterLength)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.numSGPolyOrder)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.numFixEveryNSample)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.numFixFromSample)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.numMaxErrorToFixFrom)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.numIterationCount)).EndInit();
            this.tabControl1.ResumeLayout(false);
            this.tabpPIDSettings.ResumeLayout(false);
            this.tabpPIDSettings.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.numEpsilonFactor)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.numDFactor)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.numIFactor)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.numPFactor)).EndInit();
            this.tabpFreqDistortionSettings.ResumeLayout(false);
            this.tabpFreqDistortionSettings.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.numFFTScaling)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.numFDAHarmony)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.numRange)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.numMidPoint)).EndInit();
            this.tabpFrequencyDomain.ResumeLayout(false);
            this.tabpFrequencyDomain.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.numHarmonyToFix)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.numFixEnd)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.numFixStart)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.numMaxHarmonic)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dgvIterationsData)).EndInit();
            this.tabpGraphs.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.chartGraphs)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.numConstantPhaseAdjustment)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.instrumentStautsBindingSource)).EndInit();
            this.ResumeLayout(false);

        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.TabPage tabPage1;
     this.Answer5     = new System.Windows.Forms.Label();
     this.Answer1     = new System.Windows.Forms.Label();
     this.Button1     = new System.Windows.Forms.Button();
     this.label2      = new System.Windows.Forms.Label();
     this.label1      = new System.Windows.Forms.Label();
     this.textBox2    = new System.Windows.Forms.TextBox();
     this.textBox1    = new System.Windows.Forms.TextBox();
     this.tabPage4    = new System.Windows.Forms.TabPage();
     this.Answer8     = new System.Windows.Forms.Label();
     this.button4     = new System.Windows.Forms.Button();
     this.Answer4     = new System.Windows.Forms.Label();
     this.textBox14   = new System.Windows.Forms.TextBox();
     this.textBox13   = new System.Windows.Forms.TextBox();
     this.textBox12   = new System.Windows.Forms.TextBox();
     this.textBox11   = new System.Windows.Forms.TextBox();
     this.textBox10   = new System.Windows.Forms.TextBox();
     this.label14     = new System.Windows.Forms.Label();
     this.label13     = new System.Windows.Forms.Label();
     this.label12     = new System.Windows.Forms.Label();
     this.label11     = new System.Windows.Forms.Label();
     this.label10     = new System.Windows.Forms.Label();
     this.tabPage3    = new System.Windows.Forms.TabPage();
     this.Answer7     = new System.Windows.Forms.Label();
     this.Answer3     = new System.Windows.Forms.Label();
     this.label9      = new System.Windows.Forms.Label();
     this.label8      = new System.Windows.Forms.Label();
     this.label7      = new System.Windows.Forms.Label();
     this.label6      = new System.Windows.Forms.Label();
     this.textBox9    = new System.Windows.Forms.TextBox();
     this.textBox8    = new System.Windows.Forms.TextBox();
     this.textBox7    = new System.Windows.Forms.TextBox();
     this.textBox6    = new System.Windows.Forms.TextBox();
     this.Button3     = new System.Windows.Forms.Button();
     this.tabPage2    = new System.Windows.Forms.TabPage();
     this.Answer6     = new System.Windows.Forms.Label();
     this.Answer2     = new System.Windows.Forms.Label();
     this.Button2     = new System.Windows.Forms.Button();
     this.textBox5    = new System.Windows.Forms.TextBox();
     this.textBox4    = new System.Windows.Forms.TextBox();
     this.textBox3    = new System.Windows.Forms.TextBox();
     this.label5      = new System.Windows.Forms.Label();
     this.label4      = new System.Windows.Forms.Label();
     this.label3      = new System.Windows.Forms.Label();
     this.tabControl1 = new System.Windows.Forms.TabControl();
     tabPage1         = new System.Windows.Forms.TabPage();
     tabPage1.SuspendLayout();
     this.tabPage4.SuspendLayout();
     this.tabPage3.SuspendLayout();
     this.tabPage2.SuspendLayout();
     this.tabControl1.SuspendLayout();
     this.SuspendLayout();
     //
     // tabPage1
     //
     tabPage1.Controls.Add(this.Answer5);
     tabPage1.Controls.Add(this.Answer1);
     tabPage1.Controls.Add(this.Button1);
     tabPage1.Controls.Add(this.label2);
     tabPage1.Controls.Add(this.label1);
     tabPage1.Controls.Add(this.textBox2);
     tabPage1.Controls.Add(this.textBox1);
     tabPage1.Location = new System.Drawing.Point(4, 22);
     tabPage1.Name     = "tabPage1";
     tabPage1.Padding  = new System.Windows.Forms.Padding(3);
     tabPage1.Size     = new System.Drawing.Size(792, 424);
     tabPage1.TabIndex = 0;
     tabPage1.Text     = "2 Series";
     tabPage1.UseVisualStyleBackColor = true;
     //
     // Answer5
     //
     this.Answer5.AutoSize = true;
     this.Answer5.Location = new System.Drawing.Point(211, 152);
     this.Answer5.Name     = "Answer5";
     this.Answer5.Size     = new System.Drawing.Size(124, 13);
     this.Answer5.TabIndex = 6;
     this.Answer5.Text     = "Total Resistance Parallel";
     //
     // Answer1
     //
     this.Answer1.AutoSize = true;
     this.Answer1.Location = new System.Drawing.Point(211, 124);
     this.Answer1.Name     = "Answer1";
     this.Answer1.Size     = new System.Drawing.Size(119, 13);
     this.Answer1.TabIndex = 5;
     this.Answer1.Text     = "Total Resistance Series";
     this.Answer1.Click   += new System.EventHandler(this.label15_Click);
     //
     // Button1
     //
     this.Button1.Location = new System.Drawing.Point(90, 114);
     this.Button1.Name     = "Button1";
     this.Button1.Size     = new System.Drawing.Size(75, 23);
     this.Button1.TabIndex = 4;
     this.Button1.Text     = "Calculate";
     this.Button1.UseVisualStyleBackColor = true;
     this.Button1.Click += new System.EventHandler(this.Button1_Click);
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(35, 83);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(21, 13);
     this.label2.TabIndex = 3;
     this.label2.Text     = "R2";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(35, 49);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(21, 13);
     this.label1.TabIndex = 2;
     this.label1.Text     = "R1";
     this.label1.Click   += new System.EventHandler(this.label1_Click);
     //
     // textBox2
     //
     this.textBox2.Location = new System.Drawing.Point(90, 76);
     this.textBox2.Name     = "textBox2";
     this.textBox2.Size     = new System.Drawing.Size(100, 20);
     this.textBox2.TabIndex = 1;
     //
     // textBox1
     //
     this.textBox1.Location = new System.Drawing.Point(90, 49);
     this.textBox1.Name     = "textBox1";
     this.textBox1.Size     = new System.Drawing.Size(100, 20);
     this.textBox1.TabIndex = 0;
     //
     // tabPage4
     //
     this.tabPage4.Controls.Add(this.Answer8);
     this.tabPage4.Controls.Add(this.button4);
     this.tabPage4.Controls.Add(this.Answer4);
     this.tabPage4.Controls.Add(this.textBox14);
     this.tabPage4.Controls.Add(this.textBox13);
     this.tabPage4.Controls.Add(this.textBox12);
     this.tabPage4.Controls.Add(this.textBox11);
     this.tabPage4.Controls.Add(this.textBox10);
     this.tabPage4.Controls.Add(this.label14);
     this.tabPage4.Controls.Add(this.label13);
     this.tabPage4.Controls.Add(this.label12);
     this.tabPage4.Controls.Add(this.label11);
     this.tabPage4.Controls.Add(this.label10);
     this.tabPage4.Location = new System.Drawing.Point(4, 22);
     this.tabPage4.Name     = "tabPage4";
     this.tabPage4.Size     = new System.Drawing.Size(792, 424);
     this.tabPage4.TabIndex = 3;
     this.tabPage4.Text     = "5 Series";
     this.tabPage4.UseVisualStyleBackColor = true;
     //
     // Answer8
     //
     this.Answer8.AutoSize = true;
     this.Answer8.Location = new System.Drawing.Point(266, 230);
     this.Answer8.Name     = "Answer8";
     this.Answer8.Size     = new System.Drawing.Size(124, 13);
     this.Answer8.TabIndex = 13;
     this.Answer8.Text     = "Total Resistance Parallel";
     //
     // button4
     //
     this.button4.Location = new System.Drawing.Point(134, 183);
     this.button4.Name     = "button4";
     this.button4.Size     = new System.Drawing.Size(75, 23);
     this.button4.TabIndex = 12;
     this.button4.Text     = "Calculate";
     this.button4.UseVisualStyleBackColor = true;
     this.button4.Click += new System.EventHandler(this.button4_Click);
     //
     // Answer4
     //
     this.Answer4.AutoSize = true;
     this.Answer4.Location = new System.Drawing.Point(266, 194);
     this.Answer4.Name     = "Answer4";
     this.Answer4.Size     = new System.Drawing.Size(119, 13);
     this.Answer4.TabIndex = 11;
     this.Answer4.Text     = "Total Resistance Series";
     //
     // textBox14
     //
     this.textBox14.Location = new System.Drawing.Point(134, 151);
     this.textBox14.Name     = "textBox14";
     this.textBox14.Size     = new System.Drawing.Size(100, 20);
     this.textBox14.TabIndex = 9;
     //
     // textBox13
     //
     this.textBox13.Location = new System.Drawing.Point(134, 125);
     this.textBox13.Name     = "textBox13";
     this.textBox13.Size     = new System.Drawing.Size(100, 20);
     this.textBox13.TabIndex = 8;
     //
     // textBox12
     //
     this.textBox12.Location = new System.Drawing.Point(134, 99);
     this.textBox12.Name     = "textBox12";
     this.textBox12.Size     = new System.Drawing.Size(100, 20);
     this.textBox12.TabIndex = 7;
     //
     // textBox11
     //
     this.textBox11.Location     = new System.Drawing.Point(134, 73);
     this.textBox11.Name         = "textBox11";
     this.textBox11.Size         = new System.Drawing.Size(100, 20);
     this.textBox11.TabIndex     = 6;
     this.textBox11.TextChanged += new System.EventHandler(this.textBox11_TextChanged);
     //
     // textBox10
     //
     this.textBox10.Location = new System.Drawing.Point(134, 47);
     this.textBox10.Name     = "textBox10";
     this.textBox10.Size     = new System.Drawing.Size(100, 20);
     this.textBox10.TabIndex = 5;
     //
     // label14
     //
     this.label14.AutoSize = true;
     this.label14.Location = new System.Drawing.Point(67, 151);
     this.label14.Name     = "label14";
     this.label14.Size     = new System.Drawing.Size(21, 13);
     this.label14.TabIndex = 4;
     this.label14.Text     = "R5";
     //
     // label13
     //
     this.label13.AutoSize = true;
     this.label13.Location = new System.Drawing.Point(67, 125);
     this.label13.Name     = "label13";
     this.label13.Size     = new System.Drawing.Size(21, 13);
     this.label13.TabIndex = 3;
     this.label13.Text     = "R4";
     //
     // label12
     //
     this.label12.AutoSize = true;
     this.label12.Location = new System.Drawing.Point(67, 99);
     this.label12.Name     = "label12";
     this.label12.Size     = new System.Drawing.Size(21, 13);
     this.label12.TabIndex = 2;
     this.label12.Text     = "R3";
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.Location = new System.Drawing.Point(67, 73);
     this.label11.Name     = "label11";
     this.label11.Size     = new System.Drawing.Size(21, 13);
     this.label11.TabIndex = 1;
     this.label11.Text     = "R2";
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.Location = new System.Drawing.Point(67, 47);
     this.label10.Name     = "label10";
     this.label10.Size     = new System.Drawing.Size(21, 13);
     this.label10.TabIndex = 0;
     this.label10.Text     = "R1";
     //
     // tabPage3
     //
     this.tabPage3.Controls.Add(this.Answer7);
     this.tabPage3.Controls.Add(this.Answer3);
     this.tabPage3.Controls.Add(this.label9);
     this.tabPage3.Controls.Add(this.label8);
     this.tabPage3.Controls.Add(this.label7);
     this.tabPage3.Controls.Add(this.label6);
     this.tabPage3.Controls.Add(this.textBox9);
     this.tabPage3.Controls.Add(this.textBox8);
     this.tabPage3.Controls.Add(this.textBox7);
     this.tabPage3.Controls.Add(this.textBox6);
     this.tabPage3.Controls.Add(this.Button3);
     this.tabPage3.Location = new System.Drawing.Point(4, 22);
     this.tabPage3.Name     = "tabPage3";
     this.tabPage3.Size     = new System.Drawing.Size(792, 424);
     this.tabPage3.TabIndex = 2;
     this.tabPage3.Text     = "4 Series";
     this.tabPage3.UseVisualStyleBackColor = true;
     //
     // Answer7
     //
     this.Answer7.AutoSize = true;
     this.Answer7.Location = new System.Drawing.Point(227, 211);
     this.Answer7.Name     = "Answer7";
     this.Answer7.Size     = new System.Drawing.Size(124, 13);
     this.Answer7.TabIndex = 10;
     this.Answer7.Text     = "Total Resistance Parallel";
     //
     // Answer3
     //
     this.Answer3.AutoSize = true;
     this.Answer3.Location = new System.Drawing.Point(224, 184);
     this.Answer3.Name     = "Answer3";
     this.Answer3.Size     = new System.Drawing.Size(119, 13);
     this.Answer3.TabIndex = 9;
     this.Answer3.Text     = "Total Resistance Series";
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.Location = new System.Drawing.Point(41, 124);
     this.label9.Name     = "label9";
     this.label9.Size     = new System.Drawing.Size(21, 13);
     this.label9.TabIndex = 8;
     this.label9.Text     = "R4";
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Location = new System.Drawing.Point(41, 97);
     this.label8.Name     = "label8";
     this.label8.Size     = new System.Drawing.Size(21, 13);
     this.label8.TabIndex = 7;
     this.label8.Text     = "R3";
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Location = new System.Drawing.Point(41, 70);
     this.label7.Name     = "label7";
     this.label7.Size     = new System.Drawing.Size(21, 13);
     this.label7.TabIndex = 6;
     this.label7.Text     = "R2";
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Location = new System.Drawing.Point(41, 43);
     this.label6.Name     = "label6";
     this.label6.Size     = new System.Drawing.Size(21, 13);
     this.label6.TabIndex = 5;
     this.label6.Text     = "R1";
     //
     // textBox9
     //
     this.textBox9.Location = new System.Drawing.Point(99, 124);
     this.textBox9.Name     = "textBox9";
     this.textBox9.Size     = new System.Drawing.Size(100, 20);
     this.textBox9.TabIndex = 4;
     //
     // textBox8
     //
     this.textBox8.Location = new System.Drawing.Point(99, 97);
     this.textBox8.Name     = "textBox8";
     this.textBox8.Size     = new System.Drawing.Size(100, 20);
     this.textBox8.TabIndex = 3;
     //
     // textBox7
     //
     this.textBox7.Location = new System.Drawing.Point(99, 70);
     this.textBox7.Name     = "textBox7";
     this.textBox7.Size     = new System.Drawing.Size(100, 20);
     this.textBox7.TabIndex = 2;
     //
     // textBox6
     //
     this.textBox6.Location = new System.Drawing.Point(99, 43);
     this.textBox6.Name     = "textBox6";
     this.textBox6.Size     = new System.Drawing.Size(100, 20);
     this.textBox6.TabIndex = 1;
     //
     // Button3
     //
     this.Button3.Location = new System.Drawing.Point(99, 179);
     this.Button3.Name     = "Button3";
     this.Button3.Size     = new System.Drawing.Size(75, 23);
     this.Button3.TabIndex = 0;
     this.Button3.Text     = "Calculate";
     this.Button3.UseVisualStyleBackColor = true;
     this.Button3.Click += new System.EventHandler(this.Button3_Click);
     //
     // tabPage2
     //
     this.tabPage2.Controls.Add(this.Answer6);
     this.tabPage2.Controls.Add(this.Answer2);
     this.tabPage2.Controls.Add(this.Button2);
     this.tabPage2.Controls.Add(this.textBox5);
     this.tabPage2.Controls.Add(this.textBox4);
     this.tabPage2.Controls.Add(this.textBox3);
     this.tabPage2.Controls.Add(this.label5);
     this.tabPage2.Controls.Add(this.label4);
     this.tabPage2.Controls.Add(this.label3);
     this.tabPage2.Location = new System.Drawing.Point(4, 22);
     this.tabPage2.Name     = "tabPage2";
     this.tabPage2.Padding  = new System.Windows.Forms.Padding(3);
     this.tabPage2.Size     = new System.Drawing.Size(792, 424);
     this.tabPage2.TabIndex = 1;
     this.tabPage2.Text     = "3 Series";
     this.tabPage2.UseVisualStyleBackColor = true;
     //
     // Answer6
     //
     this.Answer6.AutoSize = true;
     this.Answer6.Location = new System.Drawing.Point(221, 188);
     this.Answer6.Name     = "Answer6";
     this.Answer6.Size     = new System.Drawing.Size(124, 13);
     this.Answer6.TabIndex = 8;
     this.Answer6.Text     = "Total Resistance Parallel";
     //
     // Answer2
     //
     this.Answer2.AutoSize = true;
     this.Answer2.Location = new System.Drawing.Point(218, 161);
     this.Answer2.Name     = "Answer2";
     this.Answer2.Size     = new System.Drawing.Size(119, 13);
     this.Answer2.TabIndex = 7;
     this.Answer2.Text     = "Total Resistance Series";
     //
     // Button2
     //
     this.Button2.Location = new System.Drawing.Point(109, 156);
     this.Button2.Name     = "Button2";
     this.Button2.Size     = new System.Drawing.Size(75, 23);
     this.Button2.TabIndex = 6;
     this.Button2.Text     = "Calculate";
     this.Button2.UseVisualStyleBackColor = true;
     this.Button2.Click += new System.EventHandler(this.Button2_Click);
     //
     // textBox5
     //
     this.textBox5.Location = new System.Drawing.Point(109, 105);
     this.textBox5.Name     = "textBox5";
     this.textBox5.Size     = new System.Drawing.Size(100, 20);
     this.textBox5.TabIndex = 5;
     //
     // textBox4
     //
     this.textBox4.Location = new System.Drawing.Point(109, 79);
     this.textBox4.Name     = "textBox4";
     this.textBox4.Size     = new System.Drawing.Size(100, 20);
     this.textBox4.TabIndex = 4;
     //
     // textBox3
     //
     this.textBox3.Location = new System.Drawing.Point(109, 53);
     this.textBox3.Name     = "textBox3";
     this.textBox3.Size     = new System.Drawing.Size(100, 20);
     this.textBox3.TabIndex = 3;
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(53, 112);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(21, 13);
     this.label5.TabIndex = 2;
     this.label5.Text     = "R3";
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(53, 86);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(21, 13);
     this.label4.TabIndex = 1;
     this.label4.Text     = "R2";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(53, 53);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(21, 13);
     this.label3.TabIndex = 0;
     this.label3.Text     = "R1";
     //
     // tabControl1
     //
     this.tabControl1.Controls.Add(tabPage1);
     this.tabControl1.Controls.Add(this.tabPage2);
     this.tabControl1.Controls.Add(this.tabPage3);
     this.tabControl1.Controls.Add(this.tabPage4);
     this.tabControl1.Dock          = System.Windows.Forms.DockStyle.Fill;
     this.tabControl1.Location      = new System.Drawing.Point(0, 0);
     this.tabControl1.Name          = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size          = new System.Drawing.Size(800, 450);
     this.tabControl1.TabIndex      = 0;
     //
     // Form1
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(800, 450);
     this.Controls.Add(this.tabControl1);
     this.Name = "Form1";
     this.Text = "Form1";
     tabPage1.ResumeLayout(false);
     tabPage1.PerformLayout();
     this.tabPage4.ResumeLayout(false);
     this.tabPage4.PerformLayout();
     this.tabPage3.ResumeLayout(false);
     this.tabPage3.PerformLayout();
     this.tabPage2.ResumeLayout(false);
     this.tabPage2.PerformLayout();
     this.tabControl1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.TabPage pricingModelTabPage;
     this.pricingModelErrorLabel  = new System.Windows.Forms.Label();
     this.addPricingModelButton   = new System.Windows.Forms.Button();
     this.pricingModelNameTextBox = new System.Windows.Forms.TextBox();
     this.modelNameLabel          = new System.Windows.Forms.Label();
     this.monthlyNumericUpDown    = new System.Windows.Forms.NumericUpDown();
     this.monthlyPriceLabel       = new System.Windows.Forms.Label();
     this.weeklyNumericUpDown     = new System.Windows.Forms.NumericUpDown();
     this.weeklyPriceLabel        = new System.Windows.Forms.Label();
     this.dailyNumericUpDown      = new System.Windows.Forms.NumericUpDown();
     this.dailyPriceLabel         = new System.Windows.Forms.Label();
     this.tabControl              = new System.Windows.Forms.TabControl();
     this.carTabPage              = new System.Windows.Forms.TabPage();
     this.carErrorLabel           = new System.Windows.Forms.Label();
     this.carIDLabel              = new System.Windows.Forms.Label();
     this.carIDTextBox            = new System.Windows.Forms.TextBox();
     this.addCarButton            = new System.Windows.Forms.Button();
     this.carTypeComboBox         = new System.Windows.Forms.ComboBox();
     this.carTypeLabel            = new System.Windows.Forms.Label();
     this.branchComboBox          = new System.Windows.Forms.ComboBox();
     this.branchLabel             = new System.Windows.Forms.Label();
     this.carTypeTabPage          = new System.Windows.Forms.TabPage();
     this.fuelTypeCheckBox        = new System.Windows.Forms.CheckBox();
     this.pricingModelFormatLabel = new System.Windows.Forms.Label();
     this.carTypeErrorLabel       = new System.Windows.Forms.Label();
     this.seatsNumericUpDown      = new System.Windows.Forms.NumericUpDown();
     this.ageNumericUpDown        = new System.Windows.Forms.NumericUpDown();
     this.doorsNumericUpDown      = new System.Windows.Forms.NumericUpDown();
     this.pricingModelLabel       = new System.Windows.Forms.Label();
     this.pricingModelComboBox    = new System.Windows.Forms.ComboBox();
     this.manualCheckBox          = new System.Windows.Forms.CheckBox();
     this.bluetoothCheckBox       = new System.Windows.Forms.CheckBox();
     this.sunRoofCheckBox         = new System.Windows.Forms.CheckBox();
     this.conditionTextBox        = new System.Windows.Forms.TextBox();
     this.conditionLabel          = new System.Windows.Forms.Label();
     this.ageLabel            = new System.Windows.Forms.Label();
     this.heatedSeatsCheckBox = new System.Windows.Forms.CheckBox();
     this.colorsTextBox       = new System.Windows.Forms.TextBox();
     this.Colors               = new System.Windows.Forms.Label();
     this.doorsLabel           = new System.Windows.Forms.Label();
     this.seatsLabel           = new System.Windows.Forms.Label();
     this.modelLabel           = new System.Windows.Forms.Label();
     this.modelTextBox         = new System.Windows.Forms.TextBox();
     this.carManufacturerLabel = new System.Windows.Forms.Label();
     this.manufacturerTextBox  = new System.Windows.Forms.TextBox();
     this.addCarTypeButton     = new System.Windows.Forms.Button();
     pricingModelTabPage       = new System.Windows.Forms.TabPage();
     pricingModelTabPage.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.monthlyNumericUpDown)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.weeklyNumericUpDown)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dailyNumericUpDown)).BeginInit();
     this.tabControl.SuspendLayout();
     this.carTabPage.SuspendLayout();
     this.carTypeTabPage.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.seatsNumericUpDown)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ageNumericUpDown)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.doorsNumericUpDown)).BeginInit();
     this.SuspendLayout();
     //
     // pricingModelTabPage
     //
     pricingModelTabPage.Controls.Add(this.pricingModelErrorLabel);
     pricingModelTabPage.Controls.Add(this.addPricingModelButton);
     pricingModelTabPage.Controls.Add(this.pricingModelNameTextBox);
     pricingModelTabPage.Controls.Add(this.modelNameLabel);
     pricingModelTabPage.Controls.Add(this.monthlyNumericUpDown);
     pricingModelTabPage.Controls.Add(this.monthlyPriceLabel);
     pricingModelTabPage.Controls.Add(this.weeklyNumericUpDown);
     pricingModelTabPage.Controls.Add(this.weeklyPriceLabel);
     pricingModelTabPage.Controls.Add(this.dailyNumericUpDown);
     pricingModelTabPage.Controls.Add(this.dailyPriceLabel);
     pricingModelTabPage.Location = new System.Drawing.Point(4, 22);
     pricingModelTabPage.Name     = "pricingModelTabPage";
     pricingModelTabPage.Padding  = new System.Windows.Forms.Padding(3);
     pricingModelTabPage.Size     = new System.Drawing.Size(408, 319);
     pricingModelTabPage.TabIndex = 1;
     pricingModelTabPage.Text     = "Pricing Model";
     pricingModelTabPage.UseVisualStyleBackColor = true;
     //
     // pricingModelErrorLabel
     //
     this.pricingModelErrorLabel.AutoSize = true;
     this.pricingModelErrorLabel.Location = new System.Drawing.Point(161, 179);
     this.pricingModelErrorLabel.Name     = "pricingModelErrorLabel";
     this.pricingModelErrorLabel.Size     = new System.Drawing.Size(101, 13);
     this.pricingModelErrorLabel.TabIndex = 8;
     this.pricingModelErrorLabel.Text     = "Enter a model name";
     this.pricingModelErrorLabel.Visible  = false;
     //
     // addPricingModelButton
     //
     this.addPricingModelButton.Location = new System.Drawing.Point(173, 204);
     this.addPricingModelButton.Name     = "addPricingModelButton";
     this.addPricingModelButton.Size     = new System.Drawing.Size(75, 23);
     this.addPricingModelButton.TabIndex = 9;
     this.addPricingModelButton.Text     = "Add";
     this.addPricingModelButton.UseVisualStyleBackColor = true;
     this.addPricingModelButton.Click += new System.EventHandler(this.addPricingModelButton_Click);
     //
     // pricingModelNameTextBox
     //
     this.pricingModelNameTextBox.Location = new System.Drawing.Point(173, 55);
     this.pricingModelNameTextBox.Name     = "pricingModelNameTextBox";
     this.pricingModelNameTextBox.Size     = new System.Drawing.Size(100, 20);
     this.pricingModelNameTextBox.TabIndex = 1;
     //
     // modelNameLabel
     //
     this.modelNameLabel.AutoSize = true;
     this.modelNameLabel.Location = new System.Drawing.Point(94, 58);
     this.modelNameLabel.Name     = "modelNameLabel";
     this.modelNameLabel.Size     = new System.Drawing.Size(70, 13);
     this.modelNameLabel.TabIndex = 0;
     this.modelNameLabel.Text     = "Model Name:";
     //
     // monthlyNumericUpDown
     //
     this.monthlyNumericUpDown.Location = new System.Drawing.Point(173, 133);
     this.monthlyNumericUpDown.Name     = "monthlyNumericUpDown";
     this.monthlyNumericUpDown.Size     = new System.Drawing.Size(100, 20);
     this.monthlyNumericUpDown.TabIndex = 7;
     //
     // monthlyPriceLabel
     //
     this.monthlyPriceLabel.AutoSize = true;
     this.monthlyPriceLabel.Location = new System.Drawing.Point(94, 135);
     this.monthlyPriceLabel.Name     = "monthlyPriceLabel";
     this.monthlyPriceLabel.Size     = new System.Drawing.Size(74, 13);
     this.monthlyPriceLabel.TabIndex = 6;
     this.monthlyPriceLabel.Text     = "Monthly Price:";
     //
     // weeklyNumericUpDown
     //
     this.weeklyNumericUpDown.Location = new System.Drawing.Point(173, 107);
     this.weeklyNumericUpDown.Name     = "weeklyNumericUpDown";
     this.weeklyNumericUpDown.Size     = new System.Drawing.Size(100, 20);
     this.weeklyNumericUpDown.TabIndex = 5;
     //
     // weeklyPriceLabel
     //
     this.weeklyPriceLabel.AutoSize = true;
     this.weeklyPriceLabel.Location = new System.Drawing.Point(94, 109);
     this.weeklyPriceLabel.Name     = "weeklyPriceLabel";
     this.weeklyPriceLabel.Size     = new System.Drawing.Size(73, 13);
     this.weeklyPriceLabel.TabIndex = 4;
     this.weeklyPriceLabel.Text     = "Weekly Price:";
     //
     // dailyNumericUpDown
     //
     this.dailyNumericUpDown.Location = new System.Drawing.Point(173, 81);
     this.dailyNumericUpDown.Name     = "dailyNumericUpDown";
     this.dailyNumericUpDown.Size     = new System.Drawing.Size(100, 20);
     this.dailyNumericUpDown.TabIndex = 3;
     //
     // dailyPriceLabel
     //
     this.dailyPriceLabel.AutoSize = true;
     this.dailyPriceLabel.Location = new System.Drawing.Point(94, 83);
     this.dailyPriceLabel.Name     = "dailyPriceLabel";
     this.dailyPriceLabel.Size     = new System.Drawing.Size(60, 13);
     this.dailyPriceLabel.TabIndex = 2;
     this.dailyPriceLabel.Text     = "Daily Price:";
     //
     // tabControl
     //
     this.tabControl.Controls.Add(this.carTabPage);
     this.tabControl.Controls.Add(this.carTypeTabPage);
     this.tabControl.Controls.Add(pricingModelTabPage);
     this.tabControl.Location              = new System.Drawing.Point(13, 13);
     this.tabControl.Name                  = "tabControl";
     this.tabControl.SelectedIndex         = 0;
     this.tabControl.Size                  = new System.Drawing.Size(416, 345);
     this.tabControl.TabIndex              = 0;
     this.tabControl.SelectedIndexChanged += new System.EventHandler(this.tabControl_SelectedIndexChanged);
     //
     // carTabPage
     //
     this.carTabPage.Controls.Add(this.carErrorLabel);
     this.carTabPage.Controls.Add(this.carIDLabel);
     this.carTabPage.Controls.Add(this.carIDTextBox);
     this.carTabPage.Controls.Add(this.addCarButton);
     this.carTabPage.Controls.Add(this.carTypeComboBox);
     this.carTabPage.Controls.Add(this.carTypeLabel);
     this.carTabPage.Controls.Add(this.branchComboBox);
     this.carTabPage.Controls.Add(this.branchLabel);
     this.carTabPage.Location = new System.Drawing.Point(4, 22);
     this.carTabPage.Name     = "carTabPage";
     this.carTabPage.Padding  = new System.Windows.Forms.Padding(3);
     this.carTabPage.Size     = new System.Drawing.Size(408, 319);
     this.carTabPage.TabIndex = 2;
     this.carTabPage.Text     = "Car";
     this.carTabPage.UseVisualStyleBackColor = true;
     //
     // carErrorLabel
     //
     this.carErrorLabel.AutoSize = true;
     this.carErrorLabel.Location = new System.Drawing.Point(117, 245);
     this.carErrorLabel.Name     = "carErrorLabel";
     this.carErrorLabel.Size     = new System.Drawing.Size(0, 13);
     this.carErrorLabel.TabIndex = 0;
     //
     // carIDLabel
     //
     this.carIDLabel.AutoSize = true;
     this.carIDLabel.Location = new System.Drawing.Point(114, 73);
     this.carIDLabel.Name     = "carIDLabel";
     this.carIDLabel.Size     = new System.Drawing.Size(40, 13);
     this.carIDLabel.TabIndex = 1;
     this.carIDLabel.Text     = "Car ID:";
     //
     // carIDTextBox
     //
     this.carIDTextBox.Location = new System.Drawing.Point(165, 70);
     this.carIDTextBox.Name     = "carIDTextBox";
     this.carIDTextBox.Size     = new System.Drawing.Size(121, 20);
     this.carIDTextBox.TabIndex = 2;
     //
     // addCarButton
     //
     this.addCarButton.Location = new System.Drawing.Point(165, 180);
     this.addCarButton.Name     = "addCarButton";
     this.addCarButton.Size     = new System.Drawing.Size(75, 23);
     this.addCarButton.TabIndex = 7;
     this.addCarButton.Text     = "Add";
     this.addCarButton.UseVisualStyleBackColor = true;
     this.addCarButton.Click += new System.EventHandler(this.addCarButton_Click);
     //
     // carTypeComboBox
     //
     this.carTypeComboBox.FormattingEnabled = true;
     this.carTypeComboBox.Location          = new System.Drawing.Point(165, 126);
     this.carTypeComboBox.Name     = "carTypeComboBox";
     this.carTypeComboBox.Size     = new System.Drawing.Size(121, 21);
     this.carTypeComboBox.TabIndex = 6;
     //
     // carTypeLabel
     //
     this.carTypeLabel.AutoSize = true;
     this.carTypeLabel.Location = new System.Drawing.Point(114, 129);
     this.carTypeLabel.Name     = "carTypeLabel";
     this.carTypeLabel.Size     = new System.Drawing.Size(49, 13);
     this.carTypeLabel.TabIndex = 5;
     this.carTypeLabel.Text     = "Car type:";
     //
     // branchComboBox
     //
     this.branchComboBox.FormattingEnabled = true;
     this.branchComboBox.Location          = new System.Drawing.Point(165, 99);
     this.branchComboBox.Name     = "branchComboBox";
     this.branchComboBox.Size     = new System.Drawing.Size(121, 21);
     this.branchComboBox.TabIndex = 4;
     //
     // branchLabel
     //
     this.branchLabel.AutoSize = true;
     this.branchLabel.Location = new System.Drawing.Point(114, 102);
     this.branchLabel.Name     = "branchLabel";
     this.branchLabel.Size     = new System.Drawing.Size(44, 13);
     this.branchLabel.TabIndex = 3;
     this.branchLabel.Text     = "Branch:";
     //
     // carTypeTabPage
     //
     this.carTypeTabPage.Controls.Add(this.fuelTypeCheckBox);
     this.carTypeTabPage.Controls.Add(this.pricingModelFormatLabel);
     this.carTypeTabPage.Controls.Add(this.carTypeErrorLabel);
     this.carTypeTabPage.Controls.Add(this.seatsNumericUpDown);
     this.carTypeTabPage.Controls.Add(this.ageNumericUpDown);
     this.carTypeTabPage.Controls.Add(this.doorsNumericUpDown);
     this.carTypeTabPage.Controls.Add(this.pricingModelLabel);
     this.carTypeTabPage.Controls.Add(this.pricingModelComboBox);
     this.carTypeTabPage.Controls.Add(this.manualCheckBox);
     this.carTypeTabPage.Controls.Add(this.bluetoothCheckBox);
     this.carTypeTabPage.Controls.Add(this.sunRoofCheckBox);
     this.carTypeTabPage.Controls.Add(this.conditionTextBox);
     this.carTypeTabPage.Controls.Add(this.conditionLabel);
     this.carTypeTabPage.Controls.Add(this.ageLabel);
     this.carTypeTabPage.Controls.Add(this.heatedSeatsCheckBox);
     this.carTypeTabPage.Controls.Add(this.colorsTextBox);
     this.carTypeTabPage.Controls.Add(this.Colors);
     this.carTypeTabPage.Controls.Add(this.doorsLabel);
     this.carTypeTabPage.Controls.Add(this.seatsLabel);
     this.carTypeTabPage.Controls.Add(this.modelLabel);
     this.carTypeTabPage.Controls.Add(this.modelTextBox);
     this.carTypeTabPage.Controls.Add(this.carManufacturerLabel);
     this.carTypeTabPage.Controls.Add(this.manufacturerTextBox);
     this.carTypeTabPage.Controls.Add(this.addCarTypeButton);
     this.carTypeTabPage.Location = new System.Drawing.Point(4, 22);
     this.carTypeTabPage.Name     = "carTypeTabPage";
     this.carTypeTabPage.Padding  = new System.Windows.Forms.Padding(3);
     this.carTypeTabPage.Size     = new System.Drawing.Size(408, 319);
     this.carTypeTabPage.TabIndex = 0;
     this.carTypeTabPage.Text     = "Car Type";
     this.carTypeTabPage.UseVisualStyleBackColor = true;
     //
     // fuelTypeCheckBox
     //
     this.fuelTypeCheckBox.AutoSize = true;
     this.fuelTypeCheckBox.Location = new System.Drawing.Point(266, 127);
     this.fuelTypeCheckBox.Name     = "fuelTypeCheckBox";
     this.fuelTypeCheckBox.Size     = new System.Drawing.Size(73, 17);
     this.fuelTypeCheckBox.TabIndex = 21;
     this.fuelTypeCheckBox.Text     = "Fuel Type";
     this.fuelTypeCheckBox.UseVisualStyleBackColor = true;
     //
     // pricingModelFormatLabel
     //
     this.pricingModelFormatLabel.AutoSize = true;
     this.pricingModelFormatLabel.Location = new System.Drawing.Point(117, 225);
     this.pricingModelFormatLabel.Name     = "pricingModelFormatLabel";
     this.pricingModelFormatLabel.Size     = new System.Drawing.Size(248, 13);
     this.pricingModelFormatLabel.TabIndex = 23;
     this.pricingModelFormatLabel.Text     = "Pricing ID, Daily Price, Weekly Price, Monthly Price";
     //
     // carTypeErrorLabel
     //
     this.carTypeErrorLabel.AutoSize = true;
     this.carTypeErrorLabel.Location = new System.Drawing.Point(25, 249);
     this.carTypeErrorLabel.Name     = "carTypeErrorLabel";
     this.carTypeErrorLabel.Size     = new System.Drawing.Size(0, 13);
     this.carTypeErrorLabel.TabIndex = 0;
     //
     // seatsNumericUpDown
     //
     this.seatsNumericUpDown.Location = new System.Drawing.Point(120, 72);
     this.seatsNumericUpDown.Name     = "seatsNumericUpDown";
     this.seatsNumericUpDown.Size     = new System.Drawing.Size(100, 20);
     this.seatsNumericUpDown.TabIndex = 5;
     //
     // ageNumericUpDown
     //
     this.ageNumericUpDown.Location = new System.Drawing.Point(120, 149);
     this.ageNumericUpDown.Name     = "ageNumericUpDown";
     this.ageNumericUpDown.Size     = new System.Drawing.Size(100, 20);
     this.ageNumericUpDown.TabIndex = 11;
     //
     // doorsNumericUpDown
     //
     this.doorsNumericUpDown.Location = new System.Drawing.Point(120, 98);
     this.doorsNumericUpDown.Name     = "doorsNumericUpDown";
     this.doorsNumericUpDown.Size     = new System.Drawing.Size(100, 20);
     this.doorsNumericUpDown.TabIndex = 7;
     //
     // pricingModelLabel
     //
     this.pricingModelLabel.AutoSize = true;
     this.pricingModelLabel.Location = new System.Drawing.Point(40, 204);
     this.pricingModelLabel.Name     = "pricingModelLabel";
     this.pricingModelLabel.Size     = new System.Drawing.Size(74, 13);
     this.pricingModelLabel.TabIndex = 16;
     this.pricingModelLabel.Text     = "Pricing Model:";
     //
     // pricingModelComboBox
     //
     this.pricingModelComboBox.FormattingEnabled = true;
     this.pricingModelComboBox.Location          = new System.Drawing.Point(120, 201);
     this.pricingModelComboBox.Name     = "pricingModelComboBox";
     this.pricingModelComboBox.Size     = new System.Drawing.Size(262, 21);
     this.pricingModelComboBox.TabIndex = 22;
     //
     // manualCheckBox
     //
     this.manualCheckBox.AutoSize = true;
     this.manualCheckBox.Location = new System.Drawing.Point(266, 104);
     this.manualCheckBox.Name     = "manualCheckBox";
     this.manualCheckBox.Size     = new System.Drawing.Size(61, 17);
     this.manualCheckBox.TabIndex = 20;
     this.manualCheckBox.Text     = "Manual";
     this.manualCheckBox.UseVisualStyleBackColor = true;
     //
     // bluetoothCheckBox
     //
     this.bluetoothCheckBox.AutoSize = true;
     this.bluetoothCheckBox.Location = new System.Drawing.Point(266, 81);
     this.bluetoothCheckBox.Name     = "bluetoothCheckBox";
     this.bluetoothCheckBox.Size     = new System.Drawing.Size(71, 17);
     this.bluetoothCheckBox.TabIndex = 19;
     this.bluetoothCheckBox.Text     = "Bluetooth";
     this.bluetoothCheckBox.UseVisualStyleBackColor = true;
     //
     // sunRoofCheckBox
     //
     this.sunRoofCheckBox.AutoSize = true;
     this.sunRoofCheckBox.Location = new System.Drawing.Point(266, 58);
     this.sunRoofCheckBox.Name     = "sunRoofCheckBox";
     this.sunRoofCheckBox.Size     = new System.Drawing.Size(71, 17);
     this.sunRoofCheckBox.TabIndex = 18;
     this.sunRoofCheckBox.Text     = "Sun Roof";
     this.sunRoofCheckBox.UseVisualStyleBackColor = true;
     //
     // conditionTextBox
     //
     this.conditionTextBox.Location = new System.Drawing.Point(120, 175);
     this.conditionTextBox.Name     = "conditionTextBox";
     this.conditionTextBox.Size     = new System.Drawing.Size(100, 20);
     this.conditionTextBox.TabIndex = 13;
     //
     // conditionLabel
     //
     this.conditionLabel.AutoSize = true;
     this.conditionLabel.Location = new System.Drawing.Point(41, 178);
     this.conditionLabel.Name     = "conditionLabel";
     this.conditionLabel.Size     = new System.Drawing.Size(54, 13);
     this.conditionLabel.TabIndex = 12;
     this.conditionLabel.Text     = "Condition:";
     //
     // ageLabel
     //
     this.ageLabel.AutoSize = true;
     this.ageLabel.Location = new System.Drawing.Point(41, 152);
     this.ageLabel.Name     = "ageLabel";
     this.ageLabel.Size     = new System.Drawing.Size(29, 13);
     this.ageLabel.TabIndex = 10;
     this.ageLabel.Text     = "Age:";
     //
     // heatedSeatsCheckBox
     //
     this.heatedSeatsCheckBox.AutoSize = true;
     this.heatedSeatsCheckBox.Location = new System.Drawing.Point(266, 35);
     this.heatedSeatsCheckBox.Name     = "heatedSeatsCheckBox";
     this.heatedSeatsCheckBox.Size     = new System.Drawing.Size(91, 17);
     this.heatedSeatsCheckBox.TabIndex = 17;
     this.heatedSeatsCheckBox.Text     = "Heated Seats";
     this.heatedSeatsCheckBox.UseVisualStyleBackColor = true;
     //
     // colorsTextBox
     //
     this.colorsTextBox.Location = new System.Drawing.Point(120, 123);
     this.colorsTextBox.Name     = "colorsTextBox";
     this.colorsTextBox.Size     = new System.Drawing.Size(100, 20);
     this.colorsTextBox.TabIndex = 9;
     //
     // Colors
     //
     this.Colors.AutoSize = true;
     this.Colors.Location = new System.Drawing.Point(41, 126);
     this.Colors.Name     = "Colors";
     this.Colors.Size     = new System.Drawing.Size(39, 13);
     this.Colors.TabIndex = 8;
     this.Colors.Text     = "Colors:";
     //
     // doorsLabel
     //
     this.doorsLabel.AutoSize = true;
     this.doorsLabel.Location = new System.Drawing.Point(41, 100);
     this.doorsLabel.Name     = "doorsLabel";
     this.doorsLabel.Size     = new System.Drawing.Size(38, 13);
     this.doorsLabel.TabIndex = 6;
     this.doorsLabel.Text     = "Doors:";
     //
     // seatsLabel
     //
     this.seatsLabel.AutoSize = true;
     this.seatsLabel.Location = new System.Drawing.Point(41, 74);
     this.seatsLabel.Name     = "seatsLabel";
     this.seatsLabel.Size     = new System.Drawing.Size(37, 13);
     this.seatsLabel.TabIndex = 4;
     this.seatsLabel.Text     = "Seats:";
     //
     // modelLabel
     //
     this.modelLabel.AutoSize = true;
     this.modelLabel.Location = new System.Drawing.Point(41, 48);
     this.modelLabel.Name     = "modelLabel";
     this.modelLabel.Size     = new System.Drawing.Size(39, 13);
     this.modelLabel.TabIndex = 2;
     this.modelLabel.Text     = "Model:";
     //
     // modelTextBox
     //
     this.modelTextBox.Location = new System.Drawing.Point(120, 45);
     this.modelTextBox.Name     = "modelTextBox";
     this.modelTextBox.Size     = new System.Drawing.Size(100, 20);
     this.modelTextBox.TabIndex = 3;
     //
     // carManufacturerLabel
     //
     this.carManufacturerLabel.AutoSize = true;
     this.carManufacturerLabel.Location = new System.Drawing.Point(41, 22);
     this.carManufacturerLabel.Name     = "carManufacturerLabel";
     this.carManufacturerLabel.Size     = new System.Drawing.Size(73, 13);
     this.carManufacturerLabel.TabIndex = 0;
     this.carManufacturerLabel.Text     = "Manufacturer:";
     //
     // manufacturerTextBox
     //
     this.manufacturerTextBox.Location = new System.Drawing.Point(120, 19);
     this.manufacturerTextBox.Name     = "manufacturerTextBox";
     this.manufacturerTextBox.Size     = new System.Drawing.Size(100, 20);
     this.manufacturerTextBox.TabIndex = 1;
     //
     // addCarTypeButton
     //
     this.addCarTypeButton.Location = new System.Drawing.Point(169, 280);
     this.addCarTypeButton.Name     = "addCarTypeButton";
     this.addCarTypeButton.Size     = new System.Drawing.Size(75, 23);
     this.addCarTypeButton.TabIndex = 1;
     this.addCarTypeButton.Text     = "Add";
     this.addCarTypeButton.UseVisualStyleBackColor = true;
     this.addCarTypeButton.Click += new System.EventHandler(this.addCarTypeButton_Click);
     //
     // AddCarInformation
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(441, 370);
     this.Controls.Add(this.tabControl);
     this.Name = "AddCarInformation";
     this.Text = "Add car/car type/pricing model";
     pricingModelTabPage.ResumeLayout(false);
     pricingModelTabPage.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.monthlyNumericUpDown)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.weeklyNumericUpDown)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dailyNumericUpDown)).EndInit();
     this.tabControl.ResumeLayout(false);
     this.carTabPage.ResumeLayout(false);
     this.carTabPage.PerformLayout();
     this.carTypeTabPage.ResumeLayout(false);
     this.carTypeTabPage.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.seatsNumericUpDown)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ageNumericUpDown)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.doorsNumericUpDown)).EndInit();
     this.ResumeLayout(false);
 }
Esempio n. 14
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            System.Windows.Forms.TabPage sendTab;
            System.Windows.Forms.TabPage settingsTab;
            System.Windows.Forms.TabPage comPortTab;
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
            this.splitContainer2 = new System.Windows.Forms.SplitContainer();
            this.groupBox1 = new System.Windows.Forms.GroupBox();
            this.textBox1 = new System.Windows.Forms.TextBox();
            this.progressBar1 = new System.Windows.Forms.ProgressBar();
            this.groupBox8 = new System.Windows.Forms.GroupBox();
            this.sendAsByteRadioButton = new System.Windows.Forms.RadioButton();
            this.sendAsStringRadioButton = new System.Windows.Forms.RadioButton();
            this.button2 = new System.Windows.Forms.Button();
            this.button1 = new System.Windows.Forms.Button();
            this.groupBox2 = new System.Windows.Forms.GroupBox();
            this.progressBar2 = new System.Windows.Forms.ProgressBar();
            this.SpaceStripCheckBox = new System.Windows.Forms.CheckBox();
            this.manualSendRepeatBox = new System.Windows.Forms.TextBox();
            this.groupBox3 = new System.Windows.Forms.GroupBox();
            this.LFCheckBox = new System.Windows.Forms.CheckBox();
            this.CRCheckBox = new System.Windows.Forms.CheckBox();
            this.button3 = new System.Windows.Forms.Button();
            this.manualSendCommandBox = new System.Windows.Forms.TextBox();
            this.groupBox11 = new System.Windows.Forms.GroupBox();
            this.trackBar1 = new System.Windows.Forms.TrackBar();
            this.checkBox3 = new System.Windows.Forms.CheckBox();
            this.checkBox2 = new System.Windows.Forms.CheckBox();
            this.checkBox1 = new System.Windows.Forms.CheckBox();
            this.button7 = new System.Windows.Forms.Button();
            this.button6 = new System.Windows.Forms.Button();
            this.button5 = new System.Windows.Forms.Button();
            this.splitContainer3 = new System.Windows.Forms.SplitContainer();
            this.groupBox4 = new System.Windows.Forms.GroupBox();
            this.openPortButton = new System.Windows.Forms.Button();
            this.scanPortButton = new System.Windows.Forms.Button();
            this.portComboBox = new System.Windows.Forms.ComboBox();
            this.baudRateComboBox = new System.Windows.Forms.ComboBox();
            this.label2 = new System.Windows.Forms.Label();
            this.label1 = new System.Windows.Forms.Label();
            this.groupBox7 = new System.Windows.Forms.GroupBox();
            this.stopBitsComboBox = new System.Windows.Forms.ComboBox();
            this.groupBox6 = new System.Windows.Forms.GroupBox();
            this.dataBitsComboBox = new System.Windows.Forms.ComboBox();
            this.groupBox5 = new System.Windows.Forms.GroupBox();
            this.parityComboBox = new System.Windows.Forms.ComboBox();
            this.splitContainer1 = new System.Windows.Forms.SplitContainer();
            this.linkLabel1 = new System.Windows.Forms.LinkLabel();
            this.listBox1 = new System.Windows.Forms.ListBox();
            this.tabControl1 = new System.Windows.Forms.TabControl();
            this.tabPage1 = new System.Windows.Forms.TabPage();
            this.groupBox9 = new System.Windows.Forms.GroupBox();
            this.checkBox4 = new System.Windows.Forms.CheckBox();
            this.groupBox12 = new System.Windows.Forms.GroupBox();
            this.button10 = new System.Windows.Forms.Button();
            this.button9 = new System.Windows.Forms.Button();
            this.comboBox2 = new System.Windows.Forms.ComboBox();
            this.label4 = new System.Windows.Forms.Label();
            this.label3 = new System.Windows.Forms.Label();
            this.comboBox1 = new System.Windows.Forms.ComboBox();
            this.button8 = new System.Windows.Forms.Button();
            this.groupBox10 = new System.Windows.Forms.GroupBox();
            this.radioButton3 = new System.Windows.Forms.RadioButton();
            this.radioButton2 = new System.Windows.Forms.RadioButton();
            this.radioButton1 = new System.Windows.Forms.RadioButton();
            this.button4 = new System.Windows.Forms.Button();
            this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
            this.manualSendThread = new System.ComponentModel.BackgroundWorker();
            this.fileDumpThread = new System.ComponentModel.BackgroundWorker();
            this.receiveThread = new System.ComponentModel.BackgroundWorker();
            this.autoUpdateThread = new System.ComponentModel.BackgroundWorker();
            this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
            this.checkBox5 = new System.Windows.Forms.CheckBox();
            sendTab = new System.Windows.Forms.TabPage();
            settingsTab = new System.Windows.Forms.TabPage();
            comPortTab = new System.Windows.Forms.TabPage();
            sendTab.SuspendLayout();
            this.splitContainer2.Panel1.SuspendLayout();
            this.splitContainer2.Panel2.SuspendLayout();
            this.splitContainer2.SuspendLayout();
            this.groupBox1.SuspendLayout();
            this.groupBox8.SuspendLayout();
            this.groupBox2.SuspendLayout();
            this.groupBox3.SuspendLayout();
            settingsTab.SuspendLayout();
            this.groupBox11.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.trackBar1)).BeginInit();
            comPortTab.SuspendLayout();
            this.splitContainer3.Panel1.SuspendLayout();
            this.splitContainer3.Panel2.SuspendLayout();
            this.splitContainer3.SuspendLayout();
            this.groupBox4.SuspendLayout();
            this.groupBox7.SuspendLayout();
            this.groupBox6.SuspendLayout();
            this.groupBox5.SuspendLayout();
            this.splitContainer1.Panel1.SuspendLayout();
            this.splitContainer1.Panel2.SuspendLayout();
            this.splitContainer1.SuspendLayout();
            this.tabControl1.SuspendLayout();
            this.tabPage1.SuspendLayout();
            this.groupBox9.SuspendLayout();
            this.groupBox12.SuspendLayout();
            this.groupBox10.SuspendLayout();
            this.SuspendLayout();
            // 
            // sendTab
            // 
            sendTab.Controls.Add(this.splitContainer2);
            sendTab.Location = new System.Drawing.Point(4, 22);
            sendTab.Name = "sendTab";
            sendTab.Size = new System.Drawing.Size(345, 128);
            sendTab.TabIndex = 3;
            sendTab.Text = "Send";
            sendTab.UseVisualStyleBackColor = true;
            // 
            // splitContainer2
            // 
            this.splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill;
            this.splitContainer2.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
            this.splitContainer2.IsSplitterFixed = true;
            this.splitContainer2.Location = new System.Drawing.Point(0, 0);
            this.splitContainer2.Name = "splitContainer2";
            // 
            // splitContainer2.Panel1
            // 
            this.splitContainer2.Panel1.Controls.Add(this.groupBox1);
            // 
            // splitContainer2.Panel2
            // 
            this.splitContainer2.Panel2.Controls.Add(this.groupBox2);
            this.splitContainer2.Size = new System.Drawing.Size(345, 128);
            this.splitContainer2.SplitterDistance = 171;
            this.splitContainer2.TabIndex = 0;
            // 
            // groupBox1
            // 
            this.groupBox1.Controls.Add(this.checkBox5);
            this.groupBox1.Controls.Add(this.textBox1);
            this.groupBox1.Controls.Add(this.progressBar1);
            this.groupBox1.Controls.Add(this.groupBox8);
            this.groupBox1.Controls.Add(this.button2);
            this.groupBox1.Controls.Add(this.button1);
            this.groupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.groupBox1.Location = new System.Drawing.Point(0, 0);
            this.groupBox1.Name = "groupBox1";
            this.groupBox1.Size = new System.Drawing.Size(171, 128);
            this.groupBox1.TabIndex = 1;
            this.groupBox1.TabStop = false;
            this.groupBox1.Text = "Dump File to Port";
            // 
            // textBox1
            // 
            this.textBox1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.textBox1.Location = new System.Drawing.Point(113, 68);
            this.textBox1.Name = "textBox1";
            this.textBox1.Size = new System.Drawing.Size(52, 20);
            this.textBox1.TabIndex = 7;
            this.textBox1.Text = "Delay";
            this.textBox1.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            this.textBox1.Leave += new System.EventHandler(this.textBox1_Leave);
            this.textBox1.Enter += new System.EventHandler(this.textBox1_Enter);
            // 
            // progressBar1
            // 
            this.progressBar1.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.progressBar1.Location = new System.Drawing.Point(3, 89);
            this.progressBar1.MarqueeAnimationSpeed = 1;
            this.progressBar1.Name = "progressBar1";
            this.progressBar1.Size = new System.Drawing.Size(165, 13);
            this.progressBar1.TabIndex = 6;
            // 
            // groupBox8
            // 
            this.groupBox8.Controls.Add(this.sendAsByteRadioButton);
            this.groupBox8.Controls.Add(this.sendAsStringRadioButton);
            this.groupBox8.Location = new System.Drawing.Point(6, 48);
            this.groupBox8.Name = "groupBox8";
            this.groupBox8.Size = new System.Drawing.Size(101, 40);
            this.groupBox8.TabIndex = 5;
            this.groupBox8.TabStop = false;
            this.groupBox8.Text = "Send As";
            // 
            // sendAsByteRadioButton
            // 
            this.sendAsByteRadioButton.AutoSize = true;
            this.sendAsByteRadioButton.Location = new System.Drawing.Point(55, 18);
            this.sendAsByteRadioButton.Name = "sendAsByteRadioButton";
            this.sendAsByteRadioButton.Size = new System.Drawing.Size(46, 17);
            this.sendAsByteRadioButton.TabIndex = 2;
            this.sendAsByteRadioButton.TabStop = true;
            this.sendAsByteRadioButton.Text = "Byte";
            this.sendAsByteRadioButton.UseVisualStyleBackColor = true;
            // 
            // sendAsStringRadioButton
            // 
            this.sendAsStringRadioButton.AutoSize = true;
            this.sendAsStringRadioButton.Location = new System.Drawing.Point(6, 18);
            this.sendAsStringRadioButton.Name = "sendAsStringRadioButton";
            this.sendAsStringRadioButton.Size = new System.Drawing.Size(52, 17);
            this.sendAsStringRadioButton.TabIndex = 4;
            this.sendAsStringRadioButton.TabStop = true;
            this.sendAsStringRadioButton.Text = "String";
            this.sendAsStringRadioButton.UseVisualStyleBackColor = true;
            // 
            // button2
            // 
            this.button2.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.button2.Location = new System.Drawing.Point(3, 102);
            this.button2.Name = "button2";
            this.button2.Size = new System.Drawing.Size(165, 23);
            this.button2.TabIndex = 3;
            this.button2.Text = "Send";
            this.button2.UseVisualStyleBackColor = true;
            this.button2.Click += new System.EventHandler(this.button2_Click);
            // 
            // button1
            // 
            this.button1.Location = new System.Drawing.Point(12, 19);
            this.button1.Name = "button1";
            this.button1.Size = new System.Drawing.Size(153, 23);
            this.button1.TabIndex = 1;
            this.button1.Text = "Select File";
            this.button1.UseVisualStyleBackColor = true;
            this.button1.Click += new System.EventHandler(this.button1_Click);
            // 
            // groupBox2
            // 
            this.groupBox2.Controls.Add(this.progressBar2);
            this.groupBox2.Controls.Add(this.SpaceStripCheckBox);
            this.groupBox2.Controls.Add(this.manualSendRepeatBox);
            this.groupBox2.Controls.Add(this.groupBox3);
            this.groupBox2.Controls.Add(this.button3);
            this.groupBox2.Controls.Add(this.manualSendCommandBox);
            this.groupBox2.Dock = System.Windows.Forms.DockStyle.Fill;
            this.groupBox2.Location = new System.Drawing.Point(0, 0);
            this.groupBox2.Name = "groupBox2";
            this.groupBox2.Size = new System.Drawing.Size(170, 128);
            this.groupBox2.TabIndex = 0;
            this.groupBox2.TabStop = false;
            this.groupBox2.Text = "Send Manually";
            // 
            // progressBar2
            // 
            this.progressBar2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.progressBar2.Location = new System.Drawing.Point(64, 56);
            this.progressBar2.Name = "progressBar2";
            this.progressBar2.Size = new System.Drawing.Size(100, 23);
            this.progressBar2.TabIndex = 6;
            // 
            // SpaceStripCheckBox
            // 
            this.SpaceStripCheckBox.AutoSize = true;
            this.SpaceStripCheckBox.Location = new System.Drawing.Point(63, 85);
            this.SpaceStripCheckBox.Name = "SpaceStripCheckBox";
            this.SpaceStripCheckBox.Size = new System.Drawing.Size(86, 17);
            this.SpaceStripCheckBox.TabIndex = 5;
            this.SpaceStripCheckBox.Text = "Strip Spaces";
            this.SpaceStripCheckBox.UseVisualStyleBackColor = true;
            // 
            // manualSendRepeatBox
            // 
            this.manualSendRepeatBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.manualSendRepeatBox.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.manualSendRepeatBox.Location = new System.Drawing.Point(6, 105);
            this.manualSendRepeatBox.Name = "manualSendRepeatBox";
            this.manualSendRepeatBox.Size = new System.Drawing.Size(77, 20);
            this.manualSendRepeatBox.TabIndex = 4;
            this.manualSendRepeatBox.Text = "Repeats (0)";
            this.manualSendRepeatBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            this.manualSendRepeatBox.Leave += new System.EventHandler(this.manualSendRepeatBox_Leave);
            this.manualSendRepeatBox.Enter += new System.EventHandler(this.manualSendRepeatBox_Enter);
            // 
            // groupBox3
            // 
            this.groupBox3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.groupBox3.Controls.Add(this.LFCheckBox);
            this.groupBox3.Controls.Add(this.CRCheckBox);
            this.groupBox3.Location = new System.Drawing.Point(6, 43);
            this.groupBox3.Name = "groupBox3";
            this.groupBox3.Size = new System.Drawing.Size(51, 61);
            this.groupBox3.TabIndex = 2;
            this.groupBox3.TabStop = false;
            this.groupBox3.Text = "EOL";
            // 
            // LFCheckBox
            // 
            this.LFCheckBox.AutoSize = true;
            this.LFCheckBox.Location = new System.Drawing.Point(6, 38);
            this.LFCheckBox.Name = "LFCheckBox";
            this.LFCheckBox.Size = new System.Drawing.Size(38, 17);
            this.LFCheckBox.TabIndex = 1;
            this.LFCheckBox.Text = "LF";
            this.LFCheckBox.UseVisualStyleBackColor = true;
            // 
            // CRCheckBox
            // 
            this.CRCheckBox.AutoSize = true;
            this.CRCheckBox.Location = new System.Drawing.Point(6, 19);
            this.CRCheckBox.Name = "CRCheckBox";
            this.CRCheckBox.Size = new System.Drawing.Size(41, 17);
            this.CRCheckBox.TabIndex = 0;
            this.CRCheckBox.Text = "CR";
            this.CRCheckBox.UseVisualStyleBackColor = true;
            // 
            // button3
            // 
            this.button3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.button3.Location = new System.Drawing.Point(89, 102);
            this.button3.Name = "button3";
            this.button3.Size = new System.Drawing.Size(75, 23);
            this.button3.TabIndex = 1;
            this.button3.Text = "Send";
            this.button3.UseVisualStyleBackColor = true;
            this.button3.Click += new System.EventHandler(this.button3_Click);
            // 
            // manualSendCommandBox
            // 
            this.manualSendCommandBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.manualSendCommandBox.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.manualSendCommandBox.Location = new System.Drawing.Point(6, 21);
            this.manualSendCommandBox.Name = "manualSendCommandBox";
            this.manualSendCommandBox.Size = new System.Drawing.Size(158, 20);
            this.manualSendCommandBox.TabIndex = 0;
            // 
            // settingsTab
            // 
            settingsTab.Controls.Add(this.groupBox11);
            settingsTab.Controls.Add(this.checkBox3);
            settingsTab.Controls.Add(this.checkBox2);
            settingsTab.Controls.Add(this.checkBox1);
            settingsTab.Controls.Add(this.button7);
            settingsTab.Controls.Add(this.button6);
            settingsTab.Controls.Add(this.button5);
            settingsTab.Location = new System.Drawing.Point(4, 22);
            settingsTab.Name = "settingsTab";
            settingsTab.Size = new System.Drawing.Size(345, 128);
            settingsTab.TabIndex = 2;
            settingsTab.Text = "Settings";
            settingsTab.UseVisualStyleBackColor = true;
            // 
            // groupBox11
            // 
            this.groupBox11.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.groupBox11.Controls.Add(this.trackBar1);
            this.groupBox11.Location = new System.Drawing.Point(229, 26);
            this.groupBox11.Name = "groupBox11";
            this.groupBox11.Size = new System.Drawing.Size(113, 69);
            this.groupBox11.TabIndex = 7;
            this.groupBox11.TabStop = false;
            this.groupBox11.Text = "Opacity";
            // 
            // trackBar1
            // 
            this.trackBar1.BackColor = System.Drawing.Color.White;
            this.trackBar1.LargeChange = 25;
            this.trackBar1.Location = new System.Drawing.Point(3, 17);
            this.trackBar1.Maximum = 100;
            this.trackBar1.Minimum = 5;
            this.trackBar1.Name = "trackBar1";
            this.trackBar1.Size = new System.Drawing.Size(104, 45);
            this.trackBar1.SmallChange = 10;
            this.trackBar1.TabIndex = 0;
            this.trackBar1.TickFrequency = 10;
            this.trackBar1.TickStyle = System.Windows.Forms.TickStyle.TopLeft;
            this.trackBar1.Value = 100;
            this.trackBar1.Leave += new System.EventHandler(this.trackBar1_Leave);
            this.trackBar1.Scroll += new System.EventHandler(this.trackBar1_Scroll);
            // 
            // checkBox3
            // 
            this.checkBox3.AutoSize = true;
            this.checkBox3.Location = new System.Drawing.Point(3, 32);
            this.checkBox3.Name = "checkBox3";
            this.checkBox3.Size = new System.Drawing.Size(96, 17);
            this.checkBox3.TabIndex = 6;
            this.checkBox3.Text = "Always on Top";
            this.checkBox3.UseVisualStyleBackColor = true;
            this.checkBox3.CheckedChanged += new System.EventHandler(this.checkBox3_CheckedChanged);
            // 
            // checkBox2
            // 
            this.checkBox2.AutoSize = true;
            this.checkBox2.Location = new System.Drawing.Point(3, 78);
            this.checkBox2.Name = "checkBox2";
            this.checkBox2.Size = new System.Drawing.Size(86, 17);
            this.checkBox2.TabIndex = 5;
            this.checkBox2.Text = "Auto Update";
            this.checkBox2.UseVisualStyleBackColor = true;
            this.checkBox2.CheckedChanged += new System.EventHandler(this.checkBox2_CheckedChanged);
            // 
            // checkBox1
            // 
            this.checkBox1.AutoSize = true;
            this.checkBox1.Location = new System.Drawing.Point(3, 55);
            this.checkBox1.Name = "checkBox1";
            this.checkBox1.Size = new System.Drawing.Size(87, 17);
            this.checkBox1.TabIndex = 4;
            this.checkBox1.Text = "Instant Scroll";
            this.checkBox1.UseVisualStyleBackColor = true;
            this.checkBox1.CheckedChanged += new System.EventHandler(this.checkBox1_CheckedChanged);
            // 
            // button7
            // 
            this.button7.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.button7.Location = new System.Drawing.Point(229, 97);
            this.button7.Name = "button7";
            this.button7.Size = new System.Drawing.Size(113, 23);
            this.button7.TabIndex = 2;
            this.button7.Text = "Reset Settings";
            this.button7.UseVisualStyleBackColor = true;
            this.button7.Click += new System.EventHandler(this.button7_Click);
            // 
            // button6
            // 
            this.button6.Location = new System.Drawing.Point(3, 3);
            this.button6.Name = "button6";
            this.button6.Size = new System.Drawing.Size(75, 23);
            this.button6.TabIndex = 1;
            this.button6.Text = "Colors";
            this.button6.UseVisualStyleBackColor = true;
            this.button6.Click += new System.EventHandler(this.button6_Click_1);
            // 
            // button5
            // 
            this.button5.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.button5.Location = new System.Drawing.Point(229, 3);
            this.button5.Name = "button5";
            this.button5.Size = new System.Drawing.Size(113, 23);
            this.button5.TabIndex = 0;
            this.button5.Text = "Check For Updates";
            this.button5.UseVisualStyleBackColor = true;
            this.button5.Click += new System.EventHandler(this.button5_Click);
            // 
            // comPortTab
            // 
            comPortTab.Controls.Add(this.splitContainer3);
            comPortTab.Location = new System.Drawing.Point(4, 22);
            comPortTab.Name = "comPortTab";
            comPortTab.Size = new System.Drawing.Size(345, 128);
            comPortTab.TabIndex = 1;
            comPortTab.Text = "COM Port";
            comPortTab.UseVisualStyleBackColor = true;
            // 
            // splitContainer3
            // 
            this.splitContainer3.Dock = System.Windows.Forms.DockStyle.Fill;
            this.splitContainer3.Location = new System.Drawing.Point(0, 0);
            this.splitContainer3.Name = "splitContainer3";
            this.splitContainer3.Orientation = System.Windows.Forms.Orientation.Horizontal;
            // 
            // splitContainer3.Panel1
            // 
            this.splitContainer3.Panel1.Controls.Add(this.groupBox4);
            // 
            // splitContainer3.Panel2
            // 
            this.splitContainer3.Panel2.Controls.Add(this.groupBox7);
            this.splitContainer3.Panel2.Controls.Add(this.groupBox6);
            this.splitContainer3.Panel2.Controls.Add(this.groupBox5);
            this.splitContainer3.Size = new System.Drawing.Size(345, 128);
            this.splitContainer3.SplitterDistance = 70;
            this.splitContainer3.TabIndex = 0;
            // 
            // groupBox4
            // 
            this.groupBox4.Controls.Add(this.openPortButton);
            this.groupBox4.Controls.Add(this.scanPortButton);
            this.groupBox4.Controls.Add(this.portComboBox);
            this.groupBox4.Controls.Add(this.baudRateComboBox);
            this.groupBox4.Controls.Add(this.label2);
            this.groupBox4.Controls.Add(this.label1);
            this.groupBox4.Dock = System.Windows.Forms.DockStyle.Fill;
            this.groupBox4.Location = new System.Drawing.Point(0, 0);
            this.groupBox4.Name = "groupBox4";
            this.groupBox4.Size = new System.Drawing.Size(345, 70);
            this.groupBox4.TabIndex = 0;
            this.groupBox4.TabStop = false;
            // 
            // openPortButton
            // 
            this.openPortButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.openPortButton.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.openPortButton.Location = new System.Drawing.Point(262, 41);
            this.openPortButton.Name = "openPortButton";
            this.openPortButton.Size = new System.Drawing.Size(75, 23);
            this.openPortButton.TabIndex = 5;
            this.openPortButton.Text = "Open Port";
            this.openPortButton.UseVisualStyleBackColor = true;
            this.openPortButton.Click += new System.EventHandler(this.openPortButton_Click);
            // 
            // scanPortButton
            // 
            this.scanPortButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.scanPortButton.Location = new System.Drawing.Point(262, 11);
            this.scanPortButton.Name = "scanPortButton";
            this.scanPortButton.Size = new System.Drawing.Size(75, 23);
            this.scanPortButton.TabIndex = 4;
            this.scanPortButton.Text = "Scan Ports";
            this.scanPortButton.UseVisualStyleBackColor = true;
            this.scanPortButton.Click += new System.EventHandler(this.scanPortButton_Click);
            // 
            // portComboBox
            // 
            this.portComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.portComboBox.FormattingEnabled = true;
            this.portComboBox.Location = new System.Drawing.Point(75, 43);
            this.portComboBox.Name = "portComboBox";
            this.portComboBox.Size = new System.Drawing.Size(121, 21);
            this.portComboBox.TabIndex = 3;
            // 
            // baudRateComboBox
            // 
            this.baudRateComboBox.FormattingEnabled = true;
            this.baudRateComboBox.Location = new System.Drawing.Point(75, 13);
            this.baudRateComboBox.Name = "baudRateComboBox";
            this.baudRateComboBox.Size = new System.Drawing.Size(121, 21);
            this.baudRateComboBox.TabIndex = 2;
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Location = new System.Drawing.Point(8, 46);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(29, 13);
            this.label2.TabIndex = 1;
            this.label2.Text = "Port:";
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(8, 16);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(61, 13);
            this.label1.TabIndex = 0;
            this.label1.Text = "Baud Rate:";
            // 
            // groupBox7
            // 
            this.groupBox7.Controls.Add(this.stopBitsComboBox);
            this.groupBox7.Dock = System.Windows.Forms.DockStyle.Left;
            this.groupBox7.Location = new System.Drawing.Point(242, 0);
            this.groupBox7.Name = "groupBox7";
            this.groupBox7.Size = new System.Drawing.Size(104, 54);
            this.groupBox7.TabIndex = 2;
            this.groupBox7.TabStop = false;
            this.groupBox7.Text = "Stop Bits";
            // 
            // stopBitsComboBox
            // 
            this.stopBitsComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.stopBitsComboBox.FormattingEnabled = true;
            this.stopBitsComboBox.Items.AddRange(new object[] {
            "None",
            "1 bit",
            "1.5 bits",
            "2 bits"});
            this.stopBitsComboBox.Location = new System.Drawing.Point(6, 19);
            this.stopBitsComboBox.Name = "stopBitsComboBox";
            this.stopBitsComboBox.Size = new System.Drawing.Size(92, 21);
            this.stopBitsComboBox.TabIndex = 0;
            // 
            // groupBox6
            // 
            this.groupBox6.Controls.Add(this.dataBitsComboBox);
            this.groupBox6.Dock = System.Windows.Forms.DockStyle.Left;
            this.groupBox6.Location = new System.Drawing.Point(132, 0);
            this.groupBox6.Name = "groupBox6";
            this.groupBox6.Size = new System.Drawing.Size(110, 54);
            this.groupBox6.TabIndex = 1;
            this.groupBox6.TabStop = false;
            this.groupBox6.Text = "Data Bits";
            // 
            // dataBitsComboBox
            // 
            this.dataBitsComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.dataBitsComboBox.FormattingEnabled = true;
            this.dataBitsComboBox.Items.AddRange(new object[] {
            "8 bits",
            "7 bits",
            "6 bits",
            "5 bits"});
            this.dataBitsComboBox.Location = new System.Drawing.Point(6, 19);
            this.dataBitsComboBox.Name = "dataBitsComboBox";
            this.dataBitsComboBox.Size = new System.Drawing.Size(98, 21);
            this.dataBitsComboBox.TabIndex = 0;
            // 
            // groupBox5
            // 
            this.groupBox5.Controls.Add(this.parityComboBox);
            this.groupBox5.Dock = System.Windows.Forms.DockStyle.Left;
            this.groupBox5.Location = new System.Drawing.Point(0, 0);
            this.groupBox5.Name = "groupBox5";
            this.groupBox5.Size = new System.Drawing.Size(132, 54);
            this.groupBox5.TabIndex = 0;
            this.groupBox5.TabStop = false;
            this.groupBox5.Text = "Parity";
            // 
            // parityComboBox
            // 
            this.parityComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.parityComboBox.FormattingEnabled = true;
            this.parityComboBox.Items.AddRange(new object[] {
            "None",
            "Odd",
            "Even",
            "Mark",
            "Space"});
            this.parityComboBox.Location = new System.Drawing.Point(5, 19);
            this.parityComboBox.Name = "parityComboBox";
            this.parityComboBox.Size = new System.Drawing.Size(121, 21);
            this.parityComboBox.TabIndex = 0;
            // 
            // splitContainer1
            // 
            this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.splitContainer1.FixedPanel = System.Windows.Forms.FixedPanel.Panel2;
            this.splitContainer1.IsSplitterFixed = true;
            this.splitContainer1.Location = new System.Drawing.Point(0, 0);
            this.splitContainer1.Name = "splitContainer1";
            this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
            // 
            // splitContainer1.Panel1
            // 
            this.splitContainer1.Panel1.Controls.Add(this.linkLabel1);
            this.splitContainer1.Panel1.Controls.Add(this.listBox1);
            // 
            // splitContainer1.Panel2
            // 
            this.splitContainer1.Panel2.Controls.Add(this.tabControl1);
            this.splitContainer1.Size = new System.Drawing.Size(353, 406);
            this.splitContainer1.SplitterDistance = 248;
            this.splitContainer1.TabIndex = 0;
            // 
            // linkLabel1
            // 
            this.linkLabel1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.linkLabel1.AutoSize = true;
            this.linkLabel1.BackColor = System.Drawing.Color.Black;
            this.linkLabel1.ForeColor = System.Drawing.Color.White;
            this.linkLabel1.LinkColor = System.Drawing.Color.White;
            this.linkLabel1.Location = new System.Drawing.Point(305, 0);
            this.linkLabel1.Name = "linkLabel1";
            this.linkLabel1.Size = new System.Drawing.Size(31, 13);
            this.linkLabel1.TabIndex = 1;
            this.linkLabel1.TabStop = true;
            this.linkLabel1.Text = "Clear";
            this.linkLabel1.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked);
            // 
            // listBox1
            // 
            this.listBox1.BackColor = System.Drawing.Color.Black;
            this.listBox1.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.listBox1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.listBox1.ForeColor = System.Drawing.Color.Lime;
            this.listBox1.IntegralHeight = false;
            this.listBox1.Location = new System.Drawing.Point(0, 0);
            this.listBox1.Name = "listBox1";
            this.listBox1.Size = new System.Drawing.Size(353, 248);
            this.listBox1.TabIndex = 0;
            this.listBox1.UseTabStops = false;
            // 
            // tabControl1
            // 
            this.tabControl1.Controls.Add(comPortTab);
            this.tabControl1.Controls.Add(sendTab);
            this.tabControl1.Controls.Add(this.tabPage1);
            this.tabControl1.Controls.Add(settingsTab);
            this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tabControl1.ItemSize = new System.Drawing.Size(58, 18);
            this.tabControl1.Location = new System.Drawing.Point(0, 0);
            this.tabControl1.Name = "tabControl1";
            this.tabControl1.SelectedIndex = 0;
            this.tabControl1.Size = new System.Drawing.Size(353, 154);
            this.tabControl1.TabIndex = 0;
            this.tabControl1.SelectedIndexChanged += new System.EventHandler(this.tabControl1_SelectedIndexChanged);
            // 
            // tabPage1
            // 
            this.tabPage1.Controls.Add(this.groupBox9);
            this.tabPage1.Location = new System.Drawing.Point(4, 22);
            this.tabPage1.Name = "tabPage1";
            this.tabPage1.Size = new System.Drawing.Size(345, 128);
            this.tabPage1.TabIndex = 4;
            this.tabPage1.Text = "Receive";
            this.tabPage1.UseVisualStyleBackColor = true;
            // 
            // groupBox9
            // 
            this.groupBox9.Controls.Add(this.checkBox4);
            this.groupBox9.Controls.Add(this.groupBox12);
            this.groupBox9.Controls.Add(this.button8);
            this.groupBox9.Controls.Add(this.groupBox10);
            this.groupBox9.Controls.Add(this.button4);
            this.groupBox9.Dock = System.Windows.Forms.DockStyle.Fill;
            this.groupBox9.Location = new System.Drawing.Point(0, 0);
            this.groupBox9.Name = "groupBox9";
            this.groupBox9.Size = new System.Drawing.Size(345, 128);
            this.groupBox9.TabIndex = 1;
            this.groupBox9.TabStop = false;
            this.groupBox9.Text = "Options";
            // 
            // checkBox4
            // 
            this.checkBox4.AutoSize = true;
            this.checkBox4.Location = new System.Drawing.Point(95, 20);
            this.checkBox4.Name = "checkBox4";
            this.checkBox4.Size = new System.Drawing.Size(163, 17);
            this.checkBox4.TabIndex = 5;
            this.checkBox4.Text = "Receive from a seperate port";
            this.checkBox4.UseVisualStyleBackColor = true;
            this.checkBox4.CheckedChanged += new System.EventHandler(this.checkBox4_CheckedChanged);
            // 
            // groupBox12
            // 
            this.groupBox12.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.groupBox12.Controls.Add(this.button10);
            this.groupBox12.Controls.Add(this.button9);
            this.groupBox12.Controls.Add(this.comboBox2);
            this.groupBox12.Controls.Add(this.label4);
            this.groupBox12.Controls.Add(this.label3);
            this.groupBox12.Controls.Add(this.comboBox1);
            this.groupBox12.Enabled = false;
            this.groupBox12.Location = new System.Drawing.Point(95, 43);
            this.groupBox12.Name = "groupBox12";
            this.groupBox12.Size = new System.Drawing.Size(247, 59);
            this.groupBox12.TabIndex = 4;
            this.groupBox12.TabStop = false;
            // 
            // button10
            // 
            this.button10.Location = new System.Drawing.Point(195, 28);
            this.button10.Name = "button10";
            this.button10.Size = new System.Drawing.Size(46, 23);
            this.button10.TabIndex = 5;
            this.button10.Text = "Open";
            this.button10.UseVisualStyleBackColor = true;
            this.button10.Click += new System.EventHandler(this.button10_Click);
            // 
            // button9
            // 
            this.button9.Location = new System.Drawing.Point(134, 28);
            this.button9.Name = "button9";
            this.button9.Size = new System.Drawing.Size(58, 23);
            this.button9.TabIndex = 4;
            this.button9.Text = "Refresh";
            this.button9.UseVisualStyleBackColor = true;
            this.button9.Click += new System.EventHandler(this.button9_Click);
            // 
            // comboBox2
            // 
            this.comboBox2.FormattingEnabled = true;
            this.comboBox2.Location = new System.Drawing.Point(70, 30);
            this.comboBox2.Name = "comboBox2";
            this.comboBox2.Size = new System.Drawing.Size(58, 21);
            this.comboBox2.TabIndex = 3;
            // 
            // label4
            // 
            this.label4.AutoSize = true;
            this.label4.Location = new System.Drawing.Point(67, 15);
            this.label4.Name = "label4";
            this.label4.Size = new System.Drawing.Size(61, 13);
            this.label4.TabIndex = 2;
            this.label4.Text = "Baud Rate:";
            // 
            // label3
            // 
            this.label3.AutoSize = true;
            this.label3.Location = new System.Drawing.Point(6, 14);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(29, 13);
            this.label3.TabIndex = 1;
            this.label3.Text = "Port:";
            // 
            // comboBox1
            // 
            this.comboBox1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.comboBox1.FormattingEnabled = true;
            this.comboBox1.Location = new System.Drawing.Point(6, 30);
            this.comboBox1.Name = "comboBox1";
            this.comboBox1.Size = new System.Drawing.Size(57, 21);
            this.comboBox1.TabIndex = 0;
            // 
            // button8
            // 
            this.button8.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.button8.Location = new System.Drawing.Point(267, 16);
            this.button8.Name = "button8";
            this.button8.Size = new System.Drawing.Size(75, 23);
            this.button8.TabIndex = 2;
            this.button8.Text = "Save Log";
            this.button8.UseVisualStyleBackColor = true;
            this.button8.Click += new System.EventHandler(this.button8_Click);
            // 
            // groupBox10
            // 
            this.groupBox10.Controls.Add(this.radioButton3);
            this.groupBox10.Controls.Add(this.radioButton2);
            this.groupBox10.Controls.Add(this.radioButton1);
            this.groupBox10.Dock = System.Windows.Forms.DockStyle.Left;
            this.groupBox10.Location = new System.Drawing.Point(3, 16);
            this.groupBox10.Name = "groupBox10";
            this.groupBox10.Size = new System.Drawing.Size(86, 86);
            this.groupBox10.TabIndex = 1;
            this.groupBox10.TabStop = false;
            this.groupBox10.Text = "Receive As";
            // 
            // radioButton3
            // 
            this.radioButton3.AutoSize = true;
            this.radioButton3.Location = new System.Drawing.Point(6, 65);
            this.radioButton3.Name = "radioButton3";
            this.radioButton3.Size = new System.Drawing.Size(69, 17);
            this.radioButton3.TabIndex = 2;
            this.radioButton3.Text = "One Byte";
            this.radioButton3.UseVisualStyleBackColor = true;
            // 
            // radioButton2
            // 
            this.radioButton2.AutoSize = true;
            this.radioButton2.Location = new System.Drawing.Point(6, 42);
            this.radioButton2.Name = "radioButton2";
            this.radioButton2.Size = new System.Drawing.Size(70, 17);
            this.radioButton2.TabIndex = 1;
            this.radioButton2.Text = "One Char";
            this.radioButton2.UseVisualStyleBackColor = true;
            // 
            // radioButton1
            // 
            this.radioButton1.AutoSize = true;
            this.radioButton1.Checked = true;
            this.radioButton1.Location = new System.Drawing.Point(6, 19);
            this.radioButton1.Name = "radioButton1";
            this.radioButton1.Size = new System.Drawing.Size(75, 17);
            this.radioButton1.TabIndex = 0;
            this.radioButton1.TabStop = true;
            this.radioButton1.Text = "String Line";
            this.radioButton1.UseVisualStyleBackColor = true;
            // 
            // button4
            // 
            this.button4.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.button4.Location = new System.Drawing.Point(3, 102);
            this.button4.Name = "button4";
            this.button4.Size = new System.Drawing.Size(339, 23);
            this.button4.TabIndex = 0;
            this.button4.Text = "Start Listening";
            this.button4.UseVisualStyleBackColor = true;
            this.button4.Click += new System.EventHandler(this.button4_Click);
            // 
            // openFileDialog1
            // 
            this.openFileDialog1.Filter = "Text File (.txt)|*.txt|Log File (.log)|*.log|Other|*.*";
            // 
            // manualSendThread
            // 
            this.manualSendThread.WorkerReportsProgress = true;
            this.manualSendThread.WorkerSupportsCancellation = true;
            this.manualSendThread.DoWork += new System.ComponentModel.DoWorkEventHandler(this.manualSendThread_DoWork);
            this.manualSendThread.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.manualSendThread_RunWorkerCompleted);
            this.manualSendThread.ProgressChanged += new System.ComponentModel.ProgressChangedEventHandler(this.manualSendThread_ProgressChanged);
            // 
            // fileDumpThread
            // 
            this.fileDumpThread.WorkerReportsProgress = true;
            this.fileDumpThread.WorkerSupportsCancellation = true;
            this.fileDumpThread.DoWork += new System.ComponentModel.DoWorkEventHandler(this.fileDumpThread_DoWork);
            this.fileDumpThread.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.fileDumpThread_RunWorkerCompleted);
            this.fileDumpThread.ProgressChanged += new System.ComponentModel.ProgressChangedEventHandler(this.fileDumpThread_ProgressChanged);
            // 
            // receiveThread
            // 
            this.receiveThread.WorkerSupportsCancellation = true;
            this.receiveThread.DoWork += new System.ComponentModel.DoWorkEventHandler(this.receiveThread_DoWork);
            // 
            // autoUpdateThread
            // 
            this.autoUpdateThread.DoWork += new System.ComponentModel.DoWorkEventHandler(this.autoUpdateThread_DoWork);
            // 
            // checkBox5
            // 
            this.checkBox5.AutoSize = true;
            this.checkBox5.Location = new System.Drawing.Point(113, 48);
            this.checkBox5.Name = "checkBox5";
            this.checkBox5.Size = new System.Drawing.Size(47, 17);
            this.checkBox5.TabIndex = 8;
            this.checkBox5.Text = "EOL";
            this.checkBox5.UseVisualStyleBackColor = true;
            // 
            // Form1
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(353, 406);
            this.Controls.Add(this.splitContainer1);
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.Name = "Form1";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "Data2Serial2";
            this.TopMost = true;
            this.Load += new System.EventHandler(this.Form1_Load);
            this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Form1_FormClosing);
            sendTab.ResumeLayout(false);
            this.splitContainer2.Panel1.ResumeLayout(false);
            this.splitContainer2.Panel2.ResumeLayout(false);
            this.splitContainer2.ResumeLayout(false);
            this.groupBox1.ResumeLayout(false);
            this.groupBox1.PerformLayout();
            this.groupBox8.ResumeLayout(false);
            this.groupBox8.PerformLayout();
            this.groupBox2.ResumeLayout(false);
            this.groupBox2.PerformLayout();
            this.groupBox3.ResumeLayout(false);
            this.groupBox3.PerformLayout();
            settingsTab.ResumeLayout(false);
            settingsTab.PerformLayout();
            this.groupBox11.ResumeLayout(false);
            this.groupBox11.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.trackBar1)).EndInit();
            comPortTab.ResumeLayout(false);
            this.splitContainer3.Panel1.ResumeLayout(false);
            this.splitContainer3.Panel2.ResumeLayout(false);
            this.splitContainer3.ResumeLayout(false);
            this.groupBox4.ResumeLayout(false);
            this.groupBox4.PerformLayout();
            this.groupBox7.ResumeLayout(false);
            this.groupBox6.ResumeLayout(false);
            this.groupBox5.ResumeLayout(false);
            this.splitContainer1.Panel1.ResumeLayout(false);
            this.splitContainer1.Panel1.PerformLayout();
            this.splitContainer1.Panel2.ResumeLayout(false);
            this.splitContainer1.ResumeLayout(false);
            this.tabControl1.ResumeLayout(false);
            this.tabPage1.ResumeLayout(false);
            this.groupBox9.ResumeLayout(false);
            this.groupBox9.PerformLayout();
            this.groupBox12.ResumeLayout(false);
            this.groupBox12.PerformLayout();
            this.groupBox10.ResumeLayout(false);
            this.groupBox10.PerformLayout();
            this.ResumeLayout(false);

        }
Esempio n. 15
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.Button  btnCancel;
     System.Windows.Forms.Button  btnOk;
     System.Windows.Forms.TabPage m_pagePaths;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(OptionsForm));
     this.label4 = new System.Windows.Forms.Label();
     this.m_updownMruFilesInList = new System.Windows.Forms.NumericUpDown();
     this.label3                    = new System.Windows.Forms.Label();
     this.pictureBox1               = new System.Windows.Forms.PictureBox();
     this.label2                    = new System.Windows.Forms.Label();
     this.m_updownMruFilesAtStart   = new System.Windows.Forms.NumericUpDown();
     this.toolStrip1                = new System.Windows.Forms.ToolStrip();
     this.m_btnAddToSearchPath      = new System.Windows.Forms.ToolStripButton();
     this.m_btnRemoveFromSearchPath = new System.Windows.Forms.ToolStripButton();
     this.m_btnMoveUpInSearchPath   = new System.Windows.Forms.ToolStripButton();
     this.m_btnMoveDownInSearchPath = new System.Windows.Forms.ToolStripButton();
     this.m_btnOpenPath             = new System.Windows.Forms.ToolStripButton();
     this.label1                    = new System.Windows.Forms.Label();
     this.m_listPaths               = new System.Windows.Forms.ListBox();
     this.m_tabOptions              = new System.Windows.Forms.TabControl();
     this.m_pageEditor              = new System.Windows.Forms.TabPage();
     this.label6                    = new System.Windows.Forms.Label();
     this.m_comboFontSizes          = new System.Windows.Forms.ComboBox();
     this.m_comboFontNames          = new System.Windows.Forms.ComboBox();
     this.label5                    = new System.Windows.Forms.Label();
     this.button1                   = new System.Windows.Forms.Button();
     this.m_chkConvertTabsToSpaces  = new System.Windows.Forms.CheckBox();
     btnCancel   = new System.Windows.Forms.Button();
     btnOk       = new System.Windows.Forms.Button();
     m_pagePaths = new System.Windows.Forms.TabPage();
     m_pagePaths.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.m_updownMruFilesInList)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.m_updownMruFilesAtStart)).BeginInit();
     this.toolStrip1.SuspendLayout();
     this.m_tabOptions.SuspendLayout();
     this.m_pageEditor.SuspendLayout();
     this.SuspendLayout();
     //
     // btnCancel
     //
     btnCancel.DialogResult            = System.Windows.Forms.DialogResult.Cancel;
     btnCancel.Location                = new System.Drawing.Point(417, 400);
     btnCancel.Name                    = "btnCancel";
     btnCancel.Size                    = new System.Drawing.Size(75, 23);
     btnCancel.TabIndex                = 1;
     btnCancel.Text                    = "Cancel";
     btnCancel.UseVisualStyleBackColor = true;
     //
     // btnOk
     //
     btnOk.DialogResult            = System.Windows.Forms.DialogResult.OK;
     btnOk.Location                = new System.Drawing.Point(336, 400);
     btnOk.Name                    = "btnOk";
     btnOk.Size                    = new System.Drawing.Size(75, 23);
     btnOk.TabIndex                = 0;
     btnOk.Text                    = "OK";
     btnOk.UseVisualStyleBackColor = true;
     //
     // m_pagePaths
     //
     m_pagePaths.Controls.Add(this.label4);
     m_pagePaths.Controls.Add(this.m_updownMruFilesInList);
     m_pagePaths.Controls.Add(this.label3);
     m_pagePaths.Controls.Add(this.pictureBox1);
     m_pagePaths.Controls.Add(this.label2);
     m_pagePaths.Controls.Add(this.m_updownMruFilesAtStart);
     m_pagePaths.Controls.Add(this.toolStrip1);
     m_pagePaths.Controls.Add(this.label1);
     m_pagePaths.Controls.Add(this.m_listPaths);
     m_pagePaths.Location = new System.Drawing.Point(4, 22);
     m_pagePaths.Name     = "m_pagePaths";
     m_pagePaths.Padding  = new System.Windows.Forms.Padding(3);
     m_pagePaths.Size     = new System.Drawing.Size(472, 356);
     m_pagePaths.TabIndex = 0;
     m_pagePaths.Text     = "Files";
     m_pagePaths.UseVisualStyleBackColor = true;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(83, 243);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(112, 13);
     this.label4.TabIndex = 17;
     this.label4.Text     = "Files in most recent list";
     //
     // m_updownMruFilesInList
     //
     this.m_updownMruFilesInList.Location = new System.Drawing.Point(33, 241);
     this.m_updownMruFilesInList.Maximum  = new decimal(new int[] {
         30,
         0,
         0,
         0
     });
     this.m_updownMruFilesInList.Minimum = new decimal(new int[] {
         1,
         0,
         0,
         0
     });
     this.m_updownMruFilesInList.Name     = "m_updownMruFilesInList";
     this.m_updownMruFilesInList.Size     = new System.Drawing.Size(43, 20);
     this.m_updownMruFilesInList.TabIndex = 3;
     this.m_updownMruFilesInList.Value    = new decimal(new int[] {
         10,
         0,
         0,
         0
     });
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(83, 218);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(102, 13);
     this.label3.TabIndex = 15;
     this.label3.Text     = "Files to open at start";
     //
     // pictureBox1
     //
     this.pictureBox1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.pictureBox1.Location    = new System.Drawing.Point(10, 174);
     this.pictureBox1.Name        = "pictureBox1";
     this.pictureBox1.Size        = new System.Drawing.Size(453, 2);
     this.pictureBox1.TabIndex    = 14;
     this.pictureBox1.TabStop     = false;
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(7, 188);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(92, 13);
     this.label2.TabIndex = 13;
     this.label2.Text     = "Most Recent Files";
     //
     // m_updownMruFilesAtStart
     //
     this.m_updownMruFilesAtStart.Location = new System.Drawing.Point(33, 214);
     this.m_updownMruFilesAtStart.Maximum  = new decimal(new int[] {
         10,
         0,
         0,
         0
     });
     this.m_updownMruFilesAtStart.Minimum = new decimal(new int[] {
         1,
         0,
         0,
         0
     });
     this.m_updownMruFilesAtStart.Name     = "m_updownMruFilesAtStart";
     this.m_updownMruFilesAtStart.Size     = new System.Drawing.Size(43, 20);
     this.m_updownMruFilesAtStart.TabIndex = 2;
     this.m_updownMruFilesAtStart.Value    = new decimal(new int[] {
         3,
         0,
         0,
         0
     });
     //
     // toolStrip1
     //
     this.toolStrip1.Dock = System.Windows.Forms.DockStyle.None;
     //this.toolStrip1.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
     this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.m_btnAddToSearchPath,
         this.m_btnRemoveFromSearchPath,
         this.m_btnMoveUpInSearchPath,
         this.m_btnMoveDownInSearchPath,
         this.m_btnOpenPath
     });
     //this.toolStrip1.LayoutStyle = System.Windows.Forms.ToolStripLayoutStyle.HorizontalStackWithOverflow;
     this.toolStrip1.Location = new System.Drawing.Point(353, 121);
     this.toolStrip1.Name     = "toolStrip1";
     this.toolStrip1.Size     = new System.Drawing.Size(118, 25);
     this.toolStrip1.TabIndex = 1;
     this.toolStrip1.Text     = "toolStrip1";
     //
     // m_btnAddToSearchPath
     //
     this.m_btnAddToSearchPath.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     //this.m_btnAddToSearchPath.Image = ((System.Drawing.Image)(resources.GetObject("m_btnAddToSearchPath.Image")));
     this.m_btnAddToSearchPath.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.m_btnAddToSearchPath.Name        = "m_btnAddToSearchPath";
     this.m_btnAddToSearchPath.Size        = new System.Drawing.Size(23, 22);
     this.m_btnAddToSearchPath.ToolTipText = "Add to search path";
     this.m_btnAddToSearchPath.Click      += new System.EventHandler(this.OnAddToSearchPath);
     //
     // m_btnRemoveFromSearchPath
     //
     this.m_btnRemoveFromSearchPath.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.m_btnRemoveFromSearchPath.Enabled      = false;
     //this.m_btnRemoveFromSearchPath.Image = ((System.Drawing.Image)(resources.GetObject("m_btnRemoveFromSearchPath.Image")));
     this.m_btnRemoveFromSearchPath.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.m_btnRemoveFromSearchPath.Name        = "m_btnRemoveFromSearchPath";
     this.m_btnRemoveFromSearchPath.Size        = new System.Drawing.Size(23, 22);
     this.m_btnRemoveFromSearchPath.ToolTipText = "Remove from search path";
     this.m_btnRemoveFromSearchPath.Click      += new System.EventHandler(this.OnRemoveFromSearchPath);
     //
     // m_btnMoveUpInSearchPath
     //
     this.m_btnMoveUpInSearchPath.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.m_btnMoveUpInSearchPath.Enabled      = false;
     //this.m_btnMoveUpInSearchPath.Image = ((System.Drawing.Image)(resources.GetObject("m_btnMoveUpInSearchPath.Image")));
     this.m_btnMoveUpInSearchPath.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.m_btnMoveUpInSearchPath.Name        = "m_btnMoveUpInSearchPath";
     this.m_btnMoveUpInSearchPath.Size        = new System.Drawing.Size(23, 22);
     this.m_btnMoveUpInSearchPath.ToolTipText = "Move up in search order";
     this.m_btnMoveUpInSearchPath.Click      += new System.EventHandler(this.OnMoveUpInSearchPath);
     //
     // m_btnMoveDownInSearchPath
     //
     this.m_btnMoveDownInSearchPath.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.m_btnMoveDownInSearchPath.Enabled      = false;
     //this.m_btnMoveDownInSearchPath.Image = ((System.Drawing.Image)(resources.GetObject("m_btnMoveDownInSearchPath.Image")));
     this.m_btnMoveDownInSearchPath.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.m_btnMoveDownInSearchPath.Name        = "m_btnMoveDownInSearchPath";
     this.m_btnMoveDownInSearchPath.Size        = new System.Drawing.Size(23, 22);
     this.m_btnMoveDownInSearchPath.ToolTipText = "Move down in search order";
     this.m_btnMoveDownInSearchPath.Click      += new System.EventHandler(this.OnMoveDownInSearchPath);
     //
     // m_btnOpenPath
     //
     this.m_btnOpenPath.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.m_btnOpenPath.Enabled      = false;
     //this.m_btnOpenPath.Image = ((System.Drawing.Image)(resources.GetObject("m_btnOpenPath.Image")));
     this.m_btnOpenPath.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.m_btnOpenPath.Name        = "m_btnOpenPath";
     this.m_btnOpenPath.Size        = new System.Drawing.Size(23, 22);
     this.m_btnOpenPath.ToolTipText = "Open in file explorer";
     this.m_btnOpenPath.Click      += new System.EventHandler(this.OnOpenPath);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.Location = new System.Drawing.Point(7, 7);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(109, 13);
     this.label1.TabIndex = 5;
     this.label1.Text     = "Module Search Paths";
     //
     // m_listPaths
     //
     this.m_listPaths.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                     | System.Windows.Forms.AnchorStyles.Right)));
     this.m_listPaths.FormattingEnabled   = true;
     this.m_listPaths.HorizontalScrollbar = true;
     this.m_listPaths.Location            = new System.Drawing.Point(33, 23);
     this.m_listPaths.Name                  = "m_listPaths";
     this.m_listPaths.Size                  = new System.Drawing.Size(433, 95);
     this.m_listPaths.TabIndex              = 0;
     this.m_listPaths.SelectedIndexChanged += new System.EventHandler(this.OnSearchPathItemSelect);
     this.m_listPaths.DoubleClick          += new System.EventHandler(this.ItemDoubleClick);
     //
     // m_tabOptions
     //
     this.m_tabOptions.Controls.Add(m_pagePaths);
     this.m_tabOptions.Controls.Add(this.m_pageEditor);
     this.m_tabOptions.Location      = new System.Drawing.Point(12, 12);
     this.m_tabOptions.Name          = "m_tabOptions";
     this.m_tabOptions.SelectedIndex = 0;
     this.m_tabOptions.Size          = new System.Drawing.Size(480, 382);
     this.m_tabOptions.TabIndex      = 10;
     //
     // m_pageEditor
     //
     this.m_pageEditor.Controls.Add(this.m_chkConvertTabsToSpaces);
     this.m_pageEditor.Controls.Add(this.label6);
     this.m_pageEditor.Controls.Add(this.m_comboFontSizes);
     this.m_pageEditor.Controls.Add(this.m_comboFontNames);
     this.m_pageEditor.Controls.Add(this.label5);
     this.m_pageEditor.Location = new System.Drawing.Point(4, 22);
     this.m_pageEditor.Name     = "m_pageEditor";
     this.m_pageEditor.Padding  = new System.Windows.Forms.Padding(3);
     this.m_pageEditor.Size     = new System.Drawing.Size(472, 356);
     this.m_pageEditor.TabIndex = 1;
     this.m_pageEditor.Text     = "Text Editor";
     this.m_pageEditor.UseVisualStyleBackColor = true;
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Location = new System.Drawing.Point(368, 26);
     this.label6.Name     = "label6";
     this.label6.Size     = new System.Drawing.Size(27, 13);
     this.label6.TabIndex = 4;
     this.label6.Text     = "Size";
     //
     // m_comboFontSizes
     //
     this.m_comboFontSizes.FormattingEnabled = true;
     this.m_comboFontSizes.Location          = new System.Drawing.Point(401, 23);
     this.m_comboFontSizes.Name     = "m_comboFontSizes";
     this.m_comboFontSizes.Size     = new System.Drawing.Size(65, 21);
     this.m_comboFontSizes.TabIndex = 3;
     //
     // m_comboFontNames
     //
     this.m_comboFontNames.FormattingEnabled = true;
     this.m_comboFontNames.Location          = new System.Drawing.Point(33, 23);
     this.m_comboFontNames.Name     = "m_comboFontNames";
     this.m_comboFontNames.Size     = new System.Drawing.Size(295, 21);
     this.m_comboFontNames.TabIndex = 2;
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(7, 7);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(28, 13);
     this.label5.TabIndex = 0;
     this.label5.Text     = "Font";
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(13, 400);
     this.button1.Name     = "button1";
     this.button1.Size     = new System.Drawing.Size(102, 23);
     this.button1.TabIndex = 11;
     this.button1.Text     = "Restore Defaults";
     this.button1.UseVisualStyleBackColor = true;
     this.button1.Click += new System.EventHandler(this.OnRestoreDefaults);
     //
     // m_chkConvertTabsToSpaces
     //
     this.m_chkConvertTabsToSpaces.AutoSize   = true;
     this.m_chkConvertTabsToSpaces.Checked    = true;
     this.m_chkConvertTabsToSpaces.CheckState = System.Windows.Forms.CheckState.Checked;
     this.m_chkConvertTabsToSpaces.Location   = new System.Drawing.Point(10, 65);
     this.m_chkConvertTabsToSpaces.Name       = "m_chkConvertTabsToSpaces";
     this.m_chkConvertTabsToSpaces.Size       = new System.Drawing.Size(135, 17);
     this.m_chkConvertTabsToSpaces.TabIndex   = 5;
     this.m_chkConvertTabsToSpaces.Text       = "Convert tabs to spaces";
     this.m_chkConvertTabsToSpaces.UseVisualStyleBackColor = true;
     //
     // OptionsForm
     //
     this.AcceptButton        = btnOk;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.CancelButton        = btnCancel;
     this.ClientSize          = new System.Drawing.Size(504, 435);
     this.Controls.Add(this.button1);
     this.Controls.Add(this.m_tabOptions);
     this.Controls.Add(btnOk);
     this.Controls.Add(btnCancel);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.Name            = "OptionsForm";
     this.ShowInTaskbar   = false;
     this.Text            = "Python Options";
     m_pagePaths.ResumeLayout(false);
     m_pagePaths.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.m_updownMruFilesInList)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.m_updownMruFilesAtStart)).EndInit();
     this.toolStrip1.ResumeLayout(false);
     this.toolStrip1.PerformLayout();
     this.m_tabOptions.ResumeLayout(false);
     this.m_pageEditor.ResumeLayout(false);
     this.m_pageEditor.PerformLayout();
     this.ResumeLayout(false);
 }
Esempio n. 16
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要修改
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
     System.Windows.Forms.GroupBox         bossKeyGroupBox;
     System.Windows.Forms.TableLayoutPanel tableLayoutPanel3;
     System.Windows.Forms.Label            label;
     System.Windows.Forms.GroupBox         trayIconGroupBox;
     System.Windows.Forms.TableLayoutPanel tableLayoutPanel2;
     System.Windows.Forms.TabControl       tabControl;
     System.Windows.Forms.TabPage          tabPage;
     this.enableTrayIcon           = new System.Windows.Forms.CheckBox();
     this.muteWhenBossCome         = new System.Windows.Forms.CheckBox();
     this.hideTrayIconWhenBossCome = new System.Windows.Forms.CheckBox();
     this.textBox               = new System.Windows.Forms.TextBox();
     this.activateWhenShow      = new System.Windows.Forms.CheckBox();
     this.hideWhenMinimized     = new System.Windows.Forms.CheckBox();
     this.hideWhenClickTrayIcon = new System.Windows.Forms.CheckBox();
     this.enableBossKey         = new System.Windows.Forms.CheckBox();
     tableLayoutPanel1          = new System.Windows.Forms.TableLayoutPanel();
     bossKeyGroupBox            = new System.Windows.Forms.GroupBox();
     tableLayoutPanel3          = new System.Windows.Forms.TableLayoutPanel();
     label             = new System.Windows.Forms.Label();
     trayIconGroupBox  = new System.Windows.Forms.GroupBox();
     tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
     tabControl        = new System.Windows.Forms.TabControl();
     tabPage           = new System.Windows.Forms.TabPage();
     tableLayoutPanel1.SuspendLayout();
     bossKeyGroupBox.SuspendLayout();
     tableLayoutPanel3.SuspendLayout();
     trayIconGroupBox.SuspendLayout();
     tableLayoutPanel2.SuspendLayout();
     tabControl.SuspendLayout();
     tabPage.SuspendLayout();
     this.SuspendLayout();
     //
     // tableLayoutPanel1
     //
     tableLayoutPanel1.AutoSize     = true;
     tableLayoutPanel1.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     tableLayoutPanel1.ColumnCount  = 1;
     tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     tableLayoutPanel1.Controls.Add(this.enableTrayIcon, 0, 0);
     tableLayoutPanel1.Controls.Add(bossKeyGroupBox, 0, 3);
     tableLayoutPanel1.Controls.Add(this.activateWhenShow, 0, 4);
     tableLayoutPanel1.Controls.Add(trayIconGroupBox, 0, 1);
     tableLayoutPanel1.Controls.Add(this.enableBossKey, 0, 2);
     tableLayoutPanel1.Dock     = System.Windows.Forms.DockStyle.Fill;
     tableLayoutPanel1.Location = new System.Drawing.Point(3, 3);
     tableLayoutPanel1.Name     = "tableLayoutPanel1";
     tableLayoutPanel1.RowCount = 5;
     tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
     tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
     tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
     tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
     tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
     tableLayoutPanel1.Size     = new System.Drawing.Size(280, 263);
     tableLayoutPanel1.TabIndex = 7;
     //
     // enableTrayIcon
     //
     this.enableTrayIcon.AutoSize = true;
     this.enableTrayIcon.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.enableTrayIcon.Location = new System.Drawing.Point(3, 3);
     this.enableTrayIcon.Name     = "enableTrayIcon";
     this.enableTrayIcon.Size     = new System.Drawing.Size(274, 16);
     this.enableTrayIcon.TabIndex = 1;
     this.enableTrayIcon.Text     = "启用托盘图标";
     this.enableTrayIcon.UseVisualStyleBackColor = true;
     //
     // bossKeyGroupBox
     //
     bossKeyGroupBox.AutoSize     = true;
     bossKeyGroupBox.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     bossKeyGroupBox.Controls.Add(tableLayoutPanel3);
     bossKeyGroupBox.Dock     = System.Windows.Forms.DockStyle.Fill;
     bossKeyGroupBox.Location = new System.Drawing.Point(3, 117);
     bossKeyGroupBox.Name     = "bossKeyGroupBox";
     bossKeyGroupBox.Size     = new System.Drawing.Size(274, 91);
     bossKeyGroupBox.TabIndex = 5;
     bossKeyGroupBox.TabStop  = false;
     bossKeyGroupBox.Text     = "老板键";
     //
     // tableLayoutPanel3
     //
     tableLayoutPanel3.AutoSize     = true;
     tableLayoutPanel3.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     tableLayoutPanel3.ColumnCount  = 2;
     tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
     tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     tableLayoutPanel3.Controls.Add(this.muteWhenBossCome, 0, 2);
     tableLayoutPanel3.Controls.Add(label, 0, 0);
     tableLayoutPanel3.Controls.Add(this.hideTrayIconWhenBossCome, 0, 1);
     tableLayoutPanel3.Controls.Add(this.textBox, 1, 0);
     tableLayoutPanel3.Dock     = System.Windows.Forms.DockStyle.Fill;
     tableLayoutPanel3.Location = new System.Drawing.Point(3, 17);
     tableLayoutPanel3.Name     = "tableLayoutPanel3";
     tableLayoutPanel3.RowCount = 3;
     tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle());
     tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle());
     tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle());
     tableLayoutPanel3.Size     = new System.Drawing.Size(268, 71);
     tableLayoutPanel3.TabIndex = 7;
     //
     // muteWhenBossCome
     //
     this.muteWhenBossCome.AutoSize = true;
     tableLayoutPanel3.SetColumnSpan(this.muteWhenBossCome, 2);
     this.muteWhenBossCome.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.muteWhenBossCome.Location = new System.Drawing.Point(3, 52);
     this.muteWhenBossCome.Name     = "muteWhenBossCome";
     this.muteWhenBossCome.Size     = new System.Drawing.Size(262, 16);
     this.muteWhenBossCome.TabIndex = 4;
     this.muteWhenBossCome.Text     = "按下老板键时关闭声音";
     this.muteWhenBossCome.UseVisualStyleBackColor = true;
     //
     // label
     //
     label.AutoSize  = true;
     label.Dock      = System.Windows.Forms.DockStyle.Fill;
     label.Location  = new System.Drawing.Point(3, 3);
     label.Margin    = new System.Windows.Forms.Padding(3);
     label.Name      = "label";
     label.Size      = new System.Drawing.Size(41, 21);
     label.TabIndex  = 0;
     label.Text      = "老板键";
     label.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // hideTrayIconWhenBossCome
     //
     this.hideTrayIconWhenBossCome.AutoSize = true;
     tableLayoutPanel3.SetColumnSpan(this.hideTrayIconWhenBossCome, 2);
     this.hideTrayIconWhenBossCome.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.hideTrayIconWhenBossCome.Location = new System.Drawing.Point(3, 30);
     this.hideTrayIconWhenBossCome.Name     = "hideTrayIconWhenBossCome";
     this.hideTrayIconWhenBossCome.Size     = new System.Drawing.Size(262, 16);
     this.hideTrayIconWhenBossCome.TabIndex = 3;
     this.hideTrayIconWhenBossCome.Text     = "按下老板键时隐藏托盘图标";
     this.hideTrayIconWhenBossCome.UseVisualStyleBackColor = true;
     //
     // textBox
     //
     this.textBox.Cursor   = System.Windows.Forms.Cursors.Arrow;
     this.textBox.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.textBox.Location = new System.Drawing.Point(50, 3);
     this.textBox.Name     = "textBox";
     this.textBox.Size     = new System.Drawing.Size(215, 21);
     this.textBox.TabIndex = 1;
     this.textBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.TextBox_KeyDown);
     //
     // activateWhenShow
     //
     this.activateWhenShow.AutoSize = true;
     this.activateWhenShow.Dock     = System.Windows.Forms.DockStyle.Top;
     this.activateWhenShow.Location = new System.Drawing.Point(3, 214);
     this.activateWhenShow.Name     = "activateWhenShow";
     this.activateWhenShow.Size     = new System.Drawing.Size(274, 16);
     this.activateWhenShow.TabIndex = 6;
     this.activateWhenShow.Text     = "恢复被隐藏的窗口时将其激活(前置)";
     this.activateWhenShow.UseVisualStyleBackColor = true;
     //
     // trayIconGroupBox
     //
     trayIconGroupBox.AutoSize     = true;
     trayIconGroupBox.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     trayIconGroupBox.Controls.Add(tableLayoutPanel2);
     trayIconGroupBox.Dock     = System.Windows.Forms.DockStyle.Fill;
     trayIconGroupBox.Location = new System.Drawing.Point(3, 25);
     trayIconGroupBox.Name     = "trayIconGroupBox";
     trayIconGroupBox.Size     = new System.Drawing.Size(274, 64);
     trayIconGroupBox.TabIndex = 3;
     trayIconGroupBox.TabStop  = false;
     trayIconGroupBox.Text     = "托盘图标";
     //
     // tableLayoutPanel2
     //
     tableLayoutPanel2.AutoSize     = true;
     tableLayoutPanel2.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     tableLayoutPanel2.ColumnCount  = 1;
     tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     tableLayoutPanel2.Controls.Add(this.hideWhenMinimized, 0, 1);
     tableLayoutPanel2.Controls.Add(this.hideWhenClickTrayIcon, 0, 0);
     tableLayoutPanel2.Dock     = System.Windows.Forms.DockStyle.Fill;
     tableLayoutPanel2.Location = new System.Drawing.Point(3, 17);
     tableLayoutPanel2.Name     = "tableLayoutPanel2";
     tableLayoutPanel2.RowCount = 2;
     tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle());
     tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle());
     tableLayoutPanel2.Size     = new System.Drawing.Size(268, 44);
     tableLayoutPanel2.TabIndex = 8;
     //
     // hideWhenMinimized
     //
     this.hideWhenMinimized.AutoSize = true;
     this.hideWhenMinimized.Location = new System.Drawing.Point(3, 25);
     this.hideWhenMinimized.Name     = "hideWhenMinimized";
     this.hideWhenMinimized.Size     = new System.Drawing.Size(156, 16);
     this.hideWhenMinimized.TabIndex = 0;
     this.hideWhenMinimized.Text     = "最小化时隐藏窗口到托盘";
     this.hideWhenMinimized.UseVisualStyleBackColor = true;
     //
     // hideWhenClickTrayIcon
     //
     this.hideWhenClickTrayIcon.AutoSize = true;
     this.hideWhenClickTrayIcon.Location = new System.Drawing.Point(3, 3);
     this.hideWhenClickTrayIcon.Name     = "hideWhenClickTrayIcon";
     this.hideWhenClickTrayIcon.Size     = new System.Drawing.Size(156, 16);
     this.hideWhenClickTrayIcon.TabIndex = 2;
     this.hideWhenClickTrayIcon.Text     = "点击托盘图标时隐藏窗口";
     this.hideWhenClickTrayIcon.UseVisualStyleBackColor = true;
     //
     // enableBossKey
     //
     this.enableBossKey.AutoSize = true;
     this.enableBossKey.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.enableBossKey.Location = new System.Drawing.Point(3, 95);
     this.enableBossKey.Name     = "enableBossKey";
     this.enableBossKey.Size     = new System.Drawing.Size(274, 16);
     this.enableBossKey.TabIndex = 4;
     this.enableBossKey.Text     = "启用老板键";
     this.enableBossKey.UseVisualStyleBackColor = true;
     //
     // tabControl
     //
     tabControl.Controls.Add(tabPage);
     tabControl.Dock          = System.Windows.Forms.DockStyle.Fill;
     tabControl.Location      = new System.Drawing.Point(0, 0);
     tabControl.Name          = "tabControl";
     tabControl.SelectedIndex = 0;
     tabControl.Size          = new System.Drawing.Size(294, 295);
     tabControl.TabIndex      = 0;
     //
     // tabPage
     //
     tabPage.Controls.Add(tableLayoutPanel1);
     tabPage.Location = new System.Drawing.Point(4, 22);
     tabPage.Name     = "tabPage";
     tabPage.Padding  = new System.Windows.Forms.Padding(3);
     tabPage.Size     = new System.Drawing.Size(286, 269);
     tabPage.TabIndex = 0;
     tabPage.Text     = "托盘图标和老板键";
     tabPage.UseVisualStyleBackColor = true;
     //
     // Settings
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(tabControl);
     this.Name  = "Settings";
     this.Size  = new System.Drawing.Size(294, 295);
     this.Load += new System.EventHandler(this.Settings_Load);
     tableLayoutPanel1.ResumeLayout(false);
     tableLayoutPanel1.PerformLayout();
     bossKeyGroupBox.ResumeLayout(false);
     bossKeyGroupBox.PerformLayout();
     tableLayoutPanel3.ResumeLayout(false);
     tableLayoutPanel3.PerformLayout();
     trayIconGroupBox.ResumeLayout(false);
     trayIconGroupBox.PerformLayout();
     tableLayoutPanel2.ResumeLayout(false);
     tableLayoutPanel2.PerformLayout();
     tabControl.ResumeLayout(false);
     tabPage.ResumeLayout(false);
     tabPage.PerformLayout();
     this.ResumeLayout(false);
 }
Esempio n. 17
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            System.Windows.Forms.ToolStripMenuItem quitMenuItem;
            System.Windows.Forms.ToolStripMenuItem stopMenuItem;
            System.Windows.Forms.ToolStripMenuItem settingsMenuItem;
            System.Windows.Forms.SplitContainer groupsDetailsSplit;
            System.Windows.Forms.TabPage groupContentsPage;
            System.Windows.Forms.TabPage statusPage;
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Main));
            this.serverMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.groupMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.prefMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.groupsTree = new System.Windows.Forms.TreeView();
            this.groupTabs = new System.Windows.Forms.TabControl();
            this.groupList = new System.Windows.Forms.ListView();
            this.DownloadsPage = new System.Windows.Forms.TabPage();
            this.downloadsList = new System.Windows.Forms.ListView();
            this.statusLog = new System.Windows.Forms.TextBox();
            this.menu = new System.Windows.Forms.MenuStrip();
            this.fileMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.nZBToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.actionsMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.updateMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.refreshMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.pauseMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolbar = new System.Windows.Forms.ToolStrip();
            this.updateButton = new System.Windows.Forms.ToolStripButton();
            this.stopButton = new System.Windows.Forms.ToolStripButton();
            this.pauseButton = new System.Windows.Forms.ToolStripButton();
            this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
            this.serverButton = new System.Windows.Forms.ToolStripButton();
            this.groupButton = new System.Windows.Forms.ToolStripButton();
            this.prefButton = new System.Windows.Forms.ToolStripButton();
            this.statusStrip = new System.Windows.Forms.StatusStrip();
            this.generalStatus = new System.Windows.Forms.ToolStripStatusLabel();
            this.speedStatus = new System.Windows.Forms.ToolStripStatusLabel();
            this.downloadedStatus = new System.Windows.Forms.ToolStripStatusLabel();
            this.pendingStatus = new System.Windows.Forms.ToolStripStatusLabel();
            this.timeRemainigStatus = new System.Windows.Forms.ToolStripStatusLabel();
            this.filterPanel = new System.Windows.Forms.Panel();
            this.groupActiveSplit = new System.Windows.Forms.SplitContainer();
            quitMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            stopMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            settingsMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            groupsDetailsSplit = new System.Windows.Forms.SplitContainer();
            groupContentsPage = new System.Windows.Forms.TabPage();
            statusPage = new System.Windows.Forms.TabPage();
            groupsDetailsSplit.Panel1.SuspendLayout();
            groupsDetailsSplit.Panel2.SuspendLayout();
            groupsDetailsSplit.SuspendLayout();
            this.groupTabs.SuspendLayout();
            groupContentsPage.SuspendLayout();
            this.DownloadsPage.SuspendLayout();
            statusPage.SuspendLayout();
            this.menu.SuspendLayout();
            this.toolbar.SuspendLayout();
            this.statusStrip.SuspendLayout();
            this.groupActiveSplit.Panel1.SuspendLayout();
            this.groupActiveSplit.SuspendLayout();
            this.SuspendLayout();
            // 
            // quitMenuItem
            // 
            quitMenuItem.Name = "quitMenuItem";
            quitMenuItem.Size = new System.Drawing.Size(94, 22);
            quitMenuItem.Text = "Quit";
            // 
            // stopMenuItem
            // 
            stopMenuItem.Name = "stopMenuItem";
            stopMenuItem.Size = new System.Drawing.Size(158, 22);
            stopMenuItem.Text = "Stop Update";
            // 
            // settingsMenuItem
            // 
            settingsMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.serverMenuItem,
            this.groupMenuItem,
            this.prefMenuItem});
            settingsMenuItem.Name = "settingsMenuItem";
            settingsMenuItem.Size = new System.Drawing.Size(58, 20);
            settingsMenuItem.Text = "Settings";
            // 
            // serverMenuItem
            // 
            this.serverMenuItem.Name = "serverMenuItem";
            this.serverMenuItem.Size = new System.Drawing.Size(132, 22);
            this.serverMenuItem.Text = "Server";
            this.serverMenuItem.Click += new System.EventHandler(this.serverToolStripMenuItem_Click);
            // 
            // groupMenuItem
            // 
            this.groupMenuItem.Name = "groupMenuItem";
            this.groupMenuItem.Size = new System.Drawing.Size(132, 22);
            this.groupMenuItem.Text = "Group";
            this.groupMenuItem.Click += new System.EventHandler(this.groupMenuItem_Click);
            // 
            // prefMenuItem
            // 
            this.prefMenuItem.Name = "prefMenuItem";
            this.prefMenuItem.Size = new System.Drawing.Size(132, 22);
            this.prefMenuItem.Text = "Preferences";
            // 
            // groupsDetailsSplit
            // 
            groupsDetailsSplit.Dock = System.Windows.Forms.DockStyle.Fill;
            groupsDetailsSplit.Location = new System.Drawing.Point(0, 0);
            groupsDetailsSplit.Name = "groupsDetailsSplit";
            // 
            // groupsDetailsSplit.Panel1
            // 
            groupsDetailsSplit.Panel1.Controls.Add(this.groupsTree);
            // 
            // groupsDetailsSplit.Panel2
            // 
            groupsDetailsSplit.Panel2.Controls.Add(this.groupTabs);
            groupsDetailsSplit.Size = new System.Drawing.Size(1015, 340);
            groupsDetailsSplit.SplitterDistance = 214;
            groupsDetailsSplit.TabIndex = 0;
            groupsDetailsSplit.Text = "splitContainer2";
            // 
            // groupsTree
            // 
            this.groupsTree.Dock = System.Windows.Forms.DockStyle.Fill;
            this.groupsTree.Location = new System.Drawing.Point(0, 0);
            this.groupsTree.Name = "groupsTree";
            this.groupsTree.Size = new System.Drawing.Size(214, 340);
            this.groupsTree.TabIndex = 0;
            // 
            // groupTabs
            // 
            this.groupTabs.Alignment = System.Windows.Forms.TabAlignment.Bottom;
            this.groupTabs.Controls.Add(groupContentsPage);
            this.groupTabs.Controls.Add(this.DownloadsPage);
            this.groupTabs.Controls.Add(statusPage);
            this.groupTabs.Dock = System.Windows.Forms.DockStyle.Fill;
            this.groupTabs.Location = new System.Drawing.Point(0, 0);
            this.groupTabs.Name = "groupTabs";
            this.groupTabs.SelectedIndex = 0;
            this.groupTabs.Size = new System.Drawing.Size(797, 340);
            this.groupTabs.TabIndex = 0;
            // 
            // groupContentsPage
            // 
            groupContentsPage.Controls.Add(this.groupList);
            groupContentsPage.Location = new System.Drawing.Point(4, 4);
            groupContentsPage.Name = "groupContentsPage";
            groupContentsPage.Padding = new System.Windows.Forms.Padding(3);
            groupContentsPage.Size = new System.Drawing.Size(789, 314);
            groupContentsPage.TabIndex = 0;
            groupContentsPage.Text = "Group";
            // 
            // groupList
            // 
            this.groupList.Dock = System.Windows.Forms.DockStyle.Fill;
            this.groupList.Location = new System.Drawing.Point(3, 3);
            this.groupList.Name = "groupList";
            this.groupList.Size = new System.Drawing.Size(783, 308);
            this.groupList.TabIndex = 0;
            this.groupList.UseCompatibleStateImageBehavior = false;
            // 
            // DownloadsPage
            // 
            this.DownloadsPage.Controls.Add(this.downloadsList);
            this.DownloadsPage.Location = new System.Drawing.Point(4, 4);
            this.DownloadsPage.Name = "DownloadsPage";
            this.DownloadsPage.Padding = new System.Windows.Forms.Padding(3);
            this.DownloadsPage.Size = new System.Drawing.Size(789, 314);
            this.DownloadsPage.TabIndex = 1;
            this.DownloadsPage.Text = "Downloads";
            // 
            // downloadsList
            // 
            this.downloadsList.Dock = System.Windows.Forms.DockStyle.Fill;
            this.downloadsList.Location = new System.Drawing.Point(3, 3);
            this.downloadsList.Name = "downloadsList";
            this.downloadsList.Size = new System.Drawing.Size(783, 308);
            this.downloadsList.TabIndex = 0;
            this.downloadsList.UseCompatibleStateImageBehavior = false;
            // 
            // statusPage
            // 
            statusPage.Controls.Add(this.statusLog);
            statusPage.Location = new System.Drawing.Point(4, 4);
            statusPage.Name = "statusPage";
            statusPage.Padding = new System.Windows.Forms.Padding(3);
            statusPage.Size = new System.Drawing.Size(789, 314);
            statusPage.TabIndex = 2;
            statusPage.Text = "Status";
            // 
            // statusLog
            // 
            this.statusLog.Dock = System.Windows.Forms.DockStyle.Fill;
            this.statusLog.Location = new System.Drawing.Point(3, 3);
            this.statusLog.Multiline = true;
            this.statusLog.Name = "statusLog";
            this.statusLog.ReadOnly = true;
            this.statusLog.Size = new System.Drawing.Size(783, 308);
            this.statusLog.TabIndex = 0;
            // 
            // menu
            // 
            this.menu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.fileMenuItem,
            this.actionsMenuItem,
            settingsMenuItem});
            this.menu.Location = new System.Drawing.Point(0, 0);
            this.menu.Name = "menu";
            this.menu.Size = new System.Drawing.Size(1015, 24);
            this.menu.TabIndex = 0;
            // 
            // fileMenuItem
            // 
            this.fileMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.nZBToolStripMenuItem,
            quitMenuItem});
            this.fileMenuItem.Name = "fileMenuItem";
            this.fileMenuItem.Size = new System.Drawing.Size(35, 20);
            this.fileMenuItem.Text = "File";
            // 
            // nZBToolStripMenuItem
            // 
            this.nZBToolStripMenuItem.Name = "nZBToolStripMenuItem";
            this.nZBToolStripMenuItem.Size = new System.Drawing.Size(94, 22);
            this.nZBToolStripMenuItem.Text = "NZB";
            this.nZBToolStripMenuItem.Click += new System.EventHandler(this.nZBToolStripMenuItem_Click);
            // 
            // actionsMenuItem
            // 
            this.actionsMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.updateMenuItem,
            stopMenuItem,
            this.refreshMenuItem,
            this.pauseMenuItem});
            this.actionsMenuItem.Name = "actionsMenuItem";
            this.actionsMenuItem.Size = new System.Drawing.Size(54, 20);
            this.actionsMenuItem.Text = "Actions";
            // 
            // updateMenuItem
            // 
            this.updateMenuItem.Name = "updateMenuItem";
            this.updateMenuItem.Size = new System.Drawing.Size(158, 22);
            this.updateMenuItem.Text = "Update All";
            // 
            // refreshMenuItem
            // 
            this.refreshMenuItem.Name = "refreshMenuItem";
            this.refreshMenuItem.Size = new System.Drawing.Size(158, 22);
            this.refreshMenuItem.Text = "Refresh";
            // 
            // pauseMenuItem
            // 
            this.pauseMenuItem.Name = "pauseMenuItem";
            this.pauseMenuItem.Size = new System.Drawing.Size(158, 22);
            this.pauseMenuItem.Text = "Pause Downloads";
            // 
            // toolbar
            // 
            this.toolbar.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.updateButton,
            this.stopButton,
            this.pauseButton,
            this.toolStripSeparator1,
            this.serverButton,
            this.prefButton,
            this.groupButton});
            this.toolbar.Location = new System.Drawing.Point(0, 24);
            this.toolbar.Name = "toolbar";
            this.toolbar.Size = new System.Drawing.Size(1015, 25);
            this.toolbar.TabIndex = 1;
            this.toolbar.Text = "toolStrip1";
            // 
            // updateButton
            // 
            this.updateButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.updateButton.Image = ((System.Drawing.Image)(resources.GetObject("updateButton.Image")));
            this.updateButton.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.updateButton.Name = "updateButton";
            this.updateButton.Size = new System.Drawing.Size(23, 22);
            this.updateButton.Text = "toolStripButton1";
            this.updateButton.ToolTipText = "Update All";
            // 
            // stopButton
            // 
            this.stopButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.stopButton.Image = ((System.Drawing.Image)(resources.GetObject("stopButton.Image")));
            this.stopButton.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.stopButton.Name = "stopButton";
            this.stopButton.Size = new System.Drawing.Size(23, 22);
            this.stopButton.Text = "Stop Update";
            // 
            // pauseButton
            // 
            this.pauseButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.pauseButton.Image = ((System.Drawing.Image)(resources.GetObject("pauseButton.Image")));
            this.pauseButton.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.pauseButton.Name = "pauseButton";
            this.pauseButton.Size = new System.Drawing.Size(23, 22);
            this.pauseButton.Text = "Pause Downloads";
            // 
            // toolStripSeparator1
            // 
            this.toolStripSeparator1.Name = "toolStripSeparator1";
            this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25);
            // 
            // serverButton
            // 
            this.serverButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.serverButton.Image = ((System.Drawing.Image)(resources.GetObject("serverButton.Image")));
            this.serverButton.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.serverButton.Name = "serverButton";
            this.serverButton.Size = new System.Drawing.Size(23, 22);
            this.serverButton.Text = "Server Settings";
            // 
            // groupButton
            // 
            this.groupButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.groupButton.Image = ((System.Drawing.Image)(resources.GetObject("groupButton.Image")));
            this.groupButton.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.groupButton.Name = "groupButton";
            this.groupButton.Size = new System.Drawing.Size(23, 22);
            this.groupButton.Text = "Group Settings";
            // 
            // prefButton
            // 
            this.prefButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.prefButton.Image = ((System.Drawing.Image)(resources.GetObject("prefButton.Image")));
            this.prefButton.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.prefButton.Name = "prefButton";
            this.prefButton.Size = new System.Drawing.Size(23, 22);
            this.prefButton.Text = "Preferences";
            // 
            // statusStrip
            // 
            this.statusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.generalStatus,
            this.speedStatus,
            this.downloadedStatus,
            this.pendingStatus,
            this.timeRemainigStatus});
            this.statusStrip.Location = new System.Drawing.Point(0, 585);
            this.statusStrip.Name = "statusStrip";
            this.statusStrip.Size = new System.Drawing.Size(1015, 22);
            this.statusStrip.TabIndex = 2;
            this.statusStrip.Text = "statusStrip1";
            // 
            // generalStatus
            // 
            this.generalStatus.Name = "generalStatus";
            this.generalStatus.Padding = new System.Windows.Forms.Padding(5, 0, 0, 0);
            this.generalStatus.Size = new System.Drawing.Size(115, 17);
            this.generalStatus.Text = "Ready                        ";
            this.generalStatus.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // speedStatus
            // 
            this.speedStatus.Name = "speedStatus";
            this.speedStatus.Size = new System.Drawing.Size(36, 17);
            this.speedStatus.Text = "0KiB/s";
            // 
            // downloadedStatus
            // 
            this.downloadedStatus.Name = "downloadedStatus";
            this.downloadedStatus.Size = new System.Drawing.Size(29, 17);
            this.downloadedStatus.Text = "0MiB";
            // 
            // pendingStatus
            // 
            this.pendingStatus.Name = "pendingStatus";
            this.pendingStatus.Size = new System.Drawing.Size(29, 17);
            this.pendingStatus.Text = "0MiB";
            // 
            // timeRemainigStatus
            // 
            this.timeRemainigStatus.Name = "timeRemainigStatus";
            this.timeRemainigStatus.Size = new System.Drawing.Size(45, 17);
            this.timeRemainigStatus.Text = "0:00:00";
            // 
            // filterPanel
            // 
            this.filterPanel.Dock = System.Windows.Forms.DockStyle.Top;
            this.filterPanel.Location = new System.Drawing.Point(0, 49);
            this.filterPanel.Name = "filterPanel";
            this.filterPanel.Size = new System.Drawing.Size(1015, 67);
            this.filterPanel.TabIndex = 3;
            // 
            // groupActiveSplit
            // 
            this.groupActiveSplit.Dock = System.Windows.Forms.DockStyle.Fill;
            this.groupActiveSplit.Location = new System.Drawing.Point(0, 116);
            this.groupActiveSplit.Name = "groupActiveSplit";
            this.groupActiveSplit.Orientation = System.Windows.Forms.Orientation.Horizontal;
            // 
            // groupActiveSplit.Panel1
            // 
            this.groupActiveSplit.Panel1.Controls.Add(groupsDetailsSplit);
            this.groupActiveSplit.Size = new System.Drawing.Size(1015, 469);
            this.groupActiveSplit.SplitterDistance = 340;
            this.groupActiveSplit.TabIndex = 4;
            this.groupActiveSplit.Text = "splitContainer1";
            // 
            // Main
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(1015, 607);
            this.Controls.Add(this.groupActiveSplit);
            this.Controls.Add(this.filterPanel);
            this.Controls.Add(this.toolbar);
            this.Controls.Add(this.statusStrip);
            this.Controls.Add(this.menu);
            this.MainMenuStrip = this.menu;
            this.Name = "Main";
            this.Text = "SharpNews - 0.1Alpha";
            groupsDetailsSplit.Panel1.ResumeLayout(false);
            groupsDetailsSplit.Panel2.ResumeLayout(false);
            groupsDetailsSplit.ResumeLayout(false);
            this.groupTabs.ResumeLayout(false);
            groupContentsPage.ResumeLayout(false);
            this.DownloadsPage.ResumeLayout(false);
            statusPage.ResumeLayout(false);
            statusPage.PerformLayout();
            this.menu.ResumeLayout(false);
            this.menu.PerformLayout();
            this.toolbar.ResumeLayout(false);
            this.toolbar.PerformLayout();
            this.statusStrip.ResumeLayout(false);
            this.statusStrip.PerformLayout();
            this.groupActiveSplit.Panel1.ResumeLayout(false);
            this.groupActiveSplit.ResumeLayout(false);
            this.ResumeLayout(false);
            this.PerformLayout();

        }
Esempio n. 18
0
        /// <summary>
        /// Обязательный метод для поддержки конструктора - не изменяйте
        /// содержимое данного метода при помощи редактора кода.
        /// </summary>
        private void InitializeComponent()
        {
            System.Windows.Forms.TabPage tabImap;
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
            this.chkSentSsl = new System.Windows.Forms.CheckBox();
            this.label14 = new System.Windows.Forms.Label();
            this.txtSentPort = new System.Windows.Forms.TextBox();
            this.lblSentPort = new System.Windows.Forms.Label();
            this.label15 = new System.Windows.Forms.Label();
            this.txtSentHost = new System.Windows.Forms.TextBox();
            this.txtSentLogin = new System.Windows.Forms.TextBox();
            this.txtSentPassword = new System.Windows.Forms.TextBox();
            this.lblImapHost = new System.Windows.Forms.Label();
            this.label16 = new System.Windows.Forms.Label();
            this.lstIpRanges = new System.Windows.Forms.ListBox();
            this.label6 = new System.Windows.Forms.Label();
            this.txtIpFrom = new System.Windows.Forms.TextBox();
            this.pnlIpRanges = new System.Windows.Forms.GroupBox();
            this.btnIpRangeDelete = new System.Windows.Forms.Button();
            this.btnAddIpRange = new System.Windows.Forms.Button();
            this.label7 = new System.Windows.Forms.Label();
            this.txtIpTo = new System.Windows.Forms.TextBox();
            this.btnExchange = new System.Windows.Forms.Button();
            this.btnStart = new System.Windows.Forms.Button();
            this.btnStop = new System.Windows.Forms.Button();
            this.lblCheckTime = new System.Windows.Forms.Label();
            this.label1 = new System.Windows.Forms.Label();
            this.exchangeDelay = new System.Windows.Forms.NumericUpDown();
            this.label3 = new System.Windows.Forms.Label();
            this.label4 = new System.Windows.Forms.Label();
            this.tabControl1 = new System.Windows.Forms.TabControl();
            this.tabScan = new System.Windows.Forms.TabPage();
            this.lblLastExchange = new System.Windows.Forms.Label();
            this.label12 = new System.Windows.Forms.Label();
            this.label10 = new System.Windows.Forms.Label();
            this.tabDevices = new System.Windows.Forms.TabPage();
            this.tabExchange = new System.Windows.Forms.TabPage();
            this.cmbServerTypes = new System.Windows.Forms.ComboBox();
            this.btnCancel = new System.Windows.Forms.Button();
            this.btnSave = new System.Windows.Forms.Button();
            this.tcMail = new System.Windows.Forms.TabControl();
            this.tabMsExchange = new System.Windows.Forms.TabPage();
            this.cmbMsExchangeServerVersions = new System.Windows.Forms.ComboBox();
            this.label18 = new System.Windows.Forms.Label();
            this.txtMsExchLogin = new System.Windows.Forms.TextBox();
            this.txtMsExchPass = new System.Windows.Forms.TextBox();
            this.label19 = new System.Windows.Forms.Label();
            this.label20 = new System.Windows.Forms.Label();
            this.tabSmtp = new System.Windows.Forms.TabPage();
            this.label2 = new System.Windows.Forms.Label();
            this.txtSmtpHost = new System.Windows.Forms.TextBox();
            this.label5 = new System.Windows.Forms.Label();
            this.txtSmtpPort = new System.Windows.Forms.TextBox();
            this.chkSslEnable = new System.Windows.Forms.CheckBox();
            this.label13 = new System.Windows.Forms.Label();
            this.label8 = new System.Windows.Forms.Label();
            this.txtSmtpLogin = new System.Windows.Forms.TextBox();
            this.label9 = new System.Windows.Forms.Label();
            this.txtSmtpPass = new System.Windows.Forms.TextBox();
            this.lblExchangeNote = new System.Windows.Forms.Label();
            this.btnSmtpTest = new System.Windows.Forms.Button();
            this.chkSave2Sent = new System.Windows.Forms.CheckBox();
            this.label11 = new System.Windows.Forms.Label();
            this.txtMailCopyTo = new System.Windows.Forms.TextBox();
            tabImap = new System.Windows.Forms.TabPage();
            tabImap.SuspendLayout();
            this.pnlIpRanges.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.exchangeDelay)).BeginInit();
            this.tabControl1.SuspendLayout();
            this.tabScan.SuspendLayout();
            this.tabDevices.SuspendLayout();
            this.tabExchange.SuspendLayout();
            this.tcMail.SuspendLayout();
            this.tabMsExchange.SuspendLayout();
            this.tabSmtp.SuspendLayout();
            this.SuspendLayout();
            // 
            // tabImap
            // 
            tabImap.Controls.Add(this.chkSentSsl);
            tabImap.Controls.Add(this.label14);
            tabImap.Controls.Add(this.txtSentPort);
            tabImap.Controls.Add(this.lblSentPort);
            tabImap.Controls.Add(this.label15);
            tabImap.Controls.Add(this.txtSentHost);
            tabImap.Controls.Add(this.txtSentLogin);
            tabImap.Controls.Add(this.txtSentPassword);
            tabImap.Controls.Add(this.lblImapHost);
            tabImap.Controls.Add(this.label16);
            tabImap.Location = new System.Drawing.Point(4, 22);
            tabImap.Name = "tabImap";
            tabImap.Padding = new System.Windows.Forms.Padding(3);
            tabImap.Size = new System.Drawing.Size(305, 134);
            tabImap.TabIndex = 1;
            tabImap.Text = "IMAP";
            tabImap.UseVisualStyleBackColor = true;
            // 
            // chkSentSsl
            // 
            this.chkSentSsl.AutoSize = true;
            this.chkSentSsl.Location = new System.Drawing.Point(113, 113);
            this.chkSentSsl.Name = "chkSentSsl";
            this.chkSentSsl.Size = new System.Drawing.Size(15, 14);
            this.chkSentSsl.TabIndex = 18;
            this.chkSentSsl.UseVisualStyleBackColor = true;
            this.chkSentSsl.CheckedChanged += new System.EventHandler(this.SaveSentSettings);
            // 
            // label14
            // 
            this.label14.AutoSize = true;
            this.label14.Location = new System.Drawing.Point(6, 114);
            this.label14.Name = "label14";
            this.label14.Size = new System.Drawing.Size(79, 13);
            this.label14.TabIndex = 18;
            this.label14.Text = "Включить SSL";
            // 
            // txtSentPort
            // 
            this.txtSentPort.Location = new System.Drawing.Point(113, 35);
            this.txtSentPort.Name = "txtSentPort";
            this.txtSentPort.Size = new System.Drawing.Size(186, 20);
            this.txtSentPort.TabIndex = 15;
            this.txtSentPort.WordWrap = false;
            this.txtSentPort.TextChanged += new System.EventHandler(this.SaveSentSettings);
            // 
            // lblSentPort
            // 
            this.lblSentPort.AutoSize = true;
            this.lblSentPort.Location = new System.Drawing.Point(6, 38);
            this.lblSentPort.Name = "lblSentPort";
            this.lblSentPort.Size = new System.Drawing.Size(32, 13);
            this.lblSentPort.TabIndex = 16;
            this.lblSentPort.Text = "Порт";
            // 
            // label15
            // 
            this.label15.AutoSize = true;
            this.label15.Location = new System.Drawing.Point(6, 64);
            this.label15.Name = "label15";
            this.label15.Size = new System.Drawing.Size(103, 13);
            this.label15.TabIndex = 13;
            this.label15.Text = "Имя пользователя";
            // 
            // txtSentHost
            // 
            this.txtSentHost.Location = new System.Drawing.Point(113, 9);
            this.txtSentHost.Name = "txtSentHost";
            this.txtSentHost.Size = new System.Drawing.Size(186, 20);
            this.txtSentHost.TabIndex = 14;
            this.txtSentHost.TextChanged += new System.EventHandler(this.SaveSentSettings);
            // 
            // txtSentLogin
            // 
            this.txtSentLogin.Location = new System.Drawing.Point(113, 61);
            this.txtSentLogin.Name = "txtSentLogin";
            this.txtSentLogin.Size = new System.Drawing.Size(186, 20);
            this.txtSentLogin.TabIndex = 16;
            this.txtSentLogin.TextChanged += new System.EventHandler(this.SaveSentSettings);
            // 
            // txtSentPassword
            // 
            this.txtSentPassword.Location = new System.Drawing.Point(113, 87);
            this.txtSentPassword.Name = "txtSentPassword";
            this.txtSentPassword.PasswordChar = '*';
            this.txtSentPassword.Size = new System.Drawing.Size(186, 20);
            this.txtSentPassword.TabIndex = 17;
            this.txtSentPassword.TextChanged += new System.EventHandler(this.SaveSentSettings);
            // 
            // lblImapHost
            // 
            this.lblImapHost.AutoSize = true;
            this.lblImapHost.Location = new System.Drawing.Point(6, 12);
            this.lblImapHost.Name = "lblImapHost";
            this.lblImapHost.Size = new System.Drawing.Size(74, 13);
            this.lblImapHost.TabIndex = 15;
            this.lblImapHost.Text = "Имя сервера";
            // 
            // label16
            // 
            this.label16.AutoSize = true;
            this.label16.Location = new System.Drawing.Point(6, 90);
            this.label16.Name = "label16";
            this.label16.Size = new System.Drawing.Size(45, 13);
            this.label16.TabIndex = 15;
            this.label16.Text = "Пароль";
            // 
            // lstIpRanges
            // 
            this.lstIpRanges.FormattingEnabled = true;
            this.lstIpRanges.Location = new System.Drawing.Point(6, 45);
            this.lstIpRanges.Name = "lstIpRanges";
            this.lstIpRanges.Size = new System.Drawing.Size(214, 225);
            this.lstIpRanges.TabIndex = 1;
            // 
            // label6
            // 
            this.label6.AutoSize = true;
            this.label6.Location = new System.Drawing.Point(-1, 90);
            this.label6.Name = "label6";
            this.label6.Size = new System.Drawing.Size(0, 13);
            this.label6.TabIndex = 13;
            // 
            // txtIpFrom
            // 
            this.txtIpFrom.Location = new System.Drawing.Point(6, 19);
            this.txtIpFrom.Name = "txtIpFrom";
            this.txtIpFrom.Size = new System.Drawing.Size(100, 20);
            this.txtIpFrom.TabIndex = 14;
            this.txtIpFrom.Text = "192.168.1.1";
            // 
            // pnlIpRanges
            // 
            this.pnlIpRanges.Controls.Add(this.btnIpRangeDelete);
            this.pnlIpRanges.Controls.Add(this.btnAddIpRange);
            this.pnlIpRanges.Controls.Add(this.label7);
            this.pnlIpRanges.Controls.Add(this.txtIpTo);
            this.pnlIpRanges.Controls.Add(this.txtIpFrom);
            this.pnlIpRanges.Controls.Add(this.lstIpRanges);
            this.pnlIpRanges.Location = new System.Drawing.Point(6, 6);
            this.pnlIpRanges.Name = "pnlIpRanges";
            this.pnlIpRanges.Size = new System.Drawing.Size(307, 271);
            this.pnlIpRanges.TabIndex = 15;
            this.pnlIpRanges.TabStop = false;
            this.pnlIpRanges.Text = "ip диапазон";
            // 
            // btnIpRangeDelete
            // 
            this.btnIpRangeDelete.Location = new System.Drawing.Point(226, 44);
            this.btnIpRangeDelete.Name = "btnIpRangeDelete";
            this.btnIpRangeDelete.Size = new System.Drawing.Size(75, 23);
            this.btnIpRangeDelete.TabIndex = 18;
            this.btnIpRangeDelete.Text = "Удалить";
            this.btnIpRangeDelete.UseVisualStyleBackColor = true;
            this.btnIpRangeDelete.Click += new System.EventHandler(this.btnIpRangeDelete_Click);
            // 
            // btnAddIpRange
            // 
            this.btnAddIpRange.Location = new System.Drawing.Point(226, 18);
            this.btnAddIpRange.Name = "btnAddIpRange";
            this.btnAddIpRange.Size = new System.Drawing.Size(75, 23);
            this.btnAddIpRange.TabIndex = 17;
            this.btnAddIpRange.Text = "Добавить";
            this.btnAddIpRange.UseVisualStyleBackColor = true;
            this.btnAddIpRange.Click += new System.EventHandler(this.btnAddIpRange_Click);
            // 
            // label7
            // 
            this.label7.AutoSize = true;
            this.label7.Location = new System.Drawing.Point(108, 22);
            this.label7.Name = "label7";
            this.label7.Size = new System.Drawing.Size(10, 13);
            this.label7.TabIndex = 16;
            this.label7.Text = "-";
            // 
            // txtIpTo
            // 
            this.txtIpTo.Location = new System.Drawing.Point(120, 19);
            this.txtIpTo.Name = "txtIpTo";
            this.txtIpTo.Size = new System.Drawing.Size(100, 20);
            this.txtIpTo.TabIndex = 15;
            this.txtIpTo.Text = "192.168.1.50";
            // 
            // btnExchange
            // 
            this.btnExchange.Location = new System.Drawing.Point(218, 255);
            this.btnExchange.Name = "btnExchange";
            this.btnExchange.Size = new System.Drawing.Size(94, 22);
            this.btnExchange.TabIndex = 16;
            this.btnExchange.Text = "Сейчас";
            this.btnExchange.UseVisualStyleBackColor = true;
            this.btnExchange.Click += new System.EventHandler(this.btnExchange_Click);
            // 
            // btnStart
            // 
            this.btnStart.Font = new System.Drawing.Font("Microsoft Sans Serif", 20F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
            this.btnStart.Location = new System.Drawing.Point(6, 6);
            this.btnStart.Name = "btnStart";
            this.btnStart.Size = new System.Drawing.Size(310, 74);
            this.btnStart.TabIndex = 18;
            this.btnStart.Text = "Ручной запуск";
            this.btnStart.UseVisualStyleBackColor = true;
            this.btnStart.Click += new System.EventHandler(this.btnStart_Click);
            // 
            // btnStop
            // 
            this.btnStop.Enabled = false;
            this.btnStop.Font = new System.Drawing.Font("Microsoft Sans Serif", 16F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
            this.btnStop.Location = new System.Drawing.Point(6, 184);
            this.btnStop.Name = "btnStop";
            this.btnStop.Size = new System.Drawing.Size(310, 93);
            this.btnStop.TabIndex = 19;
            this.btnStop.Text = "Остановить";
            this.btnStop.UseVisualStyleBackColor = true;
            this.btnStop.Click += new System.EventHandler(this.btnStop_Click);
            // 
            // lblCheckTime
            // 
            this.lblCheckTime.AutoSize = true;
            this.lblCheckTime.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
            this.lblCheckTime.Location = new System.Drawing.Point(157, 100);
            this.lblCheckTime.Name = "lblCheckTime";
            this.lblCheckTime.Size = new System.Drawing.Size(0, 18);
            this.lblCheckTime.TabIndex = 20;
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(7, 260);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(128, 13);
            this.label1.TabIndex = 21;
            this.label1.Text = "Синхронизация каждые";
            this.label1.Click += new System.EventHandler(this.label1_Click);
            // 
            // exchangeDelay
            // 
            this.exchangeDelay.Location = new System.Drawing.Point(141, 258);
            this.exchangeDelay.Maximum = new decimal(new int[] {
            72,
            0,
            0,
            0});
            this.exchangeDelay.Minimum = new decimal(new int[] {
            3,
            0,
            0,
            0});
            this.exchangeDelay.Name = "exchangeDelay";
            this.exchangeDelay.Size = new System.Drawing.Size(41, 20);
            this.exchangeDelay.TabIndex = 23;
            this.exchangeDelay.Value = new decimal(new int[] {
            3,
            0,
            0,
            0});
            this.exchangeDelay.ValueChanged += new System.EventHandler(this.exchangeDelay_ValueChanged);
            // 
            // label3
            // 
            this.label3.AutoSize = true;
            this.label3.Location = new System.Drawing.Point(188, 260);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(27, 13);
            this.label3.TabIndex = 24;
            this.label3.Text = "час.";
            // 
            // label4
            // 
            this.label4.AutoSize = true;
            this.label4.Location = new System.Drawing.Point(109, 255);
            this.label4.Name = "label4";
            this.label4.Size = new System.Drawing.Size(0, 13);
            this.label4.TabIndex = 25;
            this.label4.Click += new System.EventHandler(this.label4_Click);
            // 
            // tabControl1
            // 
            this.tabControl1.Controls.Add(this.tabScan);
            this.tabControl1.Controls.Add(this.tabDevices);
            this.tabControl1.Controls.Add(this.tabExchange);
            this.tabControl1.Location = new System.Drawing.Point(2, 1);
            this.tabControl1.Name = "tabControl1";
            this.tabControl1.SelectedIndex = 0;
            this.tabControl1.Size = new System.Drawing.Size(327, 309);
            this.tabControl1.TabIndex = 26;
            this.tabControl1.SelectedIndexChanged += new System.EventHandler(this.tabControl1_SelectedIndexChanged);
            // 
            // tabScan
            // 
            this.tabScan.Controls.Add(this.lblLastExchange);
            this.tabScan.Controls.Add(this.label12);
            this.tabScan.Controls.Add(this.label10);
            this.tabScan.Controls.Add(this.btnStart);
            this.tabScan.Controls.Add(this.btnStop);
            this.tabScan.Controls.Add(this.lblCheckTime);
            this.tabScan.Location = new System.Drawing.Point(4, 22);
            this.tabScan.Name = "tabScan";
            this.tabScan.Padding = new System.Windows.Forms.Padding(3);
            this.tabScan.Size = new System.Drawing.Size(319, 283);
            this.tabScan.TabIndex = 0;
            this.tabScan.Text = "Сканирование";
            this.tabScan.UseVisualStyleBackColor = true;
            // 
            // lblLastExchange
            // 
            this.lblLastExchange.AutoSize = true;
            this.lblLastExchange.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
            this.lblLastExchange.Location = new System.Drawing.Point(157, 140);
            this.lblLastExchange.Name = "lblLastExchange";
            this.lblLastExchange.Size = new System.Drawing.Size(0, 18);
            this.lblLastExchange.TabIndex = 25;
            // 
            // label12
            // 
            this.label12.AutoSize = true;
            this.label12.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
            this.label12.Location = new System.Drawing.Point(16, 140);
            this.label12.Name = "label12";
            this.label12.Size = new System.Drawing.Size(135, 18);
            this.label12.TabIndex = 24;
            this.label12.Text = "Последний обмен";
            // 
            // label10
            // 
            this.label10.AutoSize = true;
            this.label10.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
            this.label10.Location = new System.Drawing.Point(37, 100);
            this.label10.Name = "label10";
            this.label10.Size = new System.Drawing.Size(114, 18);
            this.label10.TabIndex = 22;
            this.label10.Text = "Последнй скан";
            // 
            // tabDevices
            // 
            this.tabDevices.Controls.Add(this.pnlIpRanges);
            this.tabDevices.Location = new System.Drawing.Point(4, 22);
            this.tabDevices.Name = "tabDevices";
            this.tabDevices.Padding = new System.Windows.Forms.Padding(3);
            this.tabDevices.Size = new System.Drawing.Size(319, 283);
            this.tabDevices.TabIndex = 1;
            this.tabDevices.Text = "Аппараты";
            this.tabDevices.UseVisualStyleBackColor = true;
            // 
            // tabExchange
            // 
            this.tabExchange.Controls.Add(this.txtMailCopyTo);
            this.tabExchange.Controls.Add(this.label11);
            this.tabExchange.Controls.Add(this.cmbServerTypes);
            this.tabExchange.Controls.Add(this.btnCancel);
            this.tabExchange.Controls.Add(this.btnSave);
            this.tabExchange.Controls.Add(this.tcMail);
            this.tabExchange.Controls.Add(this.lblExchangeNote);
            this.tabExchange.Controls.Add(this.label4);
            this.tabExchange.Controls.Add(this.label1);
            this.tabExchange.Controls.Add(this.btnSmtpTest);
            this.tabExchange.Controls.Add(this.chkSave2Sent);
            this.tabExchange.Controls.Add(this.label3);
            this.tabExchange.Controls.Add(this.btnExchange);
            this.tabExchange.Controls.Add(this.exchangeDelay);
            this.tabExchange.Location = new System.Drawing.Point(4, 22);
            this.tabExchange.Name = "tabExchange";
            this.tabExchange.Padding = new System.Windows.Forms.Padding(3);
            this.tabExchange.Size = new System.Drawing.Size(319, 283);
            this.tabExchange.TabIndex = 2;
            this.tabExchange.Text = "Отправка почты";
            this.tabExchange.UseVisualStyleBackColor = true;
            this.tabExchange.Click += new System.EventHandler(this.tabExchange_Click);
            // 
            // cmbServerTypes
            // 
            this.cmbServerTypes.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cmbServerTypes.FormattingEnabled = true;
            this.cmbServerTypes.Location = new System.Drawing.Point(3, 6);
            this.cmbServerTypes.Name = "cmbServerTypes";
            this.cmbServerTypes.Size = new System.Drawing.Size(145, 21);
            this.cmbServerTypes.TabIndex = 30;
            this.cmbServerTypes.SelectedIndexChanged += new System.EventHandler(this.cmbServerTypes_SelectedIndexChanged);
            // 
            // btnCancel
            // 
            this.btnCancel.Location = new System.Drawing.Point(218, 223);
            this.btnCancel.Name = "btnCancel";
            this.btnCancel.Size = new System.Drawing.Size(94, 23);
            this.btnCancel.TabIndex = 29;
            this.btnCancel.Text = "Отмена";
            this.btnCancel.UseVisualStyleBackColor = true;
            this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
            // 
            // btnSave
            // 
            this.btnSave.Location = new System.Drawing.Point(122, 223);
            this.btnSave.Name = "btnSave";
            this.btnSave.Size = new System.Drawing.Size(90, 23);
            this.btnSave.TabIndex = 28;
            this.btnSave.Text = "Сохранить";
            this.btnSave.UseVisualStyleBackColor = true;
            this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
            // 
            // tcMail
            // 
            this.tcMail.Controls.Add(this.tabMsExchange);
            this.tcMail.Controls.Add(this.tabSmtp);
            this.tcMail.Controls.Add(tabImap);
            this.tcMail.Location = new System.Drawing.Point(3, 29);
            this.tcMail.Name = "tcMail";
            this.tcMail.SelectedIndex = 0;
            this.tcMail.Size = new System.Drawing.Size(313, 160);
            this.tcMail.TabIndex = 27;
            this.tcMail.SelectedIndexChanged += new System.EventHandler(this.tcMail_SelectedIndexChanged);
            // 
            // tabMsExchange
            // 
            this.tabMsExchange.Controls.Add(this.cmbMsExchangeServerVersions);
            this.tabMsExchange.Controls.Add(this.label18);
            this.tabMsExchange.Controls.Add(this.txtMsExchLogin);
            this.tabMsExchange.Controls.Add(this.txtMsExchPass);
            this.tabMsExchange.Controls.Add(this.label19);
            this.tabMsExchange.Controls.Add(this.label20);
            this.tabMsExchange.Location = new System.Drawing.Point(4, 22);
            this.tabMsExchange.Name = "tabMsExchange";
            this.tabMsExchange.Padding = new System.Windows.Forms.Padding(3);
            this.tabMsExchange.Size = new System.Drawing.Size(305, 134);
            this.tabMsExchange.TabIndex = 2;
            this.tabMsExchange.Text = "MS Exchange";
            this.tabMsExchange.UseVisualStyleBackColor = true;
            // 
            // cmbMsExchangeServerVersions
            // 
            this.cmbMsExchangeServerVersions.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cmbMsExchangeServerVersions.FormattingEnabled = true;
            this.cmbMsExchangeServerVersions.Location = new System.Drawing.Point(113, 8);
            this.cmbMsExchangeServerVersions.Name = "cmbMsExchangeServerVersions";
            this.cmbMsExchangeServerVersions.Size = new System.Drawing.Size(186, 21);
            this.cmbMsExchangeServerVersions.TabIndex = 29;
            // 
            // label18
            // 
            this.label18.AutoSize = true;
            this.label18.Location = new System.Drawing.Point(6, 38);
            this.label18.Name = "label18";
            this.label18.Size = new System.Drawing.Size(103, 13);
            this.label18.TabIndex = 19;
            this.label18.Text = "Имя пользователя";
            // 
            // txtMsExchLogin
            // 
            this.txtMsExchLogin.Location = new System.Drawing.Point(113, 35);
            this.txtMsExchLogin.Name = "txtMsExchLogin";
            this.txtMsExchLogin.Size = new System.Drawing.Size(186, 20);
            this.txtMsExchLogin.TabIndex = 25;
            // 
            // txtMsExchPass
            // 
            this.txtMsExchPass.Location = new System.Drawing.Point(113, 61);
            this.txtMsExchPass.Name = "txtMsExchPass";
            this.txtMsExchPass.PasswordChar = '*';
            this.txtMsExchPass.Size = new System.Drawing.Size(186, 20);
            this.txtMsExchPass.TabIndex = 26;
            // 
            // label19
            // 
            this.label19.AutoSize = true;
            this.label19.Location = new System.Drawing.Point(6, 13);
            this.label19.Name = "label19";
            this.label19.Size = new System.Drawing.Size(44, 13);
            this.label19.TabIndex = 22;
            this.label19.Text = "Версия";
            // 
            // label20
            // 
            this.label20.AutoSize = true;
            this.label20.Location = new System.Drawing.Point(6, 64);
            this.label20.Name = "label20";
            this.label20.Size = new System.Drawing.Size(45, 13);
            this.label20.TabIndex = 23;
            this.label20.Text = "Пароль";
            // 
            // tabSmtp
            // 
            this.tabSmtp.Controls.Add(this.label2);
            this.tabSmtp.Controls.Add(this.txtSmtpHost);
            this.tabSmtp.Controls.Add(this.label5);
            this.tabSmtp.Controls.Add(this.txtSmtpPort);
            this.tabSmtp.Controls.Add(this.chkSslEnable);
            this.tabSmtp.Controls.Add(this.label13);
            this.tabSmtp.Controls.Add(this.label8);
            this.tabSmtp.Controls.Add(this.txtSmtpLogin);
            this.tabSmtp.Controls.Add(this.label9);
            this.tabSmtp.Controls.Add(this.txtSmtpPass);
            this.tabSmtp.Location = new System.Drawing.Point(4, 22);
            this.tabSmtp.Name = "tabSmtp";
            this.tabSmtp.Padding = new System.Windows.Forms.Padding(3);
            this.tabSmtp.Size = new System.Drawing.Size(305, 134);
            this.tabSmtp.TabIndex = 0;
            this.tabSmtp.Text = "SMTP";
            this.tabSmtp.UseVisualStyleBackColor = true;
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Location = new System.Drawing.Point(6, 12);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(74, 13);
            this.label2.TabIndex = 0;
            this.label2.Text = "Имя сервера";
            this.label2.Click += new System.EventHandler(this.label2_Click);
            // 
            // txtSmtpHost
            // 
            this.txtSmtpHost.Location = new System.Drawing.Point(113, 9);
            this.txtSmtpHost.Name = "txtSmtpHost";
            this.txtSmtpHost.Size = new System.Drawing.Size(186, 20);
            this.txtSmtpHost.TabIndex = 1;
            this.txtSmtpHost.TextChanged += new System.EventHandler(this.SaveSmtpSettings);
            // 
            // label5
            // 
            this.label5.AutoSize = true;
            this.label5.Location = new System.Drawing.Point(6, 38);
            this.label5.Name = "label5";
            this.label5.Size = new System.Drawing.Size(32, 13);
            this.label5.TabIndex = 2;
            this.label5.Text = "Порт";
            // 
            // txtSmtpPort
            // 
            this.txtSmtpPort.Location = new System.Drawing.Point(113, 35);
            this.txtSmtpPort.Name = "txtSmtpPort";
            this.txtSmtpPort.Size = new System.Drawing.Size(186, 20);
            this.txtSmtpPort.TabIndex = 3;
            this.txtSmtpPort.TextChanged += new System.EventHandler(this.SaveSmtpSettings);
            // 
            // chkSslEnable
            // 
            this.chkSslEnable.AutoSize = true;
            this.chkSslEnable.Location = new System.Drawing.Point(113, 113);
            this.chkSslEnable.Name = "chkSslEnable";
            this.chkSslEnable.Size = new System.Drawing.Size(15, 14);
            this.chkSslEnable.TabIndex = 11;
            this.chkSslEnable.UseVisualStyleBackColor = true;
            this.chkSslEnable.CheckedChanged += new System.EventHandler(this.SaveSmtpSettings);
            // 
            // label13
            // 
            this.label13.AutoSize = true;
            this.label13.Location = new System.Drawing.Point(6, 114);
            this.label13.Name = "label13";
            this.label13.Size = new System.Drawing.Size(79, 13);
            this.label13.TabIndex = 12;
            this.label13.Text = "Включить SSL";
            // 
            // label8
            // 
            this.label8.AutoSize = true;
            this.label8.Location = new System.Drawing.Point(6, 64);
            this.label8.Name = "label8";
            this.label8.Size = new System.Drawing.Size(103, 13);
            this.label8.TabIndex = 4;
            this.label8.Text = "Имя пользователя";
            // 
            // txtSmtpLogin
            // 
            this.txtSmtpLogin.Location = new System.Drawing.Point(113, 61);
            this.txtSmtpLogin.Name = "txtSmtpLogin";
            this.txtSmtpLogin.Size = new System.Drawing.Size(186, 20);
            this.txtSmtpLogin.TabIndex = 5;
            this.txtSmtpLogin.TextChanged += new System.EventHandler(this.SaveSmtpSettings);
            // 
            // label9
            // 
            this.label9.AutoSize = true;
            this.label9.Location = new System.Drawing.Point(6, 90);
            this.label9.Name = "label9";
            this.label9.Size = new System.Drawing.Size(45, 13);
            this.label9.TabIndex = 6;
            this.label9.Text = "Пароль";
            // 
            // txtSmtpPass
            // 
            this.txtSmtpPass.Location = new System.Drawing.Point(113, 87);
            this.txtSmtpPass.Name = "txtSmtpPass";
            this.txtSmtpPass.PasswordChar = '*';
            this.txtSmtpPass.Size = new System.Drawing.Size(186, 20);
            this.txtSmtpPass.TabIndex = 7;
            this.txtSmtpPass.TextChanged += new System.EventHandler(this.SaveSmtpSettings);
            // 
            // lblExchangeNote
            // 
            this.lblExchangeNote.AutoSize = true;
            this.lblExchangeNote.Location = new System.Drawing.Point(154, 250);
            this.lblExchangeNote.Name = "lblExchangeNote";
            this.lblExchangeNote.Size = new System.Drawing.Size(0, 13);
            this.lblExchangeNote.TabIndex = 26;
            // 
            // btnSmtpTest
            // 
            this.btnSmtpTest.Location = new System.Drawing.Point(3, 223);
            this.btnSmtpTest.Name = "btnSmtpTest";
            this.btnSmtpTest.Size = new System.Drawing.Size(113, 23);
            this.btnSmtpTest.TabIndex = 10;
            this.btnSmtpTest.Text = "Тестовое письмо";
            this.btnSmtpTest.UseVisualStyleBackColor = true;
            this.btnSmtpTest.Click += new System.EventHandler(this.btnSmtpTest_Click);
            // 
            // chkSave2Sent
            // 
            this.chkSave2Sent.AutoSize = true;
            this.chkSave2Sent.Location = new System.Drawing.Point(154, 8);
            this.chkSave2Sent.Name = "chkSave2Sent";
            this.chkSave2Sent.Size = new System.Drawing.Size(162, 17);
            this.chkSave2Sent.TabIndex = 13;
            this.chkSave2Sent.Text = "сохранять в отправленных";
            this.chkSave2Sent.UseVisualStyleBackColor = true;
            this.chkSave2Sent.CheckedChanged += new System.EventHandler(this.chkSave2Sent_CheckedChanged);
            // 
            // label11
            // 
            this.label11.AutoSize = true;
            this.label11.Location = new System.Drawing.Point(13, 199);
            this.label11.Name = "label11";
            this.label11.Size = new System.Drawing.Size(79, 13);
            this.label11.TabIndex = 31;
            this.label11.Text = "Копия письма";
            // 
            // txtMailCopyTo
            // 
            this.txtMailCopyTo.Location = new System.Drawing.Point(120, 196);
            this.txtMailCopyTo.Name = "txtMailCopyTo";
            this.txtMailCopyTo.Size = new System.Drawing.Size(192, 20);
            this.txtMailCopyTo.TabIndex = 32;
            // 
            // Form1
            // 
            this.ClientSize = new System.Drawing.Size(331, 314);
            this.Controls.Add(this.tabControl1);
            this.Controls.Add(this.label6);
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.MaximumSize = new System.Drawing.Size(1000, 1000);
            this.MinimumSize = new System.Drawing.Size(347, 316);
            this.Name = "Form1";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "UN1T Счетчик";
            this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Form1_FormClosing);
            this.Load += new System.EventHandler(this.Form1_Load);
            this.Resize += new System.EventHandler(this.Form1_Resize);
            tabImap.ResumeLayout(false);
            tabImap.PerformLayout();
            this.pnlIpRanges.ResumeLayout(false);
            this.pnlIpRanges.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.exchangeDelay)).EndInit();
            this.tabControl1.ResumeLayout(false);
            this.tabScan.ResumeLayout(false);
            this.tabScan.PerformLayout();
            this.tabDevices.ResumeLayout(false);
            this.tabExchange.ResumeLayout(false);
            this.tabExchange.PerformLayout();
            this.tcMail.ResumeLayout(false);
            this.tabMsExchange.ResumeLayout(false);
            this.tabMsExchange.PerformLayout();
            this.tabSmtp.ResumeLayout(false);
            this.tabSmtp.PerformLayout();
            this.ResumeLayout(false);
            this.PerformLayout();

        }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            System.Windows.Forms.Label nameLabel;
            System.Windows.Forms.Label modelLabel;
            System.Windows.Forms.Label idLabel;
            System.Windows.Forms.GroupBox firmwareGroupBox;
            System.Windows.Forms.Label firmwareVersionLabel;
            System.Windows.Forms.Label buildDateLabel;
            System.Windows.Forms.TabPage quadrocopterPage;
            System.Windows.Forms.GroupBox hardwareGroupBox;
            System.Windows.Forms.Label magnetometerLabel;
            System.Windows.Forms.Label gyroSensorLabel;
            System.Windows.Forms.GroupBox motorsGroupBox;
            System.Windows.Forms.Label minValueLabel;
            System.Windows.Forms.Label hoverValueLabel;
            System.Windows.Forms.Label maxValueLabel;
            System.Windows.Forms.Label idleValueLabel;
            System.Windows.Forms.GroupBox safetyGroupBox;
            System.Windows.Forms.Label safeMotorValueLabel;
            System.Windows.Forms.Label safeRollLabel;
            System.Windows.Forms.Label safeTemperatureLabel;
            System.Windows.Forms.Label safePitchLabel;
            System.Windows.Forms.GroupBox pidPitchGroupBox;
            System.Windows.Forms.Label pitchKpLabel;
            System.Windows.Forms.Label pitchKiLabel;
            System.Windows.Forms.Label pitchKdLabel;
            System.Windows.Forms.GroupBox pidRollGroupBox;
            System.Windows.Forms.Label rollKpLabel;
            System.Windows.Forms.Label rollKiLabel;
            System.Windows.Forms.Label rollKdLabel;
            System.Windows.Forms.GroupBox pidYawGroupBox;
            System.Windows.Forms.Label label4;
            System.Windows.Forms.Label label5;
            System.Windows.Forms.Label label6;
            System.Windows.Forms.Label label1;
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SettingsForm));
            this.updateFirmwareButton = new System.Windows.Forms.Button();
            this.firmwareVersionTextBox = new System.Windows.Forms.TextBox();
            this.buildDateTextBox = new System.Windows.Forms.TextBox();
            this.saveConfigCheckBox = new System.Windows.Forms.CheckBox();
            this.restartButton = new System.Windows.Forms.Button();
            this.modelTextBox = new System.Windows.Forms.TextBox();
            this.magnetometerTextBox = new System.Windows.Forms.TextBox();
            this.gyroSensorTextBox = new System.Windows.Forms.TextBox();
            this.idTextBox = new System.Windows.Forms.TextBox();
            this.nameTextBox = new System.Windows.Forms.TextBox();
            this.calibrateButton = new System.Windows.Forms.Button();
            this.minValueTextBox = new System.Windows.Forms.TextBox();
            this.hoverValueTextBox = new System.Windows.Forms.TextBox();
            this.idleValueTextBox = new System.Windows.Forms.TextBox();
            this.maxValueTextBox = new System.Windows.Forms.TextBox();
            this.safeMotorValueTextBox = new System.Windows.Forms.TextBox();
            this.safeRollTextBox = new System.Windows.Forms.TextBox();
            this.safePitchTextBox = new System.Windows.Forms.TextBox();
            this.safeTemperatureTextBox = new System.Windows.Forms.TextBox();
            this.pitchKdTextBox = new System.Windows.Forms.NumericUpDown();
            this.pitchKiTextBox = new System.Windows.Forms.NumericUpDown();
            this.pitchKpTextBox = new System.Windows.Forms.NumericUpDown();
            this.rollKdTextBox = new System.Windows.Forms.NumericUpDown();
            this.rollKiTextBox = new System.Windows.Forms.NumericUpDown();
            this.rollKpTextBox = new System.Windows.Forms.NumericUpDown();
            this.yawKdTextBox = new System.Windows.Forms.NumericUpDown();
            this.yawKiTextBox = new System.Windows.Forms.NumericUpDown();
            this.yawKpTextBox = new System.Windows.Forms.NumericUpDown();
            this.tabControl1 = new System.Windows.Forms.TabControl();
            this.flyingPage = new System.Windows.Forms.TabPage();
            this.engineUseGyroCheckBox = new System.Windows.Forms.CheckBox();
            this.gyroUseRawCheckBox = new System.Windows.Forms.CheckBox();
            this.gyroUseDmpCheckBox = new System.Windows.Forms.CheckBox();
            this.onlyArmWhenStillCheckBox = new System.Windows.Forms.CheckBox();
            this.maxThrustForFlyingTextBox = new System.Windows.Forms.NumericUpDown();
            this.keepMotorsOnCheckBox = new System.Windows.Forms.CheckBox();
            this.negativeMixingCheckBox = new System.Windows.Forms.CheckBox();
            this.enableStabilizationCheckBox = new System.Windows.Forms.CheckBox();
            this.applyButton = new System.Windows.Forms.Button();
            nameLabel = new System.Windows.Forms.Label();
            modelLabel = new System.Windows.Forms.Label();
            idLabel = new System.Windows.Forms.Label();
            firmwareGroupBox = new System.Windows.Forms.GroupBox();
            firmwareVersionLabel = new System.Windows.Forms.Label();
            buildDateLabel = new System.Windows.Forms.Label();
            quadrocopterPage = new System.Windows.Forms.TabPage();
            hardwareGroupBox = new System.Windows.Forms.GroupBox();
            magnetometerLabel = new System.Windows.Forms.Label();
            gyroSensorLabel = new System.Windows.Forms.Label();
            motorsGroupBox = new System.Windows.Forms.GroupBox();
            minValueLabel = new System.Windows.Forms.Label();
            hoverValueLabel = new System.Windows.Forms.Label();
            maxValueLabel = new System.Windows.Forms.Label();
            idleValueLabel = new System.Windows.Forms.Label();
            safetyGroupBox = new System.Windows.Forms.GroupBox();
            safeMotorValueLabel = new System.Windows.Forms.Label();
            safeRollLabel = new System.Windows.Forms.Label();
            safeTemperatureLabel = new System.Windows.Forms.Label();
            safePitchLabel = new System.Windows.Forms.Label();
            pidPitchGroupBox = new System.Windows.Forms.GroupBox();
            pitchKpLabel = new System.Windows.Forms.Label();
            pitchKiLabel = new System.Windows.Forms.Label();
            pitchKdLabel = new System.Windows.Forms.Label();
            pidRollGroupBox = new System.Windows.Forms.GroupBox();
            rollKpLabel = new System.Windows.Forms.Label();
            rollKiLabel = new System.Windows.Forms.Label();
            rollKdLabel = new System.Windows.Forms.Label();
            pidYawGroupBox = new System.Windows.Forms.GroupBox();
            label4 = new System.Windows.Forms.Label();
            label5 = new System.Windows.Forms.Label();
            label6 = new System.Windows.Forms.Label();
            label1 = new System.Windows.Forms.Label();
            firmwareGroupBox.SuspendLayout();
            quadrocopterPage.SuspendLayout();
            hardwareGroupBox.SuspendLayout();
            motorsGroupBox.SuspendLayout();
            safetyGroupBox.SuspendLayout();
            pidPitchGroupBox.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pitchKdTextBox)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pitchKiTextBox)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pitchKpTextBox)).BeginInit();
            pidRollGroupBox.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.rollKdTextBox)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rollKiTextBox)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.rollKpTextBox)).BeginInit();
            pidYawGroupBox.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.yawKdTextBox)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.yawKiTextBox)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.yawKpTextBox)).BeginInit();
            this.tabControl1.SuspendLayout();
            this.flyingPage.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.maxThrustForFlyingTextBox)).BeginInit();
            this.SuspendLayout();
            // 
            // nameLabel
            // 
            nameLabel.AutoSize = true;
            nameLabel.Location = new System.Drawing.Point(20, 10);
            nameLabel.Name = "nameLabel";
            nameLabel.Size = new System.Drawing.Size(35, 13);
            nameLabel.TabIndex = 0;
            nameLabel.Text = "Name";
            // 
            // modelLabel
            // 
            modelLabel.AutoSize = true;
            modelLabel.Location = new System.Drawing.Point(8, 22);
            modelLabel.Name = "modelLabel";
            modelLabel.Size = new System.Drawing.Size(36, 13);
            modelLabel.TabIndex = 2;
            modelLabel.Text = "Model";
            // 
            // idLabel
            // 
            idLabel.AutoSize = true;
            idLabel.Location = new System.Drawing.Point(8, 48);
            idLabel.Name = "idLabel";
            idLabel.Size = new System.Drawing.Size(18, 13);
            idLabel.TabIndex = 8;
            idLabel.Text = "ID";
            // 
            // firmwareGroupBox
            // 
            firmwareGroupBox.Controls.Add(this.updateFirmwareButton);
            firmwareGroupBox.Controls.Add(firmwareVersionLabel);
            firmwareGroupBox.Controls.Add(this.firmwareVersionTextBox);
            firmwareGroupBox.Controls.Add(buildDateLabel);
            firmwareGroupBox.Controls.Add(this.buildDateTextBox);
            firmwareGroupBox.Location = new System.Drawing.Point(11, 33);
            firmwareGroupBox.Name = "firmwareGroupBox";
            firmwareGroupBox.Size = new System.Drawing.Size(258, 108);
            firmwareGroupBox.TabIndex = 11;
            firmwareGroupBox.TabStop = false;
            firmwareGroupBox.Text = "Firmware";
            // 
            // updateFirmwareButton
            // 
            this.updateFirmwareButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.updateFirmwareButton.Location = new System.Drawing.Point(144, 82);
            this.updateFirmwareButton.Name = "updateFirmwareButton";
            this.updateFirmwareButton.Size = new System.Drawing.Size(108, 20);
            this.updateFirmwareButton.TabIndex = 10;
            this.updateFirmwareButton.Text = "Update Firmware";
            this.updateFirmwareButton.UseVisualStyleBackColor = true;
            this.updateFirmwareButton.Click += new System.EventHandler(this.updateFirmwareButton_Click);
            // 
            // firmwareVersionLabel
            // 
            firmwareVersionLabel.AutoSize = true;
            firmwareVersionLabel.Location = new System.Drawing.Point(9, 18);
            firmwareVersionLabel.Name = "firmwareVersionLabel";
            firmwareVersionLabel.Size = new System.Drawing.Size(87, 13);
            firmwareVersionLabel.TabIndex = 4;
            firmwareVersionLabel.Text = "Firmware Version";
            // 
            // firmwareVersionTextBox
            // 
            this.firmwareVersionTextBox.Location = new System.Drawing.Point(110, 15);
            this.firmwareVersionTextBox.Name = "firmwareVersionTextBox";
            this.firmwareVersionTextBox.Size = new System.Drawing.Size(142, 20);
            this.firmwareVersionTextBox.TabIndex = 5;
            // 
            // buildDateLabel
            // 
            buildDateLabel.AutoSize = true;
            buildDateLabel.Location = new System.Drawing.Point(9, 44);
            buildDateLabel.Name = "buildDateLabel";
            buildDateLabel.Size = new System.Drawing.Size(56, 13);
            buildDateLabel.TabIndex = 6;
            buildDateLabel.Text = "Build Date";
            // 
            // buildDateTextBox
            // 
            this.buildDateTextBox.Location = new System.Drawing.Point(110, 41);
            this.buildDateTextBox.Name = "buildDateTextBox";
            this.buildDateTextBox.Size = new System.Drawing.Size(142, 20);
            this.buildDateTextBox.TabIndex = 7;
            // 
            // quadrocopterPage
            // 
            quadrocopterPage.Controls.Add(this.saveConfigCheckBox);
            quadrocopterPage.Controls.Add(hardwareGroupBox);
            quadrocopterPage.Controls.Add(firmwareGroupBox);
            quadrocopterPage.Controls.Add(this.nameTextBox);
            quadrocopterPage.Controls.Add(nameLabel);
            quadrocopterPage.Location = new System.Drawing.Point(4, 22);
            quadrocopterPage.Name = "quadrocopterPage";
            quadrocopterPage.Padding = new System.Windows.Forms.Padding(3);
            quadrocopterPage.Size = new System.Drawing.Size(698, 412);
            quadrocopterPage.TabIndex = 0;
            quadrocopterPage.Text = "Quadrocopter";
            // 
            // saveConfigCheckBox
            // 
            this.saveConfigCheckBox.AutoSize = true;
            this.saveConfigCheckBox.Location = new System.Drawing.Point(302, 10);
            this.saveConfigCheckBox.Name = "saveConfigCheckBox";
            this.saveConfigCheckBox.Size = new System.Drawing.Size(84, 17);
            this.saveConfigCheckBox.TabIndex = 17;
            this.saveConfigCheckBox.Text = "Save Config";
            this.saveConfigCheckBox.UseVisualStyleBackColor = true;
            // 
            // hardwareGroupBox
            // 
            hardwareGroupBox.Controls.Add(this.restartButton);
            hardwareGroupBox.Controls.Add(this.modelTextBox);
            hardwareGroupBox.Controls.Add(this.magnetometerTextBox);
            hardwareGroupBox.Controls.Add(modelLabel);
            hardwareGroupBox.Controls.Add(magnetometerLabel);
            hardwareGroupBox.Controls.Add(idLabel);
            hardwareGroupBox.Controls.Add(this.gyroSensorTextBox);
            hardwareGroupBox.Controls.Add(this.idTextBox);
            hardwareGroupBox.Controls.Add(gyroSensorLabel);
            hardwareGroupBox.Location = new System.Drawing.Point(11, 156);
            hardwareGroupBox.Name = "hardwareGroupBox";
            hardwareGroupBox.Size = new System.Drawing.Size(258, 161);
            hardwareGroupBox.TabIndex = 16;
            hardwareGroupBox.TabStop = false;
            hardwareGroupBox.Text = "Hardware";
            // 
            // restartButton
            // 
            this.restartButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.restartButton.Location = new System.Drawing.Point(144, 135);
            this.restartButton.Name = "restartButton";
            this.restartButton.Size = new System.Drawing.Size(108, 20);
            this.restartButton.TabIndex = 11;
            this.restartButton.Text = "Restart";
            this.restartButton.UseVisualStyleBackColor = true;
            this.restartButton.Click += new System.EventHandler(this.restartButton_Click);
            // 
            // modelTextBox
            // 
            this.modelTextBox.Location = new System.Drawing.Point(109, 19);
            this.modelTextBox.Name = "modelTextBox";
            this.modelTextBox.Size = new System.Drawing.Size(142, 20);
            this.modelTextBox.TabIndex = 3;
            // 
            // magnetometerTextBox
            // 
            this.magnetometerTextBox.Location = new System.Drawing.Point(109, 98);
            this.magnetometerTextBox.Name = "magnetometerTextBox";
            this.magnetometerTextBox.Size = new System.Drawing.Size(142, 20);
            this.magnetometerTextBox.TabIndex = 15;
            // 
            // magnetometerLabel
            // 
            magnetometerLabel.AutoSize = true;
            magnetometerLabel.Location = new System.Drawing.Point(8, 101);
            magnetometerLabel.Name = "magnetometerLabel";
            magnetometerLabel.Size = new System.Drawing.Size(75, 13);
            magnetometerLabel.TabIndex = 14;
            magnetometerLabel.Text = "Magnetometer";
            // 
            // gyroSensorTextBox
            // 
            this.gyroSensorTextBox.Location = new System.Drawing.Point(109, 71);
            this.gyroSensorTextBox.Name = "gyroSensorTextBox";
            this.gyroSensorTextBox.Size = new System.Drawing.Size(142, 20);
            this.gyroSensorTextBox.TabIndex = 13;
            // 
            // idTextBox
            // 
            this.idTextBox.Location = new System.Drawing.Point(109, 45);
            this.idTextBox.Name = "idTextBox";
            this.idTextBox.Size = new System.Drawing.Size(142, 20);
            this.idTextBox.TabIndex = 9;
            // 
            // gyroSensorLabel
            // 
            gyroSensorLabel.AutoSize = true;
            gyroSensorLabel.Location = new System.Drawing.Point(8, 74);
            gyroSensorLabel.Name = "gyroSensorLabel";
            gyroSensorLabel.Size = new System.Drawing.Size(65, 13);
            gyroSensorLabel.TabIndex = 12;
            gyroSensorLabel.Text = "Gyro Sensor";
            // 
            // nameTextBox
            // 
            this.nameTextBox.Location = new System.Drawing.Point(121, 7);
            this.nameTextBox.Name = "nameTextBox";
            this.nameTextBox.Size = new System.Drawing.Size(142, 20);
            this.nameTextBox.TabIndex = 1;
            // 
            // motorsGroupBox
            // 
            motorsGroupBox.Controls.Add(this.calibrateButton);
            motorsGroupBox.Controls.Add(this.minValueTextBox);
            motorsGroupBox.Controls.Add(this.hoverValueTextBox);
            motorsGroupBox.Controls.Add(minValueLabel);
            motorsGroupBox.Controls.Add(hoverValueLabel);
            motorsGroupBox.Controls.Add(maxValueLabel);
            motorsGroupBox.Controls.Add(this.idleValueTextBox);
            motorsGroupBox.Controls.Add(this.maxValueTextBox);
            motorsGroupBox.Controls.Add(idleValueLabel);
            motorsGroupBox.Location = new System.Drawing.Point(8, 6);
            motorsGroupBox.Name = "motorsGroupBox";
            motorsGroupBox.Size = new System.Drawing.Size(258, 162);
            motorsGroupBox.TabIndex = 17;
            motorsGroupBox.TabStop = false;
            motorsGroupBox.Text = "Motors";
            // 
            // calibrateButton
            // 
            this.calibrateButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.calibrateButton.Location = new System.Drawing.Point(144, 136);
            this.calibrateButton.Name = "calibrateButton";
            this.calibrateButton.Size = new System.Drawing.Size(108, 20);
            this.calibrateButton.TabIndex = 11;
            this.calibrateButton.Text = "Calibrate";
            this.calibrateButton.UseVisualStyleBackColor = true;
            this.calibrateButton.Click += new System.EventHandler(this.calibrateButton_Click);
            // 
            // minValueTextBox
            // 
            this.minValueTextBox.Location = new System.Drawing.Point(109, 19);
            this.minValueTextBox.Name = "minValueTextBox";
            this.minValueTextBox.Size = new System.Drawing.Size(142, 20);
            this.minValueTextBox.TabIndex = 3;
            // 
            // hoverValueTextBox
            // 
            this.hoverValueTextBox.Location = new System.Drawing.Point(109, 71);
            this.hoverValueTextBox.Name = "hoverValueTextBox";
            this.hoverValueTextBox.Size = new System.Drawing.Size(142, 20);
            this.hoverValueTextBox.TabIndex = 15;
            // 
            // minValueLabel
            // 
            minValueLabel.AutoSize = true;
            minValueLabel.Location = new System.Drawing.Point(8, 22);
            minValueLabel.Name = "minValueLabel";
            minValueLabel.Size = new System.Drawing.Size(54, 13);
            minValueLabel.TabIndex = 2;
            minValueLabel.Text = "Min Value";
            // 
            // hoverValueLabel
            // 
            hoverValueLabel.AutoSize = true;
            hoverValueLabel.Location = new System.Drawing.Point(8, 74);
            hoverValueLabel.Name = "hoverValueLabel";
            hoverValueLabel.Size = new System.Drawing.Size(66, 13);
            hoverValueLabel.TabIndex = 14;
            hoverValueLabel.Text = "Hover Value";
            // 
            // maxValueLabel
            // 
            maxValueLabel.AutoSize = true;
            maxValueLabel.Location = new System.Drawing.Point(9, 100);
            maxValueLabel.Name = "maxValueLabel";
            maxValueLabel.Size = new System.Drawing.Size(57, 13);
            maxValueLabel.TabIndex = 8;
            maxValueLabel.Text = "Max Value";
            // 
            // idleValueTextBox
            // 
            this.idleValueTextBox.Location = new System.Drawing.Point(109, 45);
            this.idleValueTextBox.Name = "idleValueTextBox";
            this.idleValueTextBox.Size = new System.Drawing.Size(143, 20);
            this.idleValueTextBox.TabIndex = 13;
            // 
            // maxValueTextBox
            // 
            this.maxValueTextBox.Location = new System.Drawing.Point(109, 97);
            this.maxValueTextBox.Name = "maxValueTextBox";
            this.maxValueTextBox.Size = new System.Drawing.Size(143, 20);
            this.maxValueTextBox.TabIndex = 9;
            // 
            // idleValueLabel
            // 
            idleValueLabel.AutoSize = true;
            idleValueLabel.Location = new System.Drawing.Point(9, 48);
            idleValueLabel.Name = "idleValueLabel";
            idleValueLabel.Size = new System.Drawing.Size(54, 13);
            idleValueLabel.TabIndex = 12;
            idleValueLabel.Text = "Idle Value";
            // 
            // safetyGroupBox
            // 
            safetyGroupBox.Controls.Add(this.safeMotorValueTextBox);
            safetyGroupBox.Controls.Add(this.safeRollTextBox);
            safetyGroupBox.Controls.Add(safeMotorValueLabel);
            safetyGroupBox.Controls.Add(safeRollLabel);
            safetyGroupBox.Controls.Add(safeTemperatureLabel);
            safetyGroupBox.Controls.Add(this.safePitchTextBox);
            safetyGroupBox.Controls.Add(this.safeTemperatureTextBox);
            safetyGroupBox.Controls.Add(safePitchLabel);
            safetyGroupBox.Location = new System.Drawing.Point(8, 174);
            safetyGroupBox.Name = "safetyGroupBox";
            safetyGroupBox.Size = new System.Drawing.Size(258, 129);
            safetyGroupBox.TabIndex = 18;
            safetyGroupBox.TabStop = false;
            safetyGroupBox.Text = "Safety";
            // 
            // safeMotorValueTextBox
            // 
            this.safeMotorValueTextBox.Location = new System.Drawing.Point(109, 19);
            this.safeMotorValueTextBox.Name = "safeMotorValueTextBox";
            this.safeMotorValueTextBox.Size = new System.Drawing.Size(142, 20);
            this.safeMotorValueTextBox.TabIndex = 3;
            // 
            // safeRollTextBox
            // 
            this.safeRollTextBox.Location = new System.Drawing.Point(109, 98);
            this.safeRollTextBox.Name = "safeRollTextBox";
            this.safeRollTextBox.Size = new System.Drawing.Size(142, 20);
            this.safeRollTextBox.TabIndex = 15;
            // 
            // safeMotorValueLabel
            // 
            safeMotorValueLabel.AutoSize = true;
            safeMotorValueLabel.Location = new System.Drawing.Point(8, 22);
            safeMotorValueLabel.Name = "safeMotorValueLabel";
            safeMotorValueLabel.Size = new System.Drawing.Size(89, 13);
            safeMotorValueLabel.TabIndex = 2;
            safeMotorValueLabel.Text = "Safe Motor Value";
            // 
            // safeRollLabel
            // 
            safeRollLabel.AutoSize = true;
            safeRollLabel.Location = new System.Drawing.Point(8, 101);
            safeRollLabel.Name = "safeRollLabel";
            safeRollLabel.Size = new System.Drawing.Size(50, 13);
            safeRollLabel.TabIndex = 14;
            safeRollLabel.Text = "Safe Roll";
            // 
            // safeTemperatureLabel
            // 
            safeTemperatureLabel.AutoSize = true;
            safeTemperatureLabel.Location = new System.Drawing.Point(8, 48);
            safeTemperatureLabel.Name = "safeTemperatureLabel";
            safeTemperatureLabel.Size = new System.Drawing.Size(92, 13);
            safeTemperatureLabel.TabIndex = 8;
            safeTemperatureLabel.Text = "Safe Temperature";
            // 
            // safePitchTextBox
            // 
            this.safePitchTextBox.Location = new System.Drawing.Point(109, 71);
            this.safePitchTextBox.Name = "safePitchTextBox";
            this.safePitchTextBox.Size = new System.Drawing.Size(142, 20);
            this.safePitchTextBox.TabIndex = 13;
            // 
            // safeTemperatureTextBox
            // 
            this.safeTemperatureTextBox.Location = new System.Drawing.Point(109, 45);
            this.safeTemperatureTextBox.Name = "safeTemperatureTextBox";
            this.safeTemperatureTextBox.Size = new System.Drawing.Size(142, 20);
            this.safeTemperatureTextBox.TabIndex = 9;
            // 
            // safePitchLabel
            // 
            safePitchLabel.AutoSize = true;
            safePitchLabel.Location = new System.Drawing.Point(8, 74);
            safePitchLabel.Name = "safePitchLabel";
            safePitchLabel.Size = new System.Drawing.Size(56, 13);
            safePitchLabel.TabIndex = 12;
            safePitchLabel.Text = "Safe Pitch";
            // 
            // pidPitchGroupBox
            // 
            pidPitchGroupBox.Controls.Add(this.pitchKdTextBox);
            pidPitchGroupBox.Controls.Add(this.pitchKiTextBox);
            pidPitchGroupBox.Controls.Add(this.pitchKpTextBox);
            pidPitchGroupBox.Controls.Add(pitchKpLabel);
            pidPitchGroupBox.Controls.Add(pitchKiLabel);
            pidPitchGroupBox.Controls.Add(pitchKdLabel);
            pidPitchGroupBox.Location = new System.Drawing.Point(272, 6);
            pidPitchGroupBox.Name = "pidPitchGroupBox";
            pidPitchGroupBox.Size = new System.Drawing.Size(117, 101);
            pidPitchGroupBox.TabIndex = 19;
            pidPitchGroupBox.TabStop = false;
            pidPitchGroupBox.Text = "PID Pitch";
            // 
            // pitchKdTextBox
            // 
            this.pitchKdTextBox.DecimalPlaces = 2;
            this.pitchKdTextBox.Increment = new decimal(new int[] {
            5,
            0,
            0,
            131072});
            this.pitchKdTextBox.Location = new System.Drawing.Point(34, 72);
            this.pitchKdTextBox.Minimum = new decimal(new int[] {
            100,
            0,
            0,
            -2147483648});
            this.pitchKdTextBox.Name = "pitchKdTextBox";
            this.pitchKdTextBox.Size = new System.Drawing.Size(70, 20);
            this.pitchKdTextBox.TabIndex = 15;
            // 
            // pitchKiTextBox
            // 
            this.pitchKiTextBox.DecimalPlaces = 2;
            this.pitchKiTextBox.Increment = new decimal(new int[] {
            5,
            0,
            0,
            131072});
            this.pitchKiTextBox.Location = new System.Drawing.Point(34, 46);
            this.pitchKiTextBox.Minimum = new decimal(new int[] {
            100,
            0,
            0,
            -2147483648});
            this.pitchKiTextBox.Name = "pitchKiTextBox";
            this.pitchKiTextBox.Size = new System.Drawing.Size(70, 20);
            this.pitchKiTextBox.TabIndex = 14;
            // 
            // pitchKpTextBox
            // 
            this.pitchKpTextBox.DecimalPlaces = 2;
            this.pitchKpTextBox.Increment = new decimal(new int[] {
            5,
            0,
            0,
            131072});
            this.pitchKpTextBox.Location = new System.Drawing.Point(34, 18);
            this.pitchKpTextBox.Minimum = new decimal(new int[] {
            100,
            0,
            0,
            -2147483648});
            this.pitchKpTextBox.Name = "pitchKpTextBox";
            this.pitchKpTextBox.Size = new System.Drawing.Size(70, 20);
            this.pitchKpTextBox.TabIndex = 13;
            // 
            // pitchKpLabel
            // 
            pitchKpLabel.AutoSize = true;
            pitchKpLabel.Location = new System.Drawing.Point(8, 22);
            pitchKpLabel.Name = "pitchKpLabel";
            pitchKpLabel.Size = new System.Drawing.Size(20, 13);
            pitchKpLabel.TabIndex = 2;
            pitchKpLabel.Text = "Kp";
            // 
            // pitchKiLabel
            // 
            pitchKiLabel.AutoSize = true;
            pitchKiLabel.Location = new System.Drawing.Point(8, 48);
            pitchKiLabel.Name = "pitchKiLabel";
            pitchKiLabel.Size = new System.Drawing.Size(16, 13);
            pitchKiLabel.TabIndex = 8;
            pitchKiLabel.Text = "Ki";
            // 
            // pitchKdLabel
            // 
            pitchKdLabel.AutoSize = true;
            pitchKdLabel.Location = new System.Drawing.Point(8, 74);
            pitchKdLabel.Name = "pitchKdLabel";
            pitchKdLabel.Size = new System.Drawing.Size(20, 13);
            pitchKdLabel.TabIndex = 12;
            pitchKdLabel.Text = "Kd";
            // 
            // pidRollGroupBox
            // 
            pidRollGroupBox.Controls.Add(this.rollKdTextBox);
            pidRollGroupBox.Controls.Add(this.rollKiTextBox);
            pidRollGroupBox.Controls.Add(this.rollKpTextBox);
            pidRollGroupBox.Controls.Add(rollKpLabel);
            pidRollGroupBox.Controls.Add(rollKiLabel);
            pidRollGroupBox.Controls.Add(rollKdLabel);
            pidRollGroupBox.Location = new System.Drawing.Point(395, 6);
            pidRollGroupBox.Name = "pidRollGroupBox";
            pidRollGroupBox.Size = new System.Drawing.Size(117, 101);
            pidRollGroupBox.TabIndex = 20;
            pidRollGroupBox.TabStop = false;
            pidRollGroupBox.Text = "PID Roll";
            // 
            // rollKdTextBox
            // 
            this.rollKdTextBox.DecimalPlaces = 2;
            this.rollKdTextBox.Increment = new decimal(new int[] {
            5,
            0,
            0,
            131072});
            this.rollKdTextBox.Location = new System.Drawing.Point(34, 72);
            this.rollKdTextBox.Minimum = new decimal(new int[] {
            100,
            0,
            0,
            -2147483648});
            this.rollKdTextBox.Name = "rollKdTextBox";
            this.rollKdTextBox.Size = new System.Drawing.Size(70, 20);
            this.rollKdTextBox.TabIndex = 15;
            // 
            // rollKiTextBox
            // 
            this.rollKiTextBox.DecimalPlaces = 2;
            this.rollKiTextBox.Increment = new decimal(new int[] {
            5,
            0,
            0,
            131072});
            this.rollKiTextBox.Location = new System.Drawing.Point(34, 46);
            this.rollKiTextBox.Minimum = new decimal(new int[] {
            100,
            0,
            0,
            -2147483648});
            this.rollKiTextBox.Name = "rollKiTextBox";
            this.rollKiTextBox.Size = new System.Drawing.Size(70, 20);
            this.rollKiTextBox.TabIndex = 14;
            // 
            // rollKpTextBox
            // 
            this.rollKpTextBox.DecimalPlaces = 2;
            this.rollKpTextBox.Increment = new decimal(new int[] {
            5,
            0,
            0,
            131072});
            this.rollKpTextBox.Location = new System.Drawing.Point(34, 18);
            this.rollKpTextBox.Minimum = new decimal(new int[] {
            100,
            0,
            0,
            -2147483648});
            this.rollKpTextBox.Name = "rollKpTextBox";
            this.rollKpTextBox.Size = new System.Drawing.Size(70, 20);
            this.rollKpTextBox.TabIndex = 13;
            // 
            // rollKpLabel
            // 
            rollKpLabel.AutoSize = true;
            rollKpLabel.Location = new System.Drawing.Point(8, 22);
            rollKpLabel.Name = "rollKpLabel";
            rollKpLabel.Size = new System.Drawing.Size(20, 13);
            rollKpLabel.TabIndex = 2;
            rollKpLabel.Text = "Kp";
            // 
            // rollKiLabel
            // 
            rollKiLabel.AutoSize = true;
            rollKiLabel.Location = new System.Drawing.Point(8, 48);
            rollKiLabel.Name = "rollKiLabel";
            rollKiLabel.Size = new System.Drawing.Size(16, 13);
            rollKiLabel.TabIndex = 8;
            rollKiLabel.Text = "Ki";
            // 
            // rollKdLabel
            // 
            rollKdLabel.AutoSize = true;
            rollKdLabel.Location = new System.Drawing.Point(8, 74);
            rollKdLabel.Name = "rollKdLabel";
            rollKdLabel.Size = new System.Drawing.Size(20, 13);
            rollKdLabel.TabIndex = 12;
            rollKdLabel.Text = "Kd";
            // 
            // pidYawGroupBox
            // 
            pidYawGroupBox.Controls.Add(this.yawKdTextBox);
            pidYawGroupBox.Controls.Add(this.yawKiTextBox);
            pidYawGroupBox.Controls.Add(this.yawKpTextBox);
            pidYawGroupBox.Controls.Add(label4);
            pidYawGroupBox.Controls.Add(label5);
            pidYawGroupBox.Controls.Add(label6);
            pidYawGroupBox.Location = new System.Drawing.Point(518, 6);
            pidYawGroupBox.Name = "pidYawGroupBox";
            pidYawGroupBox.Size = new System.Drawing.Size(117, 101);
            pidYawGroupBox.TabIndex = 21;
            pidYawGroupBox.TabStop = false;
            pidYawGroupBox.Text = "PID Yaw";
            // 
            // yawKdTextBox
            // 
            this.yawKdTextBox.DecimalPlaces = 2;
            this.yawKdTextBox.Increment = new decimal(new int[] {
            5,
            0,
            0,
            131072});
            this.yawKdTextBox.Location = new System.Drawing.Point(34, 72);
            this.yawKdTextBox.Minimum = new decimal(new int[] {
            100,
            0,
            0,
            -2147483648});
            this.yawKdTextBox.Name = "yawKdTextBox";
            this.yawKdTextBox.Size = new System.Drawing.Size(70, 20);
            this.yawKdTextBox.TabIndex = 15;
            // 
            // yawKiTextBox
            // 
            this.yawKiTextBox.DecimalPlaces = 2;
            this.yawKiTextBox.Increment = new decimal(new int[] {
            5,
            0,
            0,
            131072});
            this.yawKiTextBox.Location = new System.Drawing.Point(34, 46);
            this.yawKiTextBox.Minimum = new decimal(new int[] {
            100,
            0,
            0,
            -2147483648});
            this.yawKiTextBox.Name = "yawKiTextBox";
            this.yawKiTextBox.Size = new System.Drawing.Size(70, 20);
            this.yawKiTextBox.TabIndex = 14;
            // 
            // yawKpTextBox
            // 
            this.yawKpTextBox.DecimalPlaces = 2;
            this.yawKpTextBox.Increment = new decimal(new int[] {
            5,
            0,
            0,
            131072});
            this.yawKpTextBox.Location = new System.Drawing.Point(34, 18);
            this.yawKpTextBox.Minimum = new decimal(new int[] {
            100,
            0,
            0,
            -2147483648});
            this.yawKpTextBox.Name = "yawKpTextBox";
            this.yawKpTextBox.Size = new System.Drawing.Size(70, 20);
            this.yawKpTextBox.TabIndex = 13;
            // 
            // label4
            // 
            label4.AutoSize = true;
            label4.Location = new System.Drawing.Point(8, 22);
            label4.Name = "label4";
            label4.Size = new System.Drawing.Size(20, 13);
            label4.TabIndex = 2;
            label4.Text = "Kp";
            // 
            // label5
            // 
            label5.AutoSize = true;
            label5.Location = new System.Drawing.Point(8, 48);
            label5.Name = "label5";
            label5.Size = new System.Drawing.Size(16, 13);
            label5.TabIndex = 8;
            label5.Text = "Ki";
            // 
            // label6
            // 
            label6.AutoSize = true;
            label6.Location = new System.Drawing.Point(8, 74);
            label6.Name = "label6";
            label6.Size = new System.Drawing.Size(20, 13);
            label6.TabIndex = 12;
            label6.Text = "Kd";
            // 
            // label1
            // 
            label1.AutoSize = true;
            label1.Location = new System.Drawing.Point(280, 189);
            label1.Name = "label1";
            label1.Size = new System.Drawing.Size(90, 13);
            label1.TabIndex = 25;
            label1.Text = "Max Thrust Flying";
            // 
            // tabControl1
            // 
            this.tabControl1.Controls.Add(quadrocopterPage);
            this.tabControl1.Controls.Add(this.flyingPage);
            this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tabControl1.Location = new System.Drawing.Point(0, 0);
            this.tabControl1.Name = "tabControl1";
            this.tabControl1.SelectedIndex = 0;
            this.tabControl1.Size = new System.Drawing.Size(706, 438);
            this.tabControl1.TabIndex = 0;
            // 
            // flyingPage
            // 
            this.flyingPage.Controls.Add(this.engineUseGyroCheckBox);
            this.flyingPage.Controls.Add(this.gyroUseRawCheckBox);
            this.flyingPage.Controls.Add(this.gyroUseDmpCheckBox);
            this.flyingPage.Controls.Add(this.onlyArmWhenStillCheckBox);
            this.flyingPage.Controls.Add(this.maxThrustForFlyingTextBox);
            this.flyingPage.Controls.Add(label1);
            this.flyingPage.Controls.Add(this.keepMotorsOnCheckBox);
            this.flyingPage.Controls.Add(this.negativeMixingCheckBox);
            this.flyingPage.Controls.Add(this.enableStabilizationCheckBox);
            this.flyingPage.Controls.Add(pidYawGroupBox);
            this.flyingPage.Controls.Add(pidRollGroupBox);
            this.flyingPage.Controls.Add(pidPitchGroupBox);
            this.flyingPage.Controls.Add(safetyGroupBox);
            this.flyingPage.Controls.Add(motorsGroupBox);
            this.flyingPage.Location = new System.Drawing.Point(4, 22);
            this.flyingPage.Name = "flyingPage";
            this.flyingPage.Padding = new System.Windows.Forms.Padding(3);
            this.flyingPage.Size = new System.Drawing.Size(698, 412);
            this.flyingPage.TabIndex = 1;
            this.flyingPage.Text = "Flying";
            // 
            // engineUseGyroCheckBox
            // 
            this.engineUseGyroCheckBox.AutoSize = true;
            this.engineUseGyroCheckBox.Location = new System.Drawing.Point(283, 305);
            this.engineUseGyroCheckBox.Name = "engineUseGyroCheckBox";
            this.engineUseGyroCheckBox.Size = new System.Drawing.Size(102, 17);
            this.engineUseGyroCheckBox.TabIndex = 31;
            this.engineUseGyroCheckBox.Text = "Engine use gyro";
            this.engineUseGyroCheckBox.UseVisualStyleBackColor = true;
            // 
            // gyroUseRawCheckBox
            // 
            this.gyroUseRawCheckBox.AutoSize = true;
            this.gyroUseRawCheckBox.Location = new System.Drawing.Point(283, 282);
            this.gyroUseRawCheckBox.Name = "gyroUseRawCheckBox";
            this.gyroUseRawCheckBox.Size = new System.Drawing.Size(88, 17);
            this.gyroUseRawCheckBox.TabIndex = 30;
            this.gyroUseRawCheckBox.Text = "Gyro use raw";
            this.gyroUseRawCheckBox.UseVisualStyleBackColor = true;
            // 
            // gyroUseDmpCheckBox
            // 
            this.gyroUseDmpCheckBox.AutoSize = true;
            this.gyroUseDmpCheckBox.Location = new System.Drawing.Point(283, 259);
            this.gyroUseDmpCheckBox.Name = "gyroUseDmpCheckBox";
            this.gyroUseDmpCheckBox.Size = new System.Drawing.Size(91, 17);
            this.gyroUseDmpCheckBox.TabIndex = 29;
            this.gyroUseDmpCheckBox.Text = "Gyro use dmp";
            this.gyroUseDmpCheckBox.UseVisualStyleBackColor = true;
            // 
            // onlyArmWhenStillCheckBox
            // 
            this.onlyArmWhenStillCheckBox.AutoSize = true;
            this.onlyArmWhenStillCheckBox.Location = new System.Drawing.Point(283, 213);
            this.onlyArmWhenStillCheckBox.Name = "onlyArmWhenStillCheckBox";
            this.onlyArmWhenStillCheckBox.Size = new System.Drawing.Size(113, 17);
            this.onlyArmWhenStillCheckBox.TabIndex = 27;
            this.onlyArmWhenStillCheckBox.Text = "Only arm when still";
            this.onlyArmWhenStillCheckBox.UseVisualStyleBackColor = true;
            // 
            // maxThrustForFlyingTextBox
            // 
            this.maxThrustForFlyingTextBox.Increment = new decimal(new int[] {
            10,
            0,
            0,
            0});
            this.maxThrustForFlyingTextBox.Location = new System.Drawing.Point(376, 187);
            this.maxThrustForFlyingTextBox.Maximum = new decimal(new int[] {
            1000,
            0,
            0,
            0});
            this.maxThrustForFlyingTextBox.Name = "maxThrustForFlyingTextBox";
            this.maxThrustForFlyingTextBox.Size = new System.Drawing.Size(70, 20);
            this.maxThrustForFlyingTextBox.TabIndex = 26;
            // 
            // keepMotorsOnCheckBox
            // 
            this.keepMotorsOnCheckBox.AutoSize = true;
            this.keepMotorsOnCheckBox.Location = new System.Drawing.Point(283, 159);
            this.keepMotorsOnCheckBox.Name = "keepMotorsOnCheckBox";
            this.keepMotorsOnCheckBox.Size = new System.Drawing.Size(100, 17);
            this.keepMotorsOnCheckBox.TabIndex = 24;
            this.keepMotorsOnCheckBox.Text = "Keep motors on";
            this.keepMotorsOnCheckBox.UseVisualStyleBackColor = true;
            // 
            // negativeMixingCheckBox
            // 
            this.negativeMixingCheckBox.AutoSize = true;
            this.negativeMixingCheckBox.Location = new System.Drawing.Point(283, 136);
            this.negativeMixingCheckBox.Name = "negativeMixingCheckBox";
            this.negativeMixingCheckBox.Size = new System.Drawing.Size(101, 17);
            this.negativeMixingCheckBox.TabIndex = 23;
            this.negativeMixingCheckBox.Text = "Negative mixing";
            this.negativeMixingCheckBox.UseVisualStyleBackColor = true;
            // 
            // enableStabilizationCheckBox
            // 
            this.enableStabilizationCheckBox.AutoSize = true;
            this.enableStabilizationCheckBox.Location = new System.Drawing.Point(283, 113);
            this.enableStabilizationCheckBox.Name = "enableStabilizationCheckBox";
            this.enableStabilizationCheckBox.Size = new System.Drawing.Size(116, 17);
            this.enableStabilizationCheckBox.TabIndex = 22;
            this.enableStabilizationCheckBox.Text = "Enable stabilization";
            this.enableStabilizationCheckBox.UseVisualStyleBackColor = true;
            // 
            // applyButton
            // 
            this.applyButton.Location = new System.Drawing.Point(645, -1);
            this.applyButton.Name = "applyButton";
            this.applyButton.Size = new System.Drawing.Size(62, 25);
            this.applyButton.TabIndex = 1;
            this.applyButton.Text = "Apply";
            this.applyButton.UseVisualStyleBackColor = true;
            this.applyButton.Click += new System.EventHandler(this.applyButton_Click);
            // 
            // SettingsForm
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(706, 438);
            this.Controls.Add(this.applyButton);
            this.Controls.Add(this.tabControl1);
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.Name = "SettingsForm";
            this.Text = "Settings";
            firmwareGroupBox.ResumeLayout(false);
            firmwareGroupBox.PerformLayout();
            quadrocopterPage.ResumeLayout(false);
            quadrocopterPage.PerformLayout();
            hardwareGroupBox.ResumeLayout(false);
            hardwareGroupBox.PerformLayout();
            motorsGroupBox.ResumeLayout(false);
            motorsGroupBox.PerformLayout();
            safetyGroupBox.ResumeLayout(false);
            safetyGroupBox.PerformLayout();
            pidPitchGroupBox.ResumeLayout(false);
            pidPitchGroupBox.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pitchKdTextBox)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.pitchKiTextBox)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.pitchKpTextBox)).EndInit();
            pidRollGroupBox.ResumeLayout(false);
            pidRollGroupBox.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.rollKdTextBox)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rollKiTextBox)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.rollKpTextBox)).EndInit();
            pidYawGroupBox.ResumeLayout(false);
            pidYawGroupBox.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.yawKdTextBox)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.yawKiTextBox)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.yawKpTextBox)).EndInit();
            this.tabControl1.ResumeLayout(false);
            this.flyingPage.ResumeLayout(false);
            this.flyingPage.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.maxThrustForFlyingTextBox)).EndInit();
            this.ResumeLayout(false);

        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(wLastChanceTrace));
     textBoxMessage = new System.Windows.Forms.TextBox();
     textBoxType    = new System.Windows.Forms.TextBox();
     textBoxStack   = new System.Windows.Forms.TextBox();
     btnExit        = new System.Windows.Forms.Button();
     btnSend        = new System.Windows.Forms.Button();
     btnSave        = new System.Windows.Forms.Button();
     panelBtn       = new System.Windows.Forms.Panel();
     btnKill        = new System.Windows.Forms.Button();
     panel2         = new System.Windows.Forms.Panel();
     pictureBox1    = new System.Windows.Forms.PictureBox();
     tabControl     = new System.Windows.Forms.TabControl();
     tabPageMessage = new System.Windows.Forms.TabPage();
     richTextBox1   = new System.Windows.Forms.RichTextBox();
     tabPageDetails = new System.Windows.Forms.TabPage();
     tabPageSystem  = new System.Windows.Forms.TabPage();
     textBoxSystem  = new System.Windows.Forms.TextBox();
     panelBtn.SuspendLayout();
     panel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     tabControl.SuspendLayout();
     tabPageMessage.SuspendLayout();
     tabPageDetails.SuspendLayout();
     tabPageSystem.SuspendLayout();
     SuspendLayout();
     //
     // textBoxMessage
     //
     textBoxMessage.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     textBoxMessage.Location  = new System.Drawing.Point(114, 15);
     textBoxMessage.Name      = "textBoxMessage";
     textBoxMessage.ReadOnly  = true;
     textBoxMessage.Size      = new System.Drawing.Size(333, 20);
     textBoxMessage.TabIndex  = 0;
     textBoxMessage.Text      = ".";
     textBoxMessage.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // textBoxType
     //
     textBoxType.AcceptsReturn = true;
     textBoxType.Anchor        = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                       | System.Windows.Forms.AnchorStyles.Right)));
     textBoxType.Location  = new System.Drawing.Point(114, 41);
     textBoxType.Name      = "textBoxType";
     textBoxType.ReadOnly  = true;
     textBoxType.Size      = new System.Drawing.Size(333, 20);
     textBoxType.TabIndex  = 1;
     textBoxType.Text      = ".";
     textBoxType.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // textBoxStack
     //
     textBoxStack.AcceptsReturn = true;
     textBoxStack.Dock          = System.Windows.Forms.DockStyle.Fill;
     textBoxStack.Location      = new System.Drawing.Point(5, 5);
     textBoxStack.Multiline     = true;
     textBoxStack.Name          = "textBoxStack";
     textBoxStack.ReadOnly      = true;
     textBoxStack.ScrollBars    = System.Windows.Forms.ScrollBars.Both;
     textBoxStack.Size          = new System.Drawing.Size(439, 180);
     textBoxStack.TabIndex      = 3;
     textBoxStack.WordWrap      = false;
     //
     // btnExit
     //
     btnExit.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     btnExit.Location = new System.Drawing.Point(302, 5);
     btnExit.Name     = "btnExit";
     btnExit.Size     = new System.Drawing.Size(75, 23);
     btnExit.TabIndex = 4;
     btnExit.Text     = "Continue";
     btnExit.UseVisualStyleBackColor = true;
     btnExit.Click += new System.EventHandler(this.btnExit_Click);
     //
     // btnSend
     //
     btnSend.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     btnSend.Enabled  = false;
     btnSend.Location = new System.Drawing.Point(221, 5);
     btnSend.Name     = "btnSend";
     btnSend.Size     = new System.Drawing.Size(75, 23);
     btnSend.TabIndex = 5;
     btnSend.Text     = "Send";
     btnSend.UseVisualStyleBackColor = true;
     btnSend.Visible = false;
     btnSend.Click  += new System.EventHandler(this.btnSend_Click);
     //
     // btnSave
     //
     btnSave.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     btnSave.Location = new System.Drawing.Point(139, 5);
     btnSave.Name     = "btnSave";
     btnSave.Size     = new System.Drawing.Size(75, 23);
     btnSave.TabIndex = 6;
     btnSave.Text     = "Save";
     btnSave.UseVisualStyleBackColor = true;
     btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // panelBtn
     //
     panelBtn.Controls.Add(this.btnKill);
     panelBtn.Controls.Add(this.btnSend);
     panelBtn.Controls.Add(this.btnSave);
     panelBtn.Controls.Add(this.btnExit);
     panelBtn.Dock     = System.Windows.Forms.DockStyle.Bottom;
     panelBtn.Location = new System.Drawing.Point(10, 305);
     panelBtn.Name     = "panelBtn";
     panelBtn.Size     = new System.Drawing.Size(457, 28);
     panelBtn.TabIndex = 7;
     //
     // btnKill
     //
     btnKill.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     btnKill.Location = new System.Drawing.Point(382, 5);
     btnKill.Name     = "btnKill";
     btnKill.Size     = new System.Drawing.Size(75, 23);
     btnKill.TabIndex = 7;
     btnKill.Text     = "Exit";
     btnKill.UseVisualStyleBackColor = true;
     btnKill.Click += new System.EventHandler(this.btnKill_Click);
     //
     // panel2
     //
     panel2.Controls.Add(this.pictureBox1);
     panel2.Controls.Add(this.textBoxMessage);
     panel2.Controls.Add(this.textBoxType);
     panel2.Dock     = System.Windows.Forms.DockStyle.Top;
     panel2.Location = new System.Drawing.Point(10, 10);
     panel2.Name     = "panel2";
     panel2.Size     = new System.Drawing.Size(457, 72);
     panel2.TabIndex = 8;
     //
     // pictureBox1
     //
     pictureBox1.Image    = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
     pictureBox1.Location = new System.Drawing.Point(0, 0);
     pictureBox1.Name     = "pictureBox1";
     pictureBox1.Size     = new System.Drawing.Size(98, 61);
     pictureBox1.TabIndex = 2;
     pictureBox1.TabStop  = false;
     //
     // tabControl
     //
     tabControl.Appearance = System.Windows.Forms.TabAppearance.FlatButtons;
     tabControl.Controls.Add(this.tabPageMessage);
     tabControl.Controls.Add(this.tabPageDetails);
     tabControl.Controls.Add(this.tabPageSystem);
     tabControl.Dock          = System.Windows.Forms.DockStyle.Fill;
     tabControl.Location      = new System.Drawing.Point(10, 82);
     tabControl.Multiline     = true;
     tabControl.Name          = "tabControl";
     tabControl.Padding       = new System.Drawing.Point(5, 5);
     tabControl.SelectedIndex = 0;
     tabControl.Size          = new System.Drawing.Size(457, 223);
     tabControl.TabIndex      = 1;
     //
     // tabPageMessage
     //
     tabPageMessage.Controls.Add(this.richTextBox1);
     tabPageMessage.Location = new System.Drawing.Point(4, 29);
     tabPageMessage.Name     = "tabPageMessage";
     tabPageMessage.Padding  = new System.Windows.Forms.Padding(3);
     tabPageMessage.Size     = new System.Drawing.Size(449, 190);
     tabPageMessage.TabIndex = 0;
     tabPageMessage.Text     = "Message";
     tabPageMessage.UseVisualStyleBackColor = true;
     //
     // richTextBox1
     //
     richTextBox1.BorderStyle = System.Windows.Forms.BorderStyle.None;
     richTextBox1.Location    = new System.Drawing.Point(11, 22);
     richTextBox1.Name        = "richTextBox1";
     richTextBox1.ReadOnly    = true;
     richTextBox1.Size        = new System.Drawing.Size(423, 151);
     richTextBox1.TabIndex    = 1;
     richTextBox1.Text        = resources.GetString("richTextBox1.Text");
     //
     // tabPageDetails
     //
     tabPageDetails.Controls.Add(this.textBoxStack);
     tabPageDetails.Location = new System.Drawing.Point(4, 29);
     tabPageDetails.Name     = "tabPageDetails";
     tabPageDetails.Padding  = new System.Windows.Forms.Padding(5);
     tabPageDetails.Size     = new System.Drawing.Size(449, 190);
     tabPageDetails.TabIndex = 1;
     tabPageDetails.Text     = "Details";
     tabPageDetails.UseVisualStyleBackColor = true;
     //
     // tabPageSystem
     //
     tabPageSystem.Controls.Add(this.textBoxSystem);
     tabPageSystem.Location = new System.Drawing.Point(4, 29);
     tabPageSystem.Name     = "tabPageSystem";
     tabPageSystem.Padding  = new System.Windows.Forms.Padding(5);
     tabPageSystem.Size     = new System.Drawing.Size(449, 190);
     tabPageSystem.TabIndex = 2;
     tabPageSystem.Text     = "System";
     tabPageSystem.UseVisualStyleBackColor = true;
     //
     // textBoxSystem
     //
     textBoxSystem.AcceptsReturn = true;
     textBoxSystem.Dock          = System.Windows.Forms.DockStyle.Fill;
     textBoxSystem.Font          = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     textBoxSystem.Location      = new System.Drawing.Point(5, 5);
     textBoxSystem.Multiline     = true;
     textBoxSystem.Name          = "textBoxSystem";
     textBoxSystem.ReadOnly      = true;
     textBoxSystem.ScrollBars    = System.Windows.Forms.ScrollBars.Both;
     textBoxSystem.Size          = new System.Drawing.Size(439, 180);
     textBoxSystem.TabIndex      = 4;
     textBoxSystem.WordWrap      = false;
     //
     // wLastChanceTrace
     //
     AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     ClientSize          = new System.Drawing.Size(477, 343);
     Controls.Add(this.tabControl);
     Controls.Add(this.panel2);
     Controls.Add(this.panelBtn);
     Name          = "wLastChanceTrace";
     Padding       = new System.Windows.Forms.Padding(10);
     ShowIcon      = false;
     ShowInTaskbar = false;
     StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     Text          = "LastChanceTrace";
     TopMost       = true;
     panelBtn.ResumeLayout(false);
     panel2.ResumeLayout(false);
     panel2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     tabControl.ResumeLayout(false);
     tabPageMessage.ResumeLayout(false);
     tabPageDetails.ResumeLayout(false);
     tabPageDetails.PerformLayout();
     tabPageSystem.ResumeLayout(false);
     tabPageSystem.PerformLayout();
     ResumeLayout(false);
 }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            System.Windows.Forms.Label provinceIcLabel;
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ScenarioEditorForm));
            System.Windows.Forms.Label provinceInfrastructureLabel;
            System.Windows.Forms.Label provinceLandFortLabel;
            System.Windows.Forms.Label provinceCoastalFortLabel;
            System.Windows.Forms.Label provinceNavalBaseLabel;
            System.Windows.Forms.Label provinceAirBaseLabel;
            System.Windows.Forms.Label provinceAntiAirLabel;
            System.Windows.Forms.Label provinceNuclearReactorLabel;
            System.Windows.Forms.Label provinceRocketTestLabel;
            System.Windows.Forms.Label provinceRadarStationLbel;
            System.Windows.Forms.Label buildingCurrentLabel1;
            System.Windows.Forms.Label buildingMaxLabel1;
            System.Windows.Forms.Label buildingRelativeLabel1;
            System.Windows.Forms.Label provinceNameLabel;
            System.Windows.Forms.Label provinceVpLabel;
            System.Windows.Forms.Label provinceRevoltRiskLabel;
            System.Windows.Forms.Label resourceMaxLabel;
            System.Windows.Forms.Label resourceCurrentLabel;
            System.Windows.Forms.Label resourcePoolLabel;
            System.Windows.Forms.TabPage technologyTabPage;
            System.Windows.Forms.Label peacetimeIcModifierLabel;
            System.Windows.Forms.Label wartimeIcModifierLabel;
            System.Windows.Forms.Label groundDefEffLabel;
            System.Windows.Forms.Label relativeManpowerLabel;
            System.Windows.Forms.Label industrialModifierLabel;
            System.Windows.Forms.Label aiFileLabel;
            System.Windows.Forms.Label countryOffmapLabel;
            System.Windows.Forms.Label countryStockpileLabel;
            System.Windows.Forms.Label nukeDateLabel;
            System.Windows.Forms.Label dissentLabel;
            System.Windows.Forms.Label flagExtLabel;
            System.Windows.Forms.Label nukeLabel;
            System.Windows.Forms.Label extraTcLabel;
            System.Windows.Forms.Label belligerenceLabel;
            System.Windows.Forms.Label regularIdLabel;
            System.Windows.Forms.Label countryNameLabel;
            System.Windows.Forms.Label tradeStartDateLabel;
            System.Windows.Forms.Label tradeEndDateLabel;
            System.Windows.Forms.Label tradeIdLabel;
            System.Windows.Forms.Label relationValueLabel;
            System.Windows.Forms.Label spyNumLabel;
            this.techTreePanel = new System.Windows.Forms.Panel();
            this.techTreePictureBox = new System.Windows.Forms.PictureBox();
            this.inventionsListView = new System.Windows.Forms.ListView();
            this.blueprintsListView = new System.Windows.Forms.ListView();
            this.ownedTechsListView = new System.Windows.Forms.ListView();
            this.ownedTechsLabel = new System.Windows.Forms.Label();
            this.techCategoryListBox = new System.Windows.Forms.ListBox();
            this.blueprintsLabel = new System.Windows.Forms.Label();
            this.inventionsLabel = new System.Windows.Forms.Label();
            this.techCountryListBox = new System.Windows.Forms.ListBox();
            this.provinceSyntheticOilLabel = new System.Windows.Forms.Label();
            this.provinceSyntheticRaresLabel = new System.Windows.Forms.Label();
            this.provinceNuclearPowerLabel = new System.Windows.Forms.Label();
            this.provinceIdLabel = new System.Windows.Forms.Label();
            this.closeButton = new System.Windows.Forms.Button();
            this.saveButton = new System.Windows.Forms.Button();
            this.reloadButton = new System.Windows.Forms.Button();
            this.provinceTabPage = new System.Windows.Forms.TabPage();
            this.provinceIdTextBox = new System.Windows.Forms.TextBox();
            this.provinceCountryFilterLabel = new System.Windows.Forms.Label();
            this.provinceCountryFilterComboBox = new System.Windows.Forms.ComboBox();
            this.provinceCountryGroupBox = new System.Windows.Forms.GroupBox();
            this.claimedProvinceCheckBox = new System.Windows.Forms.CheckBox();
            this.capitalCheckBox = new System.Windows.Forms.CheckBox();
            this.controlledProvinceCheckBox = new System.Windows.Forms.CheckBox();
            this.coreProvinceCheckBox = new System.Windows.Forms.CheckBox();
            this.ownedProvinceCheckBox = new System.Windows.Forms.CheckBox();
            this.mapFilterGroupBox = new System.Windows.Forms.GroupBox();
            this.mapFilterClaimedRadioButton = new System.Windows.Forms.RadioButton();
            this.mapFilterControlledRadioButton = new System.Windows.Forms.RadioButton();
            this.mapFilterOwnedRadioButton = new System.Windows.Forms.RadioButton();
            this.mapFilterCoreRadioButton = new System.Windows.Forms.RadioButton();
            this.mapFilterNoneRadioButton = new System.Windows.Forms.RadioButton();
            this.provinceInfoGroupBox = new System.Windows.Forms.GroupBox();
            this.provinceNameStringTextBox = new System.Windows.Forms.TextBox();
            this.revoltRiskTextBox = new System.Windows.Forms.TextBox();
            this.vpTextBox = new System.Windows.Forms.TextBox();
            this.provinceNameKeyTextBox = new System.Windows.Forms.TextBox();
            this.provinceResourceGroupBox = new System.Windows.Forms.GroupBox();
            this.manpowerCurrentTextBox = new System.Windows.Forms.TextBox();
            this.suppliesPoolTextBox = new System.Windows.Forms.TextBox();
            this.oilMaxTextBox = new System.Windows.Forms.TextBox();
            this.manpowerMaxTextBox = new System.Windows.Forms.TextBox();
            this.oilCurrentTextBox = new System.Windows.Forms.TextBox();
            this.oilPoolTextBox = new System.Windows.Forms.TextBox();
            this.rareMaterialsMaxTextBox = new System.Windows.Forms.TextBox();
            this.rareMaterialsCurrentTextBox = new System.Windows.Forms.TextBox();
            this.rareMaterialsPoolTextBox = new System.Windows.Forms.TextBox();
            this.metalMaxTextBox = new System.Windows.Forms.TextBox();
            this.metalCurrentTextBox = new System.Windows.Forms.TextBox();
            this.metalPoolTextBox = new System.Windows.Forms.TextBox();
            this.energyMaxTextBox = new System.Windows.Forms.TextBox();
            this.energyCurrentTextBox = new System.Windows.Forms.TextBox();
            this.provinceSuppliesLabel = new System.Windows.Forms.Label();
            this.energyPoolTextBox = new System.Windows.Forms.TextBox();
            this.provinceEnergyLabel = new System.Windows.Forms.Label();
            this.provinceOilLabel = new System.Windows.Forms.Label();
            this.provinceMetalLabel = new System.Windows.Forms.Label();
            this.provinceRareMaterialsLabel = new System.Windows.Forms.Label();
            this.provinceManpowerLabel = new System.Windows.Forms.Label();
            this.provinceBuildingGroupBox = new System.Windows.Forms.GroupBox();
            this.nuclearPowerRelativeTextBox = new System.Windows.Forms.TextBox();
            this.nuclearPowerMaxTextBox = new System.Windows.Forms.TextBox();
            this.nuclearPowerCurrentTextBox = new System.Windows.Forms.TextBox();
            this.syntheticRaresRelativeTextBox = new System.Windows.Forms.TextBox();
            this.syntheticRaresMaxTextBox = new System.Windows.Forms.TextBox();
            this.syntheticRaresCurrentTextBox = new System.Windows.Forms.TextBox();
            this.syntheticOilRelativeTextBox = new System.Windows.Forms.TextBox();
            this.syntheticOilMaxTextBox = new System.Windows.Forms.TextBox();
            this.syntheticOilCurrentTextBox = new System.Windows.Forms.TextBox();
            this.rocketTestRelativeTextBox = new System.Windows.Forms.TextBox();
            this.rocketTestMaxTextBox = new System.Windows.Forms.TextBox();
            this.rocketTestCurrentTextBox = new System.Windows.Forms.TextBox();
            this.infrastructureRelativeTextBox = new System.Windows.Forms.TextBox();
            this.infrastructureMaxTextBox = new System.Windows.Forms.TextBox();
            this.infrastructureCurrentTextBox = new System.Windows.Forms.TextBox();
            this.icRelativeTextBox = new System.Windows.Forms.TextBox();
            this.icMaxTextBox = new System.Windows.Forms.TextBox();
            this.icCurrentTextBox = new System.Windows.Forms.TextBox();
            this.nuclearReactorRelativeTextBox = new System.Windows.Forms.TextBox();
            this.nuclearReactorMaxTextBox = new System.Windows.Forms.TextBox();
            this.nuclearReactorCurrentTextBox = new System.Windows.Forms.TextBox();
            this.radarStationRelativeTextBox = new System.Windows.Forms.TextBox();
            this.radarStationMaxTextBox = new System.Windows.Forms.TextBox();
            this.radarStationCurrentTextBox = new System.Windows.Forms.TextBox();
            this.navalBaseRelativeTextBox = new System.Windows.Forms.TextBox();
            this.navalBaseMaxTextBox = new System.Windows.Forms.TextBox();
            this.navalBaseCurrentTextBox = new System.Windows.Forms.TextBox();
            this.airBaseRelativeTextBox = new System.Windows.Forms.TextBox();
            this.airBaseMaxTextBox = new System.Windows.Forms.TextBox();
            this.airBaseCurrentTextBox = new System.Windows.Forms.TextBox();
            this.antiAirRelativeTextBox = new System.Windows.Forms.TextBox();
            this.antiAirMaxTextBox = new System.Windows.Forms.TextBox();
            this.antiAirCurrentTextBox = new System.Windows.Forms.TextBox();
            this.coastalFortRelativeTextBox = new System.Windows.Forms.TextBox();
            this.coastalFortMaxTextBox = new System.Windows.Forms.TextBox();
            this.coastalFortCurrentTextBox = new System.Windows.Forms.TextBox();
            this.landFortRelativeTextBox = new System.Windows.Forms.TextBox();
            this.landFortMaxTextBox = new System.Windows.Forms.TextBox();
            this.landFortCurrentTextBox = new System.Windows.Forms.TextBox();
            this.provinceMapPanel = new System.Windows.Forms.Panel();
            this.provinceMapPictureBox = new System.Windows.Forms.PictureBox();
            this.provinceListView = new System.Windows.Forms.ListView();
            this.provinceIdColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.provinceNameColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.capitalProvinceColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.coreProvinceColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.ownedColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.controlledProvinceColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.claimedProvinceColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.governmentTabPage = new System.Windows.Forms.TabPage();
            this.cabinetGroupBox = new System.Windows.Forms.GroupBox();
            this.chiefOfAirIdTextBox = new System.Windows.Forms.TextBox();
            this.chiefOfAirTypeTextBox = new System.Windows.Forms.TextBox();
            this.chiefOfAirComboBox = new System.Windows.Forms.ComboBox();
            this.chiefOfAirLabel = new System.Windows.Forms.Label();
            this.chiefOfNavyIdTextBox = new System.Windows.Forms.TextBox();
            this.chiefOfNavyTypeTextBox = new System.Windows.Forms.TextBox();
            this.chiefOfNavyComboBox = new System.Windows.Forms.ComboBox();
            this.chiefOfNavyLabel = new System.Windows.Forms.Label();
            this.chiefOfArmyIdTextBox = new System.Windows.Forms.TextBox();
            this.chiefOfArmyTypeTextBox = new System.Windows.Forms.TextBox();
            this.chiefOfArmyComboBox = new System.Windows.Forms.ComboBox();
            this.chiefOfArmyLabel = new System.Windows.Forms.Label();
            this.chiefOfStaffIdTextBox = new System.Windows.Forms.TextBox();
            this.chiefOfStaffTypeTextBox = new System.Windows.Forms.TextBox();
            this.chiefOfStaffComboBox = new System.Windows.Forms.ComboBox();
            this.chiefOfStaffLabel = new System.Windows.Forms.Label();
            this.ministerOfIntelligenceIdTextBox = new System.Windows.Forms.TextBox();
            this.ministerOfIntelligenceTypeTextBox = new System.Windows.Forms.TextBox();
            this.ministerOfIntelligenceComboBox = new System.Windows.Forms.ComboBox();
            this.ministerOfIntelligenceLabel = new System.Windows.Forms.Label();
            this.ministerOfSecurityIdTextBox = new System.Windows.Forms.TextBox();
            this.ministerOfSecurityTypeTextBox = new System.Windows.Forms.TextBox();
            this.ministerOfSecurityComboBox = new System.Windows.Forms.ComboBox();
            this.ministerOfSecurityLabel = new System.Windows.Forms.Label();
            this.armamentMinisterIdTextBox = new System.Windows.Forms.TextBox();
            this.armamentMinisterTypeTextBox = new System.Windows.Forms.TextBox();
            this.armamentMinisterComboBox = new System.Windows.Forms.ComboBox();
            this.armamentMinisterLabel = new System.Windows.Forms.Label();
            this.foreignMinisterIdTextBox = new System.Windows.Forms.TextBox();
            this.foreignMinisterTypeTextBox = new System.Windows.Forms.TextBox();
            this.foreignMinisterComboBox = new System.Windows.Forms.ComboBox();
            this.foreignMinisterlabel = new System.Windows.Forms.Label();
            this.headOfGovernmentIdTextBox = new System.Windows.Forms.TextBox();
            this.headOfGovernmentTypeTextBox = new System.Windows.Forms.TextBox();
            this.headOfGovernmentComboBox = new System.Windows.Forms.ComboBox();
            this.headOfGovernmentLabel = new System.Windows.Forms.Label();
            this.headOfStateIdTextBox = new System.Windows.Forms.TextBox();
            this.headOfStateTypeTextBox = new System.Windows.Forms.TextBox();
            this.headOfStateComboBox = new System.Windows.Forms.ComboBox();
            this.headOfStateLabel = new System.Windows.Forms.Label();
            this.governmentCountryListBox = new System.Windows.Forms.ListBox();
            this.politicalSliderGroupBox = new System.Windows.Forms.GroupBox();
            this.sliderDateLabel = new System.Windows.Forms.Label();
            this.interventionismTrackBar = new System.Windows.Forms.TrackBar();
            this.isolationismLabel = new System.Windows.Forms.Label();
            this.interventionismLabel = new System.Windows.Forms.Label();
            this.defenseLobbyTrackBar = new System.Windows.Forms.TrackBar();
            this.doveLobbyLabel = new System.Windows.Forms.Label();
            this.hawkLobbyLabel = new System.Windows.Forms.Label();
            this.professionalArmyTrackBar = new System.Windows.Forms.TrackBar();
            this.draftedArmyLabel = new System.Windows.Forms.Label();
            this.standingArmyLabel = new System.Windows.Forms.Label();
            this.freeMarketTrackBar = new System.Windows.Forms.TrackBar();
            this.centralPlanningLabel = new System.Windows.Forms.Label();
            this.freeMarketLabel = new System.Windows.Forms.Label();
            this.freedomTrackBar = new System.Windows.Forms.TrackBar();
            this.closedSocietyLabel = new System.Windows.Forms.Label();
            this.openSocietyLabel = new System.Windows.Forms.Label();
            this.politicalLeftTrackBar = new System.Windows.Forms.TrackBar();
            this.politicalRightLabel = new System.Windows.Forms.Label();
            this.politicalLeftLabel = new System.Windows.Forms.Label();
            this.democraticTrackBar = new System.Windows.Forms.TrackBar();
            this.authoritarianLabel = new System.Windows.Forms.Label();
            this.democraticLabel = new System.Windows.Forms.Label();
            this.sliderDayTextBox = new System.Windows.Forms.TextBox();
            this.sliderMonthTextBox = new System.Windows.Forms.TextBox();
            this.sliderYearTextBox = new System.Windows.Forms.TextBox();
            this.countryTabPage = new System.Windows.Forms.TabPage();
            this.countryModifierGroupBox = new System.Windows.Forms.GroupBox();
            this.groundDefEffTextBox = new System.Windows.Forms.TextBox();
            this.peacetimeIcModifierTextBox = new System.Windows.Forms.TextBox();
            this.relativeManpowerTextBox = new System.Windows.Forms.TextBox();
            this.wartimeIcModifierTextBox = new System.Windows.Forms.TextBox();
            this.industrialModifierTextBox = new System.Windows.Forms.TextBox();
            this.aiGroupBox = new System.Windows.Forms.GroupBox();
            this.aiFileBrowseButton = new System.Windows.Forms.Button();
            this.aiFileNameTextBox = new System.Windows.Forms.TextBox();
            this.countryListBox = new System.Windows.Forms.ListBox();
            this.countryResourceGroupBox = new System.Windows.Forms.GroupBox();
            this.offmapIcTextBox = new System.Windows.Forms.TextBox();
            this.countryIcLabel = new System.Windows.Forms.Label();
            this.offmapManpowerTextBox = new System.Windows.Forms.TextBox();
            this.offmapEscortsTextBox = new System.Windows.Forms.TextBox();
            this.offmapTransportsTextBox = new System.Windows.Forms.TextBox();
            this.offmapMoneyTextBox = new System.Windows.Forms.TextBox();
            this.offmapSuppliesTextBox = new System.Windows.Forms.TextBox();
            this.offmapOilTextBox = new System.Windows.Forms.TextBox();
            this.offmapRareMaterialsTextBox = new System.Windows.Forms.TextBox();
            this.offmapMetalTextBox = new System.Windows.Forms.TextBox();
            this.offmapEnergyTextBox = new System.Windows.Forms.TextBox();
            this.countryManpowerTextBox = new System.Windows.Forms.TextBox();
            this.countryManpowerLabel = new System.Windows.Forms.Label();
            this.countryEscortsTextBox = new System.Windows.Forms.TextBox();
            this.countryEscortsLabel = new System.Windows.Forms.Label();
            this.countryTransportsTextBox = new System.Windows.Forms.TextBox();
            this.countryTransportsLabel = new System.Windows.Forms.Label();
            this.countryMoneyTextBox = new System.Windows.Forms.TextBox();
            this.countryMoneyLabel = new System.Windows.Forms.Label();
            this.countrySuppliesTextBox = new System.Windows.Forms.TextBox();
            this.countrySuppliesLabel = new System.Windows.Forms.Label();
            this.countryOilTextBox = new System.Windows.Forms.TextBox();
            this.countryOilLabel = new System.Windows.Forms.Label();
            this.countryRareMaterialsTextBox = new System.Windows.Forms.TextBox();
            this.countryRareMaterialsLabel = new System.Windows.Forms.Label();
            this.countryMetalTextBox = new System.Windows.Forms.TextBox();
            this.countryMetalLabel = new System.Windows.Forms.Label();
            this.countryEnergyTextBox = new System.Windows.Forms.TextBox();
            this.countryEnergyLabel = new System.Windows.Forms.Label();
            this.countryInfoGroupBox = new System.Windows.Forms.GroupBox();
            this.countryNameStringTextBox = new System.Windows.Forms.TextBox();
            this.nukeDayTextBox = new System.Windows.Forms.TextBox();
            this.nukeMonthTextBox = new System.Windows.Forms.TextBox();
            this.nukeYearTextBox = new System.Windows.Forms.TextBox();
            this.dissentTextBox = new System.Windows.Forms.TextBox();
            this.flagExtTextBox = new System.Windows.Forms.TextBox();
            this.nukeTextBox = new System.Windows.Forms.TextBox();
            this.extraTcTextBox = new System.Windows.Forms.TextBox();
            this.belligerenceTextBox = new System.Windows.Forms.TextBox();
            this.regularIdComboBox = new System.Windows.Forms.ComboBox();
            this.countryNameKeyTextBox = new System.Windows.Forms.TextBox();
            this.tradeTabPage = new System.Windows.Forms.TabPage();
            this.tradeDealsGroupBox = new System.Windows.Forms.GroupBox();
            this.tradeCountryComboBox1 = new System.Windows.Forms.ComboBox();
            this.tradeRareMaterialsTextBox1 = new System.Windows.Forms.TextBox();
            this.tradeRareMaterialsTextBox2 = new System.Windows.Forms.TextBox();
            this.tradeRareMaterialsLabel = new System.Windows.Forms.Label();
            this.tradeOilLabel = new System.Windows.Forms.Label();
            this.tradeMetalTextBox2 = new System.Windows.Forms.TextBox();
            this.tradeOilTextBox1 = new System.Windows.Forms.TextBox();
            this.tradeMetalTextBox1 = new System.Windows.Forms.TextBox();
            this.tradeSwapButton = new System.Windows.Forms.Button();
            this.tradeOilTextBox2 = new System.Windows.Forms.TextBox();
            this.tradeMoneyTextBox2 = new System.Windows.Forms.TextBox();
            this.tradeMetalLabel = new System.Windows.Forms.Label();
            this.tradeSuppliesLabel = new System.Windows.Forms.Label();
            this.tradeMoneyTextBox1 = new System.Windows.Forms.TextBox();
            this.tradeEnergyTextBox2 = new System.Windows.Forms.TextBox();
            this.tradeCountryComboBox2 = new System.Windows.Forms.ComboBox();
            this.tradeSuppliesTextBox1 = new System.Windows.Forms.TextBox();
            this.tradeMoneyLabel = new System.Windows.Forms.Label();
            this.tradeEnergyTextBox1 = new System.Windows.Forms.TextBox();
            this.tradeEnergyLabel = new System.Windows.Forms.Label();
            this.tradeSuppliesTextBox2 = new System.Windows.Forms.TextBox();
            this.tradeInfoGroupBox = new System.Windows.Forms.GroupBox();
            this.tradeIdTextBox = new System.Windows.Forms.TextBox();
            this.tradeTypeTextBox = new System.Windows.Forms.TextBox();
            this.tradeStartYearTextBox = new System.Windows.Forms.TextBox();
            this.tradeStartMonthTextBox = new System.Windows.Forms.TextBox();
            this.tradeCancelCheckBox = new System.Windows.Forms.CheckBox();
            this.tradeEndDayTextBox = new System.Windows.Forms.TextBox();
            this.tradeStartDayTextBox = new System.Windows.Forms.TextBox();
            this.tradeEndMonthTextBox = new System.Windows.Forms.TextBox();
            this.tradeEndYearTextBox = new System.Windows.Forms.TextBox();
            this.tradeListView = new System.Windows.Forms.ListView();
            this.tradeCountryColumnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.tradeCountryColumnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.tradeDealsColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.tradeDownButton = new System.Windows.Forms.Button();
            this.tradeNewButton = new System.Windows.Forms.Button();
            this.tradeRemoveButton = new System.Windows.Forms.Button();
            this.tradeUpButton = new System.Windows.Forms.Button();
            this.relationTabPage = new System.Windows.Forms.TabPage();
            this.peaceGroupBox = new System.Windows.Forms.GroupBox();
            this.peaceIdTextBox = new System.Windows.Forms.TextBox();
            this.peaceTypeTextBox = new System.Windows.Forms.TextBox();
            this.peaceEndDayTextBox = new System.Windows.Forms.TextBox();
            this.peaceEndLabel = new System.Windows.Forms.Label();
            this.peaceEndMonthTextBox = new System.Windows.Forms.TextBox();
            this.peaceIdLabel = new System.Windows.Forms.Label();
            this.peaceEndYearTextBox = new System.Windows.Forms.TextBox();
            this.peaceStartLabel = new System.Windows.Forms.Label();
            this.peaceStartYearTextBox = new System.Windows.Forms.TextBox();
            this.peaceStartDayTextBox = new System.Windows.Forms.TextBox();
            this.peaceCheckBox = new System.Windows.Forms.CheckBox();
            this.peaceStartMonthTextBox = new System.Windows.Forms.TextBox();
            this.guaranteedGroupBox = new System.Windows.Forms.GroupBox();
            this.guaranteedCheckBox = new System.Windows.Forms.CheckBox();
            this.guaranteedYearTextBox = new System.Windows.Forms.TextBox();
            this.guaranteedMonthTextBox = new System.Windows.Forms.TextBox();
            this.guaranteedEndLabel = new System.Windows.Forms.Label();
            this.guaranteedDayTextBox = new System.Windows.Forms.TextBox();
            this.nonAggressionGroupBox = new System.Windows.Forms.GroupBox();
            this.nonAggressionIdTextBox = new System.Windows.Forms.TextBox();
            this.nonAggressionTypeTextBox = new System.Windows.Forms.TextBox();
            this.nonAggressionIdLabel = new System.Windows.Forms.Label();
            this.nonAggressionCheckBox = new System.Windows.Forms.CheckBox();
            this.nonAggressionStartMonthTextBox = new System.Windows.Forms.TextBox();
            this.nonAggressionStartYearTextBox = new System.Windows.Forms.TextBox();
            this.nonAggressionStartDayTextBox = new System.Windows.Forms.TextBox();
            this.nonAggressionStartLabel = new System.Windows.Forms.Label();
            this.nonAggressionEndYearTextBox = new System.Windows.Forms.TextBox();
            this.nonAggressionEndMonthTextBox = new System.Windows.Forms.TextBox();
            this.nonAggressionEndDayTextBox = new System.Windows.Forms.TextBox();
            this.nonAggressionEndLabel = new System.Windows.Forms.Label();
            this.relationGroupBox = new System.Windows.Forms.GroupBox();
            this.relationValueTextBox = new System.Windows.Forms.TextBox();
            this.controlCheckBox = new System.Windows.Forms.CheckBox();
            this.masterCheckBox = new System.Windows.Forms.CheckBox();
            this.accessCheckBox = new System.Windows.Forms.CheckBox();
            this.intelligenceGroupBox = new System.Windows.Forms.GroupBox();
            this.spyNumNumericUpDown = new System.Windows.Forms.NumericUpDown();
            this.relationListView = new System.Windows.Forms.ListView();
            this.relationCountryColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.relationValueColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.relationMasterColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.relationControlColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.relationAccessColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.relationGuaranteeColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.relationNonAggressionColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.relationPeaceColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.relationSpyColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.relationCountryListBox = new System.Windows.Forms.ListBox();
            this.allianceTabPage = new System.Windows.Forms.TabPage();
            this.warGroupBox = new System.Windows.Forms.GroupBox();
            this.warDefenderLeaderButton = new System.Windows.Forms.Button();
            this.warAttackerLeaderButton = new System.Windows.Forms.Button();
            this.warDefenderIdLabel = new System.Windows.Forms.Label();
            this.warAttackerIdLabel = new System.Windows.Forms.Label();
            this.warDefenderIdTextBox = new System.Windows.Forms.TextBox();
            this.warDefenderTypeTextBox = new System.Windows.Forms.TextBox();
            this.warAttackerIdTextBox = new System.Windows.Forms.TextBox();
            this.warAttackerTypeTextBox = new System.Windows.Forms.TextBox();
            this.warIdTextBox = new System.Windows.Forms.TextBox();
            this.warTypeTextBox = new System.Windows.Forms.TextBox();
            this.warEndMonthTextBox = new System.Windows.Forms.TextBox();
            this.warIdLabel = new System.Windows.Forms.Label();
            this.warEndYearTextBox = new System.Windows.Forms.TextBox();
            this.warEndDayTextBox = new System.Windows.Forms.TextBox();
            this.warEndDateLabel = new System.Windows.Forms.Label();
            this.warStartMonthTextBox = new System.Windows.Forms.TextBox();
            this.warStartYearTextBox = new System.Windows.Forms.TextBox();
            this.warStartDayTextBox = new System.Windows.Forms.TextBox();
            this.warStartDateLabel = new System.Windows.Forms.Label();
            this.warDefenderLabel = new System.Windows.Forms.Label();
            this.warListView = new System.Windows.Forms.ListView();
            this.warAttackerColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.warDefenderColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.warNewButton = new System.Windows.Forms.Button();
            this.warAttackerRemoveButton = new System.Windows.Forms.Button();
            this.warUpButton = new System.Windows.Forms.Button();
            this.warAttackerListBox = new System.Windows.Forms.ListBox();
            this.warDefenderRemoveButton = new System.Windows.Forms.Button();
            this.warAttackerLabel = new System.Windows.Forms.Label();
            this.warDefenderListBox = new System.Windows.Forms.ListBox();
            this.warDownButton = new System.Windows.Forms.Button();
            this.warFreeCountryListBox = new System.Windows.Forms.ListBox();
            this.warAttackerAddButton = new System.Windows.Forms.Button();
            this.warDefenderAddButton = new System.Windows.Forms.Button();
            this.warRemoveButton = new System.Windows.Forms.Button();
            this.allianceGroupBox = new System.Windows.Forms.GroupBox();
            this.allianceIdTextBox = new System.Windows.Forms.TextBox();
            this.allianceTypeTextBox = new System.Windows.Forms.TextBox();
            this.allianceIdLabel = new System.Windows.Forms.Label();
            this.allianceNameTextBox = new System.Windows.Forms.TextBox();
            this.allianceNameLabel = new System.Windows.Forms.Label();
            this.allianceListView = new System.Windows.Forms.ListView();
            this.allianceNameColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.allianceParticipantColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.allianceParticipantLabel = new System.Windows.Forms.Label();
            this.allianceLeaderButton = new System.Windows.Forms.Button();
            this.allianceParticipantListBox = new System.Windows.Forms.ListBox();
            this.allianceUpButton = new System.Windows.Forms.Button();
            this.allianceParticipantAddButton = new System.Windows.Forms.Button();
            this.allianceFreeCountryListBox = new System.Windows.Forms.ListBox();
            this.allianceRemoveButton = new System.Windows.Forms.Button();
            this.allianceNewButton = new System.Windows.Forms.Button();
            this.allianceParticipantRemoveButton = new System.Windows.Forms.Button();
            this.allianceDownButton = new System.Windows.Forms.Button();
            this.mainTabPage = new System.Windows.Forms.TabPage();
            this.scenarioOptionGroupBox = new System.Windows.Forms.GroupBox();
            this.gameSpeedLabel = new System.Windows.Forms.Label();
            this.difficultyLabel = new System.Windows.Forms.Label();
            this.aiAggressiveLabel = new System.Windows.Forms.Label();
            this.gameSpeedComboBox = new System.Windows.Forms.ComboBox();
            this.difficultyComboBox = new System.Windows.Forms.ComboBox();
            this.aiAggressiveComboBox = new System.Windows.Forms.ComboBox();
            this.allowTechnologyCheckBox = new System.Windows.Forms.CheckBox();
            this.allowProductionCheckBox = new System.Windows.Forms.CheckBox();
            this.allowDiplomacyCheckBox = new System.Windows.Forms.CheckBox();
            this.freeCountryCheckBox = new System.Windows.Forms.CheckBox();
            this.battleScenarioCheckBox = new System.Windows.Forms.CheckBox();
            this.countrySelectionGroupBox = new System.Windows.Forms.GroupBox();
            this.countryDescKeyTextBox = new System.Windows.Forms.TextBox();
            this.majorCountryNameStringTextBox = new System.Windows.Forms.TextBox();
            this.majorFlagExtTextBox = new System.Windows.Forms.TextBox();
            this.majorFlagExtLabel = new System.Windows.Forms.Label();
            this.majorCountryNameKeyTextBox = new System.Windows.Forms.TextBox();
            this.majorCountryNameLabel = new System.Windows.Forms.Label();
            this.selectableRemoveButton = new System.Windows.Forms.Button();
            this.selectableAddButton = new System.Windows.Forms.Button();
            this.unselectableListBox = new System.Windows.Forms.ListBox();
            this.selectableListBox = new System.Windows.Forms.ListBox();
            this.propagandaPictureBox = new System.Windows.Forms.PictureBox();
            this.propagandaBrowseButton = new System.Windows.Forms.Button();
            this.propagandaTextBox = new System.Windows.Forms.TextBox();
            this.propagandaLabel = new System.Windows.Forms.Label();
            this.countryDescStringTextBox = new System.Windows.Forms.TextBox();
            this.majorAddButton = new System.Windows.Forms.Button();
            this.majorRemoveButton = new System.Windows.Forms.Button();
            this.countryDescLabel = new System.Windows.Forms.Label();
            this.majorListBox = new System.Windows.Forms.ListBox();
            this.majorLabel = new System.Windows.Forms.Label();
            this.selectableLabel = new System.Windows.Forms.Label();
            this.majorUpButton = new System.Windows.Forms.Button();
            this.majorDownButton = new System.Windows.Forms.Button();
            this.scenarioInfoGroupBox = new System.Windows.Forms.GroupBox();
            this.includeFolderBrowseButton = new System.Windows.Forms.Button();
            this.includeFolderTextBox = new System.Windows.Forms.TextBox();
            this.includeFolderLabel = new System.Windows.Forms.Label();
            this.scenarioNameLabel = new System.Windows.Forms.Label();
            this.scenarioNameTextBox = new System.Windows.Forms.TextBox();
            this.panelPictureBox = new System.Windows.Forms.PictureBox();
            this.panelImageLabel = new System.Windows.Forms.Label();
            this.panelImageTextBox = new System.Windows.Forms.TextBox();
            this.panelImageBrowseButton = new System.Windows.Forms.Button();
            this.startDateLabel = new System.Windows.Forms.Label();
            this.startYearTextBox = new System.Windows.Forms.TextBox();
            this.startMonthTextBox = new System.Windows.Forms.TextBox();
            this.startDayTextBox = new System.Windows.Forms.TextBox();
            this.endDateLabel = new System.Windows.Forms.Label();
            this.endYearTextBox = new System.Windows.Forms.TextBox();
            this.endMonthTextBox = new System.Windows.Forms.TextBox();
            this.endDayTextBox = new System.Windows.Forms.TextBox();
            this.loadButton = new System.Windows.Forms.Button();
            this.folderGroupBox = new System.Windows.Forms.GroupBox();
            this.exportRadioButton = new System.Windows.Forms.RadioButton();
            this.modRadioButton = new System.Windows.Forms.RadioButton();
            this.vanillaRadioButton = new System.Windows.Forms.RadioButton();
            this.typeGroupBox = new System.Windows.Forms.GroupBox();
            this.saveGamesRadioButton = new System.Windows.Forms.RadioButton();
            this.scenarioRadioButton = new System.Windows.Forms.RadioButton();
            this.scenarioListBox = new System.Windows.Forms.ListBox();
            this.scenarioTabControl = new System.Windows.Forms.TabControl();
            this.oobTabPage = new System.Windows.Forms.TabPage();
            this.oobBottomButton = new System.Windows.Forms.Button();
            this.oobDownButton = new System.Windows.Forms.Button();
            this.oobUpButton = new System.Windows.Forms.Button();
            this.oobTopButton = new System.Windows.Forms.Button();
            this.oobRemoveButton = new System.Windows.Forms.Button();
            this.oobCloneButton = new System.Windows.Forms.Button();
            this.oobAddDivisionButton = new System.Windows.Forms.Button();
            this.oobAddUnitButton = new System.Windows.Forms.Button();
            this.divisionGroupBox = new System.Windows.Forms.GroupBox();
            this.dormantCheckBox = new System.Windows.Forms.CheckBox();
            this.lockedCheckBox = new System.Windows.Forms.CheckBox();
            this.experienceTextBox = new System.Windows.Forms.TextBox();
            this.experienceLabel = new System.Windows.Forms.Label();
            this.divisionMoraleTextBox = new System.Windows.Forms.TextBox();
            this.divisionMoraleLabel = new System.Windows.Forms.Label();
            this.maxOrganisationTextBox = new System.Windows.Forms.TextBox();
            this.organisationTextBox = new System.Windows.Forms.TextBox();
            this.organisationLabel = new System.Windows.Forms.Label();
            this.maxStrengthTextBox = new System.Windows.Forms.TextBox();
            this.strengthTextBox = new System.Windows.Forms.TextBox();
            this.strengthLabel = new System.Windows.Forms.Label();
            this.brigadeModelComboBox5 = new System.Windows.Forms.ComboBox();
            this.brigadeTypeComboBox5 = new System.Windows.Forms.ComboBox();
            this.brigadeModelComboBox4 = new System.Windows.Forms.ComboBox();
            this.brigadeTypeComboBox4 = new System.Windows.Forms.ComboBox();
            this.brigadeModelComboBox3 = new System.Windows.Forms.ComboBox();
            this.brigadeTypeComboBox3 = new System.Windows.Forms.ComboBox();
            this.brigadeModelComboBox2 = new System.Windows.Forms.ComboBox();
            this.brigadeTypeComboBox2 = new System.Windows.Forms.ComboBox();
            this.brigadeModelComboBox1 = new System.Windows.Forms.ComboBox();
            this.brigadesLabel = new System.Windows.Forms.Label();
            this.brigadeTypeComboBox1 = new System.Windows.Forms.ComboBox();
            this.unitModelComboBox = new System.Windows.Forms.ComboBox();
            this.unitTypeLabel = new System.Windows.Forms.Label();
            this.unitTypeComboBox = new System.Windows.Forms.ComboBox();
            this.divisionNameTextBox = new System.Windows.Forms.TextBox();
            this.divisionNameLabel = new System.Windows.Forms.Label();
            this.divisionIdTextBox = new System.Windows.Forms.TextBox();
            this.divisionTypeTextBox = new System.Windows.Forms.TextBox();
            this.divisionIdLabel = new System.Windows.Forms.Label();
            this.unitGroupBox = new System.Windows.Forms.GroupBox();
            this.leaderComboBox = new System.Windows.Forms.ComboBox();
            this.baseComboBox = new System.Windows.Forms.ComboBox();
            this.locationComboBox = new System.Windows.Forms.ComboBox();
            this.digInTextBox = new System.Windows.Forms.TextBox();
            this.digInLabel = new System.Windows.Forms.Label();
            this.leaderTextBox = new System.Windows.Forms.TextBox();
            this.leaderLabel = new System.Windows.Forms.Label();
            this.unitMoraleTextBox = new System.Windows.Forms.TextBox();
            this.unitMoraleLabel = new System.Windows.Forms.Label();
            this.baseTextBox = new System.Windows.Forms.TextBox();
            this.baseLabel = new System.Windows.Forms.Label();
            this.locationTextBox = new System.Windows.Forms.TextBox();
            this.locationLabel = new System.Windows.Forms.Label();
            this.unitNameTextBox = new System.Windows.Forms.TextBox();
            this.unitNameLabel = new System.Windows.Forms.Label();
            this.unitIdTextBox = new System.Windows.Forms.TextBox();
            this.unitTypeTextBox = new System.Windows.Forms.TextBox();
            this.unitIdLabel = new System.Windows.Forms.Label();
            this.unitTreeView = new System.Windows.Forms.TreeView();
            this.oobCountryListBox = new System.Windows.Forms.ListBox();
            this.checkButton = new System.Windows.Forms.Button();
            provinceIcLabel = new System.Windows.Forms.Label();
            provinceInfrastructureLabel = new System.Windows.Forms.Label();
            provinceLandFortLabel = new System.Windows.Forms.Label();
            provinceCoastalFortLabel = new System.Windows.Forms.Label();
            provinceNavalBaseLabel = new System.Windows.Forms.Label();
            provinceAirBaseLabel = new System.Windows.Forms.Label();
            provinceAntiAirLabel = new System.Windows.Forms.Label();
            provinceNuclearReactorLabel = new System.Windows.Forms.Label();
            provinceRocketTestLabel = new System.Windows.Forms.Label();
            provinceRadarStationLbel = new System.Windows.Forms.Label();
            buildingCurrentLabel1 = new System.Windows.Forms.Label();
            buildingMaxLabel1 = new System.Windows.Forms.Label();
            buildingRelativeLabel1 = new System.Windows.Forms.Label();
            provinceNameLabel = new System.Windows.Forms.Label();
            provinceVpLabel = new System.Windows.Forms.Label();
            provinceRevoltRiskLabel = new System.Windows.Forms.Label();
            resourceMaxLabel = new System.Windows.Forms.Label();
            resourceCurrentLabel = new System.Windows.Forms.Label();
            resourcePoolLabel = new System.Windows.Forms.Label();
            technologyTabPage = new System.Windows.Forms.TabPage();
            peacetimeIcModifierLabel = new System.Windows.Forms.Label();
            wartimeIcModifierLabel = new System.Windows.Forms.Label();
            groundDefEffLabel = new System.Windows.Forms.Label();
            relativeManpowerLabel = new System.Windows.Forms.Label();
            industrialModifierLabel = new System.Windows.Forms.Label();
            aiFileLabel = new System.Windows.Forms.Label();
            countryOffmapLabel = new System.Windows.Forms.Label();
            countryStockpileLabel = new System.Windows.Forms.Label();
            nukeDateLabel = new System.Windows.Forms.Label();
            dissentLabel = new System.Windows.Forms.Label();
            flagExtLabel = new System.Windows.Forms.Label();
            nukeLabel = new System.Windows.Forms.Label();
            extraTcLabel = new System.Windows.Forms.Label();
            belligerenceLabel = new System.Windows.Forms.Label();
            regularIdLabel = new System.Windows.Forms.Label();
            countryNameLabel = new System.Windows.Forms.Label();
            tradeStartDateLabel = new System.Windows.Forms.Label();
            tradeEndDateLabel = new System.Windows.Forms.Label();
            tradeIdLabel = new System.Windows.Forms.Label();
            relationValueLabel = new System.Windows.Forms.Label();
            spyNumLabel = new System.Windows.Forms.Label();
            technologyTabPage.SuspendLayout();
            this.techTreePanel.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.techTreePictureBox)).BeginInit();
            this.provinceTabPage.SuspendLayout();
            this.provinceCountryGroupBox.SuspendLayout();
            this.mapFilterGroupBox.SuspendLayout();
            this.provinceInfoGroupBox.SuspendLayout();
            this.provinceResourceGroupBox.SuspendLayout();
            this.provinceBuildingGroupBox.SuspendLayout();
            this.provinceMapPanel.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.provinceMapPictureBox)).BeginInit();
            this.governmentTabPage.SuspendLayout();
            this.cabinetGroupBox.SuspendLayout();
            this.politicalSliderGroupBox.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.interventionismTrackBar)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.defenseLobbyTrackBar)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.professionalArmyTrackBar)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.freeMarketTrackBar)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.freedomTrackBar)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.politicalLeftTrackBar)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.democraticTrackBar)).BeginInit();
            this.countryTabPage.SuspendLayout();
            this.countryModifierGroupBox.SuspendLayout();
            this.aiGroupBox.SuspendLayout();
            this.countryResourceGroupBox.SuspendLayout();
            this.countryInfoGroupBox.SuspendLayout();
            this.tradeTabPage.SuspendLayout();
            this.tradeDealsGroupBox.SuspendLayout();
            this.tradeInfoGroupBox.SuspendLayout();
            this.relationTabPage.SuspendLayout();
            this.peaceGroupBox.SuspendLayout();
            this.guaranteedGroupBox.SuspendLayout();
            this.nonAggressionGroupBox.SuspendLayout();
            this.relationGroupBox.SuspendLayout();
            this.intelligenceGroupBox.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.spyNumNumericUpDown)).BeginInit();
            this.allianceTabPage.SuspendLayout();
            this.warGroupBox.SuspendLayout();
            this.allianceGroupBox.SuspendLayout();
            this.mainTabPage.SuspendLayout();
            this.scenarioOptionGroupBox.SuspendLayout();
            this.countrySelectionGroupBox.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.propagandaPictureBox)).BeginInit();
            this.scenarioInfoGroupBox.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.panelPictureBox)).BeginInit();
            this.folderGroupBox.SuspendLayout();
            this.typeGroupBox.SuspendLayout();
            this.scenarioTabControl.SuspendLayout();
            this.oobTabPage.SuspendLayout();
            this.divisionGroupBox.SuspendLayout();
            this.unitGroupBox.SuspendLayout();
            this.SuspendLayout();
            // 
            // provinceIcLabel
            // 
            resources.ApplyResources(provinceIcLabel, "provinceIcLabel");
            provinceIcLabel.Name = "provinceIcLabel";
            // 
            // provinceInfrastructureLabel
            // 
            resources.ApplyResources(provinceInfrastructureLabel, "provinceInfrastructureLabel");
            provinceInfrastructureLabel.Name = "provinceInfrastructureLabel";
            // 
            // provinceLandFortLabel
            // 
            resources.ApplyResources(provinceLandFortLabel, "provinceLandFortLabel");
            provinceLandFortLabel.Name = "provinceLandFortLabel";
            // 
            // provinceCoastalFortLabel
            // 
            resources.ApplyResources(provinceCoastalFortLabel, "provinceCoastalFortLabel");
            provinceCoastalFortLabel.Name = "provinceCoastalFortLabel";
            // 
            // provinceNavalBaseLabel
            // 
            resources.ApplyResources(provinceNavalBaseLabel, "provinceNavalBaseLabel");
            provinceNavalBaseLabel.Name = "provinceNavalBaseLabel";
            // 
            // provinceAirBaseLabel
            // 
            resources.ApplyResources(provinceAirBaseLabel, "provinceAirBaseLabel");
            provinceAirBaseLabel.Name = "provinceAirBaseLabel";
            // 
            // provinceAntiAirLabel
            // 
            resources.ApplyResources(provinceAntiAirLabel, "provinceAntiAirLabel");
            provinceAntiAirLabel.Name = "provinceAntiAirLabel";
            // 
            // provinceNuclearReactorLabel
            // 
            resources.ApplyResources(provinceNuclearReactorLabel, "provinceNuclearReactorLabel");
            provinceNuclearReactorLabel.Name = "provinceNuclearReactorLabel";
            // 
            // provinceRocketTestLabel
            // 
            resources.ApplyResources(provinceRocketTestLabel, "provinceRocketTestLabel");
            provinceRocketTestLabel.Name = "provinceRocketTestLabel";
            // 
            // provinceRadarStationLbel
            // 
            resources.ApplyResources(provinceRadarStationLbel, "provinceRadarStationLbel");
            provinceRadarStationLbel.Name = "provinceRadarStationLbel";
            // 
            // buildingCurrentLabel1
            // 
            resources.ApplyResources(buildingCurrentLabel1, "buildingCurrentLabel1");
            buildingCurrentLabel1.Name = "buildingCurrentLabel1";
            // 
            // buildingMaxLabel1
            // 
            resources.ApplyResources(buildingMaxLabel1, "buildingMaxLabel1");
            buildingMaxLabel1.Name = "buildingMaxLabel1";
            // 
            // buildingRelativeLabel1
            // 
            resources.ApplyResources(buildingRelativeLabel1, "buildingRelativeLabel1");
            buildingRelativeLabel1.Name = "buildingRelativeLabel1";
            // 
            // provinceNameLabel
            // 
            resources.ApplyResources(provinceNameLabel, "provinceNameLabel");
            provinceNameLabel.Name = "provinceNameLabel";
            // 
            // provinceVpLabel
            // 
            resources.ApplyResources(provinceVpLabel, "provinceVpLabel");
            provinceVpLabel.Name = "provinceVpLabel";
            // 
            // provinceRevoltRiskLabel
            // 
            resources.ApplyResources(provinceRevoltRiskLabel, "provinceRevoltRiskLabel");
            provinceRevoltRiskLabel.Name = "provinceRevoltRiskLabel";
            // 
            // resourceMaxLabel
            // 
            resources.ApplyResources(resourceMaxLabel, "resourceMaxLabel");
            resourceMaxLabel.Name = "resourceMaxLabel";
            // 
            // resourceCurrentLabel
            // 
            resources.ApplyResources(resourceCurrentLabel, "resourceCurrentLabel");
            resourceCurrentLabel.Name = "resourceCurrentLabel";
            // 
            // resourcePoolLabel
            // 
            resources.ApplyResources(resourcePoolLabel, "resourcePoolLabel");
            resourcePoolLabel.Name = "resourcePoolLabel";
            // 
            // technologyTabPage
            // 
            resources.ApplyResources(technologyTabPage, "technologyTabPage");
            technologyTabPage.BackColor = System.Drawing.SystemColors.Control;
            technologyTabPage.Controls.Add(this.techTreePanel);
            technologyTabPage.Controls.Add(this.inventionsListView);
            technologyTabPage.Controls.Add(this.blueprintsListView);
            technologyTabPage.Controls.Add(this.ownedTechsListView);
            technologyTabPage.Controls.Add(this.ownedTechsLabel);
            technologyTabPage.Controls.Add(this.techCategoryListBox);
            technologyTabPage.Controls.Add(this.blueprintsLabel);
            technologyTabPage.Controls.Add(this.inventionsLabel);
            technologyTabPage.Controls.Add(this.techCountryListBox);
            technologyTabPage.Name = "technologyTabPage";
            // 
            // techTreePanel
            // 
            resources.ApplyResources(this.techTreePanel, "techTreePanel");
            this.techTreePanel.Controls.Add(this.techTreePictureBox);
            this.techTreePanel.Name = "techTreePanel";
            // 
            // techTreePictureBox
            // 
            resources.ApplyResources(this.techTreePictureBox, "techTreePictureBox");
            this.techTreePictureBox.Name = "techTreePictureBox";
            this.techTreePictureBox.TabStop = false;
            // 
            // inventionsListView
            // 
            resources.ApplyResources(this.inventionsListView, "inventionsListView");
            this.inventionsListView.CheckBoxes = true;
            this.inventionsListView.MultiSelect = false;
            this.inventionsListView.Name = "inventionsListView";
            this.inventionsListView.UseCompatibleStateImageBehavior = false;
            this.inventionsListView.View = System.Windows.Forms.View.List;
            // 
            // blueprintsListView
            // 
            resources.ApplyResources(this.blueprintsListView, "blueprintsListView");
            this.blueprintsListView.CheckBoxes = true;
            this.blueprintsListView.MultiSelect = false;
            this.blueprintsListView.Name = "blueprintsListView";
            this.blueprintsListView.UseCompatibleStateImageBehavior = false;
            this.blueprintsListView.View = System.Windows.Forms.View.List;
            // 
            // ownedTechsListView
            // 
            resources.ApplyResources(this.ownedTechsListView, "ownedTechsListView");
            this.ownedTechsListView.CheckBoxes = true;
            this.ownedTechsListView.MultiSelect = false;
            this.ownedTechsListView.Name = "ownedTechsListView";
            this.ownedTechsListView.UseCompatibleStateImageBehavior = false;
            this.ownedTechsListView.View = System.Windows.Forms.View.List;
            // 
            // ownedTechsLabel
            // 
            resources.ApplyResources(this.ownedTechsLabel, "ownedTechsLabel");
            this.ownedTechsLabel.Name = "ownedTechsLabel";
            // 
            // techCategoryListBox
            // 
            resources.ApplyResources(this.techCategoryListBox, "techCategoryListBox");
            this.techCategoryListBox.FormattingEnabled = true;
            this.techCategoryListBox.Name = "techCategoryListBox";
            this.techCategoryListBox.SelectedIndexChanged += new System.EventHandler(this.OnTechCategoryListBoxSelectedIndexChanged);
            // 
            // blueprintsLabel
            // 
            resources.ApplyResources(this.blueprintsLabel, "blueprintsLabel");
            this.blueprintsLabel.Name = "blueprintsLabel";
            // 
            // inventionsLabel
            // 
            resources.ApplyResources(this.inventionsLabel, "inventionsLabel");
            this.inventionsLabel.Name = "inventionsLabel";
            // 
            // techCountryListBox
            // 
            resources.ApplyResources(this.techCountryListBox, "techCountryListBox");
            this.techCountryListBox.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.techCountryListBox.FormattingEnabled = true;
            this.techCountryListBox.Name = "techCountryListBox";
            this.techCountryListBox.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.OnCountryListBoxDrawItem);
            this.techCountryListBox.SelectedIndexChanged += new System.EventHandler(this.OnTechCountryListBoxSelectedIndexChanged);
            // 
            // peacetimeIcModifierLabel
            // 
            resources.ApplyResources(peacetimeIcModifierLabel, "peacetimeIcModifierLabel");
            peacetimeIcModifierLabel.Name = "peacetimeIcModifierLabel";
            // 
            // wartimeIcModifierLabel
            // 
            resources.ApplyResources(wartimeIcModifierLabel, "wartimeIcModifierLabel");
            wartimeIcModifierLabel.Name = "wartimeIcModifierLabel";
            // 
            // groundDefEffLabel
            // 
            resources.ApplyResources(groundDefEffLabel, "groundDefEffLabel");
            groundDefEffLabel.Name = "groundDefEffLabel";
            // 
            // relativeManpowerLabel
            // 
            resources.ApplyResources(relativeManpowerLabel, "relativeManpowerLabel");
            relativeManpowerLabel.Name = "relativeManpowerLabel";
            // 
            // industrialModifierLabel
            // 
            resources.ApplyResources(industrialModifierLabel, "industrialModifierLabel");
            industrialModifierLabel.Name = "industrialModifierLabel";
            // 
            // aiFileLabel
            // 
            resources.ApplyResources(aiFileLabel, "aiFileLabel");
            aiFileLabel.Name = "aiFileLabel";
            // 
            // countryOffmapLabel
            // 
            resources.ApplyResources(countryOffmapLabel, "countryOffmapLabel");
            countryOffmapLabel.Name = "countryOffmapLabel";
            // 
            // countryStockpileLabel
            // 
            resources.ApplyResources(countryStockpileLabel, "countryStockpileLabel");
            countryStockpileLabel.Name = "countryStockpileLabel";
            // 
            // nukeDateLabel
            // 
            resources.ApplyResources(nukeDateLabel, "nukeDateLabel");
            nukeDateLabel.Name = "nukeDateLabel";
            // 
            // dissentLabel
            // 
            resources.ApplyResources(dissentLabel, "dissentLabel");
            dissentLabel.Name = "dissentLabel";
            // 
            // flagExtLabel
            // 
            resources.ApplyResources(flagExtLabel, "flagExtLabel");
            flagExtLabel.Name = "flagExtLabel";
            // 
            // nukeLabel
            // 
            resources.ApplyResources(nukeLabel, "nukeLabel");
            nukeLabel.Name = "nukeLabel";
            // 
            // extraTcLabel
            // 
            resources.ApplyResources(extraTcLabel, "extraTcLabel");
            extraTcLabel.Name = "extraTcLabel";
            // 
            // belligerenceLabel
            // 
            resources.ApplyResources(belligerenceLabel, "belligerenceLabel");
            belligerenceLabel.Name = "belligerenceLabel";
            // 
            // regularIdLabel
            // 
            resources.ApplyResources(regularIdLabel, "regularIdLabel");
            regularIdLabel.Name = "regularIdLabel";
            // 
            // countryNameLabel
            // 
            resources.ApplyResources(countryNameLabel, "countryNameLabel");
            countryNameLabel.Name = "countryNameLabel";
            // 
            // tradeStartDateLabel
            // 
            resources.ApplyResources(tradeStartDateLabel, "tradeStartDateLabel");
            tradeStartDateLabel.Name = "tradeStartDateLabel";
            // 
            // tradeEndDateLabel
            // 
            resources.ApplyResources(tradeEndDateLabel, "tradeEndDateLabel");
            tradeEndDateLabel.Name = "tradeEndDateLabel";
            // 
            // tradeIdLabel
            // 
            resources.ApplyResources(tradeIdLabel, "tradeIdLabel");
            tradeIdLabel.Name = "tradeIdLabel";
            // 
            // relationValueLabel
            // 
            resources.ApplyResources(relationValueLabel, "relationValueLabel");
            relationValueLabel.Name = "relationValueLabel";
            // 
            // spyNumLabel
            // 
            resources.ApplyResources(spyNumLabel, "spyNumLabel");
            spyNumLabel.Name = "spyNumLabel";
            // 
            // provinceSyntheticOilLabel
            // 
            resources.ApplyResources(this.provinceSyntheticOilLabel, "provinceSyntheticOilLabel");
            this.provinceSyntheticOilLabel.Name = "provinceSyntheticOilLabel";
            // 
            // provinceSyntheticRaresLabel
            // 
            resources.ApplyResources(this.provinceSyntheticRaresLabel, "provinceSyntheticRaresLabel");
            this.provinceSyntheticRaresLabel.Name = "provinceSyntheticRaresLabel";
            // 
            // provinceNuclearPowerLabel
            // 
            resources.ApplyResources(this.provinceNuclearPowerLabel, "provinceNuclearPowerLabel");
            this.provinceNuclearPowerLabel.Name = "provinceNuclearPowerLabel";
            // 
            // provinceIdLabel
            // 
            resources.ApplyResources(this.provinceIdLabel, "provinceIdLabel");
            this.provinceIdLabel.Name = "provinceIdLabel";
            // 
            // closeButton
            // 
            resources.ApplyResources(this.closeButton, "closeButton");
            this.closeButton.Name = "closeButton";
            this.closeButton.UseVisualStyleBackColor = true;
            this.closeButton.Click += new System.EventHandler(this.OnCloseButtonClick);
            // 
            // saveButton
            // 
            resources.ApplyResources(this.saveButton, "saveButton");
            this.saveButton.Name = "saveButton";
            this.saveButton.UseVisualStyleBackColor = true;
            this.saveButton.Click += new System.EventHandler(this.OnSaveButtonClick);
            // 
            // reloadButton
            // 
            resources.ApplyResources(this.reloadButton, "reloadButton");
            this.reloadButton.Name = "reloadButton";
            this.reloadButton.UseVisualStyleBackColor = true;
            this.reloadButton.Click += new System.EventHandler(this.OnReloadButtonClick);
            // 
            // provinceTabPage
            // 
            resources.ApplyResources(this.provinceTabPage, "provinceTabPage");
            this.provinceTabPage.BackColor = System.Drawing.SystemColors.Control;
            this.provinceTabPage.Controls.Add(this.provinceIdTextBox);
            this.provinceTabPage.Controls.Add(this.provinceCountryFilterLabel);
            this.provinceTabPage.Controls.Add(this.provinceCountryFilterComboBox);
            this.provinceTabPage.Controls.Add(this.provinceCountryGroupBox);
            this.provinceTabPage.Controls.Add(this.mapFilterGroupBox);
            this.provinceTabPage.Controls.Add(this.provinceInfoGroupBox);
            this.provinceTabPage.Controls.Add(this.provinceIdLabel);
            this.provinceTabPage.Controls.Add(this.provinceResourceGroupBox);
            this.provinceTabPage.Controls.Add(this.provinceBuildingGroupBox);
            this.provinceTabPage.Controls.Add(this.provinceMapPanel);
            this.provinceTabPage.Controls.Add(this.provinceListView);
            this.provinceTabPage.Name = "provinceTabPage";
            // 
            // provinceIdTextBox
            // 
            resources.ApplyResources(this.provinceIdTextBox, "provinceIdTextBox");
            this.provinceIdTextBox.Name = "provinceIdTextBox";
            this.provinceIdTextBox.Validated += new System.EventHandler(this.OnProvinceIdTextBoxValidated);
            // 
            // provinceCountryFilterLabel
            // 
            resources.ApplyResources(this.provinceCountryFilterLabel, "provinceCountryFilterLabel");
            this.provinceCountryFilterLabel.Name = "provinceCountryFilterLabel";
            // 
            // provinceCountryFilterComboBox
            // 
            resources.ApplyResources(this.provinceCountryFilterComboBox, "provinceCountryFilterComboBox");
            this.provinceCountryFilterComboBox.FormattingEnabled = true;
            this.provinceCountryFilterComboBox.Name = "provinceCountryFilterComboBox";
            this.provinceCountryFilterComboBox.SelectedIndexChanged += new System.EventHandler(this.OnProvinceCountryFilterComboBoxSelectedIndexChanged);
            // 
            // provinceCountryGroupBox
            // 
            resources.ApplyResources(this.provinceCountryGroupBox, "provinceCountryGroupBox");
            this.provinceCountryGroupBox.Controls.Add(this.claimedProvinceCheckBox);
            this.provinceCountryGroupBox.Controls.Add(this.capitalCheckBox);
            this.provinceCountryGroupBox.Controls.Add(this.controlledProvinceCheckBox);
            this.provinceCountryGroupBox.Controls.Add(this.coreProvinceCheckBox);
            this.provinceCountryGroupBox.Controls.Add(this.ownedProvinceCheckBox);
            this.provinceCountryGroupBox.Name = "provinceCountryGroupBox";
            this.provinceCountryGroupBox.TabStop = false;
            // 
            // claimedProvinceCheckBox
            // 
            resources.ApplyResources(this.claimedProvinceCheckBox, "claimedProvinceCheckBox");
            this.claimedProvinceCheckBox.Name = "claimedProvinceCheckBox";
            this.claimedProvinceCheckBox.UseVisualStyleBackColor = true;
            this.claimedProvinceCheckBox.CheckedChanged += new System.EventHandler(this.OnProvinceCheckBoxCheckedChanged);
            // 
            // capitalCheckBox
            // 
            resources.ApplyResources(this.capitalCheckBox, "capitalCheckBox");
            this.capitalCheckBox.Name = "capitalCheckBox";
            this.capitalCheckBox.UseVisualStyleBackColor = true;
            this.capitalCheckBox.CheckedChanged += new System.EventHandler(this.OnProvinceCheckBoxCheckedChanged);
            // 
            // controlledProvinceCheckBox
            // 
            resources.ApplyResources(this.controlledProvinceCheckBox, "controlledProvinceCheckBox");
            this.controlledProvinceCheckBox.Name = "controlledProvinceCheckBox";
            this.controlledProvinceCheckBox.UseVisualStyleBackColor = true;
            this.controlledProvinceCheckBox.CheckedChanged += new System.EventHandler(this.OnProvinceCheckBoxCheckedChanged);
            // 
            // coreProvinceCheckBox
            // 
            resources.ApplyResources(this.coreProvinceCheckBox, "coreProvinceCheckBox");
            this.coreProvinceCheckBox.Name = "coreProvinceCheckBox";
            this.coreProvinceCheckBox.UseVisualStyleBackColor = true;
            this.coreProvinceCheckBox.CheckedChanged += new System.EventHandler(this.OnProvinceCheckBoxCheckedChanged);
            // 
            // ownedProvinceCheckBox
            // 
            resources.ApplyResources(this.ownedProvinceCheckBox, "ownedProvinceCheckBox");
            this.ownedProvinceCheckBox.Name = "ownedProvinceCheckBox";
            this.ownedProvinceCheckBox.UseVisualStyleBackColor = true;
            this.ownedProvinceCheckBox.CheckedChanged += new System.EventHandler(this.OnProvinceCheckBoxCheckedChanged);
            // 
            // mapFilterGroupBox
            // 
            resources.ApplyResources(this.mapFilterGroupBox, "mapFilterGroupBox");
            this.mapFilterGroupBox.Controls.Add(this.mapFilterClaimedRadioButton);
            this.mapFilterGroupBox.Controls.Add(this.mapFilterControlledRadioButton);
            this.mapFilterGroupBox.Controls.Add(this.mapFilterOwnedRadioButton);
            this.mapFilterGroupBox.Controls.Add(this.mapFilterCoreRadioButton);
            this.mapFilterGroupBox.Controls.Add(this.mapFilterNoneRadioButton);
            this.mapFilterGroupBox.Name = "mapFilterGroupBox";
            this.mapFilterGroupBox.TabStop = false;
            // 
            // mapFilterClaimedRadioButton
            // 
            resources.ApplyResources(this.mapFilterClaimedRadioButton, "mapFilterClaimedRadioButton");
            this.mapFilterClaimedRadioButton.Name = "mapFilterClaimedRadioButton";
            this.mapFilterClaimedRadioButton.UseVisualStyleBackColor = true;
            this.mapFilterClaimedRadioButton.CheckedChanged += new System.EventHandler(this.OnMapFilterRadioButtonCheckedChanged);
            // 
            // mapFilterControlledRadioButton
            // 
            resources.ApplyResources(this.mapFilterControlledRadioButton, "mapFilterControlledRadioButton");
            this.mapFilterControlledRadioButton.Name = "mapFilterControlledRadioButton";
            this.mapFilterControlledRadioButton.UseVisualStyleBackColor = true;
            this.mapFilterControlledRadioButton.CheckedChanged += new System.EventHandler(this.OnMapFilterRadioButtonCheckedChanged);
            // 
            // mapFilterOwnedRadioButton
            // 
            resources.ApplyResources(this.mapFilterOwnedRadioButton, "mapFilterOwnedRadioButton");
            this.mapFilterOwnedRadioButton.Name = "mapFilterOwnedRadioButton";
            this.mapFilterOwnedRadioButton.UseVisualStyleBackColor = true;
            this.mapFilterOwnedRadioButton.CheckedChanged += new System.EventHandler(this.OnMapFilterRadioButtonCheckedChanged);
            // 
            // mapFilterCoreRadioButton
            // 
            resources.ApplyResources(this.mapFilterCoreRadioButton, "mapFilterCoreRadioButton");
            this.mapFilterCoreRadioButton.Name = "mapFilterCoreRadioButton";
            this.mapFilterCoreRadioButton.UseVisualStyleBackColor = true;
            this.mapFilterCoreRadioButton.CheckedChanged += new System.EventHandler(this.OnMapFilterRadioButtonCheckedChanged);
            // 
            // mapFilterNoneRadioButton
            // 
            resources.ApplyResources(this.mapFilterNoneRadioButton, "mapFilterNoneRadioButton");
            this.mapFilterNoneRadioButton.Checked = true;
            this.mapFilterNoneRadioButton.Name = "mapFilterNoneRadioButton";
            this.mapFilterNoneRadioButton.TabStop = true;
            this.mapFilterNoneRadioButton.UseVisualStyleBackColor = true;
            this.mapFilterNoneRadioButton.CheckedChanged += new System.EventHandler(this.OnMapFilterRadioButtonCheckedChanged);
            // 
            // provinceInfoGroupBox
            // 
            resources.ApplyResources(this.provinceInfoGroupBox, "provinceInfoGroupBox");
            this.provinceInfoGroupBox.Controls.Add(this.provinceNameStringTextBox);
            this.provinceInfoGroupBox.Controls.Add(this.revoltRiskTextBox);
            this.provinceInfoGroupBox.Controls.Add(provinceNameLabel);
            this.provinceInfoGroupBox.Controls.Add(this.vpTextBox);
            this.provinceInfoGroupBox.Controls.Add(this.provinceNameKeyTextBox);
            this.provinceInfoGroupBox.Controls.Add(provinceVpLabel);
            this.provinceInfoGroupBox.Controls.Add(provinceRevoltRiskLabel);
            this.provinceInfoGroupBox.Name = "provinceInfoGroupBox";
            this.provinceInfoGroupBox.TabStop = false;
            // 
            // provinceNameStringTextBox
            // 
            resources.ApplyResources(this.provinceNameStringTextBox, "provinceNameStringTextBox");
            this.provinceNameStringTextBox.Name = "provinceNameStringTextBox";
            this.provinceNameStringTextBox.TextChanged += new System.EventHandler(this.OnProvinceStringItemTextBoxTextChanged);
            // 
            // revoltRiskTextBox
            // 
            resources.ApplyResources(this.revoltRiskTextBox, "revoltRiskTextBox");
            this.revoltRiskTextBox.Name = "revoltRiskTextBox";
            this.revoltRiskTextBox.Validated += new System.EventHandler(this.OnProvinceDoubleItemTextBoxValidated);
            // 
            // vpTextBox
            // 
            resources.ApplyResources(this.vpTextBox, "vpTextBox");
            this.vpTextBox.Name = "vpTextBox";
            this.vpTextBox.Validated += new System.EventHandler(this.OnProvinceIntItemTextBoxValidated);
            // 
            // provinceNameKeyTextBox
            // 
            resources.ApplyResources(this.provinceNameKeyTextBox, "provinceNameKeyTextBox");
            this.provinceNameKeyTextBox.Name = "provinceNameKeyTextBox";
            this.provinceNameKeyTextBox.TextChanged += new System.EventHandler(this.OnProvinceStringItemTextBoxTextChanged);
            // 
            // provinceResourceGroupBox
            // 
            resources.ApplyResources(this.provinceResourceGroupBox, "provinceResourceGroupBox");
            this.provinceResourceGroupBox.Controls.Add(this.manpowerCurrentTextBox);
            this.provinceResourceGroupBox.Controls.Add(this.suppliesPoolTextBox);
            this.provinceResourceGroupBox.Controls.Add(this.oilMaxTextBox);
            this.provinceResourceGroupBox.Controls.Add(this.manpowerMaxTextBox);
            this.provinceResourceGroupBox.Controls.Add(this.oilCurrentTextBox);
            this.provinceResourceGroupBox.Controls.Add(this.oilPoolTextBox);
            this.provinceResourceGroupBox.Controls.Add(this.rareMaterialsMaxTextBox);
            this.provinceResourceGroupBox.Controls.Add(this.rareMaterialsCurrentTextBox);
            this.provinceResourceGroupBox.Controls.Add(this.rareMaterialsPoolTextBox);
            this.provinceResourceGroupBox.Controls.Add(this.metalMaxTextBox);
            this.provinceResourceGroupBox.Controls.Add(this.metalCurrentTextBox);
            this.provinceResourceGroupBox.Controls.Add(this.metalPoolTextBox);
            this.provinceResourceGroupBox.Controls.Add(this.energyMaxTextBox);
            this.provinceResourceGroupBox.Controls.Add(this.energyCurrentTextBox);
            this.provinceResourceGroupBox.Controls.Add(this.provinceSuppliesLabel);
            this.provinceResourceGroupBox.Controls.Add(this.energyPoolTextBox);
            this.provinceResourceGroupBox.Controls.Add(resourceMaxLabel);
            this.provinceResourceGroupBox.Controls.Add(resourceCurrentLabel);
            this.provinceResourceGroupBox.Controls.Add(resourcePoolLabel);
            this.provinceResourceGroupBox.Controls.Add(this.provinceEnergyLabel);
            this.provinceResourceGroupBox.Controls.Add(this.provinceOilLabel);
            this.provinceResourceGroupBox.Controls.Add(this.provinceMetalLabel);
            this.provinceResourceGroupBox.Controls.Add(this.provinceRareMaterialsLabel);
            this.provinceResourceGroupBox.Controls.Add(this.provinceManpowerLabel);
            this.provinceResourceGroupBox.Name = "provinceResourceGroupBox";
            this.provinceResourceGroupBox.TabStop = false;
            // 
            // manpowerCurrentTextBox
            // 
            resources.ApplyResources(this.manpowerCurrentTextBox, "manpowerCurrentTextBox");
            this.manpowerCurrentTextBox.Name = "manpowerCurrentTextBox";
            this.manpowerCurrentTextBox.Validated += new System.EventHandler(this.OnProvinceDoubleItemTextBoxValidated);
            // 
            // suppliesPoolTextBox
            // 
            resources.ApplyResources(this.suppliesPoolTextBox, "suppliesPoolTextBox");
            this.suppliesPoolTextBox.Name = "suppliesPoolTextBox";
            this.suppliesPoolTextBox.Validated += new System.EventHandler(this.OnProvinceDoubleItemTextBoxValidated);
            // 
            // oilMaxTextBox
            // 
            resources.ApplyResources(this.oilMaxTextBox, "oilMaxTextBox");
            this.oilMaxTextBox.Name = "oilMaxTextBox";
            this.oilMaxTextBox.Validated += new System.EventHandler(this.OnProvinceDoubleItemTextBoxValidated);
            // 
            // manpowerMaxTextBox
            // 
            resources.ApplyResources(this.manpowerMaxTextBox, "manpowerMaxTextBox");
            this.manpowerMaxTextBox.Name = "manpowerMaxTextBox";
            this.manpowerMaxTextBox.Validated += new System.EventHandler(this.OnProvinceDoubleItemTextBoxValidated);
            // 
            // oilCurrentTextBox
            // 
            resources.ApplyResources(this.oilCurrentTextBox, "oilCurrentTextBox");
            this.oilCurrentTextBox.Name = "oilCurrentTextBox";
            this.oilCurrentTextBox.Validated += new System.EventHandler(this.OnProvinceDoubleItemTextBoxValidated);
            // 
            // oilPoolTextBox
            // 
            resources.ApplyResources(this.oilPoolTextBox, "oilPoolTextBox");
            this.oilPoolTextBox.Name = "oilPoolTextBox";
            this.oilPoolTextBox.Validated += new System.EventHandler(this.OnProvinceDoubleItemTextBoxValidated);
            // 
            // rareMaterialsMaxTextBox
            // 
            resources.ApplyResources(this.rareMaterialsMaxTextBox, "rareMaterialsMaxTextBox");
            this.rareMaterialsMaxTextBox.Name = "rareMaterialsMaxTextBox";
            this.rareMaterialsMaxTextBox.Validated += new System.EventHandler(this.OnProvinceDoubleItemTextBoxValidated);
            // 
            // rareMaterialsCurrentTextBox
            // 
            resources.ApplyResources(this.rareMaterialsCurrentTextBox, "rareMaterialsCurrentTextBox");
            this.rareMaterialsCurrentTextBox.Name = "rareMaterialsCurrentTextBox";
            this.rareMaterialsCurrentTextBox.Validated += new System.EventHandler(this.OnProvinceDoubleItemTextBoxValidated);
            // 
            // rareMaterialsPoolTextBox
            // 
            resources.ApplyResources(this.rareMaterialsPoolTextBox, "rareMaterialsPoolTextBox");
            this.rareMaterialsPoolTextBox.Name = "rareMaterialsPoolTextBox";
            this.rareMaterialsPoolTextBox.Validated += new System.EventHandler(this.OnProvinceDoubleItemTextBoxValidated);
            // 
            // metalMaxTextBox
            // 
            resources.ApplyResources(this.metalMaxTextBox, "metalMaxTextBox");
            this.metalMaxTextBox.Name = "metalMaxTextBox";
            this.metalMaxTextBox.Validated += new System.EventHandler(this.OnProvinceDoubleItemTextBoxValidated);
            // 
            // metalCurrentTextBox
            // 
            resources.ApplyResources(this.metalCurrentTextBox, "metalCurrentTextBox");
            this.metalCurrentTextBox.Name = "metalCurrentTextBox";
            this.metalCurrentTextBox.Validated += new System.EventHandler(this.OnProvinceDoubleItemTextBoxValidated);
            // 
            // metalPoolTextBox
            // 
            resources.ApplyResources(this.metalPoolTextBox, "metalPoolTextBox");
            this.metalPoolTextBox.Name = "metalPoolTextBox";
            this.metalPoolTextBox.Validated += new System.EventHandler(this.OnProvinceDoubleItemTextBoxValidated);
            // 
            // energyMaxTextBox
            // 
            resources.ApplyResources(this.energyMaxTextBox, "energyMaxTextBox");
            this.energyMaxTextBox.Name = "energyMaxTextBox";
            this.energyMaxTextBox.Validated += new System.EventHandler(this.OnProvinceDoubleItemTextBoxValidated);
            // 
            // energyCurrentTextBox
            // 
            resources.ApplyResources(this.energyCurrentTextBox, "energyCurrentTextBox");
            this.energyCurrentTextBox.Name = "energyCurrentTextBox";
            this.energyCurrentTextBox.Validated += new System.EventHandler(this.OnProvinceDoubleItemTextBoxValidated);
            // 
            // provinceSuppliesLabel
            // 
            resources.ApplyResources(this.provinceSuppliesLabel, "provinceSuppliesLabel");
            this.provinceSuppliesLabel.Name = "provinceSuppliesLabel";
            // 
            // energyPoolTextBox
            // 
            resources.ApplyResources(this.energyPoolTextBox, "energyPoolTextBox");
            this.energyPoolTextBox.Name = "energyPoolTextBox";
            this.energyPoolTextBox.Validated += new System.EventHandler(this.OnProvinceDoubleItemTextBoxValidated);
            // 
            // provinceEnergyLabel
            // 
            resources.ApplyResources(this.provinceEnergyLabel, "provinceEnergyLabel");
            this.provinceEnergyLabel.Name = "provinceEnergyLabel";
            // 
            // provinceOilLabel
            // 
            resources.ApplyResources(this.provinceOilLabel, "provinceOilLabel");
            this.provinceOilLabel.Name = "provinceOilLabel";
            // 
            // provinceMetalLabel
            // 
            resources.ApplyResources(this.provinceMetalLabel, "provinceMetalLabel");
            this.provinceMetalLabel.Name = "provinceMetalLabel";
            // 
            // provinceRareMaterialsLabel
            // 
            resources.ApplyResources(this.provinceRareMaterialsLabel, "provinceRareMaterialsLabel");
            this.provinceRareMaterialsLabel.Name = "provinceRareMaterialsLabel";
            // 
            // provinceManpowerLabel
            // 
            resources.ApplyResources(this.provinceManpowerLabel, "provinceManpowerLabel");
            this.provinceManpowerLabel.Name = "provinceManpowerLabel";
            // 
            // provinceBuildingGroupBox
            // 
            resources.ApplyResources(this.provinceBuildingGroupBox, "provinceBuildingGroupBox");
            this.provinceBuildingGroupBox.Controls.Add(this.nuclearPowerRelativeTextBox);
            this.provinceBuildingGroupBox.Controls.Add(this.nuclearPowerMaxTextBox);
            this.provinceBuildingGroupBox.Controls.Add(this.nuclearPowerCurrentTextBox);
            this.provinceBuildingGroupBox.Controls.Add(this.syntheticRaresRelativeTextBox);
            this.provinceBuildingGroupBox.Controls.Add(this.syntheticRaresMaxTextBox);
            this.provinceBuildingGroupBox.Controls.Add(this.syntheticRaresCurrentTextBox);
            this.provinceBuildingGroupBox.Controls.Add(this.syntheticOilRelativeTextBox);
            this.provinceBuildingGroupBox.Controls.Add(this.syntheticOilMaxTextBox);
            this.provinceBuildingGroupBox.Controls.Add(this.syntheticOilCurrentTextBox);
            this.provinceBuildingGroupBox.Controls.Add(this.rocketTestRelativeTextBox);
            this.provinceBuildingGroupBox.Controls.Add(this.rocketTestMaxTextBox);
            this.provinceBuildingGroupBox.Controls.Add(this.rocketTestCurrentTextBox);
            this.provinceBuildingGroupBox.Controls.Add(this.infrastructureRelativeTextBox);
            this.provinceBuildingGroupBox.Controls.Add(this.infrastructureMaxTextBox);
            this.provinceBuildingGroupBox.Controls.Add(this.infrastructureCurrentTextBox);
            this.provinceBuildingGroupBox.Controls.Add(this.icRelativeTextBox);
            this.provinceBuildingGroupBox.Controls.Add(this.icMaxTextBox);
            this.provinceBuildingGroupBox.Controls.Add(this.icCurrentTextBox);
            this.provinceBuildingGroupBox.Controls.Add(provinceInfrastructureLabel);
            this.provinceBuildingGroupBox.Controls.Add(this.nuclearReactorRelativeTextBox);
            this.provinceBuildingGroupBox.Controls.Add(provinceIcLabel);
            this.provinceBuildingGroupBox.Controls.Add(this.nuclearReactorMaxTextBox);
            this.provinceBuildingGroupBox.Controls.Add(this.nuclearReactorCurrentTextBox);
            this.provinceBuildingGroupBox.Controls.Add(this.radarStationRelativeTextBox);
            this.provinceBuildingGroupBox.Controls.Add(this.radarStationMaxTextBox);
            this.provinceBuildingGroupBox.Controls.Add(this.radarStationCurrentTextBox);
            this.provinceBuildingGroupBox.Controls.Add(this.navalBaseRelativeTextBox);
            this.provinceBuildingGroupBox.Controls.Add(this.navalBaseMaxTextBox);
            this.provinceBuildingGroupBox.Controls.Add(this.navalBaseCurrentTextBox);
            this.provinceBuildingGroupBox.Controls.Add(this.airBaseRelativeTextBox);
            this.provinceBuildingGroupBox.Controls.Add(this.airBaseMaxTextBox);
            this.provinceBuildingGroupBox.Controls.Add(this.airBaseCurrentTextBox);
            this.provinceBuildingGroupBox.Controls.Add(this.antiAirRelativeTextBox);
            this.provinceBuildingGroupBox.Controls.Add(this.antiAirMaxTextBox);
            this.provinceBuildingGroupBox.Controls.Add(this.antiAirCurrentTextBox);
            this.provinceBuildingGroupBox.Controls.Add(this.coastalFortRelativeTextBox);
            this.provinceBuildingGroupBox.Controls.Add(this.coastalFortMaxTextBox);
            this.provinceBuildingGroupBox.Controls.Add(this.coastalFortCurrentTextBox);
            this.provinceBuildingGroupBox.Controls.Add(this.landFortRelativeTextBox);
            this.provinceBuildingGroupBox.Controls.Add(this.landFortMaxTextBox);
            this.provinceBuildingGroupBox.Controls.Add(this.landFortCurrentTextBox);
            this.provinceBuildingGroupBox.Controls.Add(buildingRelativeLabel1);
            this.provinceBuildingGroupBox.Controls.Add(buildingMaxLabel1);
            this.provinceBuildingGroupBox.Controls.Add(buildingCurrentLabel1);
            this.provinceBuildingGroupBox.Controls.Add(provinceLandFortLabel);
            this.provinceBuildingGroupBox.Controls.Add(provinceCoastalFortLabel);
            this.provinceBuildingGroupBox.Controls.Add(provinceAntiAirLabel);
            this.provinceBuildingGroupBox.Controls.Add(provinceAirBaseLabel);
            this.provinceBuildingGroupBox.Controls.Add(provinceNavalBaseLabel);
            this.provinceBuildingGroupBox.Controls.Add(provinceRadarStationLbel);
            this.provinceBuildingGroupBox.Controls.Add(this.provinceNuclearPowerLabel);
            this.provinceBuildingGroupBox.Controls.Add(provinceRocketTestLabel);
            this.provinceBuildingGroupBox.Controls.Add(this.provinceSyntheticOilLabel);
            this.provinceBuildingGroupBox.Controls.Add(provinceNuclearReactorLabel);
            this.provinceBuildingGroupBox.Controls.Add(this.provinceSyntheticRaresLabel);
            this.provinceBuildingGroupBox.Name = "provinceBuildingGroupBox";
            this.provinceBuildingGroupBox.TabStop = false;
            // 
            // nuclearPowerRelativeTextBox
            // 
            resources.ApplyResources(this.nuclearPowerRelativeTextBox, "nuclearPowerRelativeTextBox");
            this.nuclearPowerRelativeTextBox.Name = "nuclearPowerRelativeTextBox";
            this.nuclearPowerRelativeTextBox.Validated += new System.EventHandler(this.OnProvinceDoubleItemTextBoxValidated);
            // 
            // nuclearPowerMaxTextBox
            // 
            resources.ApplyResources(this.nuclearPowerMaxTextBox, "nuclearPowerMaxTextBox");
            this.nuclearPowerMaxTextBox.Name = "nuclearPowerMaxTextBox";
            this.nuclearPowerMaxTextBox.Validated += new System.EventHandler(this.OnProvinceDoubleItemTextBoxValidated);
            // 
            // nuclearPowerCurrentTextBox
            // 
            resources.ApplyResources(this.nuclearPowerCurrentTextBox, "nuclearPowerCurrentTextBox");
            this.nuclearPowerCurrentTextBox.Name = "nuclearPowerCurrentTextBox";
            this.nuclearPowerCurrentTextBox.Validated += new System.EventHandler(this.OnProvinceDoubleItemTextBoxValidated);
            // 
            // syntheticRaresRelativeTextBox
            // 
            resources.ApplyResources(this.syntheticRaresRelativeTextBox, "syntheticRaresRelativeTextBox");
            this.syntheticRaresRelativeTextBox.Name = "syntheticRaresRelativeTextBox";
            this.syntheticRaresRelativeTextBox.Validated += new System.EventHandler(this.OnProvinceDoubleItemTextBoxValidated);
            // 
            // syntheticRaresMaxTextBox
            // 
            resources.ApplyResources(this.syntheticRaresMaxTextBox, "syntheticRaresMaxTextBox");
            this.syntheticRaresMaxTextBox.Name = "syntheticRaresMaxTextBox";
            this.syntheticRaresMaxTextBox.Validated += new System.EventHandler(this.OnProvinceDoubleItemTextBoxValidated);
            // 
            // syntheticRaresCurrentTextBox
            // 
            resources.ApplyResources(this.syntheticRaresCurrentTextBox, "syntheticRaresCurrentTextBox");
            this.syntheticRaresCurrentTextBox.Name = "syntheticRaresCurrentTextBox";
            this.syntheticRaresCurrentTextBox.Validated += new System.EventHandler(this.OnProvinceDoubleItemTextBoxValidated);
            // 
            // syntheticOilRelativeTextBox
            // 
            resources.ApplyResources(this.syntheticOilRelativeTextBox, "syntheticOilRelativeTextBox");
            this.syntheticOilRelativeTextBox.Name = "syntheticOilRelativeTextBox";
            this.syntheticOilRelativeTextBox.Validated += new System.EventHandler(this.OnProvinceDoubleItemTextBoxValidated);
            // 
            // syntheticOilMaxTextBox
            // 
            resources.ApplyResources(this.syntheticOilMaxTextBox, "syntheticOilMaxTextBox");
            this.syntheticOilMaxTextBox.Name = "syntheticOilMaxTextBox";
            this.syntheticOilMaxTextBox.Validated += new System.EventHandler(this.OnProvinceDoubleItemTextBoxValidated);
            // 
            // syntheticOilCurrentTextBox
            // 
            resources.ApplyResources(this.syntheticOilCurrentTextBox, "syntheticOilCurrentTextBox");
            this.syntheticOilCurrentTextBox.Name = "syntheticOilCurrentTextBox";
            this.syntheticOilCurrentTextBox.Validated += new System.EventHandler(this.OnProvinceDoubleItemTextBoxValidated);
            // 
            // rocketTestRelativeTextBox
            // 
            resources.ApplyResources(this.rocketTestRelativeTextBox, "rocketTestRelativeTextBox");
            this.rocketTestRelativeTextBox.Name = "rocketTestRelativeTextBox";
            this.rocketTestRelativeTextBox.Validated += new System.EventHandler(this.OnProvinceDoubleItemTextBoxValidated);
            // 
            // rocketTestMaxTextBox
            // 
            resources.ApplyResources(this.rocketTestMaxTextBox, "rocketTestMaxTextBox");
            this.rocketTestMaxTextBox.Name = "rocketTestMaxTextBox";
            this.rocketTestMaxTextBox.Validated += new System.EventHandler(this.OnProvinceDoubleItemTextBoxValidated);
            // 
            // rocketTestCurrentTextBox
            // 
            resources.ApplyResources(this.rocketTestCurrentTextBox, "rocketTestCurrentTextBox");
            this.rocketTestCurrentTextBox.Name = "rocketTestCurrentTextBox";
            this.rocketTestCurrentTextBox.Validated += new System.EventHandler(this.OnProvinceDoubleItemTextBoxValidated);
            // 
            // infrastructureRelativeTextBox
            // 
            resources.ApplyResources(this.infrastructureRelativeTextBox, "infrastructureRelativeTextBox");
            this.infrastructureRelativeTextBox.Name = "infrastructureRelativeTextBox";
            this.infrastructureRelativeTextBox.Validated += new System.EventHandler(this.OnProvinceDoubleItemTextBoxValidated);
            // 
            // infrastructureMaxTextBox
            // 
            resources.ApplyResources(this.infrastructureMaxTextBox, "infrastructureMaxTextBox");
            this.infrastructureMaxTextBox.Name = "infrastructureMaxTextBox";
            this.infrastructureMaxTextBox.Validated += new System.EventHandler(this.OnProvinceDoubleItemTextBoxValidated);
            // 
            // infrastructureCurrentTextBox
            // 
            resources.ApplyResources(this.infrastructureCurrentTextBox, "infrastructureCurrentTextBox");
            this.infrastructureCurrentTextBox.Name = "infrastructureCurrentTextBox";
            this.infrastructureCurrentTextBox.Validated += new System.EventHandler(this.OnProvinceDoubleItemTextBoxValidated);
            // 
            // icRelativeTextBox
            // 
            resources.ApplyResources(this.icRelativeTextBox, "icRelativeTextBox");
            this.icRelativeTextBox.Name = "icRelativeTextBox";
            this.icRelativeTextBox.Validated += new System.EventHandler(this.OnProvinceDoubleItemTextBoxValidated);
            // 
            // icMaxTextBox
            // 
            resources.ApplyResources(this.icMaxTextBox, "icMaxTextBox");
            this.icMaxTextBox.Name = "icMaxTextBox";
            this.icMaxTextBox.Validated += new System.EventHandler(this.OnProvinceDoubleItemTextBoxValidated);
            // 
            // icCurrentTextBox
            // 
            resources.ApplyResources(this.icCurrentTextBox, "icCurrentTextBox");
            this.icCurrentTextBox.Name = "icCurrentTextBox";
            this.icCurrentTextBox.Validated += new System.EventHandler(this.OnProvinceDoubleItemTextBoxValidated);
            // 
            // nuclearReactorRelativeTextBox
            // 
            resources.ApplyResources(this.nuclearReactorRelativeTextBox, "nuclearReactorRelativeTextBox");
            this.nuclearReactorRelativeTextBox.Name = "nuclearReactorRelativeTextBox";
            this.nuclearReactorRelativeTextBox.Validated += new System.EventHandler(this.OnProvinceDoubleItemTextBoxValidated);
            // 
            // nuclearReactorMaxTextBox
            // 
            resources.ApplyResources(this.nuclearReactorMaxTextBox, "nuclearReactorMaxTextBox");
            this.nuclearReactorMaxTextBox.Name = "nuclearReactorMaxTextBox";
            this.nuclearReactorMaxTextBox.Validated += new System.EventHandler(this.OnProvinceDoubleItemTextBoxValidated);
            // 
            // nuclearReactorCurrentTextBox
            // 
            resources.ApplyResources(this.nuclearReactorCurrentTextBox, "nuclearReactorCurrentTextBox");
            this.nuclearReactorCurrentTextBox.Name = "nuclearReactorCurrentTextBox";
            this.nuclearReactorCurrentTextBox.Validated += new System.EventHandler(this.OnProvinceDoubleItemTextBoxValidated);
            // 
            // radarStationRelativeTextBox
            // 
            resources.ApplyResources(this.radarStationRelativeTextBox, "radarStationRelativeTextBox");
            this.radarStationRelativeTextBox.Name = "radarStationRelativeTextBox";
            this.radarStationRelativeTextBox.Validated += new System.EventHandler(this.OnProvinceDoubleItemTextBoxValidated);
            // 
            // radarStationMaxTextBox
            // 
            resources.ApplyResources(this.radarStationMaxTextBox, "radarStationMaxTextBox");
            this.radarStationMaxTextBox.Name = "radarStationMaxTextBox";
            this.radarStationMaxTextBox.Validated += new System.EventHandler(this.OnProvinceDoubleItemTextBoxValidated);
            // 
            // radarStationCurrentTextBox
            // 
            resources.ApplyResources(this.radarStationCurrentTextBox, "radarStationCurrentTextBox");
            this.radarStationCurrentTextBox.Name = "radarStationCurrentTextBox";
            this.radarStationCurrentTextBox.Validated += new System.EventHandler(this.OnProvinceDoubleItemTextBoxValidated);
            // 
            // navalBaseRelativeTextBox
            // 
            resources.ApplyResources(this.navalBaseRelativeTextBox, "navalBaseRelativeTextBox");
            this.navalBaseRelativeTextBox.Name = "navalBaseRelativeTextBox";
            this.navalBaseRelativeTextBox.Validated += new System.EventHandler(this.OnProvinceDoubleItemTextBoxValidated);
            // 
            // navalBaseMaxTextBox
            // 
            resources.ApplyResources(this.navalBaseMaxTextBox, "navalBaseMaxTextBox");
            this.navalBaseMaxTextBox.Name = "navalBaseMaxTextBox";
            this.navalBaseMaxTextBox.Validated += new System.EventHandler(this.OnProvinceDoubleItemTextBoxValidated);
            // 
            // navalBaseCurrentTextBox
            // 
            resources.ApplyResources(this.navalBaseCurrentTextBox, "navalBaseCurrentTextBox");
            this.navalBaseCurrentTextBox.Name = "navalBaseCurrentTextBox";
            this.navalBaseCurrentTextBox.Validated += new System.EventHandler(this.OnProvinceDoubleItemTextBoxValidated);
            // 
            // airBaseRelativeTextBox
            // 
            resources.ApplyResources(this.airBaseRelativeTextBox, "airBaseRelativeTextBox");
            this.airBaseRelativeTextBox.Name = "airBaseRelativeTextBox";
            this.airBaseRelativeTextBox.Validated += new System.EventHandler(this.OnProvinceDoubleItemTextBoxValidated);
            // 
            // airBaseMaxTextBox
            // 
            resources.ApplyResources(this.airBaseMaxTextBox, "airBaseMaxTextBox");
            this.airBaseMaxTextBox.Name = "airBaseMaxTextBox";
            this.airBaseMaxTextBox.Validated += new System.EventHandler(this.OnProvinceDoubleItemTextBoxValidated);
            // 
            // airBaseCurrentTextBox
            // 
            resources.ApplyResources(this.airBaseCurrentTextBox, "airBaseCurrentTextBox");
            this.airBaseCurrentTextBox.Name = "airBaseCurrentTextBox";
            this.airBaseCurrentTextBox.Validated += new System.EventHandler(this.OnProvinceDoubleItemTextBoxValidated);
            // 
            // antiAirRelativeTextBox
            // 
            resources.ApplyResources(this.antiAirRelativeTextBox, "antiAirRelativeTextBox");
            this.antiAirRelativeTextBox.Name = "antiAirRelativeTextBox";
            this.antiAirRelativeTextBox.Validated += new System.EventHandler(this.OnProvinceDoubleItemTextBoxValidated);
            // 
            // antiAirMaxTextBox
            // 
            resources.ApplyResources(this.antiAirMaxTextBox, "antiAirMaxTextBox");
            this.antiAirMaxTextBox.Name = "antiAirMaxTextBox";
            this.antiAirMaxTextBox.Validated += new System.EventHandler(this.OnProvinceDoubleItemTextBoxValidated);
            // 
            // antiAirCurrentTextBox
            // 
            resources.ApplyResources(this.antiAirCurrentTextBox, "antiAirCurrentTextBox");
            this.antiAirCurrentTextBox.Name = "antiAirCurrentTextBox";
            this.antiAirCurrentTextBox.Validated += new System.EventHandler(this.OnProvinceDoubleItemTextBoxValidated);
            // 
            // coastalFortRelativeTextBox
            // 
            resources.ApplyResources(this.coastalFortRelativeTextBox, "coastalFortRelativeTextBox");
            this.coastalFortRelativeTextBox.Name = "coastalFortRelativeTextBox";
            this.coastalFortRelativeTextBox.Validated += new System.EventHandler(this.OnProvinceDoubleItemTextBoxValidated);
            // 
            // coastalFortMaxTextBox
            // 
            resources.ApplyResources(this.coastalFortMaxTextBox, "coastalFortMaxTextBox");
            this.coastalFortMaxTextBox.Name = "coastalFortMaxTextBox";
            this.coastalFortMaxTextBox.Validated += new System.EventHandler(this.OnProvinceDoubleItemTextBoxValidated);
            // 
            // coastalFortCurrentTextBox
            // 
            resources.ApplyResources(this.coastalFortCurrentTextBox, "coastalFortCurrentTextBox");
            this.coastalFortCurrentTextBox.Name = "coastalFortCurrentTextBox";
            this.coastalFortCurrentTextBox.Validated += new System.EventHandler(this.OnProvinceDoubleItemTextBoxValidated);
            // 
            // landFortRelativeTextBox
            // 
            resources.ApplyResources(this.landFortRelativeTextBox, "landFortRelativeTextBox");
            this.landFortRelativeTextBox.Name = "landFortRelativeTextBox";
            this.landFortRelativeTextBox.Validated += new System.EventHandler(this.OnProvinceDoubleItemTextBoxValidated);
            // 
            // landFortMaxTextBox
            // 
            resources.ApplyResources(this.landFortMaxTextBox, "landFortMaxTextBox");
            this.landFortMaxTextBox.Name = "landFortMaxTextBox";
            this.landFortMaxTextBox.Validated += new System.EventHandler(this.OnProvinceDoubleItemTextBoxValidated);
            // 
            // landFortCurrentTextBox
            // 
            resources.ApplyResources(this.landFortCurrentTextBox, "landFortCurrentTextBox");
            this.landFortCurrentTextBox.Name = "landFortCurrentTextBox";
            this.landFortCurrentTextBox.Validated += new System.EventHandler(this.OnProvinceDoubleItemTextBoxValidated);
            // 
            // provinceMapPanel
            // 
            resources.ApplyResources(this.provinceMapPanel, "provinceMapPanel");
            this.provinceMapPanel.AllowDrop = true;
            this.provinceMapPanel.Controls.Add(this.provinceMapPictureBox);
            this.provinceMapPanel.Name = "provinceMapPanel";
            // 
            // provinceMapPictureBox
            // 
            resources.ApplyResources(this.provinceMapPictureBox, "provinceMapPictureBox");
            this.provinceMapPictureBox.Name = "provinceMapPictureBox";
            this.provinceMapPictureBox.TabStop = false;
            // 
            // provinceListView
            // 
            resources.ApplyResources(this.provinceListView, "provinceListView");
            this.provinceListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            this.provinceIdColumnHeader,
            this.provinceNameColumnHeader,
            this.capitalProvinceColumnHeader,
            this.coreProvinceColumnHeader,
            this.ownedColumnHeader,
            this.controlledProvinceColumnHeader,
            this.claimedProvinceColumnHeader});
            this.provinceListView.FullRowSelect = true;
            this.provinceListView.GridLines = true;
            this.provinceListView.HideSelection = false;
            this.provinceListView.MultiSelect = false;
            this.provinceListView.Name = "provinceListView";
            this.provinceListView.UseCompatibleStateImageBehavior = false;
            this.provinceListView.View = System.Windows.Forms.View.Details;
            this.provinceListView.SelectedIndexChanged += new System.EventHandler(this.OnProvinceListViewSelectedIndexChanged);
            // 
            // provinceIdColumnHeader
            // 
            resources.ApplyResources(this.provinceIdColumnHeader, "provinceIdColumnHeader");
            // 
            // provinceNameColumnHeader
            // 
            resources.ApplyResources(this.provinceNameColumnHeader, "provinceNameColumnHeader");
            // 
            // capitalProvinceColumnHeader
            // 
            resources.ApplyResources(this.capitalProvinceColumnHeader, "capitalProvinceColumnHeader");
            // 
            // coreProvinceColumnHeader
            // 
            resources.ApplyResources(this.coreProvinceColumnHeader, "coreProvinceColumnHeader");
            // 
            // ownedColumnHeader
            // 
            resources.ApplyResources(this.ownedColumnHeader, "ownedColumnHeader");
            // 
            // controlledProvinceColumnHeader
            // 
            resources.ApplyResources(this.controlledProvinceColumnHeader, "controlledProvinceColumnHeader");
            // 
            // claimedProvinceColumnHeader
            // 
            resources.ApplyResources(this.claimedProvinceColumnHeader, "claimedProvinceColumnHeader");
            // 
            // governmentTabPage
            // 
            resources.ApplyResources(this.governmentTabPage, "governmentTabPage");
            this.governmentTabPage.BackColor = System.Drawing.SystemColors.Control;
            this.governmentTabPage.Controls.Add(this.cabinetGroupBox);
            this.governmentTabPage.Controls.Add(this.governmentCountryListBox);
            this.governmentTabPage.Controls.Add(this.politicalSliderGroupBox);
            this.governmentTabPage.Name = "governmentTabPage";
            // 
            // cabinetGroupBox
            // 
            resources.ApplyResources(this.cabinetGroupBox, "cabinetGroupBox");
            this.cabinetGroupBox.Controls.Add(this.chiefOfAirIdTextBox);
            this.cabinetGroupBox.Controls.Add(this.chiefOfAirTypeTextBox);
            this.cabinetGroupBox.Controls.Add(this.chiefOfAirComboBox);
            this.cabinetGroupBox.Controls.Add(this.chiefOfAirLabel);
            this.cabinetGroupBox.Controls.Add(this.chiefOfNavyIdTextBox);
            this.cabinetGroupBox.Controls.Add(this.chiefOfNavyTypeTextBox);
            this.cabinetGroupBox.Controls.Add(this.chiefOfNavyComboBox);
            this.cabinetGroupBox.Controls.Add(this.chiefOfNavyLabel);
            this.cabinetGroupBox.Controls.Add(this.chiefOfArmyIdTextBox);
            this.cabinetGroupBox.Controls.Add(this.chiefOfArmyTypeTextBox);
            this.cabinetGroupBox.Controls.Add(this.chiefOfArmyComboBox);
            this.cabinetGroupBox.Controls.Add(this.chiefOfArmyLabel);
            this.cabinetGroupBox.Controls.Add(this.chiefOfStaffIdTextBox);
            this.cabinetGroupBox.Controls.Add(this.chiefOfStaffTypeTextBox);
            this.cabinetGroupBox.Controls.Add(this.chiefOfStaffComboBox);
            this.cabinetGroupBox.Controls.Add(this.chiefOfStaffLabel);
            this.cabinetGroupBox.Controls.Add(this.ministerOfIntelligenceIdTextBox);
            this.cabinetGroupBox.Controls.Add(this.ministerOfIntelligenceTypeTextBox);
            this.cabinetGroupBox.Controls.Add(this.ministerOfIntelligenceComboBox);
            this.cabinetGroupBox.Controls.Add(this.ministerOfIntelligenceLabel);
            this.cabinetGroupBox.Controls.Add(this.ministerOfSecurityIdTextBox);
            this.cabinetGroupBox.Controls.Add(this.ministerOfSecurityTypeTextBox);
            this.cabinetGroupBox.Controls.Add(this.ministerOfSecurityComboBox);
            this.cabinetGroupBox.Controls.Add(this.ministerOfSecurityLabel);
            this.cabinetGroupBox.Controls.Add(this.armamentMinisterIdTextBox);
            this.cabinetGroupBox.Controls.Add(this.armamentMinisterTypeTextBox);
            this.cabinetGroupBox.Controls.Add(this.armamentMinisterComboBox);
            this.cabinetGroupBox.Controls.Add(this.armamentMinisterLabel);
            this.cabinetGroupBox.Controls.Add(this.foreignMinisterIdTextBox);
            this.cabinetGroupBox.Controls.Add(this.foreignMinisterTypeTextBox);
            this.cabinetGroupBox.Controls.Add(this.foreignMinisterComboBox);
            this.cabinetGroupBox.Controls.Add(this.foreignMinisterlabel);
            this.cabinetGroupBox.Controls.Add(this.headOfGovernmentIdTextBox);
            this.cabinetGroupBox.Controls.Add(this.headOfGovernmentTypeTextBox);
            this.cabinetGroupBox.Controls.Add(this.headOfGovernmentComboBox);
            this.cabinetGroupBox.Controls.Add(this.headOfGovernmentLabel);
            this.cabinetGroupBox.Controls.Add(this.headOfStateIdTextBox);
            this.cabinetGroupBox.Controls.Add(this.headOfStateTypeTextBox);
            this.cabinetGroupBox.Controls.Add(this.headOfStateComboBox);
            this.cabinetGroupBox.Controls.Add(this.headOfStateLabel);
            this.cabinetGroupBox.Name = "cabinetGroupBox";
            this.cabinetGroupBox.TabStop = false;
            // 
            // chiefOfAirIdTextBox
            // 
            resources.ApplyResources(this.chiefOfAirIdTextBox, "chiefOfAirIdTextBox");
            this.chiefOfAirIdTextBox.Name = "chiefOfAirIdTextBox";
            this.chiefOfAirIdTextBox.Validated += new System.EventHandler(this.OnGovernmentIntItemTextBoxValidated);
            // 
            // chiefOfAirTypeTextBox
            // 
            resources.ApplyResources(this.chiefOfAirTypeTextBox, "chiefOfAirTypeTextBox");
            this.chiefOfAirTypeTextBox.Name = "chiefOfAirTypeTextBox";
            this.chiefOfAirTypeTextBox.Validated += new System.EventHandler(this.OnGovernmentIntItemTextBoxValidated);
            // 
            // chiefOfAirComboBox
            // 
            resources.ApplyResources(this.chiefOfAirComboBox, "chiefOfAirComboBox");
            this.chiefOfAirComboBox.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.chiefOfAirComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.chiefOfAirComboBox.FormattingEnabled = true;
            this.chiefOfAirComboBox.Name = "chiefOfAirComboBox";
            this.chiefOfAirComboBox.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.OnCabinetComboBoxDrawItem);
            this.chiefOfAirComboBox.SelectedIndexChanged += new System.EventHandler(this.OnCabinetComboBoxSelectedIndexChanged);
            // 
            // chiefOfAirLabel
            // 
            resources.ApplyResources(this.chiefOfAirLabel, "chiefOfAirLabel");
            this.chiefOfAirLabel.Name = "chiefOfAirLabel";
            // 
            // chiefOfNavyIdTextBox
            // 
            resources.ApplyResources(this.chiefOfNavyIdTextBox, "chiefOfNavyIdTextBox");
            this.chiefOfNavyIdTextBox.Name = "chiefOfNavyIdTextBox";
            this.chiefOfNavyIdTextBox.Validated += new System.EventHandler(this.OnGovernmentIntItemTextBoxValidated);
            // 
            // chiefOfNavyTypeTextBox
            // 
            resources.ApplyResources(this.chiefOfNavyTypeTextBox, "chiefOfNavyTypeTextBox");
            this.chiefOfNavyTypeTextBox.Name = "chiefOfNavyTypeTextBox";
            this.chiefOfNavyTypeTextBox.Validated += new System.EventHandler(this.OnGovernmentIntItemTextBoxValidated);
            // 
            // chiefOfNavyComboBox
            // 
            resources.ApplyResources(this.chiefOfNavyComboBox, "chiefOfNavyComboBox");
            this.chiefOfNavyComboBox.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.chiefOfNavyComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.chiefOfNavyComboBox.FormattingEnabled = true;
            this.chiefOfNavyComboBox.Name = "chiefOfNavyComboBox";
            this.chiefOfNavyComboBox.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.OnCabinetComboBoxDrawItem);
            this.chiefOfNavyComboBox.SelectedIndexChanged += new System.EventHandler(this.OnCabinetComboBoxSelectedIndexChanged);
            // 
            // chiefOfNavyLabel
            // 
            resources.ApplyResources(this.chiefOfNavyLabel, "chiefOfNavyLabel");
            this.chiefOfNavyLabel.Name = "chiefOfNavyLabel";
            // 
            // chiefOfArmyIdTextBox
            // 
            resources.ApplyResources(this.chiefOfArmyIdTextBox, "chiefOfArmyIdTextBox");
            this.chiefOfArmyIdTextBox.Name = "chiefOfArmyIdTextBox";
            this.chiefOfArmyIdTextBox.Validated += new System.EventHandler(this.OnGovernmentIntItemTextBoxValidated);
            // 
            // chiefOfArmyTypeTextBox
            // 
            resources.ApplyResources(this.chiefOfArmyTypeTextBox, "chiefOfArmyTypeTextBox");
            this.chiefOfArmyTypeTextBox.Name = "chiefOfArmyTypeTextBox";
            this.chiefOfArmyTypeTextBox.Validated += new System.EventHandler(this.OnGovernmentIntItemTextBoxValidated);
            // 
            // chiefOfArmyComboBox
            // 
            resources.ApplyResources(this.chiefOfArmyComboBox, "chiefOfArmyComboBox");
            this.chiefOfArmyComboBox.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.chiefOfArmyComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.chiefOfArmyComboBox.FormattingEnabled = true;
            this.chiefOfArmyComboBox.Name = "chiefOfArmyComboBox";
            this.chiefOfArmyComboBox.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.OnCabinetComboBoxDrawItem);
            this.chiefOfArmyComboBox.SelectedIndexChanged += new System.EventHandler(this.OnCabinetComboBoxSelectedIndexChanged);
            // 
            // chiefOfArmyLabel
            // 
            resources.ApplyResources(this.chiefOfArmyLabel, "chiefOfArmyLabel");
            this.chiefOfArmyLabel.Name = "chiefOfArmyLabel";
            // 
            // chiefOfStaffIdTextBox
            // 
            resources.ApplyResources(this.chiefOfStaffIdTextBox, "chiefOfStaffIdTextBox");
            this.chiefOfStaffIdTextBox.Name = "chiefOfStaffIdTextBox";
            this.chiefOfStaffIdTextBox.Validated += new System.EventHandler(this.OnGovernmentIntItemTextBoxValidated);
            // 
            // chiefOfStaffTypeTextBox
            // 
            resources.ApplyResources(this.chiefOfStaffTypeTextBox, "chiefOfStaffTypeTextBox");
            this.chiefOfStaffTypeTextBox.Name = "chiefOfStaffTypeTextBox";
            this.chiefOfStaffTypeTextBox.Validated += new System.EventHandler(this.OnGovernmentIntItemTextBoxValidated);
            // 
            // chiefOfStaffComboBox
            // 
            resources.ApplyResources(this.chiefOfStaffComboBox, "chiefOfStaffComboBox");
            this.chiefOfStaffComboBox.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.chiefOfStaffComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.chiefOfStaffComboBox.FormattingEnabled = true;
            this.chiefOfStaffComboBox.Name = "chiefOfStaffComboBox";
            this.chiefOfStaffComboBox.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.OnCabinetComboBoxDrawItem);
            this.chiefOfStaffComboBox.SelectedIndexChanged += new System.EventHandler(this.OnCabinetComboBoxSelectedIndexChanged);
            // 
            // chiefOfStaffLabel
            // 
            resources.ApplyResources(this.chiefOfStaffLabel, "chiefOfStaffLabel");
            this.chiefOfStaffLabel.Name = "chiefOfStaffLabel";
            // 
            // ministerOfIntelligenceIdTextBox
            // 
            resources.ApplyResources(this.ministerOfIntelligenceIdTextBox, "ministerOfIntelligenceIdTextBox");
            this.ministerOfIntelligenceIdTextBox.Name = "ministerOfIntelligenceIdTextBox";
            this.ministerOfIntelligenceIdTextBox.Validated += new System.EventHandler(this.OnGovernmentIntItemTextBoxValidated);
            // 
            // ministerOfIntelligenceTypeTextBox
            // 
            resources.ApplyResources(this.ministerOfIntelligenceTypeTextBox, "ministerOfIntelligenceTypeTextBox");
            this.ministerOfIntelligenceTypeTextBox.Name = "ministerOfIntelligenceTypeTextBox";
            this.ministerOfIntelligenceTypeTextBox.Validated += new System.EventHandler(this.OnGovernmentIntItemTextBoxValidated);
            // 
            // ministerOfIntelligenceComboBox
            // 
            resources.ApplyResources(this.ministerOfIntelligenceComboBox, "ministerOfIntelligenceComboBox");
            this.ministerOfIntelligenceComboBox.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.ministerOfIntelligenceComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.ministerOfIntelligenceComboBox.FormattingEnabled = true;
            this.ministerOfIntelligenceComboBox.Name = "ministerOfIntelligenceComboBox";
            this.ministerOfIntelligenceComboBox.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.OnCabinetComboBoxDrawItem);
            this.ministerOfIntelligenceComboBox.SelectedIndexChanged += new System.EventHandler(this.OnCabinetComboBoxSelectedIndexChanged);
            // 
            // ministerOfIntelligenceLabel
            // 
            resources.ApplyResources(this.ministerOfIntelligenceLabel, "ministerOfIntelligenceLabel");
            this.ministerOfIntelligenceLabel.Name = "ministerOfIntelligenceLabel";
            // 
            // ministerOfSecurityIdTextBox
            // 
            resources.ApplyResources(this.ministerOfSecurityIdTextBox, "ministerOfSecurityIdTextBox");
            this.ministerOfSecurityIdTextBox.Name = "ministerOfSecurityIdTextBox";
            this.ministerOfSecurityIdTextBox.Validated += new System.EventHandler(this.OnGovernmentIntItemTextBoxValidated);
            // 
            // ministerOfSecurityTypeTextBox
            // 
            resources.ApplyResources(this.ministerOfSecurityTypeTextBox, "ministerOfSecurityTypeTextBox");
            this.ministerOfSecurityTypeTextBox.Name = "ministerOfSecurityTypeTextBox";
            this.ministerOfSecurityTypeTextBox.Validated += new System.EventHandler(this.OnGovernmentIntItemTextBoxValidated);
            // 
            // ministerOfSecurityComboBox
            // 
            resources.ApplyResources(this.ministerOfSecurityComboBox, "ministerOfSecurityComboBox");
            this.ministerOfSecurityComboBox.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.ministerOfSecurityComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.ministerOfSecurityComboBox.FormattingEnabled = true;
            this.ministerOfSecurityComboBox.Name = "ministerOfSecurityComboBox";
            this.ministerOfSecurityComboBox.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.OnCabinetComboBoxDrawItem);
            this.ministerOfSecurityComboBox.SelectedIndexChanged += new System.EventHandler(this.OnCabinetComboBoxSelectedIndexChanged);
            // 
            // ministerOfSecurityLabel
            // 
            resources.ApplyResources(this.ministerOfSecurityLabel, "ministerOfSecurityLabel");
            this.ministerOfSecurityLabel.Name = "ministerOfSecurityLabel";
            // 
            // armamentMinisterIdTextBox
            // 
            resources.ApplyResources(this.armamentMinisterIdTextBox, "armamentMinisterIdTextBox");
            this.armamentMinisterIdTextBox.Name = "armamentMinisterIdTextBox";
            this.armamentMinisterIdTextBox.Validated += new System.EventHandler(this.OnGovernmentIntItemTextBoxValidated);
            // 
            // armamentMinisterTypeTextBox
            // 
            resources.ApplyResources(this.armamentMinisterTypeTextBox, "armamentMinisterTypeTextBox");
            this.armamentMinisterTypeTextBox.Name = "armamentMinisterTypeTextBox";
            this.armamentMinisterTypeTextBox.Validated += new System.EventHandler(this.OnGovernmentIntItemTextBoxValidated);
            // 
            // armamentMinisterComboBox
            // 
            resources.ApplyResources(this.armamentMinisterComboBox, "armamentMinisterComboBox");
            this.armamentMinisterComboBox.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.armamentMinisterComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.armamentMinisterComboBox.FormattingEnabled = true;
            this.armamentMinisterComboBox.Name = "armamentMinisterComboBox";
            this.armamentMinisterComboBox.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.OnCabinetComboBoxDrawItem);
            this.armamentMinisterComboBox.SelectedIndexChanged += new System.EventHandler(this.OnCabinetComboBoxSelectedIndexChanged);
            // 
            // armamentMinisterLabel
            // 
            resources.ApplyResources(this.armamentMinisterLabel, "armamentMinisterLabel");
            this.armamentMinisterLabel.Name = "armamentMinisterLabel";
            // 
            // foreignMinisterIdTextBox
            // 
            resources.ApplyResources(this.foreignMinisterIdTextBox, "foreignMinisterIdTextBox");
            this.foreignMinisterIdTextBox.Name = "foreignMinisterIdTextBox";
            this.foreignMinisterIdTextBox.Validated += new System.EventHandler(this.OnGovernmentIntItemTextBoxValidated);
            // 
            // foreignMinisterTypeTextBox
            // 
            resources.ApplyResources(this.foreignMinisterTypeTextBox, "foreignMinisterTypeTextBox");
            this.foreignMinisterTypeTextBox.Name = "foreignMinisterTypeTextBox";
            this.foreignMinisterTypeTextBox.Validated += new System.EventHandler(this.OnGovernmentIntItemTextBoxValidated);
            // 
            // foreignMinisterComboBox
            // 
            resources.ApplyResources(this.foreignMinisterComboBox, "foreignMinisterComboBox");
            this.foreignMinisterComboBox.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.foreignMinisterComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.foreignMinisterComboBox.FormattingEnabled = true;
            this.foreignMinisterComboBox.Name = "foreignMinisterComboBox";
            this.foreignMinisterComboBox.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.OnCabinetComboBoxDrawItem);
            this.foreignMinisterComboBox.SelectedIndexChanged += new System.EventHandler(this.OnCabinetComboBoxSelectedIndexChanged);
            // 
            // foreignMinisterlabel
            // 
            resources.ApplyResources(this.foreignMinisterlabel, "foreignMinisterlabel");
            this.foreignMinisterlabel.Name = "foreignMinisterlabel";
            // 
            // headOfGovernmentIdTextBox
            // 
            resources.ApplyResources(this.headOfGovernmentIdTextBox, "headOfGovernmentIdTextBox");
            this.headOfGovernmentIdTextBox.Name = "headOfGovernmentIdTextBox";
            this.headOfGovernmentIdTextBox.Validated += new System.EventHandler(this.OnGovernmentIntItemTextBoxValidated);
            // 
            // headOfGovernmentTypeTextBox
            // 
            resources.ApplyResources(this.headOfGovernmentTypeTextBox, "headOfGovernmentTypeTextBox");
            this.headOfGovernmentTypeTextBox.Name = "headOfGovernmentTypeTextBox";
            this.headOfGovernmentTypeTextBox.Validated += new System.EventHandler(this.OnGovernmentIntItemTextBoxValidated);
            // 
            // headOfGovernmentComboBox
            // 
            resources.ApplyResources(this.headOfGovernmentComboBox, "headOfGovernmentComboBox");
            this.headOfGovernmentComboBox.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.headOfGovernmentComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.headOfGovernmentComboBox.FormattingEnabled = true;
            this.headOfGovernmentComboBox.Name = "headOfGovernmentComboBox";
            this.headOfGovernmentComboBox.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.OnCabinetComboBoxDrawItem);
            this.headOfGovernmentComboBox.SelectedIndexChanged += new System.EventHandler(this.OnCabinetComboBoxSelectedIndexChanged);
            // 
            // headOfGovernmentLabel
            // 
            resources.ApplyResources(this.headOfGovernmentLabel, "headOfGovernmentLabel");
            this.headOfGovernmentLabel.Name = "headOfGovernmentLabel";
            // 
            // headOfStateIdTextBox
            // 
            resources.ApplyResources(this.headOfStateIdTextBox, "headOfStateIdTextBox");
            this.headOfStateIdTextBox.Name = "headOfStateIdTextBox";
            this.headOfStateIdTextBox.Validated += new System.EventHandler(this.OnGovernmentIntItemTextBoxValidated);
            // 
            // headOfStateTypeTextBox
            // 
            resources.ApplyResources(this.headOfStateTypeTextBox, "headOfStateTypeTextBox");
            this.headOfStateTypeTextBox.Name = "headOfStateTypeTextBox";
            this.headOfStateTypeTextBox.Validated += new System.EventHandler(this.OnGovernmentIntItemTextBoxValidated);
            // 
            // headOfStateComboBox
            // 
            resources.ApplyResources(this.headOfStateComboBox, "headOfStateComboBox");
            this.headOfStateComboBox.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.headOfStateComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.headOfStateComboBox.FormattingEnabled = true;
            this.headOfStateComboBox.Name = "headOfStateComboBox";
            this.headOfStateComboBox.Tag = "";
            this.headOfStateComboBox.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.OnCabinetComboBoxDrawItem);
            this.headOfStateComboBox.SelectedIndexChanged += new System.EventHandler(this.OnCabinetComboBoxSelectedIndexChanged);
            // 
            // headOfStateLabel
            // 
            resources.ApplyResources(this.headOfStateLabel, "headOfStateLabel");
            this.headOfStateLabel.Name = "headOfStateLabel";
            // 
            // governmentCountryListBox
            // 
            resources.ApplyResources(this.governmentCountryListBox, "governmentCountryListBox");
            this.governmentCountryListBox.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.governmentCountryListBox.FormattingEnabled = true;
            this.governmentCountryListBox.Name = "governmentCountryListBox";
            this.governmentCountryListBox.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.OnCountryListBoxDrawItem);
            this.governmentCountryListBox.SelectedIndexChanged += new System.EventHandler(this.OnGovernmentCountryListBoxSelectedIndexChanged);
            // 
            // politicalSliderGroupBox
            // 
            resources.ApplyResources(this.politicalSliderGroupBox, "politicalSliderGroupBox");
            this.politicalSliderGroupBox.Controls.Add(this.sliderDateLabel);
            this.politicalSliderGroupBox.Controls.Add(this.interventionismTrackBar);
            this.politicalSliderGroupBox.Controls.Add(this.isolationismLabel);
            this.politicalSliderGroupBox.Controls.Add(this.interventionismLabel);
            this.politicalSliderGroupBox.Controls.Add(this.defenseLobbyTrackBar);
            this.politicalSliderGroupBox.Controls.Add(this.doveLobbyLabel);
            this.politicalSliderGroupBox.Controls.Add(this.hawkLobbyLabel);
            this.politicalSliderGroupBox.Controls.Add(this.professionalArmyTrackBar);
            this.politicalSliderGroupBox.Controls.Add(this.draftedArmyLabel);
            this.politicalSliderGroupBox.Controls.Add(this.standingArmyLabel);
            this.politicalSliderGroupBox.Controls.Add(this.freeMarketTrackBar);
            this.politicalSliderGroupBox.Controls.Add(this.centralPlanningLabel);
            this.politicalSliderGroupBox.Controls.Add(this.freeMarketLabel);
            this.politicalSliderGroupBox.Controls.Add(this.freedomTrackBar);
            this.politicalSliderGroupBox.Controls.Add(this.closedSocietyLabel);
            this.politicalSliderGroupBox.Controls.Add(this.openSocietyLabel);
            this.politicalSliderGroupBox.Controls.Add(this.politicalLeftTrackBar);
            this.politicalSliderGroupBox.Controls.Add(this.politicalRightLabel);
            this.politicalSliderGroupBox.Controls.Add(this.politicalLeftLabel);
            this.politicalSliderGroupBox.Controls.Add(this.democraticTrackBar);
            this.politicalSliderGroupBox.Controls.Add(this.authoritarianLabel);
            this.politicalSliderGroupBox.Controls.Add(this.democraticLabel);
            this.politicalSliderGroupBox.Controls.Add(this.sliderDayTextBox);
            this.politicalSliderGroupBox.Controls.Add(this.sliderMonthTextBox);
            this.politicalSliderGroupBox.Controls.Add(this.sliderYearTextBox);
            this.politicalSliderGroupBox.Name = "politicalSliderGroupBox";
            this.politicalSliderGroupBox.TabStop = false;
            // 
            // sliderDateLabel
            // 
            resources.ApplyResources(this.sliderDateLabel, "sliderDateLabel");
            this.sliderDateLabel.Name = "sliderDateLabel";
            // 
            // interventionismTrackBar
            // 
            resources.ApplyResources(this.interventionismTrackBar, "interventionismTrackBar");
            this.interventionismTrackBar.LargeChange = 1;
            this.interventionismTrackBar.Minimum = 1;
            this.interventionismTrackBar.Name = "interventionismTrackBar";
            this.interventionismTrackBar.Value = 6;
            this.interventionismTrackBar.Scroll += new System.EventHandler(this.OnPoliticalSliderTrackBarScroll);
            // 
            // isolationismLabel
            // 
            resources.ApplyResources(this.isolationismLabel, "isolationismLabel");
            this.isolationismLabel.Name = "isolationismLabel";
            // 
            // interventionismLabel
            // 
            resources.ApplyResources(this.interventionismLabel, "interventionismLabel");
            this.interventionismLabel.Name = "interventionismLabel";
            // 
            // defenseLobbyTrackBar
            // 
            resources.ApplyResources(this.defenseLobbyTrackBar, "defenseLobbyTrackBar");
            this.defenseLobbyTrackBar.LargeChange = 1;
            this.defenseLobbyTrackBar.Minimum = 1;
            this.defenseLobbyTrackBar.Name = "defenseLobbyTrackBar";
            this.defenseLobbyTrackBar.Value = 6;
            this.defenseLobbyTrackBar.Scroll += new System.EventHandler(this.OnPoliticalSliderTrackBarScroll);
            // 
            // doveLobbyLabel
            // 
            resources.ApplyResources(this.doveLobbyLabel, "doveLobbyLabel");
            this.doveLobbyLabel.Name = "doveLobbyLabel";
            // 
            // hawkLobbyLabel
            // 
            resources.ApplyResources(this.hawkLobbyLabel, "hawkLobbyLabel");
            this.hawkLobbyLabel.Name = "hawkLobbyLabel";
            // 
            // professionalArmyTrackBar
            // 
            resources.ApplyResources(this.professionalArmyTrackBar, "professionalArmyTrackBar");
            this.professionalArmyTrackBar.LargeChange = 1;
            this.professionalArmyTrackBar.Minimum = 1;
            this.professionalArmyTrackBar.Name = "professionalArmyTrackBar";
            this.professionalArmyTrackBar.Value = 6;
            this.professionalArmyTrackBar.Scroll += new System.EventHandler(this.OnPoliticalSliderTrackBarScroll);
            // 
            // draftedArmyLabel
            // 
            resources.ApplyResources(this.draftedArmyLabel, "draftedArmyLabel");
            this.draftedArmyLabel.Name = "draftedArmyLabel";
            // 
            // standingArmyLabel
            // 
            resources.ApplyResources(this.standingArmyLabel, "standingArmyLabel");
            this.standingArmyLabel.Name = "standingArmyLabel";
            // 
            // freeMarketTrackBar
            // 
            resources.ApplyResources(this.freeMarketTrackBar, "freeMarketTrackBar");
            this.freeMarketTrackBar.LargeChange = 1;
            this.freeMarketTrackBar.Minimum = 1;
            this.freeMarketTrackBar.Name = "freeMarketTrackBar";
            this.freeMarketTrackBar.Value = 6;
            this.freeMarketTrackBar.Scroll += new System.EventHandler(this.OnPoliticalSliderTrackBarScroll);
            // 
            // centralPlanningLabel
            // 
            resources.ApplyResources(this.centralPlanningLabel, "centralPlanningLabel");
            this.centralPlanningLabel.Name = "centralPlanningLabel";
            // 
            // freeMarketLabel
            // 
            resources.ApplyResources(this.freeMarketLabel, "freeMarketLabel");
            this.freeMarketLabel.Name = "freeMarketLabel";
            // 
            // freedomTrackBar
            // 
            resources.ApplyResources(this.freedomTrackBar, "freedomTrackBar");
            this.freedomTrackBar.LargeChange = 1;
            this.freedomTrackBar.Minimum = 1;
            this.freedomTrackBar.Name = "freedomTrackBar";
            this.freedomTrackBar.Value = 6;
            this.freedomTrackBar.Scroll += new System.EventHandler(this.OnPoliticalSliderTrackBarScroll);
            // 
            // closedSocietyLabel
            // 
            resources.ApplyResources(this.closedSocietyLabel, "closedSocietyLabel");
            this.closedSocietyLabel.Name = "closedSocietyLabel";
            // 
            // openSocietyLabel
            // 
            resources.ApplyResources(this.openSocietyLabel, "openSocietyLabel");
            this.openSocietyLabel.Name = "openSocietyLabel";
            // 
            // politicalLeftTrackBar
            // 
            resources.ApplyResources(this.politicalLeftTrackBar, "politicalLeftTrackBar");
            this.politicalLeftTrackBar.LargeChange = 1;
            this.politicalLeftTrackBar.Minimum = 1;
            this.politicalLeftTrackBar.Name = "politicalLeftTrackBar";
            this.politicalLeftTrackBar.Value = 6;
            this.politicalLeftTrackBar.Scroll += new System.EventHandler(this.OnPoliticalSliderTrackBarScroll);
            // 
            // politicalRightLabel
            // 
            resources.ApplyResources(this.politicalRightLabel, "politicalRightLabel");
            this.politicalRightLabel.Name = "politicalRightLabel";
            // 
            // politicalLeftLabel
            // 
            resources.ApplyResources(this.politicalLeftLabel, "politicalLeftLabel");
            this.politicalLeftLabel.Name = "politicalLeftLabel";
            // 
            // democraticTrackBar
            // 
            resources.ApplyResources(this.democraticTrackBar, "democraticTrackBar");
            this.democraticTrackBar.LargeChange = 1;
            this.democraticTrackBar.Minimum = 1;
            this.democraticTrackBar.Name = "democraticTrackBar";
            this.democraticTrackBar.Value = 6;
            this.democraticTrackBar.Scroll += new System.EventHandler(this.OnPoliticalSliderTrackBarScroll);
            // 
            // authoritarianLabel
            // 
            resources.ApplyResources(this.authoritarianLabel, "authoritarianLabel");
            this.authoritarianLabel.Name = "authoritarianLabel";
            // 
            // democraticLabel
            // 
            resources.ApplyResources(this.democraticLabel, "democraticLabel");
            this.democraticLabel.Name = "democraticLabel";
            // 
            // sliderDayTextBox
            // 
            resources.ApplyResources(this.sliderDayTextBox, "sliderDayTextBox");
            this.sliderDayTextBox.Name = "sliderDayTextBox";
            this.sliderDayTextBox.Validated += new System.EventHandler(this.OnGovernmentIntItemTextBoxValidated);
            // 
            // sliderMonthTextBox
            // 
            resources.ApplyResources(this.sliderMonthTextBox, "sliderMonthTextBox");
            this.sliderMonthTextBox.Name = "sliderMonthTextBox";
            this.sliderMonthTextBox.Validated += new System.EventHandler(this.OnGovernmentIntItemTextBoxValidated);
            // 
            // sliderYearTextBox
            // 
            resources.ApplyResources(this.sliderYearTextBox, "sliderYearTextBox");
            this.sliderYearTextBox.Name = "sliderYearTextBox";
            this.sliderYearTextBox.Validated += new System.EventHandler(this.OnGovernmentIntItemTextBoxValidated);
            // 
            // countryTabPage
            // 
            resources.ApplyResources(this.countryTabPage, "countryTabPage");
            this.countryTabPage.BackColor = System.Drawing.SystemColors.Control;
            this.countryTabPage.Controls.Add(this.countryModifierGroupBox);
            this.countryTabPage.Controls.Add(this.aiGroupBox);
            this.countryTabPage.Controls.Add(this.countryListBox);
            this.countryTabPage.Controls.Add(this.countryResourceGroupBox);
            this.countryTabPage.Controls.Add(this.countryInfoGroupBox);
            this.countryTabPage.Name = "countryTabPage";
            // 
            // countryModifierGroupBox
            // 
            resources.ApplyResources(this.countryModifierGroupBox, "countryModifierGroupBox");
            this.countryModifierGroupBox.Controls.Add(this.groundDefEffTextBox);
            this.countryModifierGroupBox.Controls.Add(peacetimeIcModifierLabel);
            this.countryModifierGroupBox.Controls.Add(this.peacetimeIcModifierTextBox);
            this.countryModifierGroupBox.Controls.Add(wartimeIcModifierLabel);
            this.countryModifierGroupBox.Controls.Add(groundDefEffLabel);
            this.countryModifierGroupBox.Controls.Add(relativeManpowerLabel);
            this.countryModifierGroupBox.Controls.Add(this.relativeManpowerTextBox);
            this.countryModifierGroupBox.Controls.Add(this.wartimeIcModifierTextBox);
            this.countryModifierGroupBox.Controls.Add(industrialModifierLabel);
            this.countryModifierGroupBox.Controls.Add(this.industrialModifierTextBox);
            this.countryModifierGroupBox.Name = "countryModifierGroupBox";
            this.countryModifierGroupBox.TabStop = false;
            // 
            // groundDefEffTextBox
            // 
            resources.ApplyResources(this.groundDefEffTextBox, "groundDefEffTextBox");
            this.groundDefEffTextBox.Name = "groundDefEffTextBox";
            this.groundDefEffTextBox.Validated += new System.EventHandler(this.OnCountryDoubleItemTextBoxValidated);
            // 
            // peacetimeIcModifierTextBox
            // 
            resources.ApplyResources(this.peacetimeIcModifierTextBox, "peacetimeIcModifierTextBox");
            this.peacetimeIcModifierTextBox.Name = "peacetimeIcModifierTextBox";
            this.peacetimeIcModifierTextBox.Validated += new System.EventHandler(this.OnCountryDoubleItemTextBoxValidated);
            // 
            // relativeManpowerTextBox
            // 
            resources.ApplyResources(this.relativeManpowerTextBox, "relativeManpowerTextBox");
            this.relativeManpowerTextBox.Name = "relativeManpowerTextBox";
            this.relativeManpowerTextBox.Validated += new System.EventHandler(this.OnCountryDoubleItemTextBoxValidated);
            // 
            // wartimeIcModifierTextBox
            // 
            resources.ApplyResources(this.wartimeIcModifierTextBox, "wartimeIcModifierTextBox");
            this.wartimeIcModifierTextBox.Name = "wartimeIcModifierTextBox";
            this.wartimeIcModifierTextBox.Validated += new System.EventHandler(this.OnCountryDoubleItemTextBoxValidated);
            // 
            // industrialModifierTextBox
            // 
            resources.ApplyResources(this.industrialModifierTextBox, "industrialModifierTextBox");
            this.industrialModifierTextBox.Name = "industrialModifierTextBox";
            this.industrialModifierTextBox.Validated += new System.EventHandler(this.OnCountryDoubleItemTextBoxValidated);
            // 
            // aiGroupBox
            // 
            resources.ApplyResources(this.aiGroupBox, "aiGroupBox");
            this.aiGroupBox.Controls.Add(aiFileLabel);
            this.aiGroupBox.Controls.Add(this.aiFileBrowseButton);
            this.aiGroupBox.Controls.Add(this.aiFileNameTextBox);
            this.aiGroupBox.Name = "aiGroupBox";
            this.aiGroupBox.TabStop = false;
            // 
            // aiFileBrowseButton
            // 
            resources.ApplyResources(this.aiFileBrowseButton, "aiFileBrowseButton");
            this.aiFileBrowseButton.Name = "aiFileBrowseButton";
            this.aiFileBrowseButton.UseVisualStyleBackColor = true;
            this.aiFileBrowseButton.Click += new System.EventHandler(this.OnAiFileNameBrowseButtonClick);
            // 
            // aiFileNameTextBox
            // 
            resources.ApplyResources(this.aiFileNameTextBox, "aiFileNameTextBox");
            this.aiFileNameTextBox.Name = "aiFileNameTextBox";
            this.aiFileNameTextBox.TextChanged += new System.EventHandler(this.OnCountryStringItemTextBoxTextChanged);
            // 
            // countryListBox
            // 
            resources.ApplyResources(this.countryListBox, "countryListBox");
            this.countryListBox.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.countryListBox.FormattingEnabled = true;
            this.countryListBox.Name = "countryListBox";
            this.countryListBox.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.OnCountryListBoxDrawItem);
            this.countryListBox.SelectedIndexChanged += new System.EventHandler(this.OnCountryListBoxSelectedIndexChanged);
            // 
            // countryResourceGroupBox
            // 
            resources.ApplyResources(this.countryResourceGroupBox, "countryResourceGroupBox");
            this.countryResourceGroupBox.Controls.Add(this.offmapIcTextBox);
            this.countryResourceGroupBox.Controls.Add(this.countryIcLabel);
            this.countryResourceGroupBox.Controls.Add(this.offmapManpowerTextBox);
            this.countryResourceGroupBox.Controls.Add(this.offmapEscortsTextBox);
            this.countryResourceGroupBox.Controls.Add(this.offmapTransportsTextBox);
            this.countryResourceGroupBox.Controls.Add(this.offmapMoneyTextBox);
            this.countryResourceGroupBox.Controls.Add(this.offmapSuppliesTextBox);
            this.countryResourceGroupBox.Controls.Add(this.offmapOilTextBox);
            this.countryResourceGroupBox.Controls.Add(this.offmapRareMaterialsTextBox);
            this.countryResourceGroupBox.Controls.Add(this.offmapMetalTextBox);
            this.countryResourceGroupBox.Controls.Add(this.offmapEnergyTextBox);
            this.countryResourceGroupBox.Controls.Add(countryOffmapLabel);
            this.countryResourceGroupBox.Controls.Add(this.countryManpowerTextBox);
            this.countryResourceGroupBox.Controls.Add(countryStockpileLabel);
            this.countryResourceGroupBox.Controls.Add(this.countryManpowerLabel);
            this.countryResourceGroupBox.Controls.Add(this.countryEscortsTextBox);
            this.countryResourceGroupBox.Controls.Add(this.countryEscortsLabel);
            this.countryResourceGroupBox.Controls.Add(this.countryTransportsTextBox);
            this.countryResourceGroupBox.Controls.Add(this.countryTransportsLabel);
            this.countryResourceGroupBox.Controls.Add(this.countryMoneyTextBox);
            this.countryResourceGroupBox.Controls.Add(this.countryMoneyLabel);
            this.countryResourceGroupBox.Controls.Add(this.countrySuppliesTextBox);
            this.countryResourceGroupBox.Controls.Add(this.countrySuppliesLabel);
            this.countryResourceGroupBox.Controls.Add(this.countryOilTextBox);
            this.countryResourceGroupBox.Controls.Add(this.countryOilLabel);
            this.countryResourceGroupBox.Controls.Add(this.countryRareMaterialsTextBox);
            this.countryResourceGroupBox.Controls.Add(this.countryRareMaterialsLabel);
            this.countryResourceGroupBox.Controls.Add(this.countryMetalTextBox);
            this.countryResourceGroupBox.Controls.Add(this.countryMetalLabel);
            this.countryResourceGroupBox.Controls.Add(this.countryEnergyTextBox);
            this.countryResourceGroupBox.Controls.Add(this.countryEnergyLabel);
            this.countryResourceGroupBox.Name = "countryResourceGroupBox";
            this.countryResourceGroupBox.TabStop = false;
            // 
            // offmapIcTextBox
            // 
            resources.ApplyResources(this.offmapIcTextBox, "offmapIcTextBox");
            this.offmapIcTextBox.Name = "offmapIcTextBox";
            this.offmapIcTextBox.Validated += new System.EventHandler(this.OnCountryDoubleItemTextBoxValidated);
            // 
            // countryIcLabel
            // 
            resources.ApplyResources(this.countryIcLabel, "countryIcLabel");
            this.countryIcLabel.Name = "countryIcLabel";
            // 
            // offmapManpowerTextBox
            // 
            resources.ApplyResources(this.offmapManpowerTextBox, "offmapManpowerTextBox");
            this.offmapManpowerTextBox.Name = "offmapManpowerTextBox";
            this.offmapManpowerTextBox.Validated += new System.EventHandler(this.OnCountryDoubleItemTextBoxValidated);
            // 
            // offmapEscortsTextBox
            // 
            resources.ApplyResources(this.offmapEscortsTextBox, "offmapEscortsTextBox");
            this.offmapEscortsTextBox.Name = "offmapEscortsTextBox";
            this.offmapEscortsTextBox.Validated += new System.EventHandler(this.OnCountryIntItemTextBoxValidated);
            // 
            // offmapTransportsTextBox
            // 
            resources.ApplyResources(this.offmapTransportsTextBox, "offmapTransportsTextBox");
            this.offmapTransportsTextBox.Name = "offmapTransportsTextBox";
            this.offmapTransportsTextBox.Validated += new System.EventHandler(this.OnCountryIntItemTextBoxValidated);
            // 
            // offmapMoneyTextBox
            // 
            resources.ApplyResources(this.offmapMoneyTextBox, "offmapMoneyTextBox");
            this.offmapMoneyTextBox.Name = "offmapMoneyTextBox";
            this.offmapMoneyTextBox.Validated += new System.EventHandler(this.OnCountryDoubleItemTextBoxValidated);
            // 
            // offmapSuppliesTextBox
            // 
            resources.ApplyResources(this.offmapSuppliesTextBox, "offmapSuppliesTextBox");
            this.offmapSuppliesTextBox.Name = "offmapSuppliesTextBox";
            this.offmapSuppliesTextBox.Validated += new System.EventHandler(this.OnCountryDoubleItemTextBoxValidated);
            // 
            // offmapOilTextBox
            // 
            resources.ApplyResources(this.offmapOilTextBox, "offmapOilTextBox");
            this.offmapOilTextBox.Name = "offmapOilTextBox";
            this.offmapOilTextBox.Validated += new System.EventHandler(this.OnCountryDoubleItemTextBoxValidated);
            // 
            // offmapRareMaterialsTextBox
            // 
            resources.ApplyResources(this.offmapRareMaterialsTextBox, "offmapRareMaterialsTextBox");
            this.offmapRareMaterialsTextBox.Name = "offmapRareMaterialsTextBox";
            this.offmapRareMaterialsTextBox.Validated += new System.EventHandler(this.OnCountryDoubleItemTextBoxValidated);
            // 
            // offmapMetalTextBox
            // 
            resources.ApplyResources(this.offmapMetalTextBox, "offmapMetalTextBox");
            this.offmapMetalTextBox.Name = "offmapMetalTextBox";
            this.offmapMetalTextBox.Validated += new System.EventHandler(this.OnCountryDoubleItemTextBoxValidated);
            // 
            // offmapEnergyTextBox
            // 
            resources.ApplyResources(this.offmapEnergyTextBox, "offmapEnergyTextBox");
            this.offmapEnergyTextBox.Name = "offmapEnergyTextBox";
            this.offmapEnergyTextBox.Validated += new System.EventHandler(this.OnCountryDoubleItemTextBoxValidated);
            // 
            // countryManpowerTextBox
            // 
            resources.ApplyResources(this.countryManpowerTextBox, "countryManpowerTextBox");
            this.countryManpowerTextBox.Name = "countryManpowerTextBox";
            this.countryManpowerTextBox.Validated += new System.EventHandler(this.OnCountryDoubleItemTextBoxValidated);
            // 
            // countryManpowerLabel
            // 
            resources.ApplyResources(this.countryManpowerLabel, "countryManpowerLabel");
            this.countryManpowerLabel.Name = "countryManpowerLabel";
            // 
            // countryEscortsTextBox
            // 
            resources.ApplyResources(this.countryEscortsTextBox, "countryEscortsTextBox");
            this.countryEscortsTextBox.Name = "countryEscortsTextBox";
            this.countryEscortsTextBox.Validated += new System.EventHandler(this.OnCountryIntItemTextBoxValidated);
            // 
            // countryEscortsLabel
            // 
            resources.ApplyResources(this.countryEscortsLabel, "countryEscortsLabel");
            this.countryEscortsLabel.Name = "countryEscortsLabel";
            // 
            // countryTransportsTextBox
            // 
            resources.ApplyResources(this.countryTransportsTextBox, "countryTransportsTextBox");
            this.countryTransportsTextBox.Name = "countryTransportsTextBox";
            this.countryTransportsTextBox.Validated += new System.EventHandler(this.OnCountryIntItemTextBoxValidated);
            // 
            // countryTransportsLabel
            // 
            resources.ApplyResources(this.countryTransportsLabel, "countryTransportsLabel");
            this.countryTransportsLabel.Name = "countryTransportsLabel";
            // 
            // countryMoneyTextBox
            // 
            resources.ApplyResources(this.countryMoneyTextBox, "countryMoneyTextBox");
            this.countryMoneyTextBox.Name = "countryMoneyTextBox";
            this.countryMoneyTextBox.Validated += new System.EventHandler(this.OnCountryDoubleItemTextBoxValidated);
            // 
            // countryMoneyLabel
            // 
            resources.ApplyResources(this.countryMoneyLabel, "countryMoneyLabel");
            this.countryMoneyLabel.Name = "countryMoneyLabel";
            // 
            // countrySuppliesTextBox
            // 
            resources.ApplyResources(this.countrySuppliesTextBox, "countrySuppliesTextBox");
            this.countrySuppliesTextBox.Name = "countrySuppliesTextBox";
            this.countrySuppliesTextBox.Validated += new System.EventHandler(this.OnCountryDoubleItemTextBoxValidated);
            // 
            // countrySuppliesLabel
            // 
            resources.ApplyResources(this.countrySuppliesLabel, "countrySuppliesLabel");
            this.countrySuppliesLabel.Name = "countrySuppliesLabel";
            // 
            // countryOilTextBox
            // 
            resources.ApplyResources(this.countryOilTextBox, "countryOilTextBox");
            this.countryOilTextBox.Name = "countryOilTextBox";
            this.countryOilTextBox.Validated += new System.EventHandler(this.OnCountryDoubleItemTextBoxValidated);
            // 
            // countryOilLabel
            // 
            resources.ApplyResources(this.countryOilLabel, "countryOilLabel");
            this.countryOilLabel.Name = "countryOilLabel";
            // 
            // countryRareMaterialsTextBox
            // 
            resources.ApplyResources(this.countryRareMaterialsTextBox, "countryRareMaterialsTextBox");
            this.countryRareMaterialsTextBox.Name = "countryRareMaterialsTextBox";
            this.countryRareMaterialsTextBox.Validated += new System.EventHandler(this.OnCountryDoubleItemTextBoxValidated);
            // 
            // countryRareMaterialsLabel
            // 
            resources.ApplyResources(this.countryRareMaterialsLabel, "countryRareMaterialsLabel");
            this.countryRareMaterialsLabel.Name = "countryRareMaterialsLabel";
            // 
            // countryMetalTextBox
            // 
            resources.ApplyResources(this.countryMetalTextBox, "countryMetalTextBox");
            this.countryMetalTextBox.Name = "countryMetalTextBox";
            this.countryMetalTextBox.Validated += new System.EventHandler(this.OnCountryDoubleItemTextBoxValidated);
            // 
            // countryMetalLabel
            // 
            resources.ApplyResources(this.countryMetalLabel, "countryMetalLabel");
            this.countryMetalLabel.Name = "countryMetalLabel";
            // 
            // countryEnergyTextBox
            // 
            resources.ApplyResources(this.countryEnergyTextBox, "countryEnergyTextBox");
            this.countryEnergyTextBox.Name = "countryEnergyTextBox";
            this.countryEnergyTextBox.Validated += new System.EventHandler(this.OnCountryDoubleItemTextBoxValidated);
            // 
            // countryEnergyLabel
            // 
            resources.ApplyResources(this.countryEnergyLabel, "countryEnergyLabel");
            this.countryEnergyLabel.Name = "countryEnergyLabel";
            // 
            // countryInfoGroupBox
            // 
            resources.ApplyResources(this.countryInfoGroupBox, "countryInfoGroupBox");
            this.countryInfoGroupBox.Controls.Add(this.countryNameStringTextBox);
            this.countryInfoGroupBox.Controls.Add(this.nukeDayTextBox);
            this.countryInfoGroupBox.Controls.Add(this.nukeMonthTextBox);
            this.countryInfoGroupBox.Controls.Add(nukeDateLabel);
            this.countryInfoGroupBox.Controls.Add(this.nukeYearTextBox);
            this.countryInfoGroupBox.Controls.Add(this.dissentTextBox);
            this.countryInfoGroupBox.Controls.Add(dissentLabel);
            this.countryInfoGroupBox.Controls.Add(this.flagExtTextBox);
            this.countryInfoGroupBox.Controls.Add(flagExtLabel);
            this.countryInfoGroupBox.Controls.Add(this.nukeTextBox);
            this.countryInfoGroupBox.Controls.Add(nukeLabel);
            this.countryInfoGroupBox.Controls.Add(this.extraTcTextBox);
            this.countryInfoGroupBox.Controls.Add(extraTcLabel);
            this.countryInfoGroupBox.Controls.Add(this.belligerenceTextBox);
            this.countryInfoGroupBox.Controls.Add(belligerenceLabel);
            this.countryInfoGroupBox.Controls.Add(this.regularIdComboBox);
            this.countryInfoGroupBox.Controls.Add(regularIdLabel);
            this.countryInfoGroupBox.Controls.Add(this.countryNameKeyTextBox);
            this.countryInfoGroupBox.Controls.Add(countryNameLabel);
            this.countryInfoGroupBox.Name = "countryInfoGroupBox";
            this.countryInfoGroupBox.TabStop = false;
            // 
            // countryNameStringTextBox
            // 
            resources.ApplyResources(this.countryNameStringTextBox, "countryNameStringTextBox");
            this.countryNameStringTextBox.Name = "countryNameStringTextBox";
            this.countryNameStringTextBox.TextChanged += new System.EventHandler(this.OnCountryNameItemTextBoxTextChanged);
            // 
            // nukeDayTextBox
            // 
            resources.ApplyResources(this.nukeDayTextBox, "nukeDayTextBox");
            this.nukeDayTextBox.Name = "nukeDayTextBox";
            this.nukeDayTextBox.Validated += new System.EventHandler(this.OnCountryIntItemTextBoxValidated);
            // 
            // nukeMonthTextBox
            // 
            resources.ApplyResources(this.nukeMonthTextBox, "nukeMonthTextBox");
            this.nukeMonthTextBox.Name = "nukeMonthTextBox";
            this.nukeMonthTextBox.Validated += new System.EventHandler(this.OnCountryIntItemTextBoxValidated);
            // 
            // nukeYearTextBox
            // 
            resources.ApplyResources(this.nukeYearTextBox, "nukeYearTextBox");
            this.nukeYearTextBox.Name = "nukeYearTextBox";
            this.nukeYearTextBox.Validated += new System.EventHandler(this.OnCountryIntItemTextBoxValidated);
            // 
            // dissentTextBox
            // 
            resources.ApplyResources(this.dissentTextBox, "dissentTextBox");
            this.dissentTextBox.Name = "dissentTextBox";
            this.dissentTextBox.Validated += new System.EventHandler(this.OnCountryDoubleItemTextBoxValidated);
            // 
            // flagExtTextBox
            // 
            resources.ApplyResources(this.flagExtTextBox, "flagExtTextBox");
            this.flagExtTextBox.Name = "flagExtTextBox";
            this.flagExtTextBox.TextChanged += new System.EventHandler(this.OnCountryStringItemTextBoxTextChanged);
            // 
            // nukeTextBox
            // 
            resources.ApplyResources(this.nukeTextBox, "nukeTextBox");
            this.nukeTextBox.Name = "nukeTextBox";
            this.nukeTextBox.Validated += new System.EventHandler(this.OnCountryIntItemTextBoxValidated);
            // 
            // extraTcTextBox
            // 
            resources.ApplyResources(this.extraTcTextBox, "extraTcTextBox");
            this.extraTcTextBox.Name = "extraTcTextBox";
            this.extraTcTextBox.Validated += new System.EventHandler(this.OnCountryDoubleItemTextBoxValidated);
            // 
            // belligerenceTextBox
            // 
            resources.ApplyResources(this.belligerenceTextBox, "belligerenceTextBox");
            this.belligerenceTextBox.Name = "belligerenceTextBox";
            this.belligerenceTextBox.Validated += new System.EventHandler(this.OnCountryIntItemTextBoxValidated);
            // 
            // regularIdComboBox
            // 
            resources.ApplyResources(this.regularIdComboBox, "regularIdComboBox");
            this.regularIdComboBox.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.regularIdComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.regularIdComboBox.FormattingEnabled = true;
            this.regularIdComboBox.Name = "regularIdComboBox";
            this.regularIdComboBox.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.OnCountryItemComboBoxDrawItem);
            this.regularIdComboBox.SelectedIndexChanged += new System.EventHandler(this.OnCountryItemComboBoxSelectedIndexChanged);
            // 
            // countryNameKeyTextBox
            // 
            resources.ApplyResources(this.countryNameKeyTextBox, "countryNameKeyTextBox");
            this.countryNameKeyTextBox.Name = "countryNameKeyTextBox";
            this.countryNameKeyTextBox.TextChanged += new System.EventHandler(this.OnCountryStringItemTextBoxTextChanged);
            // 
            // tradeTabPage
            // 
            resources.ApplyResources(this.tradeTabPage, "tradeTabPage");
            this.tradeTabPage.BackColor = System.Drawing.SystemColors.Control;
            this.tradeTabPage.Controls.Add(this.tradeDealsGroupBox);
            this.tradeTabPage.Controls.Add(this.tradeInfoGroupBox);
            this.tradeTabPage.Controls.Add(this.tradeListView);
            this.tradeTabPage.Controls.Add(this.tradeDownButton);
            this.tradeTabPage.Controls.Add(this.tradeNewButton);
            this.tradeTabPage.Controls.Add(this.tradeRemoveButton);
            this.tradeTabPage.Controls.Add(this.tradeUpButton);
            this.tradeTabPage.Name = "tradeTabPage";
            // 
            // tradeDealsGroupBox
            // 
            resources.ApplyResources(this.tradeDealsGroupBox, "tradeDealsGroupBox");
            this.tradeDealsGroupBox.Controls.Add(this.tradeCountryComboBox1);
            this.tradeDealsGroupBox.Controls.Add(this.tradeRareMaterialsTextBox1);
            this.tradeDealsGroupBox.Controls.Add(this.tradeRareMaterialsTextBox2);
            this.tradeDealsGroupBox.Controls.Add(this.tradeRareMaterialsLabel);
            this.tradeDealsGroupBox.Controls.Add(this.tradeOilLabel);
            this.tradeDealsGroupBox.Controls.Add(this.tradeMetalTextBox2);
            this.tradeDealsGroupBox.Controls.Add(this.tradeOilTextBox1);
            this.tradeDealsGroupBox.Controls.Add(this.tradeMetalTextBox1);
            this.tradeDealsGroupBox.Controls.Add(this.tradeSwapButton);
            this.tradeDealsGroupBox.Controls.Add(this.tradeOilTextBox2);
            this.tradeDealsGroupBox.Controls.Add(this.tradeMoneyTextBox2);
            this.tradeDealsGroupBox.Controls.Add(this.tradeMetalLabel);
            this.tradeDealsGroupBox.Controls.Add(this.tradeSuppliesLabel);
            this.tradeDealsGroupBox.Controls.Add(this.tradeMoneyTextBox1);
            this.tradeDealsGroupBox.Controls.Add(this.tradeEnergyTextBox2);
            this.tradeDealsGroupBox.Controls.Add(this.tradeCountryComboBox2);
            this.tradeDealsGroupBox.Controls.Add(this.tradeSuppliesTextBox1);
            this.tradeDealsGroupBox.Controls.Add(this.tradeMoneyLabel);
            this.tradeDealsGroupBox.Controls.Add(this.tradeEnergyTextBox1);
            this.tradeDealsGroupBox.Controls.Add(this.tradeEnergyLabel);
            this.tradeDealsGroupBox.Controls.Add(this.tradeSuppliesTextBox2);
            this.tradeDealsGroupBox.Name = "tradeDealsGroupBox";
            this.tradeDealsGroupBox.TabStop = false;
            // 
            // tradeCountryComboBox1
            // 
            resources.ApplyResources(this.tradeCountryComboBox1, "tradeCountryComboBox1");
            this.tradeCountryComboBox1.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.tradeCountryComboBox1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.tradeCountryComboBox1.FormattingEnabled = true;
            this.tradeCountryComboBox1.Name = "tradeCountryComboBox1";
            this.tradeCountryComboBox1.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.OnTradeCountryItemComboBoxDrawItem);
            this.tradeCountryComboBox1.SelectedIndexChanged += new System.EventHandler(this.OnTradeCountryItemComboBoxSelectedIndexChanged);
            // 
            // tradeRareMaterialsTextBox1
            // 
            resources.ApplyResources(this.tradeRareMaterialsTextBox1, "tradeRareMaterialsTextBox1");
            this.tradeRareMaterialsTextBox1.Name = "tradeRareMaterialsTextBox1";
            this.tradeRareMaterialsTextBox1.Validated += new System.EventHandler(this.OnTradeDoubleItemTextBoxValidated);
            // 
            // tradeRareMaterialsTextBox2
            // 
            resources.ApplyResources(this.tradeRareMaterialsTextBox2, "tradeRareMaterialsTextBox2");
            this.tradeRareMaterialsTextBox2.Name = "tradeRareMaterialsTextBox2";
            this.tradeRareMaterialsTextBox2.Validated += new System.EventHandler(this.OnTradeDoubleItemTextBoxValidated);
            // 
            // tradeRareMaterialsLabel
            // 
            resources.ApplyResources(this.tradeRareMaterialsLabel, "tradeRareMaterialsLabel");
            this.tradeRareMaterialsLabel.Name = "tradeRareMaterialsLabel";
            // 
            // tradeOilLabel
            // 
            resources.ApplyResources(this.tradeOilLabel, "tradeOilLabel");
            this.tradeOilLabel.Name = "tradeOilLabel";
            // 
            // tradeMetalTextBox2
            // 
            resources.ApplyResources(this.tradeMetalTextBox2, "tradeMetalTextBox2");
            this.tradeMetalTextBox2.Name = "tradeMetalTextBox2";
            this.tradeMetalTextBox2.Validated += new System.EventHandler(this.OnTradeDoubleItemTextBoxValidated);
            // 
            // tradeOilTextBox1
            // 
            resources.ApplyResources(this.tradeOilTextBox1, "tradeOilTextBox1");
            this.tradeOilTextBox1.Name = "tradeOilTextBox1";
            this.tradeOilTextBox1.Validated += new System.EventHandler(this.OnTradeDoubleItemTextBoxValidated);
            // 
            // tradeMetalTextBox1
            // 
            resources.ApplyResources(this.tradeMetalTextBox1, "tradeMetalTextBox1");
            this.tradeMetalTextBox1.Name = "tradeMetalTextBox1";
            this.tradeMetalTextBox1.Validated += new System.EventHandler(this.OnTradeDoubleItemTextBoxValidated);
            // 
            // tradeSwapButton
            // 
            resources.ApplyResources(this.tradeSwapButton, "tradeSwapButton");
            this.tradeSwapButton.Name = "tradeSwapButton";
            this.tradeSwapButton.UseVisualStyleBackColor = true;
            this.tradeSwapButton.Click += new System.EventHandler(this.OnTradeSwapButtonClick);
            // 
            // tradeOilTextBox2
            // 
            resources.ApplyResources(this.tradeOilTextBox2, "tradeOilTextBox2");
            this.tradeOilTextBox2.Name = "tradeOilTextBox2";
            this.tradeOilTextBox2.Validated += new System.EventHandler(this.OnTradeDoubleItemTextBoxValidated);
            // 
            // tradeMoneyTextBox2
            // 
            resources.ApplyResources(this.tradeMoneyTextBox2, "tradeMoneyTextBox2");
            this.tradeMoneyTextBox2.Name = "tradeMoneyTextBox2";
            this.tradeMoneyTextBox2.Validated += new System.EventHandler(this.OnTradeDoubleItemTextBoxValidated);
            // 
            // tradeMetalLabel
            // 
            resources.ApplyResources(this.tradeMetalLabel, "tradeMetalLabel");
            this.tradeMetalLabel.Name = "tradeMetalLabel";
            // 
            // tradeSuppliesLabel
            // 
            resources.ApplyResources(this.tradeSuppliesLabel, "tradeSuppliesLabel");
            this.tradeSuppliesLabel.Name = "tradeSuppliesLabel";
            // 
            // tradeMoneyTextBox1
            // 
            resources.ApplyResources(this.tradeMoneyTextBox1, "tradeMoneyTextBox1");
            this.tradeMoneyTextBox1.Name = "tradeMoneyTextBox1";
            this.tradeMoneyTextBox1.Validated += new System.EventHandler(this.OnTradeDoubleItemTextBoxValidated);
            // 
            // tradeEnergyTextBox2
            // 
            resources.ApplyResources(this.tradeEnergyTextBox2, "tradeEnergyTextBox2");
            this.tradeEnergyTextBox2.Name = "tradeEnergyTextBox2";
            this.tradeEnergyTextBox2.Validated += new System.EventHandler(this.OnTradeDoubleItemTextBoxValidated);
            // 
            // tradeCountryComboBox2
            // 
            resources.ApplyResources(this.tradeCountryComboBox2, "tradeCountryComboBox2");
            this.tradeCountryComboBox2.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.tradeCountryComboBox2.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.tradeCountryComboBox2.FormattingEnabled = true;
            this.tradeCountryComboBox2.Name = "tradeCountryComboBox2";
            this.tradeCountryComboBox2.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.OnTradeCountryItemComboBoxDrawItem);
            this.tradeCountryComboBox2.SelectedIndexChanged += new System.EventHandler(this.OnTradeCountryItemComboBoxSelectedIndexChanged);
            // 
            // tradeSuppliesTextBox1
            // 
            resources.ApplyResources(this.tradeSuppliesTextBox1, "tradeSuppliesTextBox1");
            this.tradeSuppliesTextBox1.Name = "tradeSuppliesTextBox1";
            this.tradeSuppliesTextBox1.Validated += new System.EventHandler(this.OnTradeDoubleItemTextBoxValidated);
            // 
            // tradeMoneyLabel
            // 
            resources.ApplyResources(this.tradeMoneyLabel, "tradeMoneyLabel");
            this.tradeMoneyLabel.Name = "tradeMoneyLabel";
            // 
            // tradeEnergyTextBox1
            // 
            resources.ApplyResources(this.tradeEnergyTextBox1, "tradeEnergyTextBox1");
            this.tradeEnergyTextBox1.Name = "tradeEnergyTextBox1";
            this.tradeEnergyTextBox1.Validated += new System.EventHandler(this.OnTradeDoubleItemTextBoxValidated);
            // 
            // tradeEnergyLabel
            // 
            resources.ApplyResources(this.tradeEnergyLabel, "tradeEnergyLabel");
            this.tradeEnergyLabel.Name = "tradeEnergyLabel";
            // 
            // tradeSuppliesTextBox2
            // 
            resources.ApplyResources(this.tradeSuppliesTextBox2, "tradeSuppliesTextBox2");
            this.tradeSuppliesTextBox2.Name = "tradeSuppliesTextBox2";
            this.tradeSuppliesTextBox2.Validated += new System.EventHandler(this.OnTradeDoubleItemTextBoxValidated);
            // 
            // tradeInfoGroupBox
            // 
            resources.ApplyResources(this.tradeInfoGroupBox, "tradeInfoGroupBox");
            this.tradeInfoGroupBox.Controls.Add(tradeStartDateLabel);
            this.tradeInfoGroupBox.Controls.Add(this.tradeIdTextBox);
            this.tradeInfoGroupBox.Controls.Add(tradeEndDateLabel);
            this.tradeInfoGroupBox.Controls.Add(this.tradeTypeTextBox);
            this.tradeInfoGroupBox.Controls.Add(this.tradeStartYearTextBox);
            this.tradeInfoGroupBox.Controls.Add(tradeIdLabel);
            this.tradeInfoGroupBox.Controls.Add(this.tradeStartMonthTextBox);
            this.tradeInfoGroupBox.Controls.Add(this.tradeCancelCheckBox);
            this.tradeInfoGroupBox.Controls.Add(this.tradeEndDayTextBox);
            this.tradeInfoGroupBox.Controls.Add(this.tradeStartDayTextBox);
            this.tradeInfoGroupBox.Controls.Add(this.tradeEndMonthTextBox);
            this.tradeInfoGroupBox.Controls.Add(this.tradeEndYearTextBox);
            this.tradeInfoGroupBox.Name = "tradeInfoGroupBox";
            this.tradeInfoGroupBox.TabStop = false;
            // 
            // tradeIdTextBox
            // 
            resources.ApplyResources(this.tradeIdTextBox, "tradeIdTextBox");
            this.tradeIdTextBox.Name = "tradeIdTextBox";
            this.tradeIdTextBox.Validated += new System.EventHandler(this.OnTradeIntItemTextBoxValidated);
            // 
            // tradeTypeTextBox
            // 
            resources.ApplyResources(this.tradeTypeTextBox, "tradeTypeTextBox");
            this.tradeTypeTextBox.Name = "tradeTypeTextBox";
            this.tradeTypeTextBox.Validated += new System.EventHandler(this.OnTradeIntItemTextBoxValidated);
            // 
            // tradeStartYearTextBox
            // 
            resources.ApplyResources(this.tradeStartYearTextBox, "tradeStartYearTextBox");
            this.tradeStartYearTextBox.Name = "tradeStartYearTextBox";
            this.tradeStartYearTextBox.Validated += new System.EventHandler(this.OnTradeIntItemTextBoxValidated);
            // 
            // tradeStartMonthTextBox
            // 
            resources.ApplyResources(this.tradeStartMonthTextBox, "tradeStartMonthTextBox");
            this.tradeStartMonthTextBox.Name = "tradeStartMonthTextBox";
            this.tradeStartMonthTextBox.Validated += new System.EventHandler(this.OnTradeIntItemTextBoxValidated);
            // 
            // tradeCancelCheckBox
            // 
            resources.ApplyResources(this.tradeCancelCheckBox, "tradeCancelCheckBox");
            this.tradeCancelCheckBox.Name = "tradeCancelCheckBox";
            this.tradeCancelCheckBox.UseVisualStyleBackColor = true;
            this.tradeCancelCheckBox.CheckedChanged += new System.EventHandler(this.OnTradeItemCheckBoxCheckedChanged);
            // 
            // tradeEndDayTextBox
            // 
            resources.ApplyResources(this.tradeEndDayTextBox, "tradeEndDayTextBox");
            this.tradeEndDayTextBox.Name = "tradeEndDayTextBox";
            this.tradeEndDayTextBox.Validated += new System.EventHandler(this.OnTradeIntItemTextBoxValidated);
            // 
            // tradeStartDayTextBox
            // 
            resources.ApplyResources(this.tradeStartDayTextBox, "tradeStartDayTextBox");
            this.tradeStartDayTextBox.Name = "tradeStartDayTextBox";
            this.tradeStartDayTextBox.Validated += new System.EventHandler(this.OnTradeIntItemTextBoxValidated);
            // 
            // tradeEndMonthTextBox
            // 
            resources.ApplyResources(this.tradeEndMonthTextBox, "tradeEndMonthTextBox");
            this.tradeEndMonthTextBox.Name = "tradeEndMonthTextBox";
            this.tradeEndMonthTextBox.Validated += new System.EventHandler(this.OnTradeIntItemTextBoxValidated);
            // 
            // tradeEndYearTextBox
            // 
            resources.ApplyResources(this.tradeEndYearTextBox, "tradeEndYearTextBox");
            this.tradeEndYearTextBox.Name = "tradeEndYearTextBox";
            this.tradeEndYearTextBox.Validated += new System.EventHandler(this.OnTradeIntItemTextBoxValidated);
            // 
            // tradeListView
            // 
            resources.ApplyResources(this.tradeListView, "tradeListView");
            this.tradeListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            this.tradeCountryColumnHeader1,
            this.tradeCountryColumnHeader2,
            this.tradeDealsColumnHeader});
            this.tradeListView.FullRowSelect = true;
            this.tradeListView.GridLines = true;
            this.tradeListView.HideSelection = false;
            this.tradeListView.MultiSelect = false;
            this.tradeListView.Name = "tradeListView";
            this.tradeListView.UseCompatibleStateImageBehavior = false;
            this.tradeListView.View = System.Windows.Forms.View.Details;
            this.tradeListView.SelectedIndexChanged += new System.EventHandler(this.OnTradeListViewSelectedIndexChanged);
            // 
            // tradeCountryColumnHeader1
            // 
            resources.ApplyResources(this.tradeCountryColumnHeader1, "tradeCountryColumnHeader1");
            // 
            // tradeCountryColumnHeader2
            // 
            resources.ApplyResources(this.tradeCountryColumnHeader2, "tradeCountryColumnHeader2");
            // 
            // tradeDealsColumnHeader
            // 
            resources.ApplyResources(this.tradeDealsColumnHeader, "tradeDealsColumnHeader");
            // 
            // tradeDownButton
            // 
            resources.ApplyResources(this.tradeDownButton, "tradeDownButton");
            this.tradeDownButton.Name = "tradeDownButton";
            this.tradeDownButton.UseVisualStyleBackColor = true;
            this.tradeDownButton.Click += new System.EventHandler(this.OnTradeDownButtonClick);
            // 
            // tradeNewButton
            // 
            resources.ApplyResources(this.tradeNewButton, "tradeNewButton");
            this.tradeNewButton.Name = "tradeNewButton";
            this.tradeNewButton.UseVisualStyleBackColor = true;
            this.tradeNewButton.Click += new System.EventHandler(this.OnTradeNewButtonClick);
            // 
            // tradeRemoveButton
            // 
            resources.ApplyResources(this.tradeRemoveButton, "tradeRemoveButton");
            this.tradeRemoveButton.Name = "tradeRemoveButton";
            this.tradeRemoveButton.UseVisualStyleBackColor = true;
            this.tradeRemoveButton.Click += new System.EventHandler(this.OnTradeRemoveButtonClick);
            // 
            // tradeUpButton
            // 
            resources.ApplyResources(this.tradeUpButton, "tradeUpButton");
            this.tradeUpButton.Name = "tradeUpButton";
            this.tradeUpButton.UseVisualStyleBackColor = true;
            this.tradeUpButton.Click += new System.EventHandler(this.OnTradeUpButtonClick);
            // 
            // relationTabPage
            // 
            resources.ApplyResources(this.relationTabPage, "relationTabPage");
            this.relationTabPage.BackColor = System.Drawing.SystemColors.Control;
            this.relationTabPage.Controls.Add(this.peaceGroupBox);
            this.relationTabPage.Controls.Add(this.guaranteedGroupBox);
            this.relationTabPage.Controls.Add(this.nonAggressionGroupBox);
            this.relationTabPage.Controls.Add(this.relationGroupBox);
            this.relationTabPage.Controls.Add(this.intelligenceGroupBox);
            this.relationTabPage.Controls.Add(this.relationListView);
            this.relationTabPage.Controls.Add(this.relationCountryListBox);
            this.relationTabPage.Name = "relationTabPage";
            // 
            // peaceGroupBox
            // 
            resources.ApplyResources(this.peaceGroupBox, "peaceGroupBox");
            this.peaceGroupBox.Controls.Add(this.peaceIdTextBox);
            this.peaceGroupBox.Controls.Add(this.peaceTypeTextBox);
            this.peaceGroupBox.Controls.Add(this.peaceEndDayTextBox);
            this.peaceGroupBox.Controls.Add(this.peaceEndLabel);
            this.peaceGroupBox.Controls.Add(this.peaceEndMonthTextBox);
            this.peaceGroupBox.Controls.Add(this.peaceIdLabel);
            this.peaceGroupBox.Controls.Add(this.peaceEndYearTextBox);
            this.peaceGroupBox.Controls.Add(this.peaceStartLabel);
            this.peaceGroupBox.Controls.Add(this.peaceStartYearTextBox);
            this.peaceGroupBox.Controls.Add(this.peaceStartDayTextBox);
            this.peaceGroupBox.Controls.Add(this.peaceCheckBox);
            this.peaceGroupBox.Controls.Add(this.peaceStartMonthTextBox);
            this.peaceGroupBox.Name = "peaceGroupBox";
            this.peaceGroupBox.TabStop = false;
            // 
            // peaceIdTextBox
            // 
            resources.ApplyResources(this.peaceIdTextBox, "peaceIdTextBox");
            this.peaceIdTextBox.Name = "peaceIdTextBox";
            this.peaceIdTextBox.Validated += new System.EventHandler(this.OnRelationPeaceItemTextBoxValidated);
            // 
            // peaceTypeTextBox
            // 
            resources.ApplyResources(this.peaceTypeTextBox, "peaceTypeTextBox");
            this.peaceTypeTextBox.Name = "peaceTypeTextBox";
            this.peaceTypeTextBox.Validated += new System.EventHandler(this.OnRelationPeaceItemTextBoxValidated);
            // 
            // peaceEndDayTextBox
            // 
            resources.ApplyResources(this.peaceEndDayTextBox, "peaceEndDayTextBox");
            this.peaceEndDayTextBox.Name = "peaceEndDayTextBox";
            this.peaceEndDayTextBox.Validated += new System.EventHandler(this.OnRelationPeaceItemTextBoxValidated);
            // 
            // peaceEndLabel
            // 
            resources.ApplyResources(this.peaceEndLabel, "peaceEndLabel");
            this.peaceEndLabel.Name = "peaceEndLabel";
            // 
            // peaceEndMonthTextBox
            // 
            resources.ApplyResources(this.peaceEndMonthTextBox, "peaceEndMonthTextBox");
            this.peaceEndMonthTextBox.Name = "peaceEndMonthTextBox";
            this.peaceEndMonthTextBox.Validated += new System.EventHandler(this.OnRelationPeaceItemTextBoxValidated);
            // 
            // peaceIdLabel
            // 
            resources.ApplyResources(this.peaceIdLabel, "peaceIdLabel");
            this.peaceIdLabel.Name = "peaceIdLabel";
            // 
            // peaceEndYearTextBox
            // 
            resources.ApplyResources(this.peaceEndYearTextBox, "peaceEndYearTextBox");
            this.peaceEndYearTextBox.Name = "peaceEndYearTextBox";
            this.peaceEndYearTextBox.Validated += new System.EventHandler(this.OnRelationPeaceItemTextBoxValidated);
            // 
            // peaceStartLabel
            // 
            resources.ApplyResources(this.peaceStartLabel, "peaceStartLabel");
            this.peaceStartLabel.Name = "peaceStartLabel";
            // 
            // peaceStartYearTextBox
            // 
            resources.ApplyResources(this.peaceStartYearTextBox, "peaceStartYearTextBox");
            this.peaceStartYearTextBox.Name = "peaceStartYearTextBox";
            this.peaceStartYearTextBox.Validated += new System.EventHandler(this.OnRelationPeaceItemTextBoxValidated);
            // 
            // peaceStartDayTextBox
            // 
            resources.ApplyResources(this.peaceStartDayTextBox, "peaceStartDayTextBox");
            this.peaceStartDayTextBox.Name = "peaceStartDayTextBox";
            this.peaceStartDayTextBox.Validated += new System.EventHandler(this.OnRelationPeaceItemTextBoxValidated);
            // 
            // peaceCheckBox
            // 
            resources.ApplyResources(this.peaceCheckBox, "peaceCheckBox");
            this.peaceCheckBox.Name = "peaceCheckBox";
            this.peaceCheckBox.UseVisualStyleBackColor = true;
            this.peaceCheckBox.CheckedChanged += new System.EventHandler(this.OnRelationPeaceItemCheckBoxCheckedChanged);
            // 
            // peaceStartMonthTextBox
            // 
            resources.ApplyResources(this.peaceStartMonthTextBox, "peaceStartMonthTextBox");
            this.peaceStartMonthTextBox.Name = "peaceStartMonthTextBox";
            this.peaceStartMonthTextBox.Validated += new System.EventHandler(this.OnRelationPeaceItemTextBoxValidated);
            // 
            // guaranteedGroupBox
            // 
            resources.ApplyResources(this.guaranteedGroupBox, "guaranteedGroupBox");
            this.guaranteedGroupBox.Controls.Add(this.guaranteedCheckBox);
            this.guaranteedGroupBox.Controls.Add(this.guaranteedYearTextBox);
            this.guaranteedGroupBox.Controls.Add(this.guaranteedMonthTextBox);
            this.guaranteedGroupBox.Controls.Add(this.guaranteedEndLabel);
            this.guaranteedGroupBox.Controls.Add(this.guaranteedDayTextBox);
            this.guaranteedGroupBox.Name = "guaranteedGroupBox";
            this.guaranteedGroupBox.TabStop = false;
            // 
            // guaranteedCheckBox
            // 
            resources.ApplyResources(this.guaranteedCheckBox, "guaranteedCheckBox");
            this.guaranteedCheckBox.Name = "guaranteedCheckBox";
            this.guaranteedCheckBox.UseVisualStyleBackColor = true;
            this.guaranteedCheckBox.CheckedChanged += new System.EventHandler(this.OnRelationItemCheckBoxCheckedChanged);
            // 
            // guaranteedYearTextBox
            // 
            resources.ApplyResources(this.guaranteedYearTextBox, "guaranteedYearTextBox");
            this.guaranteedYearTextBox.Name = "guaranteedYearTextBox";
            this.guaranteedYearTextBox.Validated += new System.EventHandler(this.OnRelationIntItemTextBoxValidated);
            // 
            // guaranteedMonthTextBox
            // 
            resources.ApplyResources(this.guaranteedMonthTextBox, "guaranteedMonthTextBox");
            this.guaranteedMonthTextBox.Name = "guaranteedMonthTextBox";
            this.guaranteedMonthTextBox.Validated += new System.EventHandler(this.OnRelationIntItemTextBoxValidated);
            // 
            // guaranteedEndLabel
            // 
            resources.ApplyResources(this.guaranteedEndLabel, "guaranteedEndLabel");
            this.guaranteedEndLabel.Name = "guaranteedEndLabel";
            // 
            // guaranteedDayTextBox
            // 
            resources.ApplyResources(this.guaranteedDayTextBox, "guaranteedDayTextBox");
            this.guaranteedDayTextBox.Name = "guaranteedDayTextBox";
            this.guaranteedDayTextBox.Validated += new System.EventHandler(this.OnRelationIntItemTextBoxValidated);
            // 
            // nonAggressionGroupBox
            // 
            resources.ApplyResources(this.nonAggressionGroupBox, "nonAggressionGroupBox");
            this.nonAggressionGroupBox.Controls.Add(this.nonAggressionIdTextBox);
            this.nonAggressionGroupBox.Controls.Add(this.nonAggressionTypeTextBox);
            this.nonAggressionGroupBox.Controls.Add(this.nonAggressionIdLabel);
            this.nonAggressionGroupBox.Controls.Add(this.nonAggressionCheckBox);
            this.nonAggressionGroupBox.Controls.Add(this.nonAggressionStartMonthTextBox);
            this.nonAggressionGroupBox.Controls.Add(this.nonAggressionStartYearTextBox);
            this.nonAggressionGroupBox.Controls.Add(this.nonAggressionStartDayTextBox);
            this.nonAggressionGroupBox.Controls.Add(this.nonAggressionStartLabel);
            this.nonAggressionGroupBox.Controls.Add(this.nonAggressionEndYearTextBox);
            this.nonAggressionGroupBox.Controls.Add(this.nonAggressionEndMonthTextBox);
            this.nonAggressionGroupBox.Controls.Add(this.nonAggressionEndDayTextBox);
            this.nonAggressionGroupBox.Controls.Add(this.nonAggressionEndLabel);
            this.nonAggressionGroupBox.Name = "nonAggressionGroupBox";
            this.nonAggressionGroupBox.TabStop = false;
            // 
            // nonAggressionIdTextBox
            // 
            resources.ApplyResources(this.nonAggressionIdTextBox, "nonAggressionIdTextBox");
            this.nonAggressionIdTextBox.Name = "nonAggressionIdTextBox";
            this.nonAggressionIdTextBox.Validated += new System.EventHandler(this.OnRelationNonAggressionItemTextBoxValidated);
            // 
            // nonAggressionTypeTextBox
            // 
            resources.ApplyResources(this.nonAggressionTypeTextBox, "nonAggressionTypeTextBox");
            this.nonAggressionTypeTextBox.Name = "nonAggressionTypeTextBox";
            this.nonAggressionTypeTextBox.Validated += new System.EventHandler(this.OnRelationNonAggressionItemTextBoxValidated);
            // 
            // nonAggressionIdLabel
            // 
            resources.ApplyResources(this.nonAggressionIdLabel, "nonAggressionIdLabel");
            this.nonAggressionIdLabel.Name = "nonAggressionIdLabel";
            // 
            // nonAggressionCheckBox
            // 
            resources.ApplyResources(this.nonAggressionCheckBox, "nonAggressionCheckBox");
            this.nonAggressionCheckBox.Name = "nonAggressionCheckBox";
            this.nonAggressionCheckBox.UseVisualStyleBackColor = true;
            this.nonAggressionCheckBox.CheckedChanged += new System.EventHandler(this.OnRelationNonAggressionItemCheckBoxCheckedChanged);
            // 
            // nonAggressionStartMonthTextBox
            // 
            resources.ApplyResources(this.nonAggressionStartMonthTextBox, "nonAggressionStartMonthTextBox");
            this.nonAggressionStartMonthTextBox.Name = "nonAggressionStartMonthTextBox";
            this.nonAggressionStartMonthTextBox.Validated += new System.EventHandler(this.OnRelationNonAggressionItemTextBoxValidated);
            // 
            // nonAggressionStartYearTextBox
            // 
            resources.ApplyResources(this.nonAggressionStartYearTextBox, "nonAggressionStartYearTextBox");
            this.nonAggressionStartYearTextBox.Name = "nonAggressionStartYearTextBox";
            this.nonAggressionStartYearTextBox.Validated += new System.EventHandler(this.OnRelationNonAggressionItemTextBoxValidated);
            // 
            // nonAggressionStartDayTextBox
            // 
            resources.ApplyResources(this.nonAggressionStartDayTextBox, "nonAggressionStartDayTextBox");
            this.nonAggressionStartDayTextBox.Name = "nonAggressionStartDayTextBox";
            this.nonAggressionStartDayTextBox.Validated += new System.EventHandler(this.OnRelationNonAggressionItemTextBoxValidated);
            // 
            // nonAggressionStartLabel
            // 
            resources.ApplyResources(this.nonAggressionStartLabel, "nonAggressionStartLabel");
            this.nonAggressionStartLabel.Name = "nonAggressionStartLabel";
            // 
            // nonAggressionEndYearTextBox
            // 
            resources.ApplyResources(this.nonAggressionEndYearTextBox, "nonAggressionEndYearTextBox");
            this.nonAggressionEndYearTextBox.Name = "nonAggressionEndYearTextBox";
            this.nonAggressionEndYearTextBox.Validated += new System.EventHandler(this.OnRelationNonAggressionItemTextBoxValidated);
            // 
            // nonAggressionEndMonthTextBox
            // 
            resources.ApplyResources(this.nonAggressionEndMonthTextBox, "nonAggressionEndMonthTextBox");
            this.nonAggressionEndMonthTextBox.Name = "nonAggressionEndMonthTextBox";
            this.nonAggressionEndMonthTextBox.Validated += new System.EventHandler(this.OnRelationNonAggressionItemTextBoxValidated);
            // 
            // nonAggressionEndDayTextBox
            // 
            resources.ApplyResources(this.nonAggressionEndDayTextBox, "nonAggressionEndDayTextBox");
            this.nonAggressionEndDayTextBox.Name = "nonAggressionEndDayTextBox";
            this.nonAggressionEndDayTextBox.Validated += new System.EventHandler(this.OnRelationNonAggressionItemTextBoxValidated);
            // 
            // nonAggressionEndLabel
            // 
            resources.ApplyResources(this.nonAggressionEndLabel, "nonAggressionEndLabel");
            this.nonAggressionEndLabel.Name = "nonAggressionEndLabel";
            // 
            // relationGroupBox
            // 
            resources.ApplyResources(this.relationGroupBox, "relationGroupBox");
            this.relationGroupBox.Controls.Add(this.relationValueTextBox);
            this.relationGroupBox.Controls.Add(relationValueLabel);
            this.relationGroupBox.Controls.Add(this.controlCheckBox);
            this.relationGroupBox.Controls.Add(this.masterCheckBox);
            this.relationGroupBox.Controls.Add(this.accessCheckBox);
            this.relationGroupBox.Name = "relationGroupBox";
            this.relationGroupBox.TabStop = false;
            // 
            // relationValueTextBox
            // 
            resources.ApplyResources(this.relationValueTextBox, "relationValueTextBox");
            this.relationValueTextBox.Name = "relationValueTextBox";
            this.relationValueTextBox.Validated += new System.EventHandler(this.OnRelationDoubleItemTextBoxValidated);
            // 
            // controlCheckBox
            // 
            resources.ApplyResources(this.controlCheckBox, "controlCheckBox");
            this.controlCheckBox.Name = "controlCheckBox";
            this.controlCheckBox.UseVisualStyleBackColor = true;
            this.controlCheckBox.CheckedChanged += new System.EventHandler(this.OnRelationCountryItemCheckBoxCheckedChanged);
            // 
            // masterCheckBox
            // 
            resources.ApplyResources(this.masterCheckBox, "masterCheckBox");
            this.masterCheckBox.Name = "masterCheckBox";
            this.masterCheckBox.UseVisualStyleBackColor = true;
            this.masterCheckBox.CheckedChanged += new System.EventHandler(this.OnRelationCountryItemCheckBoxCheckedChanged);
            // 
            // accessCheckBox
            // 
            resources.ApplyResources(this.accessCheckBox, "accessCheckBox");
            this.accessCheckBox.Name = "accessCheckBox";
            this.accessCheckBox.UseVisualStyleBackColor = true;
            this.accessCheckBox.CheckedChanged += new System.EventHandler(this.OnRelationItemCheckBoxCheckedChanged);
            // 
            // intelligenceGroupBox
            // 
            resources.ApplyResources(this.intelligenceGroupBox, "intelligenceGroupBox");
            this.intelligenceGroupBox.Controls.Add(this.spyNumNumericUpDown);
            this.intelligenceGroupBox.Controls.Add(spyNumLabel);
            this.intelligenceGroupBox.Name = "intelligenceGroupBox";
            this.intelligenceGroupBox.TabStop = false;
            // 
            // spyNumNumericUpDown
            // 
            resources.ApplyResources(this.spyNumNumericUpDown, "spyNumNumericUpDown");
            this.spyNumNumericUpDown.Name = "spyNumNumericUpDown";
            this.spyNumNumericUpDown.ValueChanged += new System.EventHandler(this.OnRelationIntelligenceItemNumericUpDownValueChanged);
            // 
            // relationListView
            // 
            resources.ApplyResources(this.relationListView, "relationListView");
            this.relationListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            this.relationCountryColumnHeader,
            this.relationValueColumnHeader,
            this.relationMasterColumnHeader,
            this.relationControlColumnHeader,
            this.relationAccessColumnHeader,
            this.relationGuaranteeColumnHeader,
            this.relationNonAggressionColumnHeader,
            this.relationPeaceColumnHeader,
            this.relationSpyColumnHeader});
            this.relationListView.FullRowSelect = true;
            this.relationListView.GridLines = true;
            this.relationListView.HideSelection = false;
            this.relationListView.MultiSelect = false;
            this.relationListView.Name = "relationListView";
            this.relationListView.UseCompatibleStateImageBehavior = false;
            this.relationListView.View = System.Windows.Forms.View.Details;
            this.relationListView.SelectedIndexChanged += new System.EventHandler(this.OnRelationListViewSelectedIndexChanged);
            // 
            // relationCountryColumnHeader
            // 
            resources.ApplyResources(this.relationCountryColumnHeader, "relationCountryColumnHeader");
            // 
            // relationValueColumnHeader
            // 
            resources.ApplyResources(this.relationValueColumnHeader, "relationValueColumnHeader");
            // 
            // relationMasterColumnHeader
            // 
            resources.ApplyResources(this.relationMasterColumnHeader, "relationMasterColumnHeader");
            // 
            // relationControlColumnHeader
            // 
            resources.ApplyResources(this.relationControlColumnHeader, "relationControlColumnHeader");
            // 
            // relationAccessColumnHeader
            // 
            resources.ApplyResources(this.relationAccessColumnHeader, "relationAccessColumnHeader");
            // 
            // relationGuaranteeColumnHeader
            // 
            resources.ApplyResources(this.relationGuaranteeColumnHeader, "relationGuaranteeColumnHeader");
            // 
            // relationNonAggressionColumnHeader
            // 
            resources.ApplyResources(this.relationNonAggressionColumnHeader, "relationNonAggressionColumnHeader");
            // 
            // relationPeaceColumnHeader
            // 
            resources.ApplyResources(this.relationPeaceColumnHeader, "relationPeaceColumnHeader");
            // 
            // relationSpyColumnHeader
            // 
            resources.ApplyResources(this.relationSpyColumnHeader, "relationSpyColumnHeader");
            // 
            // relationCountryListBox
            // 
            resources.ApplyResources(this.relationCountryListBox, "relationCountryListBox");
            this.relationCountryListBox.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.relationCountryListBox.FormattingEnabled = true;
            this.relationCountryListBox.Name = "relationCountryListBox";
            this.relationCountryListBox.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.OnCountryListBoxDrawItem);
            this.relationCountryListBox.SelectedIndexChanged += new System.EventHandler(this.OnRelationCountryListBoxSelectedIndexChanged);
            // 
            // allianceTabPage
            // 
            resources.ApplyResources(this.allianceTabPage, "allianceTabPage");
            this.allianceTabPage.BackColor = System.Drawing.SystemColors.Control;
            this.allianceTabPage.Controls.Add(this.warGroupBox);
            this.allianceTabPage.Controls.Add(this.allianceGroupBox);
            this.allianceTabPage.Name = "allianceTabPage";
            // 
            // warGroupBox
            // 
            resources.ApplyResources(this.warGroupBox, "warGroupBox");
            this.warGroupBox.Controls.Add(this.warDefenderLeaderButton);
            this.warGroupBox.Controls.Add(this.warAttackerLeaderButton);
            this.warGroupBox.Controls.Add(this.warDefenderIdLabel);
            this.warGroupBox.Controls.Add(this.warAttackerIdLabel);
            this.warGroupBox.Controls.Add(this.warDefenderIdTextBox);
            this.warGroupBox.Controls.Add(this.warDefenderTypeTextBox);
            this.warGroupBox.Controls.Add(this.warAttackerIdTextBox);
            this.warGroupBox.Controls.Add(this.warAttackerTypeTextBox);
            this.warGroupBox.Controls.Add(this.warIdTextBox);
            this.warGroupBox.Controls.Add(this.warTypeTextBox);
            this.warGroupBox.Controls.Add(this.warEndMonthTextBox);
            this.warGroupBox.Controls.Add(this.warIdLabel);
            this.warGroupBox.Controls.Add(this.warEndYearTextBox);
            this.warGroupBox.Controls.Add(this.warEndDayTextBox);
            this.warGroupBox.Controls.Add(this.warEndDateLabel);
            this.warGroupBox.Controls.Add(this.warStartMonthTextBox);
            this.warGroupBox.Controls.Add(this.warStartYearTextBox);
            this.warGroupBox.Controls.Add(this.warStartDayTextBox);
            this.warGroupBox.Controls.Add(this.warStartDateLabel);
            this.warGroupBox.Controls.Add(this.warDefenderLabel);
            this.warGroupBox.Controls.Add(this.warListView);
            this.warGroupBox.Controls.Add(this.warNewButton);
            this.warGroupBox.Controls.Add(this.warAttackerRemoveButton);
            this.warGroupBox.Controls.Add(this.warUpButton);
            this.warGroupBox.Controls.Add(this.warAttackerListBox);
            this.warGroupBox.Controls.Add(this.warDefenderRemoveButton);
            this.warGroupBox.Controls.Add(this.warAttackerLabel);
            this.warGroupBox.Controls.Add(this.warDefenderListBox);
            this.warGroupBox.Controls.Add(this.warDownButton);
            this.warGroupBox.Controls.Add(this.warFreeCountryListBox);
            this.warGroupBox.Controls.Add(this.warAttackerAddButton);
            this.warGroupBox.Controls.Add(this.warDefenderAddButton);
            this.warGroupBox.Controls.Add(this.warRemoveButton);
            this.warGroupBox.Name = "warGroupBox";
            this.warGroupBox.TabStop = false;
            // 
            // warDefenderLeaderButton
            // 
            resources.ApplyResources(this.warDefenderLeaderButton, "warDefenderLeaderButton");
            this.warDefenderLeaderButton.Name = "warDefenderLeaderButton";
            this.warDefenderLeaderButton.UseVisualStyleBackColor = true;
            this.warDefenderLeaderButton.Click += new System.EventHandler(this.OnWarDefenderLeaderButtonClick);
            // 
            // warAttackerLeaderButton
            // 
            resources.ApplyResources(this.warAttackerLeaderButton, "warAttackerLeaderButton");
            this.warAttackerLeaderButton.Name = "warAttackerLeaderButton";
            this.warAttackerLeaderButton.UseVisualStyleBackColor = true;
            this.warAttackerLeaderButton.Click += new System.EventHandler(this.OnWarAttackerLeaderButtonClick);
            // 
            // warDefenderIdLabel
            // 
            resources.ApplyResources(this.warDefenderIdLabel, "warDefenderIdLabel");
            this.warDefenderIdLabel.Name = "warDefenderIdLabel";
            // 
            // warAttackerIdLabel
            // 
            resources.ApplyResources(this.warAttackerIdLabel, "warAttackerIdLabel");
            this.warAttackerIdLabel.Name = "warAttackerIdLabel";
            // 
            // warDefenderIdTextBox
            // 
            resources.ApplyResources(this.warDefenderIdTextBox, "warDefenderIdTextBox");
            this.warDefenderIdTextBox.Name = "warDefenderIdTextBox";
            this.warDefenderIdTextBox.Validated += new System.EventHandler(this.OnWarIntItemTextBoxValidated);
            // 
            // warDefenderTypeTextBox
            // 
            resources.ApplyResources(this.warDefenderTypeTextBox, "warDefenderTypeTextBox");
            this.warDefenderTypeTextBox.Name = "warDefenderTypeTextBox";
            this.warDefenderTypeTextBox.Validated += new System.EventHandler(this.OnWarIntItemTextBoxValidated);
            // 
            // warAttackerIdTextBox
            // 
            resources.ApplyResources(this.warAttackerIdTextBox, "warAttackerIdTextBox");
            this.warAttackerIdTextBox.Name = "warAttackerIdTextBox";
            this.warAttackerIdTextBox.Validated += new System.EventHandler(this.OnWarIntItemTextBoxValidated);
            // 
            // warAttackerTypeTextBox
            // 
            resources.ApplyResources(this.warAttackerTypeTextBox, "warAttackerTypeTextBox");
            this.warAttackerTypeTextBox.Name = "warAttackerTypeTextBox";
            this.warAttackerTypeTextBox.Validated += new System.EventHandler(this.OnWarIntItemTextBoxValidated);
            // 
            // warIdTextBox
            // 
            resources.ApplyResources(this.warIdTextBox, "warIdTextBox");
            this.warIdTextBox.Name = "warIdTextBox";
            this.warIdTextBox.Validated += new System.EventHandler(this.OnWarIntItemTextBoxValidated);
            // 
            // warTypeTextBox
            // 
            resources.ApplyResources(this.warTypeTextBox, "warTypeTextBox");
            this.warTypeTextBox.Name = "warTypeTextBox";
            this.warTypeTextBox.Validated += new System.EventHandler(this.OnWarIntItemTextBoxValidated);
            // 
            // warEndMonthTextBox
            // 
            resources.ApplyResources(this.warEndMonthTextBox, "warEndMonthTextBox");
            this.warEndMonthTextBox.Name = "warEndMonthTextBox";
            this.warEndMonthTextBox.Validated += new System.EventHandler(this.OnWarIntItemTextBoxValidated);
            // 
            // warIdLabel
            // 
            resources.ApplyResources(this.warIdLabel, "warIdLabel");
            this.warIdLabel.Name = "warIdLabel";
            // 
            // warEndYearTextBox
            // 
            resources.ApplyResources(this.warEndYearTextBox, "warEndYearTextBox");
            this.warEndYearTextBox.Name = "warEndYearTextBox";
            this.warEndYearTextBox.Validated += new System.EventHandler(this.OnWarIntItemTextBoxValidated);
            // 
            // warEndDayTextBox
            // 
            resources.ApplyResources(this.warEndDayTextBox, "warEndDayTextBox");
            this.warEndDayTextBox.Name = "warEndDayTextBox";
            this.warEndDayTextBox.Validated += new System.EventHandler(this.OnWarIntItemTextBoxValidated);
            // 
            // warEndDateLabel
            // 
            resources.ApplyResources(this.warEndDateLabel, "warEndDateLabel");
            this.warEndDateLabel.Name = "warEndDateLabel";
            // 
            // warStartMonthTextBox
            // 
            resources.ApplyResources(this.warStartMonthTextBox, "warStartMonthTextBox");
            this.warStartMonthTextBox.Name = "warStartMonthTextBox";
            this.warStartMonthTextBox.Validated += new System.EventHandler(this.OnWarIntItemTextBoxValidated);
            // 
            // warStartYearTextBox
            // 
            resources.ApplyResources(this.warStartYearTextBox, "warStartYearTextBox");
            this.warStartYearTextBox.Name = "warStartYearTextBox";
            this.warStartYearTextBox.Validated += new System.EventHandler(this.OnWarIntItemTextBoxValidated);
            // 
            // warStartDayTextBox
            // 
            resources.ApplyResources(this.warStartDayTextBox, "warStartDayTextBox");
            this.warStartDayTextBox.Name = "warStartDayTextBox";
            this.warStartDayTextBox.Validated += new System.EventHandler(this.OnWarIntItemTextBoxValidated);
            // 
            // warStartDateLabel
            // 
            resources.ApplyResources(this.warStartDateLabel, "warStartDateLabel");
            this.warStartDateLabel.Name = "warStartDateLabel";
            // 
            // warDefenderLabel
            // 
            resources.ApplyResources(this.warDefenderLabel, "warDefenderLabel");
            this.warDefenderLabel.Name = "warDefenderLabel";
            // 
            // warListView
            // 
            resources.ApplyResources(this.warListView, "warListView");
            this.warListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            this.warAttackerColumnHeader,
            this.warDefenderColumnHeader});
            this.warListView.FullRowSelect = true;
            this.warListView.GridLines = true;
            this.warListView.HideSelection = false;
            this.warListView.Name = "warListView";
            this.warListView.UseCompatibleStateImageBehavior = false;
            this.warListView.View = System.Windows.Forms.View.Details;
            this.warListView.SelectedIndexChanged += new System.EventHandler(this.OnWarListViewSelectedIndexChanged);
            // 
            // warAttackerColumnHeader
            // 
            resources.ApplyResources(this.warAttackerColumnHeader, "warAttackerColumnHeader");
            // 
            // warDefenderColumnHeader
            // 
            resources.ApplyResources(this.warDefenderColumnHeader, "warDefenderColumnHeader");
            // 
            // warNewButton
            // 
            resources.ApplyResources(this.warNewButton, "warNewButton");
            this.warNewButton.Name = "warNewButton";
            this.warNewButton.UseVisualStyleBackColor = true;
            this.warNewButton.Click += new System.EventHandler(this.OnWarNewButtonClick);
            // 
            // warAttackerRemoveButton
            // 
            resources.ApplyResources(this.warAttackerRemoveButton, "warAttackerRemoveButton");
            this.warAttackerRemoveButton.Name = "warAttackerRemoveButton";
            this.warAttackerRemoveButton.UseVisualStyleBackColor = true;
            this.warAttackerRemoveButton.Click += new System.EventHandler(this.OnWarAttackerRemoveButtonClick);
            // 
            // warUpButton
            // 
            resources.ApplyResources(this.warUpButton, "warUpButton");
            this.warUpButton.Name = "warUpButton";
            this.warUpButton.UseVisualStyleBackColor = true;
            this.warUpButton.Click += new System.EventHandler(this.OnWarUpButtonClick);
            // 
            // warAttackerListBox
            // 
            resources.ApplyResources(this.warAttackerListBox, "warAttackerListBox");
            this.warAttackerListBox.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.warAttackerListBox.FormattingEnabled = true;
            this.warAttackerListBox.Name = "warAttackerListBox";
            this.warAttackerListBox.SelectionMode = System.Windows.Forms.SelectionMode.MultiSimple;
            this.warAttackerListBox.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.OnWarAttackerListBoxDrawItem);
            this.warAttackerListBox.SelectedIndexChanged += new System.EventHandler(this.OnWarAttackerListBoxSelectedIndexChanged);
            // 
            // warDefenderRemoveButton
            // 
            resources.ApplyResources(this.warDefenderRemoveButton, "warDefenderRemoveButton");
            this.warDefenderRemoveButton.Name = "warDefenderRemoveButton";
            this.warDefenderRemoveButton.UseVisualStyleBackColor = true;
            this.warDefenderRemoveButton.Click += new System.EventHandler(this.OnWarDefenderRemoveButtonClick);
            // 
            // warAttackerLabel
            // 
            resources.ApplyResources(this.warAttackerLabel, "warAttackerLabel");
            this.warAttackerLabel.Name = "warAttackerLabel";
            // 
            // warDefenderListBox
            // 
            resources.ApplyResources(this.warDefenderListBox, "warDefenderListBox");
            this.warDefenderListBox.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.warDefenderListBox.FormattingEnabled = true;
            this.warDefenderListBox.Name = "warDefenderListBox";
            this.warDefenderListBox.SelectionMode = System.Windows.Forms.SelectionMode.MultiSimple;
            this.warDefenderListBox.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.OnWarDefenderListBoxDrawItem);
            this.warDefenderListBox.SelectedIndexChanged += new System.EventHandler(this.OnWarDefenderListBoxSelectedIndexChanged);
            // 
            // warDownButton
            // 
            resources.ApplyResources(this.warDownButton, "warDownButton");
            this.warDownButton.Name = "warDownButton";
            this.warDownButton.UseVisualStyleBackColor = true;
            this.warDownButton.Click += new System.EventHandler(this.OnWarDownButtonClick);
            // 
            // warFreeCountryListBox
            // 
            resources.ApplyResources(this.warFreeCountryListBox, "warFreeCountryListBox");
            this.warFreeCountryListBox.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.warFreeCountryListBox.FormattingEnabled = true;
            this.warFreeCountryListBox.Name = "warFreeCountryListBox";
            this.warFreeCountryListBox.SelectionMode = System.Windows.Forms.SelectionMode.MultiSimple;
            this.warFreeCountryListBox.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.OnWarCountryListBoxDrawItem);
            this.warFreeCountryListBox.SelectedIndexChanged += new System.EventHandler(this.OnWarCountryListBoxSelectedIndexChanged);
            // 
            // warAttackerAddButton
            // 
            resources.ApplyResources(this.warAttackerAddButton, "warAttackerAddButton");
            this.warAttackerAddButton.Name = "warAttackerAddButton";
            this.warAttackerAddButton.UseVisualStyleBackColor = true;
            this.warAttackerAddButton.Click += new System.EventHandler(this.OnWarAttackerAddButtonClick);
            // 
            // warDefenderAddButton
            // 
            resources.ApplyResources(this.warDefenderAddButton, "warDefenderAddButton");
            this.warDefenderAddButton.Name = "warDefenderAddButton";
            this.warDefenderAddButton.UseVisualStyleBackColor = true;
            this.warDefenderAddButton.Click += new System.EventHandler(this.OnWarDefenderAddButtonClick);
            // 
            // warRemoveButton
            // 
            resources.ApplyResources(this.warRemoveButton, "warRemoveButton");
            this.warRemoveButton.Name = "warRemoveButton";
            this.warRemoveButton.UseVisualStyleBackColor = true;
            this.warRemoveButton.Click += new System.EventHandler(this.OnWarRemoveButtonClick);
            // 
            // allianceGroupBox
            // 
            resources.ApplyResources(this.allianceGroupBox, "allianceGroupBox");
            this.allianceGroupBox.Controls.Add(this.allianceIdTextBox);
            this.allianceGroupBox.Controls.Add(this.allianceTypeTextBox);
            this.allianceGroupBox.Controls.Add(this.allianceIdLabel);
            this.allianceGroupBox.Controls.Add(this.allianceNameTextBox);
            this.allianceGroupBox.Controls.Add(this.allianceNameLabel);
            this.allianceGroupBox.Controls.Add(this.allianceListView);
            this.allianceGroupBox.Controls.Add(this.allianceParticipantLabel);
            this.allianceGroupBox.Controls.Add(this.allianceLeaderButton);
            this.allianceGroupBox.Controls.Add(this.allianceParticipantListBox);
            this.allianceGroupBox.Controls.Add(this.allianceUpButton);
            this.allianceGroupBox.Controls.Add(this.allianceParticipantAddButton);
            this.allianceGroupBox.Controls.Add(this.allianceFreeCountryListBox);
            this.allianceGroupBox.Controls.Add(this.allianceRemoveButton);
            this.allianceGroupBox.Controls.Add(this.allianceNewButton);
            this.allianceGroupBox.Controls.Add(this.allianceParticipantRemoveButton);
            this.allianceGroupBox.Controls.Add(this.allianceDownButton);
            this.allianceGroupBox.Name = "allianceGroupBox";
            this.allianceGroupBox.TabStop = false;
            // 
            // allianceIdTextBox
            // 
            resources.ApplyResources(this.allianceIdTextBox, "allianceIdTextBox");
            this.allianceIdTextBox.Name = "allianceIdTextBox";
            this.allianceIdTextBox.Validated += new System.EventHandler(this.OnAllianceIntItemTextBoxValidated);
            // 
            // allianceTypeTextBox
            // 
            resources.ApplyResources(this.allianceTypeTextBox, "allianceTypeTextBox");
            this.allianceTypeTextBox.Name = "allianceTypeTextBox";
            this.allianceTypeTextBox.Validated += new System.EventHandler(this.OnAllianceIntItemTextBoxValidated);
            // 
            // allianceIdLabel
            // 
            resources.ApplyResources(this.allianceIdLabel, "allianceIdLabel");
            this.allianceIdLabel.Name = "allianceIdLabel";
            // 
            // allianceNameTextBox
            // 
            resources.ApplyResources(this.allianceNameTextBox, "allianceNameTextBox");
            this.allianceNameTextBox.Name = "allianceNameTextBox";
            this.allianceNameTextBox.TextChanged += new System.EventHandler(this.OnAllianceStringItemTextBoxTextChanged);
            // 
            // allianceNameLabel
            // 
            resources.ApplyResources(this.allianceNameLabel, "allianceNameLabel");
            this.allianceNameLabel.Name = "allianceNameLabel";
            // 
            // allianceListView
            // 
            resources.ApplyResources(this.allianceListView, "allianceListView");
            this.allianceListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            this.allianceNameColumnHeader,
            this.allianceParticipantColumnHeader});
            this.allianceListView.FullRowSelect = true;
            this.allianceListView.GridLines = true;
            this.allianceListView.HideSelection = false;
            this.allianceListView.Name = "allianceListView";
            this.allianceListView.UseCompatibleStateImageBehavior = false;
            this.allianceListView.View = System.Windows.Forms.View.Details;
            this.allianceListView.SelectedIndexChanged += new System.EventHandler(this.OnAllianceListViewSelectedIndexChanged);
            // 
            // allianceNameColumnHeader
            // 
            resources.ApplyResources(this.allianceNameColumnHeader, "allianceNameColumnHeader");
            // 
            // allianceParticipantColumnHeader
            // 
            resources.ApplyResources(this.allianceParticipantColumnHeader, "allianceParticipantColumnHeader");
            // 
            // allianceParticipantLabel
            // 
            resources.ApplyResources(this.allianceParticipantLabel, "allianceParticipantLabel");
            this.allianceParticipantLabel.Name = "allianceParticipantLabel";
            // 
            // allianceLeaderButton
            // 
            resources.ApplyResources(this.allianceLeaderButton, "allianceLeaderButton");
            this.allianceLeaderButton.Name = "allianceLeaderButton";
            this.allianceLeaderButton.UseVisualStyleBackColor = true;
            this.allianceLeaderButton.Click += new System.EventHandler(this.OnAllianceLeaderButtonClick);
            // 
            // allianceParticipantListBox
            // 
            resources.ApplyResources(this.allianceParticipantListBox, "allianceParticipantListBox");
            this.allianceParticipantListBox.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.allianceParticipantListBox.FormattingEnabled = true;
            this.allianceParticipantListBox.Name = "allianceParticipantListBox";
            this.allianceParticipantListBox.SelectionMode = System.Windows.Forms.SelectionMode.MultiSimple;
            this.allianceParticipantListBox.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.OnAllianceParticipantListBoxDrawItem);
            this.allianceParticipantListBox.SelectedIndexChanged += new System.EventHandler(this.OnAllianceParticipantListBoxSelectedIndexChanged);
            // 
            // allianceUpButton
            // 
            resources.ApplyResources(this.allianceUpButton, "allianceUpButton");
            this.allianceUpButton.Name = "allianceUpButton";
            this.allianceUpButton.UseVisualStyleBackColor = true;
            this.allianceUpButton.Click += new System.EventHandler(this.OnAllianceUpButtonClick);
            // 
            // allianceParticipantAddButton
            // 
            resources.ApplyResources(this.allianceParticipantAddButton, "allianceParticipantAddButton");
            this.allianceParticipantAddButton.Name = "allianceParticipantAddButton";
            this.allianceParticipantAddButton.UseVisualStyleBackColor = true;
            this.allianceParticipantAddButton.Click += new System.EventHandler(this.OnAllianceParticipantAddButtonClick);
            // 
            // allianceFreeCountryListBox
            // 
            resources.ApplyResources(this.allianceFreeCountryListBox, "allianceFreeCountryListBox");
            this.allianceFreeCountryListBox.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.allianceFreeCountryListBox.FormattingEnabled = true;
            this.allianceFreeCountryListBox.Name = "allianceFreeCountryListBox";
            this.allianceFreeCountryListBox.SelectionMode = System.Windows.Forms.SelectionMode.MultiSimple;
            this.allianceFreeCountryListBox.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.OnAllianceCountryListBoxDrawItem);
            this.allianceFreeCountryListBox.SelectedIndexChanged += new System.EventHandler(this.OnAllianceCountryListBoxSelectedIndexChanged);
            // 
            // allianceRemoveButton
            // 
            resources.ApplyResources(this.allianceRemoveButton, "allianceRemoveButton");
            this.allianceRemoveButton.Name = "allianceRemoveButton";
            this.allianceRemoveButton.UseVisualStyleBackColor = true;
            this.allianceRemoveButton.Click += new System.EventHandler(this.OnAllianceRemoveButtonClick);
            // 
            // allianceNewButton
            // 
            resources.ApplyResources(this.allianceNewButton, "allianceNewButton");
            this.allianceNewButton.Name = "allianceNewButton";
            this.allianceNewButton.UseVisualStyleBackColor = true;
            this.allianceNewButton.Click += new System.EventHandler(this.OnAllianceNewButtonClick);
            // 
            // allianceParticipantRemoveButton
            // 
            resources.ApplyResources(this.allianceParticipantRemoveButton, "allianceParticipantRemoveButton");
            this.allianceParticipantRemoveButton.Name = "allianceParticipantRemoveButton";
            this.allianceParticipantRemoveButton.UseVisualStyleBackColor = true;
            this.allianceParticipantRemoveButton.Click += new System.EventHandler(this.OnAllianceParticipantRemoveButtonClick);
            // 
            // allianceDownButton
            // 
            resources.ApplyResources(this.allianceDownButton, "allianceDownButton");
            this.allianceDownButton.Name = "allianceDownButton";
            this.allianceDownButton.UseVisualStyleBackColor = true;
            this.allianceDownButton.Click += new System.EventHandler(this.OnAllianceDownButtonClick);
            // 
            // mainTabPage
            // 
            resources.ApplyResources(this.mainTabPage, "mainTabPage");
            this.mainTabPage.BackColor = System.Drawing.SystemColors.Control;
            this.mainTabPage.Controls.Add(this.scenarioOptionGroupBox);
            this.mainTabPage.Controls.Add(this.countrySelectionGroupBox);
            this.mainTabPage.Controls.Add(this.scenarioInfoGroupBox);
            this.mainTabPage.Controls.Add(this.loadButton);
            this.mainTabPage.Controls.Add(this.folderGroupBox);
            this.mainTabPage.Controls.Add(this.typeGroupBox);
            this.mainTabPage.Controls.Add(this.scenarioListBox);
            this.mainTabPage.Name = "mainTabPage";
            // 
            // scenarioOptionGroupBox
            // 
            resources.ApplyResources(this.scenarioOptionGroupBox, "scenarioOptionGroupBox");
            this.scenarioOptionGroupBox.Controls.Add(this.gameSpeedLabel);
            this.scenarioOptionGroupBox.Controls.Add(this.difficultyLabel);
            this.scenarioOptionGroupBox.Controls.Add(this.aiAggressiveLabel);
            this.scenarioOptionGroupBox.Controls.Add(this.gameSpeedComboBox);
            this.scenarioOptionGroupBox.Controls.Add(this.difficultyComboBox);
            this.scenarioOptionGroupBox.Controls.Add(this.aiAggressiveComboBox);
            this.scenarioOptionGroupBox.Controls.Add(this.allowTechnologyCheckBox);
            this.scenarioOptionGroupBox.Controls.Add(this.allowProductionCheckBox);
            this.scenarioOptionGroupBox.Controls.Add(this.allowDiplomacyCheckBox);
            this.scenarioOptionGroupBox.Controls.Add(this.freeCountryCheckBox);
            this.scenarioOptionGroupBox.Controls.Add(this.battleScenarioCheckBox);
            this.scenarioOptionGroupBox.Name = "scenarioOptionGroupBox";
            this.scenarioOptionGroupBox.TabStop = false;
            // 
            // gameSpeedLabel
            // 
            resources.ApplyResources(this.gameSpeedLabel, "gameSpeedLabel");
            this.gameSpeedLabel.Name = "gameSpeedLabel";
            // 
            // difficultyLabel
            // 
            resources.ApplyResources(this.difficultyLabel, "difficultyLabel");
            this.difficultyLabel.Name = "difficultyLabel";
            // 
            // aiAggressiveLabel
            // 
            resources.ApplyResources(this.aiAggressiveLabel, "aiAggressiveLabel");
            this.aiAggressiveLabel.Name = "aiAggressiveLabel";
            // 
            // gameSpeedComboBox
            // 
            resources.ApplyResources(this.gameSpeedComboBox, "gameSpeedComboBox");
            this.gameSpeedComboBox.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.gameSpeedComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.gameSpeedComboBox.FormattingEnabled = true;
            this.gameSpeedComboBox.Name = "gameSpeedComboBox";
            this.gameSpeedComboBox.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.OnScenarioItemComboBoxDrawItem);
            this.gameSpeedComboBox.SelectedIndexChanged += new System.EventHandler(this.OnScenarioItemComboBoxSelectedIndexChanged);
            // 
            // difficultyComboBox
            // 
            resources.ApplyResources(this.difficultyComboBox, "difficultyComboBox");
            this.difficultyComboBox.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.difficultyComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.difficultyComboBox.FormattingEnabled = true;
            this.difficultyComboBox.Name = "difficultyComboBox";
            this.difficultyComboBox.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.OnScenarioItemComboBoxDrawItem);
            this.difficultyComboBox.SelectedIndexChanged += new System.EventHandler(this.OnScenarioItemComboBoxSelectedIndexChanged);
            // 
            // aiAggressiveComboBox
            // 
            resources.ApplyResources(this.aiAggressiveComboBox, "aiAggressiveComboBox");
            this.aiAggressiveComboBox.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.aiAggressiveComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.aiAggressiveComboBox.FormattingEnabled = true;
            this.aiAggressiveComboBox.Name = "aiAggressiveComboBox";
            this.aiAggressiveComboBox.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.OnScenarioItemComboBoxDrawItem);
            this.aiAggressiveComboBox.SelectedIndexChanged += new System.EventHandler(this.OnScenarioItemComboBoxSelectedIndexChanged);
            // 
            // allowTechnologyCheckBox
            // 
            resources.ApplyResources(this.allowTechnologyCheckBox, "allowTechnologyCheckBox");
            this.allowTechnologyCheckBox.Name = "allowTechnologyCheckBox";
            this.allowTechnologyCheckBox.UseVisualStyleBackColor = true;
            this.allowTechnologyCheckBox.CheckedChanged += new System.EventHandler(this.OnScenarioItemCheckBoxCheckedChanged);
            // 
            // allowProductionCheckBox
            // 
            resources.ApplyResources(this.allowProductionCheckBox, "allowProductionCheckBox");
            this.allowProductionCheckBox.Name = "allowProductionCheckBox";
            this.allowProductionCheckBox.UseVisualStyleBackColor = true;
            this.allowProductionCheckBox.CheckedChanged += new System.EventHandler(this.OnScenarioItemCheckBoxCheckedChanged);
            // 
            // allowDiplomacyCheckBox
            // 
            resources.ApplyResources(this.allowDiplomacyCheckBox, "allowDiplomacyCheckBox");
            this.allowDiplomacyCheckBox.Name = "allowDiplomacyCheckBox";
            this.allowDiplomacyCheckBox.UseVisualStyleBackColor = true;
            this.allowDiplomacyCheckBox.CheckedChanged += new System.EventHandler(this.OnScenarioItemCheckBoxCheckedChanged);
            // 
            // freeCountryCheckBox
            // 
            resources.ApplyResources(this.freeCountryCheckBox, "freeCountryCheckBox");
            this.freeCountryCheckBox.Name = "freeCountryCheckBox";
            this.freeCountryCheckBox.UseVisualStyleBackColor = true;
            this.freeCountryCheckBox.CheckedChanged += new System.EventHandler(this.OnScenarioItemCheckBoxCheckedChanged);
            // 
            // battleScenarioCheckBox
            // 
            resources.ApplyResources(this.battleScenarioCheckBox, "battleScenarioCheckBox");
            this.battleScenarioCheckBox.Name = "battleScenarioCheckBox";
            this.battleScenarioCheckBox.UseVisualStyleBackColor = true;
            this.battleScenarioCheckBox.CheckedChanged += new System.EventHandler(this.OnScenarioItemCheckBoxCheckedChanged);
            // 
            // countrySelectionGroupBox
            // 
            resources.ApplyResources(this.countrySelectionGroupBox, "countrySelectionGroupBox");
            this.countrySelectionGroupBox.Controls.Add(this.countryDescKeyTextBox);
            this.countrySelectionGroupBox.Controls.Add(this.majorCountryNameStringTextBox);
            this.countrySelectionGroupBox.Controls.Add(this.majorFlagExtTextBox);
            this.countrySelectionGroupBox.Controls.Add(this.majorFlagExtLabel);
            this.countrySelectionGroupBox.Controls.Add(this.majorCountryNameKeyTextBox);
            this.countrySelectionGroupBox.Controls.Add(this.majorCountryNameLabel);
            this.countrySelectionGroupBox.Controls.Add(this.selectableRemoveButton);
            this.countrySelectionGroupBox.Controls.Add(this.selectableAddButton);
            this.countrySelectionGroupBox.Controls.Add(this.unselectableListBox);
            this.countrySelectionGroupBox.Controls.Add(this.selectableListBox);
            this.countrySelectionGroupBox.Controls.Add(this.propagandaPictureBox);
            this.countrySelectionGroupBox.Controls.Add(this.propagandaBrowseButton);
            this.countrySelectionGroupBox.Controls.Add(this.propagandaTextBox);
            this.countrySelectionGroupBox.Controls.Add(this.propagandaLabel);
            this.countrySelectionGroupBox.Controls.Add(this.countryDescStringTextBox);
            this.countrySelectionGroupBox.Controls.Add(this.majorAddButton);
            this.countrySelectionGroupBox.Controls.Add(this.majorRemoveButton);
            this.countrySelectionGroupBox.Controls.Add(this.countryDescLabel);
            this.countrySelectionGroupBox.Controls.Add(this.majorListBox);
            this.countrySelectionGroupBox.Controls.Add(this.majorLabel);
            this.countrySelectionGroupBox.Controls.Add(this.selectableLabel);
            this.countrySelectionGroupBox.Controls.Add(this.majorUpButton);
            this.countrySelectionGroupBox.Controls.Add(this.majorDownButton);
            this.countrySelectionGroupBox.Name = "countrySelectionGroupBox";
            this.countrySelectionGroupBox.TabStop = false;
            // 
            // countryDescKeyTextBox
            // 
            resources.ApplyResources(this.countryDescKeyTextBox, "countryDescKeyTextBox");
            this.countryDescKeyTextBox.Name = "countryDescKeyTextBox";
            this.countryDescKeyTextBox.TextChanged += new System.EventHandler(this.OnSelectableStringItemTextBoxTextChanged);
            // 
            // majorCountryNameStringTextBox
            // 
            resources.ApplyResources(this.majorCountryNameStringTextBox, "majorCountryNameStringTextBox");
            this.majorCountryNameStringTextBox.Name = "majorCountryNameStringTextBox";
            this.majorCountryNameStringTextBox.TextChanged += new System.EventHandler(this.OnSelectableStringItemTextBoxTextChanged);
            // 
            // majorFlagExtTextBox
            // 
            resources.ApplyResources(this.majorFlagExtTextBox, "majorFlagExtTextBox");
            this.majorFlagExtTextBox.Name = "majorFlagExtTextBox";
            this.majorFlagExtTextBox.TextChanged += new System.EventHandler(this.OnSelectableStringItemTextBoxTextChanged);
            // 
            // majorFlagExtLabel
            // 
            resources.ApplyResources(this.majorFlagExtLabel, "majorFlagExtLabel");
            this.majorFlagExtLabel.Name = "majorFlagExtLabel";
            // 
            // majorCountryNameKeyTextBox
            // 
            resources.ApplyResources(this.majorCountryNameKeyTextBox, "majorCountryNameKeyTextBox");
            this.majorCountryNameKeyTextBox.Name = "majorCountryNameKeyTextBox";
            this.majorCountryNameKeyTextBox.TextChanged += new System.EventHandler(this.OnSelectableStringItemTextBoxTextChanged);
            // 
            // majorCountryNameLabel
            // 
            resources.ApplyResources(this.majorCountryNameLabel, "majorCountryNameLabel");
            this.majorCountryNameLabel.Name = "majorCountryNameLabel";
            // 
            // selectableRemoveButton
            // 
            resources.ApplyResources(this.selectableRemoveButton, "selectableRemoveButton");
            this.selectableRemoveButton.Name = "selectableRemoveButton";
            this.selectableRemoveButton.UseVisualStyleBackColor = true;
            this.selectableRemoveButton.Click += new System.EventHandler(this.OnSelectableRemoveButtonClick);
            // 
            // selectableAddButton
            // 
            resources.ApplyResources(this.selectableAddButton, "selectableAddButton");
            this.selectableAddButton.Name = "selectableAddButton";
            this.selectableAddButton.UseVisualStyleBackColor = true;
            this.selectableAddButton.Click += new System.EventHandler(this.OnSelectableAddButtonClick);
            // 
            // unselectableListBox
            // 
            resources.ApplyResources(this.unselectableListBox, "unselectableListBox");
            this.unselectableListBox.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.unselectableListBox.FormattingEnabled = true;
            this.unselectableListBox.Name = "unselectableListBox";
            this.unselectableListBox.SelectionMode = System.Windows.Forms.SelectionMode.MultiSimple;
            this.unselectableListBox.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.OnUnselectableListBoxDrawItem);
            this.unselectableListBox.SelectedIndexChanged += new System.EventHandler(this.OnUnselectableListBoxSelectedIndexChanged);
            // 
            // selectableListBox
            // 
            resources.ApplyResources(this.selectableListBox, "selectableListBox");
            this.selectableListBox.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.selectableListBox.FormattingEnabled = true;
            this.selectableListBox.Name = "selectableListBox";
            this.selectableListBox.SelectionMode = System.Windows.Forms.SelectionMode.MultiSimple;
            this.selectableListBox.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.OnSelectableListBoxDrawItem);
            this.selectableListBox.SelectedIndexChanged += new System.EventHandler(this.OnSelectableListBoxSelectedIndexChanged);
            // 
            // propagandaPictureBox
            // 
            resources.ApplyResources(this.propagandaPictureBox, "propagandaPictureBox");
            this.propagandaPictureBox.Name = "propagandaPictureBox";
            this.propagandaPictureBox.TabStop = false;
            // 
            // propagandaBrowseButton
            // 
            resources.ApplyResources(this.propagandaBrowseButton, "propagandaBrowseButton");
            this.propagandaBrowseButton.Name = "propagandaBrowseButton";
            this.propagandaBrowseButton.UseVisualStyleBackColor = true;
            this.propagandaBrowseButton.Click += new System.EventHandler(this.OnPropagandaBrowseButtonClick);
            // 
            // propagandaTextBox
            // 
            resources.ApplyResources(this.propagandaTextBox, "propagandaTextBox");
            this.propagandaTextBox.Name = "propagandaTextBox";
            this.propagandaTextBox.TextChanged += new System.EventHandler(this.OnSelectableStringItemTextBoxTextChanged);
            // 
            // propagandaLabel
            // 
            resources.ApplyResources(this.propagandaLabel, "propagandaLabel");
            this.propagandaLabel.Name = "propagandaLabel";
            // 
            // countryDescStringTextBox
            // 
            resources.ApplyResources(this.countryDescStringTextBox, "countryDescStringTextBox");
            this.countryDescStringTextBox.Name = "countryDescStringTextBox";
            this.countryDescStringTextBox.TextChanged += new System.EventHandler(this.OnSelectableStringItemTextBoxTextChanged);
            // 
            // majorAddButton
            // 
            resources.ApplyResources(this.majorAddButton, "majorAddButton");
            this.majorAddButton.Name = "majorAddButton";
            this.majorAddButton.UseVisualStyleBackColor = true;
            this.majorAddButton.Click += new System.EventHandler(this.OnMajorAddButtonClick);
            // 
            // majorRemoveButton
            // 
            resources.ApplyResources(this.majorRemoveButton, "majorRemoveButton");
            this.majorRemoveButton.Name = "majorRemoveButton";
            this.majorRemoveButton.UseVisualStyleBackColor = true;
            this.majorRemoveButton.Click += new System.EventHandler(this.OnMajorRemoveButtonClick);
            // 
            // countryDescLabel
            // 
            resources.ApplyResources(this.countryDescLabel, "countryDescLabel");
            this.countryDescLabel.Name = "countryDescLabel";
            // 
            // majorListBox
            // 
            resources.ApplyResources(this.majorListBox, "majorListBox");
            this.majorListBox.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.majorListBox.FormattingEnabled = true;
            this.majorListBox.Name = "majorListBox";
            this.majorListBox.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.OnMajorListBoxDrawItem);
            this.majorListBox.SelectedIndexChanged += new System.EventHandler(this.OnMajorListBoxSelectedIndexChanged);
            // 
            // majorLabel
            // 
            resources.ApplyResources(this.majorLabel, "majorLabel");
            this.majorLabel.Name = "majorLabel";
            // 
            // selectableLabel
            // 
            resources.ApplyResources(this.selectableLabel, "selectableLabel");
            this.selectableLabel.Name = "selectableLabel";
            // 
            // majorUpButton
            // 
            resources.ApplyResources(this.majorUpButton, "majorUpButton");
            this.majorUpButton.Name = "majorUpButton";
            this.majorUpButton.UseVisualStyleBackColor = true;
            this.majorUpButton.Click += new System.EventHandler(this.OnMajorUpButtonClick);
            // 
            // majorDownButton
            // 
            resources.ApplyResources(this.majorDownButton, "majorDownButton");
            this.majorDownButton.Name = "majorDownButton";
            this.majorDownButton.UseVisualStyleBackColor = true;
            this.majorDownButton.Click += new System.EventHandler(this.OnMajorDownButtonClick);
            // 
            // scenarioInfoGroupBox
            // 
            resources.ApplyResources(this.scenarioInfoGroupBox, "scenarioInfoGroupBox");
            this.scenarioInfoGroupBox.Controls.Add(this.includeFolderBrowseButton);
            this.scenarioInfoGroupBox.Controls.Add(this.includeFolderTextBox);
            this.scenarioInfoGroupBox.Controls.Add(this.includeFolderLabel);
            this.scenarioInfoGroupBox.Controls.Add(this.scenarioNameLabel);
            this.scenarioInfoGroupBox.Controls.Add(this.scenarioNameTextBox);
            this.scenarioInfoGroupBox.Controls.Add(this.panelPictureBox);
            this.scenarioInfoGroupBox.Controls.Add(this.panelImageLabel);
            this.scenarioInfoGroupBox.Controls.Add(this.panelImageTextBox);
            this.scenarioInfoGroupBox.Controls.Add(this.panelImageBrowseButton);
            this.scenarioInfoGroupBox.Controls.Add(this.startDateLabel);
            this.scenarioInfoGroupBox.Controls.Add(this.startYearTextBox);
            this.scenarioInfoGroupBox.Controls.Add(this.startMonthTextBox);
            this.scenarioInfoGroupBox.Controls.Add(this.startDayTextBox);
            this.scenarioInfoGroupBox.Controls.Add(this.endDateLabel);
            this.scenarioInfoGroupBox.Controls.Add(this.endYearTextBox);
            this.scenarioInfoGroupBox.Controls.Add(this.endMonthTextBox);
            this.scenarioInfoGroupBox.Controls.Add(this.endDayTextBox);
            this.scenarioInfoGroupBox.Name = "scenarioInfoGroupBox";
            this.scenarioInfoGroupBox.TabStop = false;
            // 
            // includeFolderBrowseButton
            // 
            resources.ApplyResources(this.includeFolderBrowseButton, "includeFolderBrowseButton");
            this.includeFolderBrowseButton.Name = "includeFolderBrowseButton";
            this.includeFolderBrowseButton.UseVisualStyleBackColor = true;
            this.includeFolderBrowseButton.Click += new System.EventHandler(this.OnIncludeFolderBrowseButtonClick);
            // 
            // includeFolderTextBox
            // 
            resources.ApplyResources(this.includeFolderTextBox, "includeFolderTextBox");
            this.includeFolderTextBox.Name = "includeFolderTextBox";
            this.includeFolderTextBox.TextChanged += new System.EventHandler(this.OnScenarioStringItemTextBoxTextChanged);
            // 
            // includeFolderLabel
            // 
            resources.ApplyResources(this.includeFolderLabel, "includeFolderLabel");
            this.includeFolderLabel.Name = "includeFolderLabel";
            // 
            // scenarioNameLabel
            // 
            resources.ApplyResources(this.scenarioNameLabel, "scenarioNameLabel");
            this.scenarioNameLabel.Name = "scenarioNameLabel";
            // 
            // scenarioNameTextBox
            // 
            resources.ApplyResources(this.scenarioNameTextBox, "scenarioNameTextBox");
            this.scenarioNameTextBox.Name = "scenarioNameTextBox";
            this.scenarioNameTextBox.TextChanged += new System.EventHandler(this.OnScenarioStringItemTextBoxTextChanged);
            // 
            // panelPictureBox
            // 
            resources.ApplyResources(this.panelPictureBox, "panelPictureBox");
            this.panelPictureBox.Name = "panelPictureBox";
            this.panelPictureBox.TabStop = false;
            // 
            // panelImageLabel
            // 
            resources.ApplyResources(this.panelImageLabel, "panelImageLabel");
            this.panelImageLabel.Name = "panelImageLabel";
            // 
            // panelImageTextBox
            // 
            resources.ApplyResources(this.panelImageTextBox, "panelImageTextBox");
            this.panelImageTextBox.Name = "panelImageTextBox";
            this.panelImageTextBox.TextChanged += new System.EventHandler(this.OnScenarioStringItemTextBoxTextChanged);
            // 
            // panelImageBrowseButton
            // 
            resources.ApplyResources(this.panelImageBrowseButton, "panelImageBrowseButton");
            this.panelImageBrowseButton.Name = "panelImageBrowseButton";
            this.panelImageBrowseButton.UseVisualStyleBackColor = true;
            this.panelImageBrowseButton.Click += new System.EventHandler(this.OnPanelImageBrowseButtonClick);
            // 
            // startDateLabel
            // 
            resources.ApplyResources(this.startDateLabel, "startDateLabel");
            this.startDateLabel.Name = "startDateLabel";
            // 
            // startYearTextBox
            // 
            resources.ApplyResources(this.startYearTextBox, "startYearTextBox");
            this.startYearTextBox.Name = "startYearTextBox";
            this.startYearTextBox.Validated += new System.EventHandler(this.OnScenarioIntItemTextBoxValidated);
            // 
            // startMonthTextBox
            // 
            resources.ApplyResources(this.startMonthTextBox, "startMonthTextBox");
            this.startMonthTextBox.Name = "startMonthTextBox";
            this.startMonthTextBox.Validated += new System.EventHandler(this.OnScenarioIntItemTextBoxValidated);
            // 
            // startDayTextBox
            // 
            resources.ApplyResources(this.startDayTextBox, "startDayTextBox");
            this.startDayTextBox.Name = "startDayTextBox";
            this.startDayTextBox.Validated += new System.EventHandler(this.OnScenarioIntItemTextBoxValidated);
            // 
            // endDateLabel
            // 
            resources.ApplyResources(this.endDateLabel, "endDateLabel");
            this.endDateLabel.Name = "endDateLabel";
            // 
            // endYearTextBox
            // 
            resources.ApplyResources(this.endYearTextBox, "endYearTextBox");
            this.endYearTextBox.Name = "endYearTextBox";
            this.endYearTextBox.Validated += new System.EventHandler(this.OnScenarioIntItemTextBoxValidated);
            // 
            // endMonthTextBox
            // 
            resources.ApplyResources(this.endMonthTextBox, "endMonthTextBox");
            this.endMonthTextBox.Name = "endMonthTextBox";
            this.endMonthTextBox.Validated += new System.EventHandler(this.OnScenarioIntItemTextBoxValidated);
            // 
            // endDayTextBox
            // 
            resources.ApplyResources(this.endDayTextBox, "endDayTextBox");
            this.endDayTextBox.Name = "endDayTextBox";
            this.endDayTextBox.Validated += new System.EventHandler(this.OnScenarioIntItemTextBoxValidated);
            // 
            // loadButton
            // 
            resources.ApplyResources(this.loadButton, "loadButton");
            this.loadButton.Name = "loadButton";
            this.loadButton.UseVisualStyleBackColor = true;
            this.loadButton.Click += new System.EventHandler(this.OnLoadButtonClick);
            // 
            // folderGroupBox
            // 
            resources.ApplyResources(this.folderGroupBox, "folderGroupBox");
            this.folderGroupBox.Controls.Add(this.exportRadioButton);
            this.folderGroupBox.Controls.Add(this.modRadioButton);
            this.folderGroupBox.Controls.Add(this.vanillaRadioButton);
            this.folderGroupBox.Name = "folderGroupBox";
            this.folderGroupBox.TabStop = false;
            // 
            // exportRadioButton
            // 
            resources.ApplyResources(this.exportRadioButton, "exportRadioButton");
            this.exportRadioButton.Name = "exportRadioButton";
            this.exportRadioButton.TabStop = true;
            this.exportRadioButton.UseVisualStyleBackColor = true;
            this.exportRadioButton.CheckedChanged += new System.EventHandler(this.OnFolderRadioButtonCheckedChanged);
            // 
            // modRadioButton
            // 
            resources.ApplyResources(this.modRadioButton, "modRadioButton");
            this.modRadioButton.Name = "modRadioButton";
            this.modRadioButton.TabStop = true;
            this.modRadioButton.UseVisualStyleBackColor = true;
            this.modRadioButton.CheckedChanged += new System.EventHandler(this.OnFolderRadioButtonCheckedChanged);
            // 
            // vanillaRadioButton
            // 
            resources.ApplyResources(this.vanillaRadioButton, "vanillaRadioButton");
            this.vanillaRadioButton.Name = "vanillaRadioButton";
            this.vanillaRadioButton.TabStop = true;
            this.vanillaRadioButton.UseVisualStyleBackColor = true;
            this.vanillaRadioButton.CheckedChanged += new System.EventHandler(this.OnFolderRadioButtonCheckedChanged);
            // 
            // typeGroupBox
            // 
            resources.ApplyResources(this.typeGroupBox, "typeGroupBox");
            this.typeGroupBox.Controls.Add(this.saveGamesRadioButton);
            this.typeGroupBox.Controls.Add(this.scenarioRadioButton);
            this.typeGroupBox.Name = "typeGroupBox";
            this.typeGroupBox.TabStop = false;
            // 
            // saveGamesRadioButton
            // 
            resources.ApplyResources(this.saveGamesRadioButton, "saveGamesRadioButton");
            this.saveGamesRadioButton.Name = "saveGamesRadioButton";
            this.saveGamesRadioButton.TabStop = true;
            this.saveGamesRadioButton.UseVisualStyleBackColor = true;
            // 
            // scenarioRadioButton
            // 
            resources.ApplyResources(this.scenarioRadioButton, "scenarioRadioButton");
            this.scenarioRadioButton.Checked = true;
            this.scenarioRadioButton.Name = "scenarioRadioButton";
            this.scenarioRadioButton.TabStop = true;
            this.scenarioRadioButton.UseVisualStyleBackColor = true;
            // 
            // scenarioListBox
            // 
            resources.ApplyResources(this.scenarioListBox, "scenarioListBox");
            this.scenarioListBox.FormattingEnabled = true;
            this.scenarioListBox.Name = "scenarioListBox";
            // 
            // scenarioTabControl
            // 
            resources.ApplyResources(this.scenarioTabControl, "scenarioTabControl");
            this.scenarioTabControl.Controls.Add(this.mainTabPage);
            this.scenarioTabControl.Controls.Add(this.allianceTabPage);
            this.scenarioTabControl.Controls.Add(this.relationTabPage);
            this.scenarioTabControl.Controls.Add(this.tradeTabPage);
            this.scenarioTabControl.Controls.Add(this.countryTabPage);
            this.scenarioTabControl.Controls.Add(this.governmentTabPage);
            this.scenarioTabControl.Controls.Add(technologyTabPage);
            this.scenarioTabControl.Controls.Add(this.provinceTabPage);
            this.scenarioTabControl.Controls.Add(this.oobTabPage);
            this.scenarioTabControl.Name = "scenarioTabControl";
            this.scenarioTabControl.SelectedIndex = 0;
            this.scenarioTabControl.SelectedIndexChanged += new System.EventHandler(this.OnScenarioTabControlSelectedIndexChanged);
            // 
            // oobTabPage
            // 
            resources.ApplyResources(this.oobTabPage, "oobTabPage");
            this.oobTabPage.BackColor = System.Drawing.SystemColors.Control;
            this.oobTabPage.Controls.Add(this.oobBottomButton);
            this.oobTabPage.Controls.Add(this.oobDownButton);
            this.oobTabPage.Controls.Add(this.oobUpButton);
            this.oobTabPage.Controls.Add(this.oobTopButton);
            this.oobTabPage.Controls.Add(this.oobRemoveButton);
            this.oobTabPage.Controls.Add(this.oobCloneButton);
            this.oobTabPage.Controls.Add(this.oobAddDivisionButton);
            this.oobTabPage.Controls.Add(this.oobAddUnitButton);
            this.oobTabPage.Controls.Add(this.divisionGroupBox);
            this.oobTabPage.Controls.Add(this.unitGroupBox);
            this.oobTabPage.Controls.Add(this.unitTreeView);
            this.oobTabPage.Controls.Add(this.oobCountryListBox);
            this.oobTabPage.Name = "oobTabPage";
            // 
            // oobBottomButton
            // 
            resources.ApplyResources(this.oobBottomButton, "oobBottomButton");
            this.oobBottomButton.Name = "oobBottomButton";
            this.oobBottomButton.UseVisualStyleBackColor = true;
            this.oobBottomButton.Click += new System.EventHandler(this.OnOobBottomButtonClick);
            // 
            // oobDownButton
            // 
            resources.ApplyResources(this.oobDownButton, "oobDownButton");
            this.oobDownButton.Name = "oobDownButton";
            this.oobDownButton.UseVisualStyleBackColor = true;
            this.oobDownButton.Click += new System.EventHandler(this.OnOobDownButtonClick);
            // 
            // oobUpButton
            // 
            resources.ApplyResources(this.oobUpButton, "oobUpButton");
            this.oobUpButton.Name = "oobUpButton";
            this.oobUpButton.UseVisualStyleBackColor = true;
            this.oobUpButton.Click += new System.EventHandler(this.OnOobUpButtonClick);
            // 
            // oobTopButton
            // 
            resources.ApplyResources(this.oobTopButton, "oobTopButton");
            this.oobTopButton.Name = "oobTopButton";
            this.oobTopButton.UseVisualStyleBackColor = true;
            this.oobTopButton.Click += new System.EventHandler(this.OnOobTopButtonClick);
            // 
            // oobRemoveButton
            // 
            resources.ApplyResources(this.oobRemoveButton, "oobRemoveButton");
            this.oobRemoveButton.Name = "oobRemoveButton";
            this.oobRemoveButton.UseVisualStyleBackColor = true;
            this.oobRemoveButton.Click += new System.EventHandler(this.OnOobRemoveButtonClick);
            // 
            // oobCloneButton
            // 
            resources.ApplyResources(this.oobCloneButton, "oobCloneButton");
            this.oobCloneButton.Name = "oobCloneButton";
            this.oobCloneButton.UseVisualStyleBackColor = true;
            this.oobCloneButton.Click += new System.EventHandler(this.OnOobCloneButtonClick);
            // 
            // oobAddDivisionButton
            // 
            resources.ApplyResources(this.oobAddDivisionButton, "oobAddDivisionButton");
            this.oobAddDivisionButton.Name = "oobAddDivisionButton";
            this.oobAddDivisionButton.UseVisualStyleBackColor = true;
            this.oobAddDivisionButton.Click += new System.EventHandler(this.OnOobAddDivisionButtonClick);
            // 
            // oobAddUnitButton
            // 
            resources.ApplyResources(this.oobAddUnitButton, "oobAddUnitButton");
            this.oobAddUnitButton.Name = "oobAddUnitButton";
            this.oobAddUnitButton.UseVisualStyleBackColor = true;
            this.oobAddUnitButton.Click += new System.EventHandler(this.OnOobAddUnitButtonClick);
            // 
            // divisionGroupBox
            // 
            resources.ApplyResources(this.divisionGroupBox, "divisionGroupBox");
            this.divisionGroupBox.Controls.Add(this.dormantCheckBox);
            this.divisionGroupBox.Controls.Add(this.lockedCheckBox);
            this.divisionGroupBox.Controls.Add(this.experienceTextBox);
            this.divisionGroupBox.Controls.Add(this.experienceLabel);
            this.divisionGroupBox.Controls.Add(this.divisionMoraleTextBox);
            this.divisionGroupBox.Controls.Add(this.divisionMoraleLabel);
            this.divisionGroupBox.Controls.Add(this.maxOrganisationTextBox);
            this.divisionGroupBox.Controls.Add(this.organisationTextBox);
            this.divisionGroupBox.Controls.Add(this.organisationLabel);
            this.divisionGroupBox.Controls.Add(this.maxStrengthTextBox);
            this.divisionGroupBox.Controls.Add(this.strengthTextBox);
            this.divisionGroupBox.Controls.Add(this.strengthLabel);
            this.divisionGroupBox.Controls.Add(this.brigadeModelComboBox5);
            this.divisionGroupBox.Controls.Add(this.brigadeTypeComboBox5);
            this.divisionGroupBox.Controls.Add(this.brigadeModelComboBox4);
            this.divisionGroupBox.Controls.Add(this.brigadeTypeComboBox4);
            this.divisionGroupBox.Controls.Add(this.brigadeModelComboBox3);
            this.divisionGroupBox.Controls.Add(this.brigadeTypeComboBox3);
            this.divisionGroupBox.Controls.Add(this.brigadeModelComboBox2);
            this.divisionGroupBox.Controls.Add(this.brigadeTypeComboBox2);
            this.divisionGroupBox.Controls.Add(this.brigadeModelComboBox1);
            this.divisionGroupBox.Controls.Add(this.brigadesLabel);
            this.divisionGroupBox.Controls.Add(this.brigadeTypeComboBox1);
            this.divisionGroupBox.Controls.Add(this.unitModelComboBox);
            this.divisionGroupBox.Controls.Add(this.unitTypeLabel);
            this.divisionGroupBox.Controls.Add(this.unitTypeComboBox);
            this.divisionGroupBox.Controls.Add(this.divisionNameTextBox);
            this.divisionGroupBox.Controls.Add(this.divisionNameLabel);
            this.divisionGroupBox.Controls.Add(this.divisionIdTextBox);
            this.divisionGroupBox.Controls.Add(this.divisionTypeTextBox);
            this.divisionGroupBox.Controls.Add(this.divisionIdLabel);
            this.divisionGroupBox.Name = "divisionGroupBox";
            this.divisionGroupBox.TabStop = false;
            // 
            // dormantCheckBox
            // 
            resources.ApplyResources(this.dormantCheckBox, "dormantCheckBox");
            this.dormantCheckBox.Name = "dormantCheckBox";
            this.dormantCheckBox.UseVisualStyleBackColor = true;
            this.dormantCheckBox.CheckedChanged += new System.EventHandler(this.OnDivisionCheckBoxCheckedChanged);
            // 
            // lockedCheckBox
            // 
            resources.ApplyResources(this.lockedCheckBox, "lockedCheckBox");
            this.lockedCheckBox.Name = "lockedCheckBox";
            this.lockedCheckBox.UseVisualStyleBackColor = true;
            this.lockedCheckBox.CheckedChanged += new System.EventHandler(this.OnDivisionCheckBoxCheckedChanged);
            // 
            // experienceTextBox
            // 
            resources.ApplyResources(this.experienceTextBox, "experienceTextBox");
            this.experienceTextBox.Name = "experienceTextBox";
            this.experienceTextBox.Validated += new System.EventHandler(this.OnDivisionDoubleItemTextBoxValidated);
            // 
            // experienceLabel
            // 
            resources.ApplyResources(this.experienceLabel, "experienceLabel");
            this.experienceLabel.Name = "experienceLabel";
            // 
            // divisionMoraleTextBox
            // 
            resources.ApplyResources(this.divisionMoraleTextBox, "divisionMoraleTextBox");
            this.divisionMoraleTextBox.Name = "divisionMoraleTextBox";
            this.divisionMoraleTextBox.Validated += new System.EventHandler(this.OnDivisionDoubleItemTextBoxValidated);
            // 
            // divisionMoraleLabel
            // 
            resources.ApplyResources(this.divisionMoraleLabel, "divisionMoraleLabel");
            this.divisionMoraleLabel.Name = "divisionMoraleLabel";
            // 
            // maxOrganisationTextBox
            // 
            resources.ApplyResources(this.maxOrganisationTextBox, "maxOrganisationTextBox");
            this.maxOrganisationTextBox.Name = "maxOrganisationTextBox";
            this.maxOrganisationTextBox.Validated += new System.EventHandler(this.OnDivisionDoubleItemTextBoxValidated);
            // 
            // organisationTextBox
            // 
            resources.ApplyResources(this.organisationTextBox, "organisationTextBox");
            this.organisationTextBox.Name = "organisationTextBox";
            this.organisationTextBox.Validated += new System.EventHandler(this.OnDivisionDoubleItemTextBoxValidated);
            // 
            // organisationLabel
            // 
            resources.ApplyResources(this.organisationLabel, "organisationLabel");
            this.organisationLabel.Name = "organisationLabel";
            // 
            // maxStrengthTextBox
            // 
            resources.ApplyResources(this.maxStrengthTextBox, "maxStrengthTextBox");
            this.maxStrengthTextBox.Name = "maxStrengthTextBox";
            this.maxStrengthTextBox.Validated += new System.EventHandler(this.OnDivisionDoubleItemTextBoxValidated);
            // 
            // strengthTextBox
            // 
            resources.ApplyResources(this.strengthTextBox, "strengthTextBox");
            this.strengthTextBox.Name = "strengthTextBox";
            this.strengthTextBox.Validated += new System.EventHandler(this.OnDivisionDoubleItemTextBoxValidated);
            // 
            // strengthLabel
            // 
            resources.ApplyResources(this.strengthLabel, "strengthLabel");
            this.strengthLabel.Name = "strengthLabel";
            // 
            // brigadeModelComboBox5
            // 
            resources.ApplyResources(this.brigadeModelComboBox5, "brigadeModelComboBox5");
            this.brigadeModelComboBox5.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.brigadeModelComboBox5.FormattingEnabled = true;
            this.brigadeModelComboBox5.Name = "brigadeModelComboBox5";
            this.brigadeModelComboBox5.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.OnDivisionComboBoxDrawItem);
            this.brigadeModelComboBox5.SelectedIndexChanged += new System.EventHandler(this.OnDivisionComboBoxSelectedIndexChanged);
            this.brigadeModelComboBox5.Validated += new System.EventHandler(this.OnDivisionComboBoxValidated);
            // 
            // brigadeTypeComboBox5
            // 
            resources.ApplyResources(this.brigadeTypeComboBox5, "brigadeTypeComboBox5");
            this.brigadeTypeComboBox5.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.brigadeTypeComboBox5.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.brigadeTypeComboBox5.FormattingEnabled = true;
            this.brigadeTypeComboBox5.Name = "brigadeTypeComboBox5";
            this.brigadeTypeComboBox5.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.OnDivisionComboBoxDrawItem);
            this.brigadeTypeComboBox5.SelectedIndexChanged += new System.EventHandler(this.OnDivisionComboBoxSelectedIndexChanged);
            // 
            // brigadeModelComboBox4
            // 
            resources.ApplyResources(this.brigadeModelComboBox4, "brigadeModelComboBox4");
            this.brigadeModelComboBox4.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.brigadeModelComboBox4.FormattingEnabled = true;
            this.brigadeModelComboBox4.Name = "brigadeModelComboBox4";
            this.brigadeModelComboBox4.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.OnDivisionComboBoxDrawItem);
            this.brigadeModelComboBox4.SelectedIndexChanged += new System.EventHandler(this.OnDivisionComboBoxSelectedIndexChanged);
            this.brigadeModelComboBox4.Validated += new System.EventHandler(this.OnDivisionComboBoxValidated);
            // 
            // brigadeTypeComboBox4
            // 
            resources.ApplyResources(this.brigadeTypeComboBox4, "brigadeTypeComboBox4");
            this.brigadeTypeComboBox4.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.brigadeTypeComboBox4.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.brigadeTypeComboBox4.FormattingEnabled = true;
            this.brigadeTypeComboBox4.Name = "brigadeTypeComboBox4";
            this.brigadeTypeComboBox4.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.OnDivisionComboBoxDrawItem);
            this.brigadeTypeComboBox4.SelectedIndexChanged += new System.EventHandler(this.OnDivisionComboBoxSelectedIndexChanged);
            // 
            // brigadeModelComboBox3
            // 
            resources.ApplyResources(this.brigadeModelComboBox3, "brigadeModelComboBox3");
            this.brigadeModelComboBox3.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.brigadeModelComboBox3.FormattingEnabled = true;
            this.brigadeModelComboBox3.Name = "brigadeModelComboBox3";
            this.brigadeModelComboBox3.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.OnDivisionComboBoxDrawItem);
            this.brigadeModelComboBox3.SelectedIndexChanged += new System.EventHandler(this.OnDivisionComboBoxSelectedIndexChanged);
            this.brigadeModelComboBox3.Validated += new System.EventHandler(this.OnDivisionComboBoxValidated);
            // 
            // brigadeTypeComboBox3
            // 
            resources.ApplyResources(this.brigadeTypeComboBox3, "brigadeTypeComboBox3");
            this.brigadeTypeComboBox3.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.brigadeTypeComboBox3.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.brigadeTypeComboBox3.FormattingEnabled = true;
            this.brigadeTypeComboBox3.Name = "brigadeTypeComboBox3";
            this.brigadeTypeComboBox3.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.OnDivisionComboBoxDrawItem);
            this.brigadeTypeComboBox3.SelectedIndexChanged += new System.EventHandler(this.OnDivisionComboBoxSelectedIndexChanged);
            // 
            // brigadeModelComboBox2
            // 
            resources.ApplyResources(this.brigadeModelComboBox2, "brigadeModelComboBox2");
            this.brigadeModelComboBox2.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.brigadeModelComboBox2.FormattingEnabled = true;
            this.brigadeModelComboBox2.Name = "brigadeModelComboBox2";
            this.brigadeModelComboBox2.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.OnDivisionComboBoxDrawItem);
            this.brigadeModelComboBox2.SelectedIndexChanged += new System.EventHandler(this.OnDivisionComboBoxSelectedIndexChanged);
            this.brigadeModelComboBox2.Validated += new System.EventHandler(this.OnDivisionComboBoxValidated);
            // 
            // brigadeTypeComboBox2
            // 
            resources.ApplyResources(this.brigadeTypeComboBox2, "brigadeTypeComboBox2");
            this.brigadeTypeComboBox2.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.brigadeTypeComboBox2.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.brigadeTypeComboBox2.FormattingEnabled = true;
            this.brigadeTypeComboBox2.Name = "brigadeTypeComboBox2";
            this.brigadeTypeComboBox2.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.OnDivisionComboBoxDrawItem);
            this.brigadeTypeComboBox2.SelectedIndexChanged += new System.EventHandler(this.OnDivisionComboBoxSelectedIndexChanged);
            // 
            // brigadeModelComboBox1
            // 
            resources.ApplyResources(this.brigadeModelComboBox1, "brigadeModelComboBox1");
            this.brigadeModelComboBox1.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.brigadeModelComboBox1.FormattingEnabled = true;
            this.brigadeModelComboBox1.Name = "brigadeModelComboBox1";
            this.brigadeModelComboBox1.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.OnDivisionComboBoxDrawItem);
            this.brigadeModelComboBox1.SelectedIndexChanged += new System.EventHandler(this.OnDivisionComboBoxSelectedIndexChanged);
            this.brigadeModelComboBox1.Validated += new System.EventHandler(this.OnDivisionComboBoxValidated);
            // 
            // brigadesLabel
            // 
            resources.ApplyResources(this.brigadesLabel, "brigadesLabel");
            this.brigadesLabel.Name = "brigadesLabel";
            // 
            // brigadeTypeComboBox1
            // 
            resources.ApplyResources(this.brigadeTypeComboBox1, "brigadeTypeComboBox1");
            this.brigadeTypeComboBox1.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.brigadeTypeComboBox1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.brigadeTypeComboBox1.FormattingEnabled = true;
            this.brigadeTypeComboBox1.Name = "brigadeTypeComboBox1";
            this.brigadeTypeComboBox1.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.OnDivisionComboBoxDrawItem);
            this.brigadeTypeComboBox1.SelectedIndexChanged += new System.EventHandler(this.OnDivisionComboBoxSelectedIndexChanged);
            // 
            // unitModelComboBox
            // 
            resources.ApplyResources(this.unitModelComboBox, "unitModelComboBox");
            this.unitModelComboBox.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.unitModelComboBox.FormattingEnabled = true;
            this.unitModelComboBox.Name = "unitModelComboBox";
            this.unitModelComboBox.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.OnDivisionComboBoxDrawItem);
            this.unitModelComboBox.SelectedIndexChanged += new System.EventHandler(this.OnDivisionComboBoxSelectedIndexChanged);
            this.unitModelComboBox.Validated += new System.EventHandler(this.OnDivisionComboBoxValidated);
            // 
            // unitTypeLabel
            // 
            resources.ApplyResources(this.unitTypeLabel, "unitTypeLabel");
            this.unitTypeLabel.Name = "unitTypeLabel";
            // 
            // unitTypeComboBox
            // 
            resources.ApplyResources(this.unitTypeComboBox, "unitTypeComboBox");
            this.unitTypeComboBox.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.unitTypeComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.unitTypeComboBox.FormattingEnabled = true;
            this.unitTypeComboBox.Name = "unitTypeComboBox";
            this.unitTypeComboBox.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.OnDivisionComboBoxDrawItem);
            this.unitTypeComboBox.SelectedIndexChanged += new System.EventHandler(this.OnDivisionComboBoxSelectedIndexChanged);
            // 
            // divisionNameTextBox
            // 
            resources.ApplyResources(this.divisionNameTextBox, "divisionNameTextBox");
            this.divisionNameTextBox.Name = "divisionNameTextBox";
            this.divisionNameTextBox.TextChanged += new System.EventHandler(this.OnDivisionStringItemTextBoxTextChanged);
            // 
            // divisionNameLabel
            // 
            resources.ApplyResources(this.divisionNameLabel, "divisionNameLabel");
            this.divisionNameLabel.Name = "divisionNameLabel";
            // 
            // divisionIdTextBox
            // 
            resources.ApplyResources(this.divisionIdTextBox, "divisionIdTextBox");
            this.divisionIdTextBox.Name = "divisionIdTextBox";
            this.divisionIdTextBox.Validated += new System.EventHandler(this.OnDivisionIntItemTextBoxValidated);
            // 
            // divisionTypeTextBox
            // 
            resources.ApplyResources(this.divisionTypeTextBox, "divisionTypeTextBox");
            this.divisionTypeTextBox.Name = "divisionTypeTextBox";
            this.divisionTypeTextBox.Validated += new System.EventHandler(this.OnDivisionIntItemTextBoxValidated);
            // 
            // divisionIdLabel
            // 
            resources.ApplyResources(this.divisionIdLabel, "divisionIdLabel");
            this.divisionIdLabel.Name = "divisionIdLabel";
            // 
            // unitGroupBox
            // 
            resources.ApplyResources(this.unitGroupBox, "unitGroupBox");
            this.unitGroupBox.Controls.Add(this.leaderComboBox);
            this.unitGroupBox.Controls.Add(this.baseComboBox);
            this.unitGroupBox.Controls.Add(this.locationComboBox);
            this.unitGroupBox.Controls.Add(this.digInTextBox);
            this.unitGroupBox.Controls.Add(this.digInLabel);
            this.unitGroupBox.Controls.Add(this.leaderTextBox);
            this.unitGroupBox.Controls.Add(this.leaderLabel);
            this.unitGroupBox.Controls.Add(this.unitMoraleTextBox);
            this.unitGroupBox.Controls.Add(this.unitMoraleLabel);
            this.unitGroupBox.Controls.Add(this.baseTextBox);
            this.unitGroupBox.Controls.Add(this.baseLabel);
            this.unitGroupBox.Controls.Add(this.locationTextBox);
            this.unitGroupBox.Controls.Add(this.locationLabel);
            this.unitGroupBox.Controls.Add(this.unitNameTextBox);
            this.unitGroupBox.Controls.Add(this.unitNameLabel);
            this.unitGroupBox.Controls.Add(this.unitIdTextBox);
            this.unitGroupBox.Controls.Add(this.unitTypeTextBox);
            this.unitGroupBox.Controls.Add(this.unitIdLabel);
            this.unitGroupBox.Name = "unitGroupBox";
            this.unitGroupBox.TabStop = false;
            // 
            // leaderComboBox
            // 
            resources.ApplyResources(this.leaderComboBox, "leaderComboBox");
            this.leaderComboBox.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.leaderComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.leaderComboBox.FormattingEnabled = true;
            this.leaderComboBox.Name = "leaderComboBox";
            this.leaderComboBox.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.OnUnitComboBoxDrawItem);
            this.leaderComboBox.SelectedIndexChanged += new System.EventHandler(this.OnUnitComboBoxSelectedIndexChanged);
            // 
            // baseComboBox
            // 
            resources.ApplyResources(this.baseComboBox, "baseComboBox");
            this.baseComboBox.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.baseComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.baseComboBox.FormattingEnabled = true;
            this.baseComboBox.Name = "baseComboBox";
            this.baseComboBox.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.OnUnitComboBoxDrawItem);
            this.baseComboBox.SelectedIndexChanged += new System.EventHandler(this.OnUnitComboBoxSelectedIndexChanged);
            // 
            // locationComboBox
            // 
            resources.ApplyResources(this.locationComboBox, "locationComboBox");
            this.locationComboBox.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.locationComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.locationComboBox.FormattingEnabled = true;
            this.locationComboBox.Name = "locationComboBox";
            this.locationComboBox.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.OnUnitComboBoxDrawItem);
            this.locationComboBox.SelectedIndexChanged += new System.EventHandler(this.OnUnitComboBoxSelectedIndexChanged);
            // 
            // digInTextBox
            // 
            resources.ApplyResources(this.digInTextBox, "digInTextBox");
            this.digInTextBox.Name = "digInTextBox";
            this.digInTextBox.Validated += new System.EventHandler(this.OnUnitDoubleItemTextBoxValidated);
            // 
            // digInLabel
            // 
            resources.ApplyResources(this.digInLabel, "digInLabel");
            this.digInLabel.Name = "digInLabel";
            // 
            // leaderTextBox
            // 
            resources.ApplyResources(this.leaderTextBox, "leaderTextBox");
            this.leaderTextBox.Name = "leaderTextBox";
            this.leaderTextBox.Validated += new System.EventHandler(this.OnUnitIntItemTextBoxValidated);
            // 
            // leaderLabel
            // 
            resources.ApplyResources(this.leaderLabel, "leaderLabel");
            this.leaderLabel.Name = "leaderLabel";
            // 
            // unitMoraleTextBox
            // 
            resources.ApplyResources(this.unitMoraleTextBox, "unitMoraleTextBox");
            this.unitMoraleTextBox.Name = "unitMoraleTextBox";
            this.unitMoraleTextBox.Validated += new System.EventHandler(this.OnUnitDoubleItemTextBoxValidated);
            // 
            // unitMoraleLabel
            // 
            resources.ApplyResources(this.unitMoraleLabel, "unitMoraleLabel");
            this.unitMoraleLabel.Name = "unitMoraleLabel";
            // 
            // baseTextBox
            // 
            resources.ApplyResources(this.baseTextBox, "baseTextBox");
            this.baseTextBox.Name = "baseTextBox";
            this.baseTextBox.Validated += new System.EventHandler(this.OnUnitIntItemTextBoxValidated);
            // 
            // baseLabel
            // 
            resources.ApplyResources(this.baseLabel, "baseLabel");
            this.baseLabel.Name = "baseLabel";
            // 
            // locationTextBox
            // 
            resources.ApplyResources(this.locationTextBox, "locationTextBox");
            this.locationTextBox.Name = "locationTextBox";
            this.locationTextBox.Validated += new System.EventHandler(this.OnUnitIntItemTextBoxValidated);
            // 
            // locationLabel
            // 
            resources.ApplyResources(this.locationLabel, "locationLabel");
            this.locationLabel.Name = "locationLabel";
            // 
            // unitNameTextBox
            // 
            resources.ApplyResources(this.unitNameTextBox, "unitNameTextBox");
            this.unitNameTextBox.Name = "unitNameTextBox";
            this.unitNameTextBox.TextChanged += new System.EventHandler(this.OnUnitStringItemTextBoxTextChanged);
            // 
            // unitNameLabel
            // 
            resources.ApplyResources(this.unitNameLabel, "unitNameLabel");
            this.unitNameLabel.Name = "unitNameLabel";
            // 
            // unitIdTextBox
            // 
            resources.ApplyResources(this.unitIdTextBox, "unitIdTextBox");
            this.unitIdTextBox.Name = "unitIdTextBox";
            this.unitIdTextBox.Validated += new System.EventHandler(this.OnUnitIntItemTextBoxValidated);
            // 
            // unitTypeTextBox
            // 
            resources.ApplyResources(this.unitTypeTextBox, "unitTypeTextBox");
            this.unitTypeTextBox.Name = "unitTypeTextBox";
            this.unitTypeTextBox.Validated += new System.EventHandler(this.OnUnitIntItemTextBoxValidated);
            // 
            // unitIdLabel
            // 
            resources.ApplyResources(this.unitIdLabel, "unitIdLabel");
            this.unitIdLabel.Name = "unitIdLabel";
            // 
            // unitTreeView
            // 
            resources.ApplyResources(this.unitTreeView, "unitTreeView");
            this.unitTreeView.FullRowSelect = true;
            this.unitTreeView.HideSelection = false;
            this.unitTreeView.Name = "unitTreeView";
            // 
            // oobCountryListBox
            // 
            resources.ApplyResources(this.oobCountryListBox, "oobCountryListBox");
            this.oobCountryListBox.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.oobCountryListBox.FormattingEnabled = true;
            this.oobCountryListBox.Name = "oobCountryListBox";
            this.oobCountryListBox.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.OnCountryListBoxDrawItem);
            this.oobCountryListBox.SelectedIndexChanged += new System.EventHandler(this.OnOobCountryListBoxSelectedIndexChanged);
            // 
            // checkButton
            // 
            resources.ApplyResources(this.checkButton, "checkButton");
            this.checkButton.Name = "checkButton";
            this.checkButton.UseVisualStyleBackColor = true;
            this.checkButton.Click += new System.EventHandler(this.OnCheckButtonClick);
            // 
            // ScenarioEditorForm
            // 
            resources.ApplyResources(this, "$this");
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
            this.Controls.Add(this.checkButton);
            this.Controls.Add(this.scenarioTabControl);
            this.Controls.Add(this.closeButton);
            this.Controls.Add(this.saveButton);
            this.Controls.Add(this.reloadButton);
            this.Name = "ScenarioEditorForm";
            this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.OnFormClosing);
            this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.OnFormClosed);
            this.Load += new System.EventHandler(this.OnFormLoad);
            this.Move += new System.EventHandler(this.OnFormMove);
            this.Resize += new System.EventHandler(this.OnFormResize);
            technologyTabPage.ResumeLayout(false);
            technologyTabPage.PerformLayout();
            this.techTreePanel.ResumeLayout(false);
            this.techTreePanel.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.techTreePictureBox)).EndInit();
            this.provinceTabPage.ResumeLayout(false);
            this.provinceTabPage.PerformLayout();
            this.provinceCountryGroupBox.ResumeLayout(false);
            this.provinceCountryGroupBox.PerformLayout();
            this.mapFilterGroupBox.ResumeLayout(false);
            this.mapFilterGroupBox.PerformLayout();
            this.provinceInfoGroupBox.ResumeLayout(false);
            this.provinceInfoGroupBox.PerformLayout();
            this.provinceResourceGroupBox.ResumeLayout(false);
            this.provinceResourceGroupBox.PerformLayout();
            this.provinceBuildingGroupBox.ResumeLayout(false);
            this.provinceBuildingGroupBox.PerformLayout();
            this.provinceMapPanel.ResumeLayout(false);
            this.provinceMapPanel.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.provinceMapPictureBox)).EndInit();
            this.governmentTabPage.ResumeLayout(false);
            this.cabinetGroupBox.ResumeLayout(false);
            this.cabinetGroupBox.PerformLayout();
            this.politicalSliderGroupBox.ResumeLayout(false);
            this.politicalSliderGroupBox.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.interventionismTrackBar)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.defenseLobbyTrackBar)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.professionalArmyTrackBar)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.freeMarketTrackBar)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.freedomTrackBar)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.politicalLeftTrackBar)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.democraticTrackBar)).EndInit();
            this.countryTabPage.ResumeLayout(false);
            this.countryModifierGroupBox.ResumeLayout(false);
            this.countryModifierGroupBox.PerformLayout();
            this.aiGroupBox.ResumeLayout(false);
            this.aiGroupBox.PerformLayout();
            this.countryResourceGroupBox.ResumeLayout(false);
            this.countryResourceGroupBox.PerformLayout();
            this.countryInfoGroupBox.ResumeLayout(false);
            this.countryInfoGroupBox.PerformLayout();
            this.tradeTabPage.ResumeLayout(false);
            this.tradeDealsGroupBox.ResumeLayout(false);
            this.tradeDealsGroupBox.PerformLayout();
            this.tradeInfoGroupBox.ResumeLayout(false);
            this.tradeInfoGroupBox.PerformLayout();
            this.relationTabPage.ResumeLayout(false);
            this.peaceGroupBox.ResumeLayout(false);
            this.peaceGroupBox.PerformLayout();
            this.guaranteedGroupBox.ResumeLayout(false);
            this.guaranteedGroupBox.PerformLayout();
            this.nonAggressionGroupBox.ResumeLayout(false);
            this.nonAggressionGroupBox.PerformLayout();
            this.relationGroupBox.ResumeLayout(false);
            this.relationGroupBox.PerformLayout();
            this.intelligenceGroupBox.ResumeLayout(false);
            this.intelligenceGroupBox.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.spyNumNumericUpDown)).EndInit();
            this.allianceTabPage.ResumeLayout(false);
            this.warGroupBox.ResumeLayout(false);
            this.warGroupBox.PerformLayout();
            this.allianceGroupBox.ResumeLayout(false);
            this.allianceGroupBox.PerformLayout();
            this.mainTabPage.ResumeLayout(false);
            this.scenarioOptionGroupBox.ResumeLayout(false);
            this.scenarioOptionGroupBox.PerformLayout();
            this.countrySelectionGroupBox.ResumeLayout(false);
            this.countrySelectionGroupBox.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.propagandaPictureBox)).EndInit();
            this.scenarioInfoGroupBox.ResumeLayout(false);
            this.scenarioInfoGroupBox.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.panelPictureBox)).EndInit();
            this.folderGroupBox.ResumeLayout(false);
            this.folderGroupBox.PerformLayout();
            this.typeGroupBox.ResumeLayout(false);
            this.typeGroupBox.PerformLayout();
            this.scenarioTabControl.ResumeLayout(false);
            this.oobTabPage.ResumeLayout(false);
            this.divisionGroupBox.ResumeLayout(false);
            this.divisionGroupBox.PerformLayout();
            this.unitGroupBox.ResumeLayout(false);
            this.unitGroupBox.PerformLayout();
            this.ResumeLayout(false);

        }
Esempio n. 22
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.TabPage agentEnvironmentTabPage;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ExperimentSetupWindow));
     this.agentPanel       = new System.Windows.Forms.Panel();
     this.environmentPanel = new System.Windows.Forms.Panel();
     this.agentLabel       = new System.Windows.Forms.Label();
     this.environmentLabel = new System.Windows.Forms.Label();
     this.cancelButton     = new System.Windows.Forms.Button();
     this.reportingTabPage = new System.Windows.Forms.TabPage();
     this.reportingConfigurationControl    = new Application.Reporting.ReportingConfigurationControl();
     this.experimentParametersTabPage      = new System.Windows.Forms.TabPage();
     this.experimentParametersApplyButton  = new System.Windows.Forms.Button();
     this.experimentParametersRevertButton = new System.Windows.Forms.Button();
     this.experimentParameterControl       = new Application.Parameters.ParameterControl();
     this.agentParametersRevertButton      = new System.Windows.Forms.Button();
     this.agentParametersApplyButton       = new System.Windows.Forms.Button();
     this.tabControl = new System.Windows.Forms.TabControl();
     this.environmentParametersTabPage      = new System.Windows.Forms.TabPage();
     this.environmentParametersApplyButton  = new System.Windows.Forms.Button();
     this.environmentParametersRevertButton = new System.Windows.Forms.Button();
     this.environmentParameterControl       = new Application.Parameters.ParameterControl();
     this.agentParametersTabPage            = new System.Windows.Forms.TabPage();
     this.agentParameterControl             = new Application.Parameters.ParameterControl();
     this.okButton = new System.Windows.Forms.Button();
     this.saveExperimentTemplateButton = new System.Windows.Forms.Button();
     this.loadExperimentTemplateButton = new System.Windows.Forms.Button();
     agentEnvironmentTabPage           = new System.Windows.Forms.TabPage();
     agentEnvironmentTabPage.SuspendLayout();
     this.reportingTabPage.SuspendLayout();
     this.experimentParametersTabPage.SuspendLayout();
     this.tabControl.SuspendLayout();
     this.environmentParametersTabPage.SuspendLayout();
     this.agentParametersTabPage.SuspendLayout();
     this.SuspendLayout();
     //
     // agentEnvironmentTabPage
     //
     agentEnvironmentTabPage.Controls.Add(this.agentPanel);
     agentEnvironmentTabPage.Controls.Add(this.environmentPanel);
     agentEnvironmentTabPage.Controls.Add(this.agentLabel);
     agentEnvironmentTabPage.Controls.Add(this.environmentLabel);
     agentEnvironmentTabPage.Location = new System.Drawing.Point(4, 22);
     agentEnvironmentTabPage.Name     = "agentEnvironmentTabPage";
     agentEnvironmentTabPage.Padding  = new System.Windows.Forms.Padding(3);
     agentEnvironmentTabPage.Size     = new System.Drawing.Size(1000, 619);
     agentEnvironmentTabPage.TabIndex = 0;
     agentEnvironmentTabPage.Text     = "Agent and Environment";
     agentEnvironmentTabPage.UseVisualStyleBackColor = true;
     //
     // agentPanel
     //
     this.agentPanel.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                     | System.Windows.Forms.AnchorStyles.Left)
                                                                    | System.Windows.Forms.AnchorStyles.Right)));
     this.agentPanel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.agentPanel.Location    = new System.Drawing.Point(510, 19);
     this.agentPanel.Name        = "agentPanel";
     this.agentPanel.Size        = new System.Drawing.Size(484, 594);
     this.agentPanel.TabIndex    = 9;
     //
     // environmentPanel
     //
     this.environmentPanel.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                           | System.Windows.Forms.AnchorStyles.Left)
                                                                          | System.Windows.Forms.AnchorStyles.Right)));
     this.environmentPanel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.environmentPanel.Location    = new System.Drawing.Point(9, 19);
     this.environmentPanel.Name        = "environmentPanel";
     this.environmentPanel.Size        = new System.Drawing.Size(495, 594);
     this.environmentPanel.TabIndex    = 12;
     //
     // agentLabel
     //
     this.agentLabel.AutoSize = true;
     this.agentLabel.Location = new System.Drawing.Point(507, 3);
     this.agentLabel.Name     = "agentLabel";
     this.agentLabel.Size     = new System.Drawing.Size(199, 13);
     this.agentLabel.TabIndex = 11;
     this.agentLabel.Text     = "Agents available for chosen environment";
     //
     // environmentLabel
     //
     this.environmentLabel.AutoSize = true;
     this.environmentLabel.Location = new System.Drawing.Point(6, 3);
     this.environmentLabel.Name     = "environmentLabel";
     this.environmentLabel.Size     = new System.Drawing.Size(71, 13);
     this.environmentLabel.TabIndex = 10;
     this.environmentLabel.Text     = "Environments";
     //
     // cancelButton
     //
     this.cancelButton.Anchor                  = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.cancelButton.CausesValidation        = false;
     this.cancelButton.DialogResult            = System.Windows.Forms.DialogResult.Cancel;
     this.cancelButton.Location                = new System.Drawing.Point(945, 663);
     this.cancelButton.Name                    = "cancelButton";
     this.cancelButton.Size                    = new System.Drawing.Size(75, 23);
     this.cancelButton.TabIndex                = 1;
     this.cancelButton.Text                    = "Cancel";
     this.cancelButton.UseVisualStyleBackColor = true;
     //
     // reportingTabPage
     //
     this.reportingTabPage.Controls.Add(this.reportingConfigurationControl);
     this.reportingTabPage.Location = new System.Drawing.Point(4, 22);
     this.reportingTabPage.Name     = "reportingTabPage";
     this.reportingTabPage.Padding  = new System.Windows.Forms.Padding(3);
     this.reportingTabPage.Size     = new System.Drawing.Size(1000, 619);
     this.reportingTabPage.TabIndex = 1;
     this.reportingTabPage.Text     = "Reporting";
     this.reportingTabPage.UseVisualStyleBackColor = true;
     //
     // reportingConfigurationControl
     //
     this.reportingConfigurationControl.AutoSize   = true;
     this.reportingConfigurationControl.Dock       = System.Windows.Forms.DockStyle.Fill;
     this.reportingConfigurationControl.Experiment = null;
     this.reportingConfigurationControl.Location   = new System.Drawing.Point(3, 3);
     this.reportingConfigurationControl.Margin     = new System.Windows.Forms.Padding(4);
     this.reportingConfigurationControl.Name       = "reportingConfigurationControl";
     this.reportingConfigurationControl.Size       = new System.Drawing.Size(994, 613);
     this.reportingConfigurationControl.TabIndex   = 0;
     //
     // experimentParametersTabPage
     //
     this.experimentParametersTabPage.Controls.Add(this.experimentParametersApplyButton);
     this.experimentParametersTabPage.Controls.Add(this.experimentParametersRevertButton);
     this.experimentParametersTabPage.Controls.Add(this.experimentParameterControl);
     this.experimentParametersTabPage.Location = new System.Drawing.Point(4, 22);
     this.experimentParametersTabPage.Name     = "experimentParametersTabPage";
     this.experimentParametersTabPage.Size     = new System.Drawing.Size(1000, 619);
     this.experimentParametersTabPage.TabIndex = 4;
     this.experimentParametersTabPage.Text     = "Experiment parameters";
     this.experimentParametersTabPage.UseVisualStyleBackColor = true;
     //
     // experimentParametersApplyButton
     //
     this.experimentParametersApplyButton.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.experimentParametersApplyButton.Location = new System.Drawing.Point(797, 593);
     this.experimentParametersApplyButton.Name     = "experimentParametersApplyButton";
     this.experimentParametersApplyButton.Size     = new System.Drawing.Size(75, 23);
     this.experimentParametersApplyButton.TabIndex = 2;
     this.experimentParametersApplyButton.Text     = "Apply";
     this.experimentParametersApplyButton.UseVisualStyleBackColor = true;
     this.experimentParametersApplyButton.Click += new System.EventHandler(this.ExperimentParametersApplyButtonClick);
     //
     // experimentParametersRevertButton
     //
     this.experimentParametersRevertButton.Anchor                  = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.experimentParametersRevertButton.CausesValidation        = false;
     this.experimentParametersRevertButton.Location                = new System.Drawing.Point(878, 593);
     this.experimentParametersRevertButton.Name                    = "experimentParametersRevertButton";
     this.experimentParametersRevertButton.Size                    = new System.Drawing.Size(75, 23);
     this.experimentParametersRevertButton.TabIndex                = 1;
     this.experimentParametersRevertButton.Text                    = "Revert";
     this.experimentParametersRevertButton.UseVisualStyleBackColor = true;
     this.experimentParametersRevertButton.Click                  += new System.EventHandler(this.ExperimentParametersRevertButtonClick);
     //
     // experimentParameterControl
     //
     this.experimentParameterControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                                     | System.Windows.Forms.AnchorStyles.Left)
                                                                                    | System.Windows.Forms.AnchorStyles.Right)));
     this.experimentParameterControl.CausesValidation        = false;
     this.experimentParameterControl.Location                = new System.Drawing.Point(3, 3);
     this.experimentParameterControl.Margin                  = new System.Windows.Forms.Padding(4);
     this.experimentParameterControl.Name                    = "experimentParameterControl";
     this.experimentParameterControl.OwnerComponentFieldName = null;
     this.experimentParameterControl.OwnerComponentName      = null;
     this.experimentParameterControl.Size                    = new System.Drawing.Size(993, 583);
     this.experimentParameterControl.TabIndex                = 0;
     this.experimentParameterControl.ParameterValueEdited   += new System.EventHandler(this.ExperimentParameterControlParameterValueEdited);
     //
     // agentParametersRevertButton
     //
     this.agentParametersRevertButton.Anchor                  = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.agentParametersRevertButton.CausesValidation        = false;
     this.agentParametersRevertButton.Location                = new System.Drawing.Point(892, 593);
     this.agentParametersRevertButton.Name                    = "agentParametersRevertButton";
     this.agentParametersRevertButton.Size                    = new System.Drawing.Size(75, 23);
     this.agentParametersRevertButton.TabIndex                = 1;
     this.agentParametersRevertButton.Text                    = "Revert";
     this.agentParametersRevertButton.UseVisualStyleBackColor = true;
     this.agentParametersRevertButton.Click                  += new System.EventHandler(this.AgentParametersRevertButtonClick);
     //
     // agentParametersApplyButton
     //
     this.agentParametersApplyButton.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.agentParametersApplyButton.Location = new System.Drawing.Point(811, 593);
     this.agentParametersApplyButton.Name     = "agentParametersApplyButton";
     this.agentParametersApplyButton.Size     = new System.Drawing.Size(75, 23);
     this.agentParametersApplyButton.TabIndex = 2;
     this.agentParametersApplyButton.Text     = "Apply";
     this.agentParametersApplyButton.UseVisualStyleBackColor = true;
     this.agentParametersApplyButton.Click += new System.EventHandler(this.AgentParametersApplyButtonClick);
     //
     // tabControl
     //
     this.tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                     | System.Windows.Forms.AnchorStyles.Left)
                                                                    | System.Windows.Forms.AnchorStyles.Right)));
     this.tabControl.Controls.Add(agentEnvironmentTabPage);
     this.tabControl.Controls.Add(this.environmentParametersTabPage);
     this.tabControl.Controls.Add(this.agentParametersTabPage);
     this.tabControl.Controls.Add(this.experimentParametersTabPage);
     this.tabControl.Controls.Add(this.reportingTabPage);
     this.tabControl.Location      = new System.Drawing.Point(12, 12);
     this.tabControl.Name          = "tabControl";
     this.tabControl.SelectedIndex = 0;
     this.tabControl.Size          = new System.Drawing.Size(1008, 645);
     this.tabControl.TabIndex      = 0;
     //
     // environmentParametersTabPage
     //
     this.environmentParametersTabPage.Controls.Add(this.environmentParametersApplyButton);
     this.environmentParametersTabPage.Controls.Add(this.environmentParametersRevertButton);
     this.environmentParametersTabPage.Controls.Add(this.environmentParameterControl);
     this.environmentParametersTabPage.Location = new System.Drawing.Point(4, 22);
     this.environmentParametersTabPage.Name     = "environmentParametersTabPage";
     this.environmentParametersTabPage.Size     = new System.Drawing.Size(1000, 619);
     this.environmentParametersTabPage.TabIndex = 2;
     this.environmentParametersTabPage.Text     = "Environment parameters";
     this.environmentParametersTabPage.UseVisualStyleBackColor = true;
     //
     // environmentParametersApplyButton
     //
     this.environmentParametersApplyButton.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.environmentParametersApplyButton.Location = new System.Drawing.Point(813, 593);
     this.environmentParametersApplyButton.Name     = "environmentParametersApplyButton";
     this.environmentParametersApplyButton.Size     = new System.Drawing.Size(75, 23);
     this.environmentParametersApplyButton.TabIndex = 2;
     this.environmentParametersApplyButton.Text     = "Apply";
     this.environmentParametersApplyButton.UseVisualStyleBackColor = true;
     this.environmentParametersApplyButton.Click += new System.EventHandler(this.EnvironmentParametersApplyButtonClick);
     //
     // environmentParametersRevertButton
     //
     this.environmentParametersRevertButton.Anchor                  = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.environmentParametersRevertButton.CausesValidation        = false;
     this.environmentParametersRevertButton.Location                = new System.Drawing.Point(894, 593);
     this.environmentParametersRevertButton.Name                    = "environmentParametersRevertButton";
     this.environmentParametersRevertButton.Size                    = new System.Drawing.Size(75, 23);
     this.environmentParametersRevertButton.TabIndex                = 1;
     this.environmentParametersRevertButton.Text                    = "Revert";
     this.environmentParametersRevertButton.UseVisualStyleBackColor = true;
     this.environmentParametersRevertButton.Click                  += new System.EventHandler(this.EnvironmentParametersRevertButtonClick);
     //
     // environmentParameterControl
     //
     this.environmentParameterControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                                      | System.Windows.Forms.AnchorStyles.Left)
                                                                                     | System.Windows.Forms.AnchorStyles.Right)));
     this.environmentParameterControl.CausesValidation        = false;
     this.environmentParameterControl.Location                = new System.Drawing.Point(3, 3);
     this.environmentParameterControl.Margin                  = new System.Windows.Forms.Padding(4);
     this.environmentParameterControl.Name                    = "environmentParameterControl";
     this.environmentParameterControl.OwnerComponentFieldName = null;
     this.environmentParameterControl.OwnerComponentName      = null;
     this.environmentParameterControl.Size                    = new System.Drawing.Size(993, 583);
     this.environmentParameterControl.TabIndex                = 0;
     this.environmentParameterControl.ParameterValueEdited   += new System.EventHandler(this.EnvironmentParameterControlParameterValueEdited);
     this.environmentParameterControl.ParametersChanged      += new System.EventHandler(this.EnvironmentParameterControlParametersChanged);
     //
     // agentParametersTabPage
     //
     this.agentParametersTabPage.Controls.Add(this.agentParametersApplyButton);
     this.agentParametersTabPage.Controls.Add(this.agentParametersRevertButton);
     this.agentParametersTabPage.Controls.Add(this.agentParameterControl);
     this.agentParametersTabPage.Location = new System.Drawing.Point(4, 22);
     this.agentParametersTabPage.Name     = "agentParametersTabPage";
     this.agentParametersTabPage.Size     = new System.Drawing.Size(1000, 619);
     this.agentParametersTabPage.TabIndex = 3;
     this.agentParametersTabPage.Text     = "Agent parameters";
     this.agentParametersTabPage.UseVisualStyleBackColor = true;
     //
     // agentParameterControl
     //
     this.agentParameterControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                                | System.Windows.Forms.AnchorStyles.Left)
                                                                               | System.Windows.Forms.AnchorStyles.Right)));
     this.agentParameterControl.CausesValidation        = false;
     this.agentParameterControl.Location                = new System.Drawing.Point(3, 3);
     this.agentParameterControl.Margin                  = new System.Windows.Forms.Padding(4);
     this.agentParameterControl.Name                    = "agentParameterControl";
     this.agentParameterControl.OwnerComponentFieldName = null;
     this.agentParameterControl.OwnerComponentName      = null;
     this.agentParameterControl.Size                    = new System.Drawing.Size(993, 583);
     this.agentParameterControl.TabIndex                = 0;
     this.agentParameterControl.ParameterValueEdited   += new System.EventHandler(this.AgentParameterControlParameterValueEdited);
     //
     // okButton
     //
     this.okButton.Anchor                  = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.okButton.DialogResult            = System.Windows.Forms.DialogResult.OK;
     this.okButton.Location                = new System.Drawing.Point(864, 663);
     this.okButton.Name                    = "okButton";
     this.okButton.Size                    = new System.Drawing.Size(75, 23);
     this.okButton.TabIndex                = 2;
     this.okButton.Text                    = "OK";
     this.okButton.UseVisualStyleBackColor = true;
     this.okButton.Click                  += new System.EventHandler(this.OkButtonClick);
     //
     // saveExperimentTemplateButton
     //
     this.saveExperimentTemplateButton.Location = new System.Drawing.Point(12, 663);
     this.saveExperimentTemplateButton.Name     = "saveExperimentTemplateButton";
     this.saveExperimentTemplateButton.Size     = new System.Drawing.Size(153, 23);
     this.saveExperimentTemplateButton.TabIndex = 3;
     this.saveExperimentTemplateButton.Text     = "Save experiment template";
     this.saveExperimentTemplateButton.UseVisualStyleBackColor = true;
     this.saveExperimentTemplateButton.Click += new System.EventHandler(this.SaveExperimentTemplateButtonClick);
     //
     // loadExperimentTemplateButton
     //
     this.loadExperimentTemplateButton.Location = new System.Drawing.Point(171, 663);
     this.loadExperimentTemplateButton.Name     = "loadExperimentTemplateButton";
     this.loadExperimentTemplateButton.Size     = new System.Drawing.Size(151, 23);
     this.loadExperimentTemplateButton.TabIndex = 4;
     this.loadExperimentTemplateButton.Text     = "Load experiment template";
     this.loadExperimentTemplateButton.UseVisualStyleBackColor = true;
     this.loadExperimentTemplateButton.Click += new System.EventHandler(this.LoadExperimentTemplateButtonClick);
     //
     // ExperimentSetupWindow
     //
     this.AcceptButton        = this.okButton;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.CancelButton        = this.cancelButton;
     this.ClientSize          = new System.Drawing.Size(1032, 698);
     this.Controls.Add(this.loadExperimentTemplateButton);
     this.Controls.Add(this.saveExperimentTemplateButton);
     this.Controls.Add(this.okButton);
     this.Controls.Add(this.cancelButton);
     this.Controls.Add(this.tabControl);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name = "ExperimentSetupWindow";
     this.Text = "ExperimentSetupWindow";
     agentEnvironmentTabPage.ResumeLayout(false);
     agentEnvironmentTabPage.PerformLayout();
     this.reportingTabPage.ResumeLayout(false);
     this.reportingTabPage.PerformLayout();
     this.experimentParametersTabPage.ResumeLayout(false);
     this.tabControl.ResumeLayout(false);
     this.environmentParametersTabPage.ResumeLayout(false);
     this.agentParametersTabPage.ResumeLayout(false);
     this.ResumeLayout(false);
 }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            System.Windows.Forms.TabControl tabControl1;
            System.Windows.Forms.TabPage tabPage1;
            System.Windows.Forms.GroupBox groupBox1;
            System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
            System.Windows.Forms.Label label1;
            System.Windows.Forms.CheckBox headerCheckBox;
            System.Windows.Forms.Button cancelButton;
            System.Windows.Forms.Button okButton;
            System.Windows.Forms.FlowLayoutPanel flowLayoutPanel1;
            this.namespaceTextBox = new System.Windows.Forms.TextBox();
            tabControl1 = new System.Windows.Forms.TabControl();
            tabPage1 = new System.Windows.Forms.TabPage();
            groupBox1 = new System.Windows.Forms.GroupBox();
            tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
            label1 = new System.Windows.Forms.Label();
            headerCheckBox = new System.Windows.Forms.CheckBox();
            cancelButton = new System.Windows.Forms.Button();
            okButton = new System.Windows.Forms.Button();
            flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
            tabControl1.SuspendLayout();
            tabPage1.SuspendLayout();
            groupBox1.SuspendLayout();
            tableLayoutPanel1.SuspendLayout();
            flowLayoutPanel1.SuspendLayout();
            this.SuspendLayout();
            // 
            // tabControl1
            // 
            tabControl1.Controls.Add(tabPage1);
            tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            tabControl1.Location = new System.Drawing.Point(5, 5);
            tabControl1.Name = "tabControl1";
            tabControl1.SelectedIndex = 0;
            tabControl1.Size = new System.Drawing.Size(284, 308);
            tabControl1.TabIndex = 0;
            // 
            // tabPage1
            // 
            tabPage1.Controls.Add(groupBox1);
            tabPage1.Location = new System.Drawing.Point(4, 24);
            tabPage1.Name = "tabPage1";
            tabPage1.Padding = new System.Windows.Forms.Padding(8, 5, 8, 5);
            tabPage1.Size = new System.Drawing.Size(276, 280);
            tabPage1.TabIndex = 0;
            tabPage1.Text = "Options";
            tabPage1.UseVisualStyleBackColor = true;
            // 
            // groupBox1
            // 
            groupBox1.AutoSize = true;
            groupBox1.Controls.Add(tableLayoutPanel1);
            groupBox1.Dock = System.Windows.Forms.DockStyle.Top;
            groupBox1.Location = new System.Drawing.Point(8, 5);
            groupBox1.Name = "groupBox1";
            groupBox1.Padding = new System.Windows.Forms.Padding(5, 3, 5, 5);
            groupBox1.Size = new System.Drawing.Size(260, 97);
            groupBox1.TabIndex = 0;
            groupBox1.TabStop = false;
            groupBox1.Text = "Code generation";
            // 
            // tableLayoutPanel1
            // 
            tableLayoutPanel1.AutoSize = true;
            tableLayoutPanel1.ColumnCount = 1;
            tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
            tableLayoutPanel1.Controls.Add(label1, 0, 0);
            tableLayoutPanel1.Controls.Add(headerCheckBox, 0, 2);
            tableLayoutPanel1.Controls.Add(this.namespaceTextBox, 0, 1);
            tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Top;
            tableLayoutPanel1.Location = new System.Drawing.Point(5, 19);
            tableLayoutPanel1.Name = "tableLayoutPanel1";
            tableLayoutPanel1.RowCount = 3;
            tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
            tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
            tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
            tableLayoutPanel1.Size = new System.Drawing.Size(250, 73);
            tableLayoutPanel1.TabIndex = 0;
            // 
            // label1
            // 
            label1.AutoSize = true;
            label1.Location = new System.Drawing.Point(0, 0);
            label1.Margin = new System.Windows.Forms.Padding(0, 0, 3, 0);
            label1.Name = "label1";
            label1.Size = new System.Drawing.Size(72, 15);
            label1.TabIndex = 0;
            label1.Text = "&Namespace:";
            // 
            // headerCheckBox
            // 
            headerCheckBox.AutoSize = true;
            headerCheckBox.Checked = global::ToolStripCustomizer.Properties.Settings.Default.IncludeHeader;
            headerCheckBox.CheckState = System.Windows.Forms.CheckState.Checked;
            headerCheckBox.DataBindings.Add(new System.Windows.Forms.Binding("Checked", global::ToolStripCustomizer.Properties.Settings.Default, "IncludeHeader", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            headerCheckBox.Location = new System.Drawing.Point(3, 51);
            headerCheckBox.Margin = new System.Windows.Forms.Padding(3, 7, 3, 3);
            headerCheckBox.Name = "headerCheckBox";
            headerCheckBox.Size = new System.Drawing.Size(196, 19);
            headerCheckBox.TabIndex = 4;
            headerCheckBox.Text = "Print <auto-generated/> header";
            headerCheckBox.UseVisualStyleBackColor = true;
            // 
            // namespaceTextBox
            // 
            this.namespaceTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
            this.namespaceTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", global::ToolStripCustomizer.Properties.Settings.Default, "DefaultNamespace", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this.namespaceTextBox.Location = new System.Drawing.Point(3, 18);
            this.namespaceTextBox.Name = "namespaceTextBox";
            this.namespaceTextBox.Size = new System.Drawing.Size(244, 23);
            this.namespaceTextBox.TabIndex = 1;
            this.namespaceTextBox.Text = global::ToolStripCustomizer.Properties.Settings.Default.DefaultNamespace;
            // 
            // cancelButton
            // 
            cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
            cancelButton.FlatStyle = System.Windows.Forms.FlatStyle.System;
            cancelButton.Location = new System.Drawing.Point(206, 8);
            cancelButton.Name = "cancelButton";
            cancelButton.Size = new System.Drawing.Size(75, 23);
            cancelButton.TabIndex = 2;
            cancelButton.Text = "Cancel";
            cancelButton.UseVisualStyleBackColor = true;
            // 
            // okButton
            // 
            okButton.DialogResult = System.Windows.Forms.DialogResult.OK;
            okButton.FlatStyle = System.Windows.Forms.FlatStyle.System;
            okButton.Location = new System.Drawing.Point(125, 8);
            okButton.Name = "okButton";
            okButton.Size = new System.Drawing.Size(75, 23);
            okButton.TabIndex = 1;
            okButton.Text = "OK";
            okButton.UseVisualStyleBackColor = true;
            // 
            // flowLayoutPanel1
            // 
            flowLayoutPanel1.AutoSize = true;
            flowLayoutPanel1.Controls.Add(cancelButton);
            flowLayoutPanel1.Controls.Add(okButton);
            flowLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Bottom;
            flowLayoutPanel1.FlowDirection = System.Windows.Forms.FlowDirection.RightToLeft;
            flowLayoutPanel1.Location = new System.Drawing.Point(5, 313);
            flowLayoutPanel1.Name = "flowLayoutPanel1";
            flowLayoutPanel1.Padding = new System.Windows.Forms.Padding(0, 5, 0, 0);
            flowLayoutPanel1.Size = new System.Drawing.Size(284, 34);
            flowLayoutPanel1.TabIndex = 3;
            // 
            // OptionsForm
            // 
            this.AcceptButton = okButton;
            this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
            this.CancelButton = cancelButton;
            this.ClientSize = new System.Drawing.Size(294, 352);
            this.Controls.Add(tabControl1);
            this.Controls.Add(flowLayoutPanel1);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.Name = "OptionsForm";
            this.Padding = new System.Windows.Forms.Padding(5);
            this.ShowInTaskbar = false;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
            this.Text = "Options";
            this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.OptionsFormFormClosing);
            this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.OptionsFormFormClosed);
            tabControl1.ResumeLayout(false);
            tabPage1.ResumeLayout(false);
            tabPage1.PerformLayout();
            groupBox1.ResumeLayout(false);
            groupBox1.PerformLayout();
            tableLayoutPanel1.ResumeLayout(false);
            tableLayoutPanel1.PerformLayout();
            flowLayoutPanel1.ResumeLayout(false);
            this.ResumeLayout(false);
            this.PerformLayout();

        }
Esempio n. 24
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Windows.Forms.ToolStrip                 m_toolStripData;
     System.Windows.Forms.ToolStripSeparator        toolStripSeparator1;
     System.Windows.Forms.ToolStripButton           m_tsbDataUpdateOptions;
     System.Windows.Forms.ToolStripButton           m_tsbDataUpdateHelp;
     System.Windows.Forms.ColumnHeader              m_colDataGeneration;
     System.Windows.Forms.ColumnHeader              m_colCreationTime;
     System.Windows.Forms.ColumnHeader              m_colDeployTime;
     System.Windows.Forms.ColumnHeader              m_colIncID;
     System.Windows.Forms.StatusStrip               m_statusStrip;
     System.Windows.Forms.TabControl                m_tabControl;
     System.Windows.Forms.TabPage                   m_datapPage;
     System.Windows.Forms.TabPage                   m_hubPage;
     System.Windows.Forms.ColumnHeader              m_colID;
     System.Windows.Forms.ColumnHeader              m_colVer;
     System.Windows.Forms.ColumnHeader              m_colSystem;
     System.Windows.Forms.ColumnHeader              m_colCreationDate;
     System.Windows.Forms.ColumnHeader              m_colPublishDate;
     System.Windows.Forms.ToolStrip                 m_toolStripHub;
     System.Windows.Forms.ToolStripButton           m_tsbAddApp;
     System.Windows.Forms.ToolStripSeparator        toolStripSeparator2;
     System.Windows.Forms.ToolStripButton           m_tsbAppUpdateOption;
     System.Windows.Forms.ToolStripButton           m_tsbAppUpdateHelp;
     System.Windows.Forms.ImageList                 m_ilSmall;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(UpdatesWindow));
     this.m_tsbBuildUpdate       = new System.Windows.Forms.ToolStripButton();
     this.m_tsbUploadDataUpdates = new System.Windows.Forms.ToolStripButton();
     this.m_sslUpdateKey         = new System.Windows.Forms.ToolStripStatusLabel();
     this.m_lvDataUpdates        = new System.Windows.Forms.ListView();
     this.m_lvAppUpdates         = new System.Windows.Forms.ListView();
     this.m_tsbUploadAppUpdates  = new System.Windows.Forms.ToolStripButton();
     m_toolStripData             = new System.Windows.Forms.ToolStrip();
     toolStripSeparator1         = new System.Windows.Forms.ToolStripSeparator();
     m_tsbDataUpdateOptions      = new System.Windows.Forms.ToolStripButton();
     m_tsbDataUpdateHelp         = new System.Windows.Forms.ToolStripButton();
     m_colDataGeneration         = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     m_colCreationTime           = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     m_colDeployTime             = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     m_colIncID           = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     m_statusStrip        = new System.Windows.Forms.StatusStrip();
     m_tabControl         = new System.Windows.Forms.TabControl();
     m_datapPage          = new System.Windows.Forms.TabPage();
     m_hubPage            = new System.Windows.Forms.TabPage();
     m_colID              = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     m_colVer             = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     m_colSystem          = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     m_colCreationDate    = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     m_colPublishDate     = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     m_toolStripHub       = new System.Windows.Forms.ToolStrip();
     m_tsbAddApp          = new System.Windows.Forms.ToolStripButton();
     toolStripSeparator2  = new System.Windows.Forms.ToolStripSeparator();
     m_tsbAppUpdateOption = new System.Windows.Forms.ToolStripButton();
     m_tsbAppUpdateHelp   = new System.Windows.Forms.ToolStripButton();
     m_ilSmall            = new System.Windows.Forms.ImageList(this.components);
     m_toolStripData.SuspendLayout();
     m_statusStrip.SuspendLayout();
     m_tabControl.SuspendLayout();
     m_datapPage.SuspendLayout();
     m_hubPage.SuspendLayout();
     m_toolStripHub.SuspendLayout();
     this.SuspendLayout();
     //
     // m_toolStripData
     //
     m_toolStripData.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.m_tsbBuildUpdate,
         this.m_tsbUploadDataUpdates,
         toolStripSeparator1,
         m_tsbDataUpdateOptions,
         m_tsbDataUpdateHelp
     });
     m_toolStripData.Location = new System.Drawing.Point(3, 3);
     m_toolStripData.Name     = "m_toolStripData";
     m_toolStripData.Size     = new System.Drawing.Size(659, 25);
     m_toolStripData.TabIndex = 0;
     //
     // m_tsbBuildUpdate
     //
     this.m_tsbBuildUpdate.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.m_tsbBuildUpdate.Enabled               = false;
     this.m_tsbBuildUpdate.Image                 = global::DGD.HubGovernor.Properties.Resources.build_update_16;
     this.m_tsbBuildUpdate.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.m_tsbBuildUpdate.Name   = "m_tsbBuildUpdate";
     this.m_tsbBuildUpdate.Size   = new System.Drawing.Size(23, 22);
     this.m_tsbBuildUpdate.Text   = "Construire la MAJ";
     this.m_tsbBuildUpdate.Click += new System.EventHandler(this.BuildDataUpdate_Click);
     //
     // m_tsbUploadDataUpdates
     //
     this.m_tsbUploadDataUpdates.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.m_tsbUploadDataUpdates.Enabled               = false;
     this.m_tsbUploadDataUpdates.Image                 = global::DGD.HubGovernor.Properties.Resources.upload_16;
     this.m_tsbUploadDataUpdates.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.m_tsbUploadDataUpdates.Name   = "m_tsbUploadDataUpdates";
     this.m_tsbUploadDataUpdates.Size   = new System.Drawing.Size(23, 22);
     this.m_tsbUploadDataUpdates.Text   = "Publier la MAJ";
     this.m_tsbUploadDataUpdates.Click += new System.EventHandler(this.UploadDataUpdates_Click);
     //
     // toolStripSeparator1
     //
     toolStripSeparator1.Name = "toolStripSeparator1";
     toolStripSeparator1.Size = new System.Drawing.Size(6, 25);
     //
     // m_tsbDataUpdateOptions
     //
     m_tsbDataUpdateOptions.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     m_tsbDataUpdateOptions.Image                 = global::DGD.HubGovernor.Properties.Resources.option_16;
     m_tsbDataUpdateOptions.ImageTransparentColor = System.Drawing.Color.Magenta;
     m_tsbDataUpdateOptions.Name = "m_tsbDataUpdateOptions";
     m_tsbDataUpdateOptions.Size = new System.Drawing.Size(23, 22);
     m_tsbDataUpdateOptions.Text = "Options";
     //
     // m_tsbDataUpdateHelp
     //
     m_tsbDataUpdateHelp.Alignment             = System.Windows.Forms.ToolStripItemAlignment.Right;
     m_tsbDataUpdateHelp.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     m_tsbDataUpdateHelp.Image                 = global::DGD.HubGovernor.Properties.Resources.help_16;
     m_tsbDataUpdateHelp.ImageTransparentColor = System.Drawing.Color.Magenta;
     m_tsbDataUpdateHelp.Name = "m_tsbDataUpdateHelp";
     m_tsbDataUpdateHelp.Size = new System.Drawing.Size(23, 22);
     m_tsbDataUpdateHelp.Text = "Aide";
     //
     // m_colDataGeneration
     //
     m_colDataGeneration.Text  = "Version des données requise";
     m_colDataGeneration.Width = 167;
     //
     // m_colCreationTime
     //
     m_colCreationTime.Text  = "Créer le";
     m_colCreationTime.Width = 156;
     //
     // m_colDeployTime
     //
     m_colDeployTime.Text  = "Publier le";
     m_colDeployTime.Width = 228;
     //
     // m_colIncID
     //
     m_colIncID.Text = "ID";
     //
     // m_statusStrip
     //
     m_statusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.m_sslUpdateKey
     });
     m_statusStrip.Location = new System.Drawing.Point(0, 287);
     m_statusStrip.Name     = "m_statusStrip";
     m_statusStrip.Size     = new System.Drawing.Size(673, 22);
     m_statusStrip.TabIndex = 2;
     //
     // m_sslUpdateKey
     //
     this.m_sslUpdateKey.Name = "m_sslUpdateKey";
     this.m_sslUpdateKey.Size = new System.Drawing.Size(0, 17);
     //
     // m_tabControl
     //
     m_tabControl.Appearance = System.Windows.Forms.TabAppearance.FlatButtons;
     m_tabControl.Controls.Add(m_datapPage);
     m_tabControl.Controls.Add(m_hubPage);
     m_tabControl.Dock          = System.Windows.Forms.DockStyle.Fill;
     m_tabControl.ImageList     = m_ilSmall;
     m_tabControl.Location      = new System.Drawing.Point(0, 0);
     m_tabControl.Name          = "m_tabControl";
     m_tabControl.SelectedIndex = 0;
     m_tabControl.Size          = new System.Drawing.Size(673, 287);
     m_tabControl.TabIndex      = 0;
     //
     // m_datapPage
     //
     m_datapPage.Controls.Add(this.m_lvDataUpdates);
     m_datapPage.Controls.Add(m_toolStripData);
     m_datapPage.ImageIndex = 1;
     m_datapPage.Location   = new System.Drawing.Point(4, 26);
     m_datapPage.Name       = "m_datapPage";
     m_datapPage.Padding    = new System.Windows.Forms.Padding(3);
     m_datapPage.Size       = new System.Drawing.Size(665, 257);
     m_datapPage.TabIndex   = 0;
     m_datapPage.Text       = "Données";
     m_datapPage.UseVisualStyleBackColor = true;
     //
     // m_lvDataUpdates
     //
     this.m_lvDataUpdates.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         m_colIncID,
         m_colDataGeneration,
         m_colCreationTime,
         m_colDeployTime
     });
     this.m_lvDataUpdates.Dock          = System.Windows.Forms.DockStyle.Fill;
     this.m_lvDataUpdates.FullRowSelect = true;
     this.m_lvDataUpdates.HideSelection = false;
     this.m_lvDataUpdates.Location      = new System.Drawing.Point(3, 28);
     this.m_lvDataUpdates.MultiSelect   = false;
     this.m_lvDataUpdates.Name          = "m_lvDataUpdates";
     this.m_lvDataUpdates.Size          = new System.Drawing.Size(659, 226);
     this.m_lvDataUpdates.TabIndex      = 1;
     this.m_lvDataUpdates.UseCompatibleStateImageBehavior = false;
     this.m_lvDataUpdates.View          = System.Windows.Forms.View.Details;
     this.m_lvDataUpdates.ItemActivate += new System.EventHandler(this.Updates_DataItemActivate);
     //
     // m_hubPage
     //
     m_hubPage.Controls.Add(this.m_lvAppUpdates);
     m_hubPage.Controls.Add(m_toolStripHub);
     m_hubPage.ImageIndex = 0;
     m_hubPage.Location   = new System.Drawing.Point(4, 26);
     m_hubPage.Name       = "m_hubPage";
     m_hubPage.Padding    = new System.Windows.Forms.Padding(3);
     m_hubPage.Size       = new System.Drawing.Size(665, 257);
     m_hubPage.TabIndex   = 1;
     m_hubPage.Text       = "Hub";
     m_hubPage.UseVisualStyleBackColor = true;
     //
     // m_lvAppUpdates
     //
     this.m_lvAppUpdates.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         m_colID,
         m_colVer,
         m_colSystem,
         m_colCreationDate,
         m_colPublishDate
     });
     this.m_lvAppUpdates.Dock          = System.Windows.Forms.DockStyle.Fill;
     this.m_lvAppUpdates.FullRowSelect = true;
     this.m_lvAppUpdates.HideSelection = false;
     this.m_lvAppUpdates.Location      = new System.Drawing.Point(3, 28);
     this.m_lvAppUpdates.Name          = "m_lvAppUpdates";
     this.m_lvAppUpdates.Size          = new System.Drawing.Size(659, 226);
     this.m_lvAppUpdates.TabIndex      = 1;
     this.m_lvAppUpdates.UseCompatibleStateImageBehavior = false;
     this.m_lvAppUpdates.View          = System.Windows.Forms.View.Details;
     this.m_lvAppUpdates.ItemActivate += new System.EventHandler(this.AppUpdates_ItemActivate);
     //
     // m_colID
     //
     m_colID.Text = "ID";
     //
     // m_colVer
     //
     m_colVer.Text  = "Version";
     m_colVer.Width = 91;
     //
     // m_colSystem
     //
     m_colSystem.Text  = "Système requis";
     m_colSystem.Width = 152;
     //
     // m_colCreationDate
     //
     m_colCreationDate.Text  = "Crée le";
     m_colCreationDate.Width = 159;
     //
     // m_colPublishDate
     //
     m_colPublishDate.Text  = "Publié le";
     m_colPublishDate.Width = 188;
     //
     // m_toolStripHub
     //
     m_toolStripHub.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         m_tsbAddApp,
         this.m_tsbUploadAppUpdates,
         toolStripSeparator2,
         m_tsbAppUpdateOption,
         m_tsbAppUpdateHelp
     });
     m_toolStripHub.Location = new System.Drawing.Point(3, 3);
     m_toolStripHub.Name     = "m_toolStripHub";
     m_toolStripHub.Size     = new System.Drawing.Size(659, 25);
     m_toolStripHub.TabIndex = 0;
     //
     // m_tsbAddApp
     //
     m_tsbAddApp.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     m_tsbAddApp.Image                 = global::DGD.HubGovernor.Properties.Resources.add_app_16;
     m_tsbAddApp.ImageTransparentColor = System.Drawing.Color.Magenta;
     m_tsbAddApp.Name   = "m_tsbAddApp";
     m_tsbAddApp.Size   = new System.Drawing.Size(23, 22);
     m_tsbAddApp.Text   = "Ajouter une mise à jour...";
     m_tsbAddApp.Click += new System.EventHandler(this.AddPackage_Click);
     //
     // m_tsbUploadAppUpdates
     //
     this.m_tsbUploadAppUpdates.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.m_tsbUploadAppUpdates.Image                 = global::DGD.HubGovernor.Properties.Resources.upload_16;
     this.m_tsbUploadAppUpdates.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.m_tsbUploadAppUpdates.Name   = "m_tsbUploadAppUpdates";
     this.m_tsbUploadAppUpdates.Size   = new System.Drawing.Size(23, 22);
     this.m_tsbUploadAppUpdates.Text   = "Publier";
     this.m_tsbUploadAppUpdates.Click += new System.EventHandler(this.UploadAppUpdates_Click);
     //
     // toolStripSeparator2
     //
     toolStripSeparator2.Name = "toolStripSeparator2";
     toolStripSeparator2.Size = new System.Drawing.Size(6, 25);
     //
     // m_tsbAppUpdateOption
     //
     m_tsbAppUpdateOption.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     m_tsbAppUpdateOption.Image                 = global::DGD.HubGovernor.Properties.Resources.option_16;
     m_tsbAppUpdateOption.ImageTransparentColor = System.Drawing.Color.Magenta;
     m_tsbAppUpdateOption.Name = "m_tsbAppUpdateOption";
     m_tsbAppUpdateOption.Size = new System.Drawing.Size(23, 22);
     m_tsbAppUpdateOption.Text = "Paramètres";
     //
     // m_tsbAppUpdateHelp
     //
     m_tsbAppUpdateHelp.Alignment             = System.Windows.Forms.ToolStripItemAlignment.Right;
     m_tsbAppUpdateHelp.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     m_tsbAppUpdateHelp.Image                 = global::DGD.HubGovernor.Properties.Resources.help_16;
     m_tsbAppUpdateHelp.ImageTransparentColor = System.Drawing.Color.Magenta;
     m_tsbAppUpdateHelp.Name = "m_tsbAppUpdateHelp";
     m_tsbAppUpdateHelp.Size = new System.Drawing.Size(23, 22);
     m_tsbAppUpdateHelp.Text = "Aide";
     //
     // m_ilSmall
     //
     m_ilSmall.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("m_ilSmall.ImageStream")));
     m_ilSmall.TransparentColor = System.Drawing.Color.Transparent;
     m_ilSmall.Images.SetKeyName(0, "hub_app_16.png");
     m_ilSmall.Images.SetKeyName(1, "database_16.png");
     //
     // UpdatesWindow
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor           = System.Drawing.SystemColors.Window;
     this.ClientSize          = new System.Drawing.Size(673, 309);
     this.Controls.Add(m_tabControl);
     this.Controls.Add(m_statusStrip);
     this.ForeColor   = System.Drawing.SystemColors.WindowText;
     this.Icon        = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox = false;
     this.Name        = "UpdatesWindow";
     this.Text        = "Gestionnaire des MAJ";
     m_toolStripData.ResumeLayout(false);
     m_toolStripData.PerformLayout();
     m_statusStrip.ResumeLayout(false);
     m_statusStrip.PerformLayout();
     m_tabControl.ResumeLayout(false);
     m_datapPage.ResumeLayout(false);
     m_datapPage.PerformLayout();
     m_hubPage.ResumeLayout(false);
     m_hubPage.PerformLayout();
     m_toolStripHub.ResumeLayout(false);
     m_toolStripHub.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.Windows.Forms.TabPage tabPageDisableSids;
            System.Windows.Forms.ColumnHeader columnHeaderName;
            System.Windows.Forms.ColumnHeader columnHeaderSid;
            System.Windows.Forms.ColumnHeader columnHeaderPrivilege;
            System.Windows.Forms.ColumnHeader columnHeader1;
            System.Windows.Forms.ColumnHeader columnHeader2;
            System.Windows.Forms.ColumnHeader columnHeaderDisplayName;
            this.checkBoxWriteRestricted = new System.Windows.Forms.CheckBox();
            this.checkBoxSandboxInert = new System.Windows.Forms.CheckBox();
            this.checkBoxMakeLuaToken = new System.Windows.Forms.CheckBox();
            this.listViewDisableSids = new System.Windows.Forms.ListView();
            this.contextMenuStripGroups = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.checkAllToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.uncheckAllToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.tabControl = new System.Windows.Forms.TabControl();
            this.tabPageDeletePrivs = new System.Windows.Forms.TabPage();
            this.checkBoxDisableMaxPrivs = new System.Windows.Forms.CheckBox();
            this.listViewDeletePrivs = new System.Windows.Forms.ListView();
            this.contextMenuStripPrivs = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.toolStripMenuItemCheckAllPrivs = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripMenuItemUncheckAllPrivs = new System.Windows.Forms.ToolStripMenuItem();
            this.tabPageRestrictedSids = new System.Windows.Forms.TabPage();
            this.btnAddAllGroups = new System.Windows.Forms.Button();
            this.listViewRestrictedSids = new System.Windows.Forms.ListView();
            this.contextMenuStripRestrictedSids = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.addSidToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.deleteSidToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.selectAllToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.btnCreate = new System.Windows.Forms.Button();
            this.btnCancel = new System.Windows.Forms.Button();
            this.btnCreateNew = new System.Windows.Forms.Button();
            tabPageDisableSids = new System.Windows.Forms.TabPage();
            columnHeaderName = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            columnHeaderSid = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            columnHeaderPrivilege = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            columnHeaderDisplayName = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            tabPageDisableSids.SuspendLayout();
            this.contextMenuStripGroups.SuspendLayout();
            this.tabControl.SuspendLayout();
            this.tabPageDeletePrivs.SuspendLayout();
            this.contextMenuStripPrivs.SuspendLayout();
            this.tabPageRestrictedSids.SuspendLayout();
            this.contextMenuStripRestrictedSids.SuspendLayout();
            this.SuspendLayout();
            // 
            // tabPageDisableSids
            // 
            tabPageDisableSids.Controls.Add(this.checkBoxWriteRestricted);
            tabPageDisableSids.Controls.Add(this.checkBoxSandboxInert);
            tabPageDisableSids.Controls.Add(this.checkBoxMakeLuaToken);
            tabPageDisableSids.Controls.Add(this.listViewDisableSids);
            tabPageDisableSids.Location = new System.Drawing.Point(4, 22);
            tabPageDisableSids.Name = "tabPageDisableSids";
            tabPageDisableSids.Padding = new System.Windows.Forms.Padding(3);
            tabPageDisableSids.Size = new System.Drawing.Size(693, 462);
            tabPageDisableSids.TabIndex = 0;
            tabPageDisableSids.Text = "Disable SIDs";
            tabPageDisableSids.UseVisualStyleBackColor = true;
            // 
            // checkBoxWriteRestricted
            // 
            this.checkBoxWriteRestricted.AutoSize = true;
            this.checkBoxWriteRestricted.Location = new System.Drawing.Point(273, 6);
            this.checkBoxWriteRestricted.Name = "checkBoxWriteRestricted";
            this.checkBoxWriteRestricted.Size = new System.Drawing.Size(102, 17);
            this.checkBoxWriteRestricted.TabIndex = 3;
            this.checkBoxWriteRestricted.Text = "Write Restricted";
            this.checkBoxWriteRestricted.UseVisualStyleBackColor = true;
            // 
            // checkBoxSandboxInert
            // 
            this.checkBoxSandboxInert.AutoSize = true;
            this.checkBoxSandboxInert.Location = new System.Drawing.Point(150, 6);
            this.checkBoxSandboxInert.Name = "checkBoxSandboxInert";
            this.checkBoxSandboxInert.Size = new System.Drawing.Size(92, 17);
            this.checkBoxSandboxInert.TabIndex = 2;
            this.checkBoxSandboxInert.Text = "Sandbox Inert";
            this.checkBoxSandboxInert.UseVisualStyleBackColor = true;
            // 
            // checkBoxMakeLuaToken
            // 
            this.checkBoxMakeLuaToken.AutoSize = true;
            this.checkBoxMakeLuaToken.Location = new System.Drawing.Point(7, 6);
            this.checkBoxMakeLuaToken.Name = "checkBoxMakeLuaToken";
            this.checkBoxMakeLuaToken.Size = new System.Drawing.Size(111, 17);
            this.checkBoxMakeLuaToken.TabIndex = 1;
            this.checkBoxMakeLuaToken.Text = "Make LUA Token";
            this.checkBoxMakeLuaToken.UseVisualStyleBackColor = true;
            // 
            // listViewDisableSids
            // 
            this.listViewDisableSids.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.listViewDisableSids.CheckBoxes = true;
            this.listViewDisableSids.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            columnHeaderName,
            columnHeaderSid});
            this.listViewDisableSids.ContextMenuStrip = this.contextMenuStripGroups;
            this.listViewDisableSids.FullRowSelect = true;
            this.listViewDisableSids.Location = new System.Drawing.Point(0, 29);
            this.listViewDisableSids.MultiSelect = false;
            this.listViewDisableSids.Name = "listViewDisableSids";
            this.listViewDisableSids.Size = new System.Drawing.Size(690, 433);
            this.listViewDisableSids.TabIndex = 0;
            this.listViewDisableSids.UseCompatibleStateImageBehavior = false;
            this.listViewDisableSids.View = System.Windows.Forms.View.Details;
            // 
            // columnHeaderName
            // 
            columnHeaderName.Text = "Name";
            columnHeaderName.Width = 131;
            // 
            // columnHeaderSid
            // 
            columnHeaderSid.Text = "Sid";
            columnHeaderSid.Width = 235;
            // 
            // contextMenuStripGroups
            // 
            this.contextMenuStripGroups.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.checkAllToolStripMenuItem,
            this.uncheckAllToolStripMenuItem});
            this.contextMenuStripGroups.Name = "contextMenuStripGroups";
            this.contextMenuStripGroups.Size = new System.Drawing.Size(138, 48);
            // 
            // checkAllToolStripMenuItem
            // 
            this.checkAllToolStripMenuItem.Name = "checkAllToolStripMenuItem";
            this.checkAllToolStripMenuItem.Size = new System.Drawing.Size(137, 22);
            this.checkAllToolStripMenuItem.Text = "Check All";
            this.checkAllToolStripMenuItem.Click += new System.EventHandler(this.checkAllToolStripMenuItem_Click);
            // 
            // uncheckAllToolStripMenuItem
            // 
            this.uncheckAllToolStripMenuItem.Name = "uncheckAllToolStripMenuItem";
            this.uncheckAllToolStripMenuItem.Size = new System.Drawing.Size(137, 22);
            this.uncheckAllToolStripMenuItem.Text = "Uncheck All";
            this.uncheckAllToolStripMenuItem.Click += new System.EventHandler(this.uncheckAllToolStripMenuItem_Click);
            // 
            // columnHeaderPrivilege
            // 
            columnHeaderPrivilege.Text = "Privilege";
            columnHeaderPrivilege.Width = 200;
            // 
            // columnHeader1
            // 
            columnHeader1.Text = "Name";
            columnHeader1.Width = 131;
            // 
            // columnHeader2
            // 
            columnHeader2.Text = "Sid";
            columnHeader2.Width = 235;
            // 
            // columnHeaderDisplayName
            // 
            columnHeaderDisplayName.Text = "Display Name";
            columnHeaderDisplayName.Width = 426;
            // 
            // tabControl
            // 
            this.tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.tabControl.Controls.Add(tabPageDisableSids);
            this.tabControl.Controls.Add(this.tabPageDeletePrivs);
            this.tabControl.Controls.Add(this.tabPageRestrictedSids);
            this.tabControl.Location = new System.Drawing.Point(1, 12);
            this.tabControl.Name = "tabControl";
            this.tabControl.SelectedIndex = 0;
            this.tabControl.Size = new System.Drawing.Size(701, 488);
            this.tabControl.TabIndex = 0;
            // 
            // tabPageDeletePrivs
            // 
            this.tabPageDeletePrivs.Controls.Add(this.checkBoxDisableMaxPrivs);
            this.tabPageDeletePrivs.Controls.Add(this.listViewDeletePrivs);
            this.tabPageDeletePrivs.Location = new System.Drawing.Point(4, 22);
            this.tabPageDeletePrivs.Name = "tabPageDeletePrivs";
            this.tabPageDeletePrivs.Padding = new System.Windows.Forms.Padding(3);
            this.tabPageDeletePrivs.Size = new System.Drawing.Size(693, 462);
            this.tabPageDeletePrivs.TabIndex = 1;
            this.tabPageDeletePrivs.Text = "Delete Privileges";
            this.tabPageDeletePrivs.UseVisualStyleBackColor = true;
            // 
            // checkBoxDisableMaxPrivs
            // 
            this.checkBoxDisableMaxPrivs.AutoSize = true;
            this.checkBoxDisableMaxPrivs.Location = new System.Drawing.Point(6, 6);
            this.checkBoxDisableMaxPrivs.Name = "checkBoxDisableMaxPrivs";
            this.checkBoxDisableMaxPrivs.Size = new System.Drawing.Size(156, 17);
            this.checkBoxDisableMaxPrivs.TabIndex = 1;
            this.checkBoxDisableMaxPrivs.Text = "Disable Maximum Privileges";
            this.checkBoxDisableMaxPrivs.UseVisualStyleBackColor = true;
            // 
            // listViewDeletePrivs
            // 
            this.listViewDeletePrivs.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.listViewDeletePrivs.CheckBoxes = true;
            this.listViewDeletePrivs.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            columnHeaderPrivilege,
            columnHeaderDisplayName});
            this.listViewDeletePrivs.ContextMenuStrip = this.contextMenuStripPrivs;
            this.listViewDeletePrivs.FullRowSelect = true;
            this.listViewDeletePrivs.Location = new System.Drawing.Point(0, 26);
            this.listViewDeletePrivs.MultiSelect = false;
            this.listViewDeletePrivs.Name = "listViewDeletePrivs";
            this.listViewDeletePrivs.Size = new System.Drawing.Size(693, 436);
            this.listViewDeletePrivs.TabIndex = 0;
            this.listViewDeletePrivs.UseCompatibleStateImageBehavior = false;
            this.listViewDeletePrivs.View = System.Windows.Forms.View.Details;
            // 
            // contextMenuStripPrivs
            // 
            this.contextMenuStripPrivs.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.toolStripMenuItemCheckAllPrivs,
            this.toolStripMenuItemUncheckAllPrivs});
            this.contextMenuStripPrivs.Name = "contextMenuStripGroupsPrivs";
            this.contextMenuStripPrivs.Size = new System.Drawing.Size(138, 48);
            // 
            // toolStripMenuItemCheckAllPrivs
            // 
            this.toolStripMenuItemCheckAllPrivs.Name = "toolStripMenuItemCheckAllPrivs";
            this.toolStripMenuItemCheckAllPrivs.Size = new System.Drawing.Size(137, 22);
            this.toolStripMenuItemCheckAllPrivs.Text = "Check All";
            this.toolStripMenuItemCheckAllPrivs.Click += new System.EventHandler(this.toolStripMenuItemCheckAllPrivs_Click);
            // 
            // toolStripMenuItemUncheckAllPrivs
            // 
            this.toolStripMenuItemUncheckAllPrivs.Name = "toolStripMenuItemUncheckAllPrivs";
            this.toolStripMenuItemUncheckAllPrivs.Size = new System.Drawing.Size(137, 22);
            this.toolStripMenuItemUncheckAllPrivs.Text = "Uncheck All";
            this.toolStripMenuItemUncheckAllPrivs.Click += new System.EventHandler(this.toolStripMenuItemUncheckAllPrivs_Click);
            // 
            // tabPageRestrictedSids
            // 
            this.tabPageRestrictedSids.Controls.Add(this.btnAddAllGroups);
            this.tabPageRestrictedSids.Controls.Add(this.listViewRestrictedSids);
            this.tabPageRestrictedSids.Location = new System.Drawing.Point(4, 22);
            this.tabPageRestrictedSids.Name = "tabPageRestrictedSids";
            this.tabPageRestrictedSids.Padding = new System.Windows.Forms.Padding(3);
            this.tabPageRestrictedSids.Size = new System.Drawing.Size(693, 462);
            this.tabPageRestrictedSids.TabIndex = 2;
            this.tabPageRestrictedSids.Text = "Restricted SIDs";
            this.tabPageRestrictedSids.UseVisualStyleBackColor = true;
            // 
            // btnAddAllGroups
            // 
            this.btnAddAllGroups.Location = new System.Drawing.Point(6, 6);
            this.btnAddAllGroups.Name = "btnAddAllGroups";
            this.btnAddAllGroups.Size = new System.Drawing.Size(107, 23);
            this.btnAddAllGroups.TabIndex = 2;
            this.btnAddAllGroups.Text = "Add All Group SIDs";
            this.btnAddAllGroups.UseVisualStyleBackColor = true;
            this.btnAddAllGroups.Click += new System.EventHandler(this.btnAddAllGroups_Click);
            // 
            // listViewRestrictedSids
            // 
            this.listViewRestrictedSids.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.listViewRestrictedSids.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            columnHeader1,
            columnHeader2});
            this.listViewRestrictedSids.ContextMenuStrip = this.contextMenuStripRestrictedSids;
            this.listViewRestrictedSids.FullRowSelect = true;
            this.listViewRestrictedSids.Location = new System.Drawing.Point(3, 34);
            this.listViewRestrictedSids.Name = "listViewRestrictedSids";
            this.listViewRestrictedSids.Size = new System.Drawing.Size(687, 425);
            this.listViewRestrictedSids.TabIndex = 1;
            this.listViewRestrictedSids.UseCompatibleStateImageBehavior = false;
            this.listViewRestrictedSids.View = System.Windows.Forms.View.Details;
            // 
            // contextMenuStripRestrictedSids
            // 
            this.contextMenuStripRestrictedSids.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.addSidToolStripMenuItem,
            this.deleteSidToolStripMenuItem,
            this.selectAllToolStripMenuItem});
            this.contextMenuStripRestrictedSids.Name = "contextMenuStripRestrictedSids";
            this.contextMenuStripRestrictedSids.Size = new System.Drawing.Size(165, 70);
            // 
            // addSidToolStripMenuItem
            // 
            this.addSidToolStripMenuItem.Name = "addSidToolStripMenuItem";
            this.addSidToolStripMenuItem.ShortcutKeys = System.Windows.Forms.Keys.Insert;
            this.addSidToolStripMenuItem.Size = new System.Drawing.Size(164, 22);
            this.addSidToolStripMenuItem.Text = "Add Sid";
            this.addSidToolStripMenuItem.Click += new System.EventHandler(this.addSidToolStripMenuItem_Click);
            // 
            // deleteSidToolStripMenuItem
            // 
            this.deleteSidToolStripMenuItem.Name = "deleteSidToolStripMenuItem";
            this.deleteSidToolStripMenuItem.ShortcutKeys = System.Windows.Forms.Keys.Delete;
            this.deleteSidToolStripMenuItem.Size = new System.Drawing.Size(164, 22);
            this.deleteSidToolStripMenuItem.Text = "Delete Sid";
            this.deleteSidToolStripMenuItem.Click += new System.EventHandler(this.deleteSidToolStripMenuItem_Click);
            // 
            // selectAllToolStripMenuItem
            // 
            this.selectAllToolStripMenuItem.Name = "selectAllToolStripMenuItem";
            this.selectAllToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.A)));
            this.selectAllToolStripMenuItem.Size = new System.Drawing.Size(164, 22);
            this.selectAllToolStripMenuItem.Text = "Select All";
            this.selectAllToolStripMenuItem.Click += new System.EventHandler(this.selectAllToolStripMenuItem_Click);
            // 
            // btnCreate
            // 
            this.btnCreate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.btnCreate.Location = new System.Drawing.Point(172, 506);
            this.btnCreate.Name = "btnCreate";
            this.btnCreate.Size = new System.Drawing.Size(75, 23);
            this.btnCreate.TabIndex = 1;
            this.btnCreate.Text = "Create";
            this.btnCreate.UseVisualStyleBackColor = true;
            this.btnCreate.Click += new System.EventHandler(this.btnCreate_Click);
            // 
            // btnCancel
            // 
            this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
            this.btnCancel.Location = new System.Drawing.Point(410, 506);
            this.btnCancel.Name = "btnCancel";
            this.btnCancel.Size = new System.Drawing.Size(75, 23);
            this.btnCancel.TabIndex = 2;
            this.btnCancel.Text = "Cancel";
            this.btnCancel.UseVisualStyleBackColor = true;
            // 
            // btnCreateNew
            // 
            this.btnCreateNew.Location = new System.Drawing.Point(290, 506);
            this.btnCreateNew.Name = "btnCreateNew";
            this.btnCreateNew.Size = new System.Drawing.Size(75, 23);
            this.btnCreateNew.TabIndex = 3;
            this.btnCreateNew.Text = "Create New";
            this.btnCreateNew.UseVisualStyleBackColor = true;
            this.btnCreateNew.Click += new System.EventHandler(this.btnCreateNew_Click);
            // 
            // CreateRestrictedTokenForm
            // 
            this.AcceptButton = this.btnCreate;
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.CancelButton = this.btnCancel;
            this.ClientSize = new System.Drawing.Size(697, 532);
            this.Controls.Add(this.btnCreateNew);
            this.Controls.Add(this.btnCancel);
            this.Controls.Add(this.btnCreate);
            this.Controls.Add(this.tabControl);
            this.Name = "CreateRestrictedTokenForm";
            this.Text = "Create Restricted Token";
            tabPageDisableSids.ResumeLayout(false);
            tabPageDisableSids.PerformLayout();
            this.contextMenuStripGroups.ResumeLayout(false);
            this.tabControl.ResumeLayout(false);
            this.tabPageDeletePrivs.ResumeLayout(false);
            this.tabPageDeletePrivs.PerformLayout();
            this.contextMenuStripPrivs.ResumeLayout(false);
            this.tabPageRestrictedSids.ResumeLayout(false);
            this.contextMenuStripRestrictedSids.ResumeLayout(false);
            this.ResumeLayout(false);

        }
Esempio n. 26
0
		/// <summary>
		/// Required method for Designer support - do not modify
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
			System.Windows.Forms.MenuStrip menuStrip1;
			System.Windows.Forms.ToolStripMenuItem fileToolStripMenuItem;
			System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
			System.Windows.Forms.ToolStripMenuItem editToolStripMenu;
			System.Windows.Forms.TabControl tabControl1;
			System.Windows.Forms.TabPage tabPage1;
			System.Windows.Forms.FlowLayoutPanel flowLayoutPanel1;
			System.Windows.Forms.TabPage tabPage2;
			System.Windows.Forms.FlowLayoutPanel flowLayoutPanel2;
			System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(BrowserForm));
			this.newToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
			this.openLevelToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
			this.saveLevelToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
			this.saveAsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
			this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
			this.deselectToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
			this.listLoadedModels = new System.Windows.Forms.ListBox();
			this.btnLoadModel = new System.Windows.Forms.Button();
			this.btnCreateActor = new System.Windows.Forms.Button();
			this.listActors = new System.Windows.Forms.ListBox();
			this.btnDeleteActor = new System.Windows.Forms.Button();
			menuStrip1 = new System.Windows.Forms.MenuStrip();
			fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
			toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
			editToolStripMenu = new System.Windows.Forms.ToolStripMenuItem();
			tabControl1 = new System.Windows.Forms.TabControl();
			tabPage1 = new System.Windows.Forms.TabPage();
			flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
			tabPage2 = new System.Windows.Forms.TabPage();
			flowLayoutPanel2 = new System.Windows.Forms.FlowLayoutPanel();
			menuStrip1.SuspendLayout();
			tabControl1.SuspendLayout();
			tabPage1.SuspendLayout();
			flowLayoutPanel1.SuspendLayout();
			tabPage2.SuspendLayout();
			flowLayoutPanel2.SuspendLayout();
			this.SuspendLayout();
			// 
			// menuStrip1
			// 
			menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            fileToolStripMenuItem,
            editToolStripMenu});
			menuStrip1.Location = new System.Drawing.Point(0, 0);
			menuStrip1.Name = "menuStrip1";
			menuStrip1.Size = new System.Drawing.Size(533, 24);
			menuStrip1.TabIndex = 1;
			menuStrip1.Text = "menuStrip1";
			// 
			// fileToolStripMenuItem
			// 
			fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.newToolStripMenuItem,
            this.openLevelToolStripMenuItem,
            this.saveLevelToolStripMenuItem,
            this.saveAsToolStripMenuItem,
            toolStripSeparator1,
            this.exitToolStripMenuItem});
			fileToolStripMenuItem.Name = "fileToolStripMenuItem";
			fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
			fileToolStripMenuItem.Text = "&File";
			// 
			// newToolStripMenuItem
			// 
			this.newToolStripMenuItem.Name = "newToolStripMenuItem";
			this.newToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.N)));
			this.newToolStripMenuItem.Size = new System.Drawing.Size(177, 22);
			this.newToolStripMenuItem.Text = "&New";
			this.newToolStripMenuItem.Click += new System.EventHandler(this.newToolStripMenuItem_Click);
			// 
			// openLevelToolStripMenuItem
			// 
			this.openLevelToolStripMenuItem.Name = "openLevelToolStripMenuItem";
			this.openLevelToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.O)));
			this.openLevelToolStripMenuItem.Size = new System.Drawing.Size(177, 22);
			this.openLevelToolStripMenuItem.Text = "&Open";
			this.openLevelToolStripMenuItem.Click += new System.EventHandler(this.openLevelToolStripMenuItem_Click);
			// 
			// saveLevelToolStripMenuItem
			// 
			this.saveLevelToolStripMenuItem.Name = "saveLevelToolStripMenuItem";
			this.saveLevelToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.S)));
			this.saveLevelToolStripMenuItem.Size = new System.Drawing.Size(177, 22);
			this.saveLevelToolStripMenuItem.Text = "&Save";
			this.saveLevelToolStripMenuItem.Click += new System.EventHandler(this.saveLevelToolStripMenuItem_Click);
			// 
			// saveAsToolStripMenuItem
			// 
			this.saveAsToolStripMenuItem.Name = "saveAsToolStripMenuItem";
			this.saveAsToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Alt) 
            | System.Windows.Forms.Keys.S)));
			this.saveAsToolStripMenuItem.Size = new System.Drawing.Size(177, 22);
			this.saveAsToolStripMenuItem.Text = "Save &As";
			this.saveAsToolStripMenuItem.Click += new System.EventHandler(this.saveAsToolStripMenuItem_Click);
			// 
			// toolStripSeparator1
			// 
			toolStripSeparator1.Name = "toolStripSeparator1";
			toolStripSeparator1.Size = new System.Drawing.Size(174, 6);
			// 
			// exitToolStripMenuItem
			// 
			this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
			this.exitToolStripMenuItem.ShortcutKeyDisplayString = "Alt+F4";
			this.exitToolStripMenuItem.Size = new System.Drawing.Size(177, 22);
			this.exitToolStripMenuItem.Text = "E&xit";
			this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
			// 
			// editToolStripMenu
			// 
			editToolStripMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.deselectToolStripMenuItem});
			editToolStripMenu.Name = "editToolStripMenu";
			editToolStripMenu.Size = new System.Drawing.Size(39, 20);
			editToolStripMenu.Text = "&Edit";
			// 
			// deselectToolStripMenuItem
			// 
			this.deselectToolStripMenuItem.Name = "deselectToolStripMenuItem";
			this.deselectToolStripMenuItem.ShortcutKeyDisplayString = "Esc";
			this.deselectToolStripMenuItem.Size = new System.Drawing.Size(142, 22);
			this.deselectToolStripMenuItem.Text = "&Deselect";
			this.deselectToolStripMenuItem.Click += new System.EventHandler(this.deselectToolStripMenuItem_Click);
			// 
			// tabControl1
			// 
			tabControl1.Controls.Add(tabPage1);
			tabControl1.Controls.Add(tabPage2);
			tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
			tabControl1.Location = new System.Drawing.Point(0, 24);
			tabControl1.Name = "tabControl1";
			tabControl1.SelectedIndex = 0;
			tabControl1.Size = new System.Drawing.Size(533, 491);
			tabControl1.TabIndex = 2;
			// 
			// tabPage1
			// 
			tabPage1.Controls.Add(this.listLoadedModels);
			tabPage1.Controls.Add(flowLayoutPanel1);
			tabPage1.Location = new System.Drawing.Point(4, 22);
			tabPage1.Name = "tabPage1";
			tabPage1.Padding = new System.Windows.Forms.Padding(3);
			tabPage1.Size = new System.Drawing.Size(525, 465);
			tabPage1.TabIndex = 0;
			tabPage1.Text = "Models";
			tabPage1.UseVisualStyleBackColor = true;
			// 
			// listLoadedModels
			// 
			this.listLoadedModels.Dock = System.Windows.Forms.DockStyle.Fill;
			this.listLoadedModels.FormattingEnabled = true;
			this.listLoadedModels.Location = new System.Drawing.Point(3, 3);
			this.listLoadedModels.Name = "listLoadedModels";
			this.listLoadedModels.Size = new System.Drawing.Size(519, 430);
			this.listLoadedModels.Sorted = true;
			this.listLoadedModels.TabIndex = 1;
			this.listLoadedModels.SelectedIndexChanged += new System.EventHandler(this.listLoadedModels_SelectedIndexChanged);
			// 
			// flowLayoutPanel1
			// 
			flowLayoutPanel1.AutoSize = true;
			flowLayoutPanel1.Controls.Add(this.btnLoadModel);
			flowLayoutPanel1.Controls.Add(this.btnCreateActor);
			flowLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Bottom;
			flowLayoutPanel1.Location = new System.Drawing.Point(3, 433);
			flowLayoutPanel1.Name = "flowLayoutPanel1";
			flowLayoutPanel1.Size = new System.Drawing.Size(519, 29);
			flowLayoutPanel1.TabIndex = 0;
			// 
			// btnLoadModel
			// 
			this.btnLoadModel.AutoSize = true;
			this.btnLoadModel.Location = new System.Drawing.Point(3, 3);
			this.btnLoadModel.Name = "btnLoadModel";
			this.btnLoadModel.Size = new System.Drawing.Size(75, 23);
			this.btnLoadModel.TabIndex = 0;
			this.btnLoadModel.Text = "Load Model";
			this.btnLoadModel.UseVisualStyleBackColor = true;
			this.btnLoadModel.Click += new System.EventHandler(this.btnLoadModel_Click);
			// 
			// btnCreateActor
			// 
			this.btnCreateActor.AutoSize = true;
			this.btnCreateActor.Location = new System.Drawing.Point(84, 3);
			this.btnCreateActor.Name = "btnCreateActor";
			this.btnCreateActor.Size = new System.Drawing.Size(76, 23);
			this.btnCreateActor.TabIndex = 1;
			this.btnCreateActor.Text = "Create Actor";
			this.btnCreateActor.UseVisualStyleBackColor = true;
			this.btnCreateActor.Click += new System.EventHandler(this.btnCreateActor_Click);
			// 
			// tabPage2
			// 
			tabPage2.Controls.Add(this.listActors);
			tabPage2.Controls.Add(flowLayoutPanel2);
			tabPage2.Location = new System.Drawing.Point(4, 22);
			tabPage2.Name = "tabPage2";
			tabPage2.Padding = new System.Windows.Forms.Padding(3);
			tabPage2.Size = new System.Drawing.Size(525, 465);
			tabPage2.TabIndex = 1;
			tabPage2.Text = "Actors";
			tabPage2.UseVisualStyleBackColor = true;
			// 
			// listActors
			// 
			this.listActors.Dock = System.Windows.Forms.DockStyle.Fill;
			this.listActors.FormattingEnabled = true;
			this.listActors.Location = new System.Drawing.Point(3, 3);
			this.listActors.Name = "listActors";
			this.listActors.Size = new System.Drawing.Size(519, 430);
			this.listActors.Sorted = true;
			this.listActors.TabIndex = 1;
			this.listActors.SelectedIndexChanged += new System.EventHandler(this.listActors_SelectedIndexChanged);
			// 
			// flowLayoutPanel2
			// 
			flowLayoutPanel2.AutoSize = true;
			flowLayoutPanel2.Controls.Add(this.btnDeleteActor);
			flowLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Bottom;
			flowLayoutPanel2.Location = new System.Drawing.Point(3, 433);
			flowLayoutPanel2.Name = "flowLayoutPanel2";
			flowLayoutPanel2.Size = new System.Drawing.Size(519, 29);
			flowLayoutPanel2.TabIndex = 0;
			// 
			// btnDeleteActor
			// 
			this.btnDeleteActor.AutoSize = true;
			this.btnDeleteActor.Location = new System.Drawing.Point(3, 3);
			this.btnDeleteActor.Name = "btnDeleteActor";
			this.btnDeleteActor.Size = new System.Drawing.Size(76, 23);
			this.btnDeleteActor.TabIndex = 0;
			this.btnDeleteActor.Text = "Delete Actor";
			this.btnDeleteActor.UseVisualStyleBackColor = true;
			this.btnDeleteActor.Click += new System.EventHandler(this.btnDeleteActor_Click);
			// 
			// BrowserForm
			// 
			this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.ClientSize = new System.Drawing.Size(533, 515);
			this.Controls.Add(tabControl1);
			this.Controls.Add(menuStrip1);
			this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
			this.MainMenuStrip = menuStrip1;
			this.Name = "BrowserForm";
			this.ShowInTaskbar = false;
			this.Text = "Browser";
			this.Load += new System.EventHandler(this.BrowserForm_Load);
			menuStrip1.ResumeLayout(false);
			menuStrip1.PerformLayout();
			tabControl1.ResumeLayout(false);
			tabPage1.ResumeLayout(false);
			tabPage1.PerformLayout();
			flowLayoutPanel1.ResumeLayout(false);
			flowLayoutPanel1.PerformLayout();
			tabPage2.ResumeLayout(false);
			tabPage2.PerformLayout();
			flowLayoutPanel2.ResumeLayout(false);
			flowLayoutPanel2.PerformLayout();
			this.ResumeLayout(false);
			this.PerformLayout();

		}
Esempio n. 27
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Windows.Forms.TabPage      tabPageDisableSids;
     System.Windows.Forms.ColumnHeader columnHeaderName;
     System.Windows.Forms.ColumnHeader columnHeaderSid;
     System.Windows.Forms.ColumnHeader columnHeaderPrivilege;
     System.Windows.Forms.ColumnHeader columnHeader1;
     System.Windows.Forms.ColumnHeader columnHeader2;
     System.Windows.Forms.ColumnHeader columnHeaderDisplayName;
     this.checkBoxWriteRestricted     = new System.Windows.Forms.CheckBox();
     this.checkBoxSandboxInert        = new System.Windows.Forms.CheckBox();
     this.checkBoxMakeLuaToken        = new System.Windows.Forms.CheckBox();
     this.listViewDisableSids         = new System.Windows.Forms.ListView();
     this.contextMenuStripGroups      = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.checkAllToolStripMenuItem   = new System.Windows.Forms.ToolStripMenuItem();
     this.uncheckAllToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.tabControl                       = new System.Windows.Forms.TabControl();
     this.tabPageDeletePrivs               = new System.Windows.Forms.TabPage();
     this.checkBoxDisableMaxPrivs          = new System.Windows.Forms.CheckBox();
     this.listViewDeletePrivs              = new System.Windows.Forms.ListView();
     this.contextMenuStripPrivs            = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.toolStripMenuItemCheckAllPrivs   = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItemUncheckAllPrivs = new System.Windows.Forms.ToolStripMenuItem();
     this.tabPageRestrictedSids            = new System.Windows.Forms.TabPage();
     this.btnAddAllGroups                  = new System.Windows.Forms.Button();
     this.listViewRestrictedSids           = new System.Windows.Forms.ListView();
     this.contextMenuStripRestrictedSids   = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.addSidToolStripMenuItem          = new System.Windows.Forms.ToolStripMenuItem();
     this.deleteSidToolStripMenuItem       = new System.Windows.Forms.ToolStripMenuItem();
     this.selectAllToolStripMenuItem       = new System.Windows.Forms.ToolStripMenuItem();
     this.btnCreate          = new System.Windows.Forms.Button();
     this.btnCancel          = new System.Windows.Forms.Button();
     this.btnCreateNew       = new System.Windows.Forms.Button();
     tabPageDisableSids      = new System.Windows.Forms.TabPage();
     columnHeaderName        = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     columnHeaderSid         = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     columnHeaderPrivilege   = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     columnHeader1           = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     columnHeader2           = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     columnHeaderDisplayName = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     tabPageDisableSids.SuspendLayout();
     this.contextMenuStripGroups.SuspendLayout();
     this.tabControl.SuspendLayout();
     this.tabPageDeletePrivs.SuspendLayout();
     this.contextMenuStripPrivs.SuspendLayout();
     this.tabPageRestrictedSids.SuspendLayout();
     this.contextMenuStripRestrictedSids.SuspendLayout();
     this.SuspendLayout();
     //
     // tabPageDisableSids
     //
     tabPageDisableSids.Controls.Add(this.checkBoxWriteRestricted);
     tabPageDisableSids.Controls.Add(this.checkBoxSandboxInert);
     tabPageDisableSids.Controls.Add(this.checkBoxMakeLuaToken);
     tabPageDisableSids.Controls.Add(this.listViewDisableSids);
     tabPageDisableSids.Location = new System.Drawing.Point(4, 22);
     tabPageDisableSids.Name     = "tabPageDisableSids";
     tabPageDisableSids.Padding  = new System.Windows.Forms.Padding(3);
     tabPageDisableSids.Size     = new System.Drawing.Size(693, 462);
     tabPageDisableSids.TabIndex = 0;
     tabPageDisableSids.Text     = "Disable SIDs";
     tabPageDisableSids.UseVisualStyleBackColor = true;
     //
     // checkBoxWriteRestricted
     //
     this.checkBoxWriteRestricted.AutoSize = true;
     this.checkBoxWriteRestricted.Location = new System.Drawing.Point(273, 6);
     this.checkBoxWriteRestricted.Name     = "checkBoxWriteRestricted";
     this.checkBoxWriteRestricted.Size     = new System.Drawing.Size(102, 17);
     this.checkBoxWriteRestricted.TabIndex = 3;
     this.checkBoxWriteRestricted.Text     = "Write Restricted";
     this.checkBoxWriteRestricted.UseVisualStyleBackColor = true;
     //
     // checkBoxSandboxInert
     //
     this.checkBoxSandboxInert.AutoSize = true;
     this.checkBoxSandboxInert.Location = new System.Drawing.Point(150, 6);
     this.checkBoxSandboxInert.Name     = "checkBoxSandboxInert";
     this.checkBoxSandboxInert.Size     = new System.Drawing.Size(92, 17);
     this.checkBoxSandboxInert.TabIndex = 2;
     this.checkBoxSandboxInert.Text     = "Sandbox Inert";
     this.checkBoxSandboxInert.UseVisualStyleBackColor = true;
     //
     // checkBoxMakeLuaToken
     //
     this.checkBoxMakeLuaToken.AutoSize = true;
     this.checkBoxMakeLuaToken.Location = new System.Drawing.Point(7, 6);
     this.checkBoxMakeLuaToken.Name     = "checkBoxMakeLuaToken";
     this.checkBoxMakeLuaToken.Size     = new System.Drawing.Size(111, 17);
     this.checkBoxMakeLuaToken.TabIndex = 1;
     this.checkBoxMakeLuaToken.Text     = "Make LUA Token";
     this.checkBoxMakeLuaToken.UseVisualStyleBackColor = true;
     //
     // listViewDisableSids
     //
     this.listViewDisableSids.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                              | System.Windows.Forms.AnchorStyles.Left)
                                                                             | System.Windows.Forms.AnchorStyles.Right)));
     this.listViewDisableSids.CheckBoxes = true;
     this.listViewDisableSids.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         columnHeaderName,
         columnHeaderSid
     });
     this.listViewDisableSids.ContextMenuStrip = this.contextMenuStripGroups;
     this.listViewDisableSids.FullRowSelect    = true;
     this.listViewDisableSids.Location         = new System.Drawing.Point(0, 29);
     this.listViewDisableSids.MultiSelect      = false;
     this.listViewDisableSids.Name             = "listViewDisableSids";
     this.listViewDisableSids.Size             = new System.Drawing.Size(690, 433);
     this.listViewDisableSids.TabIndex         = 0;
     this.listViewDisableSids.UseCompatibleStateImageBehavior = false;
     this.listViewDisableSids.View = System.Windows.Forms.View.Details;
     //
     // columnHeaderName
     //
     columnHeaderName.Text  = "Name";
     columnHeaderName.Width = 131;
     //
     // columnHeaderSid
     //
     columnHeaderSid.Text  = "Sid";
     columnHeaderSid.Width = 235;
     //
     // contextMenuStripGroups
     //
     this.contextMenuStripGroups.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.checkAllToolStripMenuItem,
         this.uncheckAllToolStripMenuItem
     });
     this.contextMenuStripGroups.Name = "contextMenuStripGroups";
     this.contextMenuStripGroups.Size = new System.Drawing.Size(138, 48);
     //
     // checkAllToolStripMenuItem
     //
     this.checkAllToolStripMenuItem.Name   = "checkAllToolStripMenuItem";
     this.checkAllToolStripMenuItem.Size   = new System.Drawing.Size(137, 22);
     this.checkAllToolStripMenuItem.Text   = "Check All";
     this.checkAllToolStripMenuItem.Click += new System.EventHandler(this.checkAllToolStripMenuItem_Click);
     //
     // uncheckAllToolStripMenuItem
     //
     this.uncheckAllToolStripMenuItem.Name   = "uncheckAllToolStripMenuItem";
     this.uncheckAllToolStripMenuItem.Size   = new System.Drawing.Size(137, 22);
     this.uncheckAllToolStripMenuItem.Text   = "Uncheck All";
     this.uncheckAllToolStripMenuItem.Click += new System.EventHandler(this.uncheckAllToolStripMenuItem_Click);
     //
     // columnHeaderPrivilege
     //
     columnHeaderPrivilege.Text  = "Privilege";
     columnHeaderPrivilege.Width = 200;
     //
     // columnHeader1
     //
     columnHeader1.Text  = "Name";
     columnHeader1.Width = 131;
     //
     // columnHeader2
     //
     columnHeader2.Text  = "Sid";
     columnHeader2.Width = 235;
     //
     // columnHeaderDisplayName
     //
     columnHeaderDisplayName.Text  = "Display Name";
     columnHeaderDisplayName.Width = 426;
     //
     // tabControl
     //
     this.tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                     | System.Windows.Forms.AnchorStyles.Left)
                                                                    | System.Windows.Forms.AnchorStyles.Right)));
     this.tabControl.Controls.Add(tabPageDisableSids);
     this.tabControl.Controls.Add(this.tabPageDeletePrivs);
     this.tabControl.Controls.Add(this.tabPageRestrictedSids);
     this.tabControl.Location      = new System.Drawing.Point(1, 12);
     this.tabControl.Name          = "tabControl";
     this.tabControl.SelectedIndex = 0;
     this.tabControl.Size          = new System.Drawing.Size(701, 488);
     this.tabControl.TabIndex      = 0;
     //
     // tabPageDeletePrivs
     //
     this.tabPageDeletePrivs.Controls.Add(this.checkBoxDisableMaxPrivs);
     this.tabPageDeletePrivs.Controls.Add(this.listViewDeletePrivs);
     this.tabPageDeletePrivs.Location = new System.Drawing.Point(4, 22);
     this.tabPageDeletePrivs.Name     = "tabPageDeletePrivs";
     this.tabPageDeletePrivs.Padding  = new System.Windows.Forms.Padding(3);
     this.tabPageDeletePrivs.Size     = new System.Drawing.Size(693, 462);
     this.tabPageDeletePrivs.TabIndex = 1;
     this.tabPageDeletePrivs.Text     = "Delete Privileges";
     this.tabPageDeletePrivs.UseVisualStyleBackColor = true;
     //
     // checkBoxDisableMaxPrivs
     //
     this.checkBoxDisableMaxPrivs.AutoSize = true;
     this.checkBoxDisableMaxPrivs.Location = new System.Drawing.Point(6, 6);
     this.checkBoxDisableMaxPrivs.Name     = "checkBoxDisableMaxPrivs";
     this.checkBoxDisableMaxPrivs.Size     = new System.Drawing.Size(156, 17);
     this.checkBoxDisableMaxPrivs.TabIndex = 1;
     this.checkBoxDisableMaxPrivs.Text     = "Disable Maximum Privileges";
     this.checkBoxDisableMaxPrivs.UseVisualStyleBackColor = true;
     //
     // listViewDeletePrivs
     //
     this.listViewDeletePrivs.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                              | System.Windows.Forms.AnchorStyles.Left)
                                                                             | System.Windows.Forms.AnchorStyles.Right)));
     this.listViewDeletePrivs.CheckBoxes = true;
     this.listViewDeletePrivs.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         columnHeaderPrivilege,
         columnHeaderDisplayName
     });
     this.listViewDeletePrivs.ContextMenuStrip = this.contextMenuStripPrivs;
     this.listViewDeletePrivs.FullRowSelect    = true;
     this.listViewDeletePrivs.Location         = new System.Drawing.Point(0, 26);
     this.listViewDeletePrivs.MultiSelect      = false;
     this.listViewDeletePrivs.Name             = "listViewDeletePrivs";
     this.listViewDeletePrivs.Size             = new System.Drawing.Size(693, 436);
     this.listViewDeletePrivs.TabIndex         = 0;
     this.listViewDeletePrivs.UseCompatibleStateImageBehavior = false;
     this.listViewDeletePrivs.View = System.Windows.Forms.View.Details;
     //
     // contextMenuStripPrivs
     //
     this.contextMenuStripPrivs.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.toolStripMenuItemCheckAllPrivs,
         this.toolStripMenuItemUncheckAllPrivs
     });
     this.contextMenuStripPrivs.Name = "contextMenuStripGroupsPrivs";
     this.contextMenuStripPrivs.Size = new System.Drawing.Size(138, 48);
     //
     // toolStripMenuItemCheckAllPrivs
     //
     this.toolStripMenuItemCheckAllPrivs.Name   = "toolStripMenuItemCheckAllPrivs";
     this.toolStripMenuItemCheckAllPrivs.Size   = new System.Drawing.Size(137, 22);
     this.toolStripMenuItemCheckAllPrivs.Text   = "Check All";
     this.toolStripMenuItemCheckAllPrivs.Click += new System.EventHandler(this.toolStripMenuItemCheckAllPrivs_Click);
     //
     // toolStripMenuItemUncheckAllPrivs
     //
     this.toolStripMenuItemUncheckAllPrivs.Name   = "toolStripMenuItemUncheckAllPrivs";
     this.toolStripMenuItemUncheckAllPrivs.Size   = new System.Drawing.Size(137, 22);
     this.toolStripMenuItemUncheckAllPrivs.Text   = "Uncheck All";
     this.toolStripMenuItemUncheckAllPrivs.Click += new System.EventHandler(this.toolStripMenuItemUncheckAllPrivs_Click);
     //
     // tabPageRestrictedSids
     //
     this.tabPageRestrictedSids.Controls.Add(this.btnAddAllGroups);
     this.tabPageRestrictedSids.Controls.Add(this.listViewRestrictedSids);
     this.tabPageRestrictedSids.Location = new System.Drawing.Point(4, 22);
     this.tabPageRestrictedSids.Name     = "tabPageRestrictedSids";
     this.tabPageRestrictedSids.Padding  = new System.Windows.Forms.Padding(3);
     this.tabPageRestrictedSids.Size     = new System.Drawing.Size(693, 462);
     this.tabPageRestrictedSids.TabIndex = 2;
     this.tabPageRestrictedSids.Text     = "Restricted SIDs";
     this.tabPageRestrictedSids.UseVisualStyleBackColor = true;
     //
     // btnAddAllGroups
     //
     this.btnAddAllGroups.Location = new System.Drawing.Point(6, 6);
     this.btnAddAllGroups.Name     = "btnAddAllGroups";
     this.btnAddAllGroups.Size     = new System.Drawing.Size(107, 23);
     this.btnAddAllGroups.TabIndex = 2;
     this.btnAddAllGroups.Text     = "Add All Group SIDs";
     this.btnAddAllGroups.UseVisualStyleBackColor = true;
     this.btnAddAllGroups.Click += new System.EventHandler(this.btnAddAllGroups_Click);
     //
     // listViewRestrictedSids
     //
     this.listViewRestrictedSids.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                                 | System.Windows.Forms.AnchorStyles.Left)
                                                                                | System.Windows.Forms.AnchorStyles.Right)));
     this.listViewRestrictedSids.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         columnHeader1,
         columnHeader2
     });
     this.listViewRestrictedSids.ContextMenuStrip = this.contextMenuStripRestrictedSids;
     this.listViewRestrictedSids.FullRowSelect    = true;
     this.listViewRestrictedSids.Location         = new System.Drawing.Point(3, 34);
     this.listViewRestrictedSids.Name             = "listViewRestrictedSids";
     this.listViewRestrictedSids.Size             = new System.Drawing.Size(687, 425);
     this.listViewRestrictedSids.TabIndex         = 1;
     this.listViewRestrictedSids.UseCompatibleStateImageBehavior = false;
     this.listViewRestrictedSids.View = System.Windows.Forms.View.Details;
     //
     // contextMenuStripRestrictedSids
     //
     this.contextMenuStripRestrictedSids.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.addSidToolStripMenuItem,
         this.deleteSidToolStripMenuItem,
         this.selectAllToolStripMenuItem
     });
     this.contextMenuStripRestrictedSids.Name = "contextMenuStripRestrictedSids";
     this.contextMenuStripRestrictedSids.Size = new System.Drawing.Size(165, 70);
     //
     // addSidToolStripMenuItem
     //
     this.addSidToolStripMenuItem.Name         = "addSidToolStripMenuItem";
     this.addSidToolStripMenuItem.ShortcutKeys = System.Windows.Forms.Keys.Insert;
     this.addSidToolStripMenuItem.Size         = new System.Drawing.Size(164, 22);
     this.addSidToolStripMenuItem.Text         = "Add Sid";
     this.addSidToolStripMenuItem.Click       += new System.EventHandler(this.addSidToolStripMenuItem_Click);
     //
     // deleteSidToolStripMenuItem
     //
     this.deleteSidToolStripMenuItem.Name         = "deleteSidToolStripMenuItem";
     this.deleteSidToolStripMenuItem.ShortcutKeys = System.Windows.Forms.Keys.Delete;
     this.deleteSidToolStripMenuItem.Size         = new System.Drawing.Size(164, 22);
     this.deleteSidToolStripMenuItem.Text         = "Delete Sid";
     this.deleteSidToolStripMenuItem.Click       += new System.EventHandler(this.deleteSidToolStripMenuItem_Click);
     //
     // selectAllToolStripMenuItem
     //
     this.selectAllToolStripMenuItem.Name         = "selectAllToolStripMenuItem";
     this.selectAllToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.A)));
     this.selectAllToolStripMenuItem.Size         = new System.Drawing.Size(164, 22);
     this.selectAllToolStripMenuItem.Text         = "Select All";
     this.selectAllToolStripMenuItem.Click       += new System.EventHandler(this.selectAllToolStripMenuItem_Click);
     //
     // btnCreate
     //
     this.btnCreate.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnCreate.Location = new System.Drawing.Point(172, 506);
     this.btnCreate.Name     = "btnCreate";
     this.btnCreate.Size     = new System.Drawing.Size(75, 23);
     this.btnCreate.TabIndex = 1;
     this.btnCreate.Text     = "Create";
     this.btnCreate.UseVisualStyleBackColor = true;
     this.btnCreate.Click += new System.EventHandler(this.btnCreate_Click);
     //
     // btnCancel
     //
     this.btnCancel.Anchor                  = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnCancel.DialogResult            = System.Windows.Forms.DialogResult.Cancel;
     this.btnCancel.Location                = new System.Drawing.Point(410, 506);
     this.btnCancel.Name                    = "btnCancel";
     this.btnCancel.Size                    = new System.Drawing.Size(75, 23);
     this.btnCancel.TabIndex                = 2;
     this.btnCancel.Text                    = "Cancel";
     this.btnCancel.UseVisualStyleBackColor = true;
     //
     // btnCreateNew
     //
     this.btnCreateNew.Location = new System.Drawing.Point(290, 506);
     this.btnCreateNew.Name     = "btnCreateNew";
     this.btnCreateNew.Size     = new System.Drawing.Size(75, 23);
     this.btnCreateNew.TabIndex = 3;
     this.btnCreateNew.Text     = "Create New";
     this.btnCreateNew.UseVisualStyleBackColor = true;
     this.btnCreateNew.Click += new System.EventHandler(this.btnCreateNew_Click);
     //
     // CreateRestrictedTokenForm
     //
     this.AcceptButton        = this.btnCreate;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.CancelButton        = this.btnCancel;
     this.ClientSize          = new System.Drawing.Size(697, 532);
     this.Controls.Add(this.btnCreateNew);
     this.Controls.Add(this.btnCancel);
     this.Controls.Add(this.btnCreate);
     this.Controls.Add(this.tabControl);
     this.Name = "CreateRestrictedTokenForm";
     this.Text = "Create Restricted Token";
     tabPageDisableSids.ResumeLayout(false);
     tabPageDisableSids.PerformLayout();
     this.contextMenuStripGroups.ResumeLayout(false);
     this.tabControl.ResumeLayout(false);
     this.tabPageDeletePrivs.ResumeLayout(false);
     this.tabPageDeletePrivs.PerformLayout();
     this.contextMenuStripPrivs.ResumeLayout(false);
     this.tabPageRestrictedSids.ResumeLayout(false);
     this.contextMenuStripRestrictedSids.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Esempio n. 28
0
      /// <summary>
      /// Required method for Designer support - do not modify
      /// the contents of this method with the code editor.
      /// </summary>
      private void InitializeComponent() {
         System.Windows.Forms.TabPage tabPage1;
         this.label6 = new System.Windows.Forms.Label();
         this.listBox2 = new System.Windows.Forms.ListBox();
         this.textBox4 = new System.Windows.Forms.TextBox();
         this.textBox3 = new System.Windows.Forms.TextBox();
         this.textBox2 = new System.Windows.Forms.TextBox();
         this.textBox1 = new System.Windows.Forms.TextBox();
         this.label5 = new System.Windows.Forms.Label();
         this.label4 = new System.Windows.Forms.Label();
         this.label3 = new System.Windows.Forms.Label();
         this.label2 = new System.Windows.Forms.Label();
         this.pictureBox1 = new System.Windows.Forms.PictureBox();
         this.listBox1 = new System.Windows.Forms.ListBox();
         this.label1 = new System.Windows.Forms.Label();
         this.button1 = new System.Windows.Forms.Button();
         this.button2 = new System.Windows.Forms.Button();
         this.button3 = new System.Windows.Forms.Button();
         this.button4 = new System.Windows.Forms.Button();
         this.tabControl1 = new System.Windows.Forms.TabControl();
         this.tabPage2 = new System.Windows.Forms.TabPage();
         this.button10 = new System.Windows.Forms.Button();
         this.comboBox1 = new System.Windows.Forms.ComboBox();
         this.textBox10 = new System.Windows.Forms.TextBox();
         this.label12 = new System.Windows.Forms.Label();
         this.button9 = new System.Windows.Forms.Button();
         this.button8 = new System.Windows.Forms.Button();
         this.button7 = new System.Windows.Forms.Button();
         this.button6 = new System.Windows.Forms.Button();
         this.textBox9 = new System.Windows.Forms.TextBox();
         this.label11 = new System.Windows.Forms.Label();
         this.button5 = new System.Windows.Forms.Button();
         this.checkedListBox1 = new System.Windows.Forms.CheckedListBox();
         this.textBox5 = new System.Windows.Forms.TextBox();
         this.textBox6 = new System.Windows.Forms.TextBox();
         this.textBox8 = new System.Windows.Forms.TextBox();
         this.label7 = new System.Windows.Forms.Label();
         this.label8 = new System.Windows.Forms.Label();
         this.label9 = new System.Windows.Forms.Label();
         this.label10 = new System.Windows.Forms.Label();
         tabPage1 = new System.Windows.Forms.TabPage();
         tabPage1.SuspendLayout();
         ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
         this.tabControl1.SuspendLayout();
         this.tabPage2.SuspendLayout();
         this.SuspendLayout();
         // 
         // tabPage1
         // 
         tabPage1.Controls.Add(this.label6);
         tabPage1.Controls.Add(this.listBox2);
         tabPage1.Controls.Add(this.textBox4);
         tabPage1.Controls.Add(this.textBox3);
         tabPage1.Controls.Add(this.textBox2);
         tabPage1.Controls.Add(this.textBox1);
         tabPage1.Controls.Add(this.label5);
         tabPage1.Controls.Add(this.label4);
         tabPage1.Controls.Add(this.label3);
         tabPage1.Controls.Add(this.label2);
         tabPage1.Controls.Add(this.pictureBox1);
         tabPage1.Location = new System.Drawing.Point(4, 22);
         tabPage1.Name = "tabPage1";
         tabPage1.Padding = new System.Windows.Forms.Padding(3);
         tabPage1.Size = new System.Drawing.Size(386, 585);
         tabPage1.TabIndex = 0;
         tabPage1.Text = "Информация о телефоне";
         tabPage1.UseVisualStyleBackColor = true;
         // 
         // label6
         // 
         this.label6.AutoSize = true;
         this.label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
         this.label6.Location = new System.Drawing.Point(12, 436);
         this.label6.Name = "label6";
         this.label6.Size = new System.Drawing.Size(50, 16);
         this.label6.TabIndex = 10;
         this.label6.Text = "Опции";
         // 
         // listBox2
         // 
         this.listBox2.FormattingEnabled = true;
         this.listBox2.Location = new System.Drawing.Point(9, 459);
         this.listBox2.Name = "listBox2";
         this.listBox2.Size = new System.Drawing.Size(360, 121);
         this.listBox2.TabIndex = 9;
         // 
         // textBox4
         // 
         this.textBox4.Location = new System.Drawing.Point(237, 401);
         this.textBox4.Name = "textBox4";
         this.textBox4.ReadOnly = true;
         this.textBox4.Size = new System.Drawing.Size(132, 20);
         this.textBox4.TabIndex = 8;
         // 
         // textBox3
         // 
         this.textBox3.Location = new System.Drawing.Point(237, 364);
         this.textBox3.Name = "textBox3";
         this.textBox3.ReadOnly = true;
         this.textBox3.Size = new System.Drawing.Size(132, 20);
         this.textBox3.TabIndex = 7;
         // 
         // textBox2
         // 
         this.textBox2.Location = new System.Drawing.Point(237, 331);
         this.textBox2.Name = "textBox2";
         this.textBox2.ReadOnly = true;
         this.textBox2.Size = new System.Drawing.Size(132, 20);
         this.textBox2.TabIndex = 6;
         // 
         // textBox1
         // 
         this.textBox1.Location = new System.Drawing.Point(237, 301);
         this.textBox1.Name = "textBox1";
         this.textBox1.ReadOnly = true;
         this.textBox1.Size = new System.Drawing.Size(132, 20);
         this.textBox1.TabIndex = 5;
         // 
         // label5
         // 
         this.label5.AutoSize = true;
         this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
         this.label5.ForeColor = System.Drawing.Color.Red;
         this.label5.Location = new System.Drawing.Point(6, 405);
         this.label5.Name = "label5";
         this.label5.Size = new System.Drawing.Size(45, 16);
         this.label5.TabIndex = 4;
         this.label5.Text = "Цена";
         // 
         // label4
         // 
         this.label4.AutoSize = true;
         this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
         this.label4.ForeColor = System.Drawing.Color.Blue;
         this.label4.Location = new System.Drawing.Point(6, 368);
         this.label4.Name = "label4";
         this.label4.Size = new System.Drawing.Size(39, 16);
         this.label4.TabIndex = 3;
         this.label4.Text = "CPU";
         // 
         // label3
         // 
         this.label3.AutoSize = true;
         this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
         this.label3.ForeColor = System.Drawing.Color.Blue;
         this.label3.Location = new System.Drawing.Point(6, 335);
         this.label3.Name = "label3";
         this.label3.Size = new System.Drawing.Size(29, 16);
         this.label3.TabIndex = 2;
         this.label3.Text = "OS";
         // 
         // label2
         // 
         this.label2.AutoSize = true;
         this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
         this.label2.ForeColor = System.Drawing.Color.Blue;
         this.label2.Location = new System.Drawing.Point(6, 305);
         this.label2.Name = "label2";
         this.label2.Size = new System.Drawing.Size(64, 16);
         this.label2.TabIndex = 1;
         this.label2.Text = "Модель";
         // 
         // pictureBox1
         // 
         this.pictureBox1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
         this.pictureBox1.Location = new System.Drawing.Point(6, 6);
         this.pictureBox1.Name = "pictureBox1";
         this.pictureBox1.Size = new System.Drawing.Size(363, 276);
         this.pictureBox1.TabIndex = 0;
         this.pictureBox1.TabStop = false;
         // 
         // listBox1
         // 
         this.listBox1.FormattingEnabled = true;
         this.listBox1.Location = new System.Drawing.Point(27, 50);
         this.listBox1.Name = "listBox1";
         this.listBox1.Size = new System.Drawing.Size(248, 459);
         this.listBox1.TabIndex = 0;
         this.listBox1.SelectedIndexChanged += new System.EventHandler(this.listBox1_SelectedIndexChanged);
         // 
         // label1
         // 
         this.label1.AutoSize = true;
         this.label1.Location = new System.Drawing.Point(24, 20);
         this.label1.Name = "label1";
         this.label1.Size = new System.Drawing.Size(154, 13);
         this.label1.TabIndex = 1;
         this.label1.Text = "Список телефонов магазина";
         // 
         // button1
         // 
         this.button1.Location = new System.Drawing.Point(27, 527);
         this.button1.Name = "button1";
         this.button1.Size = new System.Drawing.Size(115, 45);
         this.button1.TabIndex = 2;
         this.button1.Text = "Удалить текущую";
         this.button1.UseVisualStyleBackColor = true;
         this.button1.Click += new System.EventHandler(this.button1_Click);
         // 
         // button2
         // 
         this.button2.Location = new System.Drawing.Point(148, 527);
         this.button2.Name = "button2";
         this.button2.Size = new System.Drawing.Size(127, 45);
         this.button2.TabIndex = 3;
         this.button2.Text = "Очистить список";
         this.button2.UseVisualStyleBackColor = true;
         this.button2.Click += new System.EventHandler(this.button2_Click);
         // 
         // button3
         // 
         this.button3.Location = new System.Drawing.Point(148, 594);
         this.button3.Name = "button3";
         this.button3.Size = new System.Drawing.Size(127, 45);
         this.button3.TabIndex = 4;
         this.button3.Text = "Сохранить в файл";
         this.button3.UseVisualStyleBackColor = true;
         this.button3.Click += new System.EventHandler(this.button3_Click);
         // 
         // button4
         // 
         this.button4.Location = new System.Drawing.Point(27, 594);
         this.button4.Name = "button4";
         this.button4.Size = new System.Drawing.Size(115, 45);
         this.button4.TabIndex = 5;
         this.button4.Text = "Прочитать из файла";
         this.button4.UseVisualStyleBackColor = true;
         this.button4.Click += new System.EventHandler(this.button4_Click);
         // 
         // tabControl1
         // 
         this.tabControl1.Controls.Add(tabPage1);
         this.tabControl1.Controls.Add(this.tabPage2);
         this.tabControl1.Location = new System.Drawing.Point(307, 38);
         this.tabControl1.Name = "tabControl1";
         this.tabControl1.SelectedIndex = 0;
         this.tabControl1.Size = new System.Drawing.Size(394, 611);
         this.tabControl1.TabIndex = 6;
         // 
         // tabPage2
         // 
         this.tabPage2.Controls.Add(this.button10);
         this.tabPage2.Controls.Add(this.comboBox1);
         this.tabPage2.Controls.Add(this.textBox10);
         this.tabPage2.Controls.Add(this.label12);
         this.tabPage2.Controls.Add(this.button9);
         this.tabPage2.Controls.Add(this.button8);
         this.tabPage2.Controls.Add(this.button7);
         this.tabPage2.Controls.Add(this.button6);
         this.tabPage2.Controls.Add(this.textBox9);
         this.tabPage2.Controls.Add(this.label11);
         this.tabPage2.Controls.Add(this.button5);
         this.tabPage2.Controls.Add(this.checkedListBox1);
         this.tabPage2.Controls.Add(this.textBox5);
         this.tabPage2.Controls.Add(this.textBox6);
         this.tabPage2.Controls.Add(this.textBox8);
         this.tabPage2.Controls.Add(this.label7);
         this.tabPage2.Controls.Add(this.label8);
         this.tabPage2.Controls.Add(this.label9);
         this.tabPage2.Controls.Add(this.label10);
         this.tabPage2.Location = new System.Drawing.Point(4, 22);
         this.tabPage2.Name = "tabPage2";
         this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
         this.tabPage2.Size = new System.Drawing.Size(386, 585);
         this.tabPage2.TabIndex = 1;
         this.tabPage2.Text = "Редактирование информации";
         this.tabPage2.UseVisualStyleBackColor = true;
         // 
         // button10
         // 
         this.button10.Location = new System.Drawing.Point(339, 106);
         this.button10.Name = "button10";
         this.button10.Size = new System.Drawing.Size(24, 21);
         this.button10.TabIndex = 29;
         this.button10.Text = "...";
         this.button10.UseVisualStyleBackColor = true;
         this.button10.Click += new System.EventHandler(this.button10_Click);
         // 
         // comboBox1
         // 
         this.comboBox1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
         this.comboBox1.FormattingEnabled = true;
         this.comboBox1.Items.AddRange(new object[] {
            "Android 2.0",
            "Android 4.0",
            "Android 5.0",
            "Windows Phone 8.0",
            "Windows Phone 8.1",
            "Windows Phone 10.0",
            "iOS"});
         this.comboBox1.Location = new System.Drawing.Point(220, 39);
         this.comboBox1.Name = "comboBox1";
         this.comboBox1.Size = new System.Drawing.Size(143, 21);
         this.comboBox1.TabIndex = 28;
         // 
         // textBox10
         // 
         this.textBox10.Location = new System.Drawing.Point(220, 107);
         this.textBox10.Name = "textBox10";
         this.textBox10.ReadOnly = true;
         this.textBox10.Size = new System.Drawing.Size(120, 20);
         this.textBox10.TabIndex = 26;
         // 
         // label12
         // 
         this.label12.AutoSize = true;
         this.label12.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
         this.label12.ForeColor = System.Drawing.Color.Blue;
         this.label12.Location = new System.Drawing.Point(32, 111);
         this.label12.Name = "label12";
         this.label12.Size = new System.Drawing.Size(78, 16);
         this.label12.TabIndex = 25;
         this.label12.Text = "Картинка";
         // 
         // button9
         // 
         this.button9.Location = new System.Drawing.Point(220, 534);
         this.button9.Name = "button9";
         this.button9.Size = new System.Drawing.Size(143, 43);
         this.button9.TabIndex = 24;
         this.button9.Text = "Добавить новый телефон";
         this.button9.UseVisualStyleBackColor = true;
         this.button9.Click += new System.EventHandler(this.button9_Click);
         // 
         // button8
         // 
         this.button8.Location = new System.Drawing.Point(38, 534);
         this.button8.Name = "button8";
         this.button8.Size = new System.Drawing.Size(141, 43);
         this.button8.TabIndex = 23;
         this.button8.Text = "Очистить поля";
         this.button8.UseVisualStyleBackColor = true;
         this.button8.Click += new System.EventHandler(this.button8_Click);
         // 
         // button7
         // 
         this.button7.Location = new System.Drawing.Point(38, 467);
         this.button7.Name = "button7";
         this.button7.Size = new System.Drawing.Size(141, 43);
         this.button7.TabIndex = 22;
         this.button7.Text = "Удалить опцию";
         this.button7.UseVisualStyleBackColor = true;
         this.button7.Click += new System.EventHandler(this.button7_Click);
         // 
         // button6
         // 
         this.button6.Location = new System.Drawing.Point(220, 467);
         this.button6.Name = "button6";
         this.button6.Size = new System.Drawing.Size(143, 43);
         this.button6.TabIndex = 21;
         this.button6.Text = "Добавить опцию";
         this.button6.UseVisualStyleBackColor = true;
         this.button6.Click += new System.EventHandler(this.button6_Click);
         // 
         // textBox9
         // 
         this.textBox9.Location = new System.Drawing.Point(220, 420);
         this.textBox9.Name = "textBox9";
         this.textBox9.Size = new System.Drawing.Size(143, 20);
         this.textBox9.TabIndex = 20;
         // 
         // label11
         // 
         this.label11.AutoSize = true;
         this.label11.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
         this.label11.ForeColor = System.Drawing.Color.Red;
         this.label11.Location = new System.Drawing.Point(35, 421);
         this.label11.Name = "label11";
         this.label11.Size = new System.Drawing.Size(131, 16);
         this.label11.TabIndex = 19;
         this.label11.Text = "Название опции";
         // 
         // button5
         // 
         this.button5.Location = new System.Drawing.Point(35, 351);
         this.button5.Name = "button5";
         this.button5.Size = new System.Drawing.Size(328, 49);
         this.button5.TabIndex = 18;
         this.button5.Text = "Сохранить изменения";
         this.button5.UseVisualStyleBackColor = true;
         this.button5.Click += new System.EventHandler(this.button5_Click);
         // 
         // checkedListBox1
         // 
         this.checkedListBox1.CheckOnClick = true;
         this.checkedListBox1.FormattingEnabled = true;
         this.checkedListBox1.Location = new System.Drawing.Point(35, 182);
         this.checkedListBox1.Name = "checkedListBox1";
         this.checkedListBox1.Size = new System.Drawing.Size(328, 154);
         this.checkedListBox1.TabIndex = 17;
         // 
         // textBox5
         // 
         this.textBox5.Location = new System.Drawing.Point(220, 147);
         this.textBox5.Name = "textBox5";
         this.textBox5.Size = new System.Drawing.Size(143, 20);
         this.textBox5.TabIndex = 16;
         // 
         // textBox6
         // 
         this.textBox6.Location = new System.Drawing.Point(220, 72);
         this.textBox6.Name = "textBox6";
         this.textBox6.Size = new System.Drawing.Size(143, 20);
         this.textBox6.TabIndex = 15;
         // 
         // textBox8
         // 
         this.textBox8.Location = new System.Drawing.Point(220, 6);
         this.textBox8.Name = "textBox8";
         this.textBox8.Size = new System.Drawing.Size(143, 20);
         this.textBox8.TabIndex = 13;
         // 
         // label7
         // 
         this.label7.AutoSize = true;
         this.label7.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
         this.label7.ForeColor = System.Drawing.Color.Red;
         this.label7.Location = new System.Drawing.Point(35, 147);
         this.label7.Name = "label7";
         this.label7.Size = new System.Drawing.Size(45, 16);
         this.label7.TabIndex = 12;
         this.label7.Text = "Цена";
         // 
         // label8
         // 
         this.label8.AutoSize = true;
         this.label8.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
         this.label8.ForeColor = System.Drawing.Color.Blue;
         this.label8.Location = new System.Drawing.Point(32, 73);
         this.label8.Name = "label8";
         this.label8.Size = new System.Drawing.Size(39, 16);
         this.label8.TabIndex = 11;
         this.label8.Text = "CPU";
         // 
         // label9
         // 
         this.label9.AutoSize = true;
         this.label9.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
         this.label9.ForeColor = System.Drawing.Color.Blue;
         this.label9.Location = new System.Drawing.Point(32, 40);
         this.label9.Name = "label9";
         this.label9.Size = new System.Drawing.Size(29, 16);
         this.label9.TabIndex = 10;
         this.label9.Text = "OS";
         // 
         // label10
         // 
         this.label10.AutoSize = true;
         this.label10.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
         this.label10.ForeColor = System.Drawing.Color.Blue;
         this.label10.Location = new System.Drawing.Point(32, 10);
         this.label10.Name = "label10";
         this.label10.Size = new System.Drawing.Size(64, 16);
         this.label10.TabIndex = 9;
         this.label10.Text = "Модель";
         // 
         // Form1
         // 
         this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
         this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
         this.ClientSize = new System.Drawing.Size(735, 656);
         this.Controls.Add(this.tabControl1);
         this.Controls.Add(this.button4);
         this.Controls.Add(this.button3);
         this.Controls.Add(this.button2);
         this.Controls.Add(this.button1);
         this.Controls.Add(this.label1);
         this.Controls.Add(this.listBox1);
         this.Name = "Form1";
         this.Text = "Mobile Store";
         tabPage1.ResumeLayout(false);
         tabPage1.PerformLayout();
         ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
         this.tabControl1.ResumeLayout(false);
         this.tabPage2.ResumeLayout(false);
         this.tabPage2.PerformLayout();
         this.ResumeLayout(false);
         this.PerformLayout();

      }
        /// <summary> 
        /// Required method for Designer support - do not modify 
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            System.Windows.Forms.TabControl tabControl1;
            System.Windows.Forms.TabPage tabPage1;
            System.Windows.Forms.TabPage tabPage2;
            System.Windows.Forms.Label label1;
            this.splitContainer = new System.Windows.Forms.SplitContainer();
            this.txtSourceCode = new System.Windows.Forms.TextBox();
            this.descriptionControlCopy = new IronSmalltalk.Tools.ClassLibraryBrowser.Controls.DescriptionControl();
            this.txtMethodHeader = new System.Windows.Forms.TextBox();
            this.descriptionControl = new IronSmalltalk.Tools.ClassLibraryBrowser.Controls.DescriptionControl();
            this.txtNativeName = new System.Windows.Forms.TextBox();
            tabControl1 = new System.Windows.Forms.TabControl();
            tabPage1 = new System.Windows.Forms.TabPage();
            tabPage2 = new System.Windows.Forms.TabPage();
            label1 = new System.Windows.Forms.Label();
            tabControl1.SuspendLayout();
            tabPage1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit();
            this.splitContainer.Panel1.SuspendLayout();
            this.splitContainer.Panel2.SuspendLayout();
            this.splitContainer.SuspendLayout();
            tabPage2.SuspendLayout();
            this.SuspendLayout();
            // 
            // tabControl1
            // 
            tabControl1.Controls.Add(tabPage1);
            tabControl1.Controls.Add(tabPage2);
            tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            tabControl1.Location = new System.Drawing.Point(0, 0);
            tabControl1.Name = "tabControl1";
            tabControl1.SelectedIndex = 0;
            tabControl1.Size = new System.Drawing.Size(384, 223);
            tabControl1.TabIndex = 1;
            // 
            // tabPage1
            // 
            tabPage1.Controls.Add(this.splitContainer);
            tabPage1.Controls.Add(this.txtMethodHeader);
            tabPage1.ImageKey = "source";
            tabPage1.Location = new System.Drawing.Point(4, 22);
            tabPage1.Name = "tabPage1";
            tabPage1.Padding = new System.Windows.Forms.Padding(3);
            tabPage1.Size = new System.Drawing.Size(376, 197);
            tabPage1.TabIndex = 0;
            tabPage1.Text = "Source";
            tabPage1.UseVisualStyleBackColor = true;
            // 
            // splitContainer
            // 
            this.splitContainer.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.splitContainer.Location = new System.Drawing.Point(6, 29);
            this.splitContainer.Name = "splitContainer";
            // 
            // splitContainer.Panel1
            // 
            this.splitContainer.Panel1.Controls.Add(this.txtSourceCode);
            // 
            // splitContainer.Panel2
            // 
            this.splitContainer.Panel2.Controls.Add(this.descriptionControlCopy);
            this.splitContainer.Size = new System.Drawing.Size(364, 162);
            this.splitContainer.SplitterDistance = 253;
            this.splitContainer.TabIndex = 7;
            // 
            // txtSourceCode
            // 
            this.txtSourceCode.AcceptsTab = true;
            this.txtSourceCode.Dock = System.Windows.Forms.DockStyle.Fill;
            this.txtSourceCode.Font = new System.Drawing.Font("Courier New", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtSourceCode.Location = new System.Drawing.Point(0, 0);
            this.txtSourceCode.Multiline = true;
            this.txtSourceCode.Name = "txtSourceCode";
            this.txtSourceCode.Size = new System.Drawing.Size(253, 162);
            this.txtSourceCode.TabIndex = 7;
            this.txtSourceCode.TextChanged += new System.EventHandler(this.txtSourceCode_TextChanged);
            this.txtSourceCode.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtSourceCode_KeyDown);
            // 
            // descriptionControlCopy
            // 
            this.descriptionControlCopy.Dock = System.Windows.Forms.DockStyle.Fill;
            this.descriptionControlCopy.Enabled = false;
            this.descriptionControlCopy.Location = new System.Drawing.Point(0, 0);
            this.descriptionControlCopy.Margin = new System.Windows.Forms.Padding(0);
            this.descriptionControlCopy.Name = "descriptionControlCopy";
            this.descriptionControlCopy.ShowLabel = false;
            this.descriptionControlCopy.Size = new System.Drawing.Size(107, 162);
            this.descriptionControlCopy.TabIndex = 8;
            // 
            // txtMethodHeader
            // 
            this.txtMethodHeader.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.txtMethodHeader.Location = new System.Drawing.Point(6, 3);
            this.txtMethodHeader.Name = "txtMethodHeader";
            this.txtMethodHeader.ReadOnly = true;
            this.txtMethodHeader.Size = new System.Drawing.Size(364, 20);
            this.txtMethodHeader.TabIndex = 5;
            this.txtMethodHeader.DoubleClick += new System.EventHandler(this.txtMethodHeader_DoubleClick);
            // 
            // tabPage2
            // 
            tabPage2.Controls.Add(label1);
            tabPage2.Controls.Add(this.txtNativeName);
            tabPage2.Controls.Add(this.descriptionControl);
            tabPage2.ImageKey = "document";
            tabPage2.Location = new System.Drawing.Point(4, 22);
            tabPage2.Name = "tabPage2";
            tabPage2.Padding = new System.Windows.Forms.Padding(3);
            tabPage2.Size = new System.Drawing.Size(376, 197);
            tabPage2.TabIndex = 1;
            tabPage2.Text = "Definition";
            tabPage2.UseVisualStyleBackColor = true;
            // 
            // descriptionControl
            // 
            this.descriptionControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.descriptionControl.Location = new System.Drawing.Point(3, 33);
            this.descriptionControl.Margin = new System.Windows.Forms.Padding(0);
            this.descriptionControl.Name = "descriptionControl";
            this.descriptionControl.ShowLabel = false;
            this.descriptionControl.Size = new System.Drawing.Size(370, 161);
            this.descriptionControl.TabIndex = 7;
            // 
            // txtNativeName
            // 
            this.txtNativeName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.txtNativeName.Location = new System.Drawing.Point(81, 7);
            this.txtNativeName.Name = "txtNativeName";
            this.txtNativeName.Size = new System.Drawing.Size(289, 20);
            this.txtNativeName.TabIndex = 8;
            this.txtNativeName.TextChanged += new System.EventHandler(this.txtNativeName_TextChanged);
            // 
            // label1
            // 
            label1.AutoSize = true;
            label1.Location = new System.Drawing.Point(3, 10);
            label1.Name = "label1";
            label1.Size = new System.Drawing.Size(72, 13);
            label1.TabIndex = 9;
            label1.Text = "Native Name:";
            // 
            // MethodDefinitionControl
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(tabControl1);
            this.Name = "MethodDefinitionControl";
            this.Size = new System.Drawing.Size(384, 223);
            this.Load += new System.EventHandler(this.MethodDefinitionControl_Load);
            tabControl1.ResumeLayout(false);
            tabPage1.ResumeLayout(false);
            tabPage1.PerformLayout();
            this.splitContainer.Panel1.ResumeLayout(false);
            this.splitContainer.Panel1.PerformLayout();
            this.splitContainer.Panel2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).EndInit();
            this.splitContainer.ResumeLayout(false);
            tabPage2.ResumeLayout(false);
            tabPage2.PerformLayout();
            this.ResumeLayout(false);

        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     okButton            = new System.Windows.Forms.Button();
     cancelButton        = new System.Windows.Forms.Button();
     tabControl1         = new System.Windows.Forms.TabControl();
     tabPage1            = new System.Windows.Forms.TabPage();
     defaultCombo        = new System.Windows.Forms.ComboBox();
     label2              = new System.Windows.Forms.Label();
     deleteButton        = new System.Windows.Forms.Button();
     addButton           = new System.Windows.Forms.Button();
     listView            = new System.Windows.Forms.ListView();
     tabPage2            = new System.Windows.Forms.TabPage();
     optionsPropertyGrid = new System.Windows.Forms.PropertyGrid();
     tabControl1.SuspendLayout();
     tabPage1.SuspendLayout();
     tabPage2.SuspendLayout();
     SuspendLayout();
     //
     // okButton
     //
     okButton.DialogResult            = System.Windows.Forms.DialogResult.OK;
     okButton.Location                = new System.Drawing.Point(247, 287);
     okButton.Name                    = "okButton";
     okButton.Size                    = new System.Drawing.Size(80, 24);
     okButton.TabIndex                = 18;
     okButton.Text                    = "&OK";
     okButton.UseVisualStyleBackColor = true;
     okButton.Click                  += okButton_Click;
     //
     // cancelButton
     //
     cancelButton.DialogResult            = System.Windows.Forms.DialogResult.Cancel;
     cancelButton.Location                = new System.Drawing.Point(337, 287);
     cancelButton.Name                    = "cancelButton";
     cancelButton.Size                    = new System.Drawing.Size(75, 23);
     cancelButton.TabIndex                = 19;
     cancelButton.Text                    = "&Cancel";
     cancelButton.UseVisualStyleBackColor = true;
     cancelButton.Click                  += cancelButton_Click;
     //
     // tabControl1
     //
     tabControl1.Controls.Add(tabPage1);
     tabControl1.Controls.Add(tabPage2);
     tabControl1.Location      = new System.Drawing.Point(13, 13);
     tabControl1.Name          = "tabControl1";
     tabControl1.SelectedIndex = 0;
     tabControl1.Size          = new System.Drawing.Size(399, 268);
     tabControl1.TabIndex      = 20;
     //
     // tabPage1
     //
     tabPage1.BackColor = System.Drawing.SystemColors.Control;
     tabPage1.Controls.Add(defaultCombo);
     tabPage1.Controls.Add(label2);
     tabPage1.Controls.Add(deleteButton);
     tabPage1.Controls.Add(addButton);
     tabPage1.Controls.Add(listView);
     tabPage1.Location = new System.Drawing.Point(4, 22);
     tabPage1.Name     = "tabPage1";
     tabPage1.Padding  = new System.Windows.Forms.Padding(3);
     tabPage1.Size     = new System.Drawing.Size(391, 242);
     tabPage1.TabIndex = 0;
     tabPage1.Text     = "tabPage1";
     //
     // defaultCombo
     //
     defaultCombo.FormattingEnabled = true;
     defaultCombo.Location          = new System.Drawing.Point(146, 207);
     defaultCombo.Name     = "defaultCombo";
     defaultCombo.Size     = new System.Drawing.Size(145, 21);
     defaultCombo.TabIndex = 22;
     //
     // label2
     //
     label2.AutoSize = true;
     label2.Location = new System.Drawing.Point(6, 210);
     label2.Name     = "label2";
     label2.Size     = new System.Drawing.Size(119, 13);
     label2.TabIndex = 21;
     label2.Text     = "Default Qt/Win version:";
     //
     // deleteButton
     //
     deleteButton.Location = new System.Drawing.Point(301, 36);
     deleteButton.Name     = "deleteButton";
     deleteButton.Size     = new System.Drawing.Size(80, 24);
     deleteButton.TabIndex = 20;
     deleteButton.Text     = "&Delete";
     deleteButton.UseVisualStyleBackColor = true;
     deleteButton.Click += deleteButton_Click;
     //
     // addButton
     //
     addButton.Location = new System.Drawing.Point(301, 6);
     addButton.Name     = "addButton";
     addButton.Size     = new System.Drawing.Size(80, 24);
     addButton.TabIndex = 19;
     addButton.Text     = "&Add";
     addButton.UseVisualStyleBackColor = true;
     addButton.Click += addButton_Click;
     //
     // listView
     //
     listView.FullRowSelect = true;
     listView.HideSelection = false;
     listView.Location      = new System.Drawing.Point(6, 6);
     listView.MultiSelect   = false;
     listView.Name          = "listView";
     listView.Size          = new System.Drawing.Size(285, 195);
     listView.TabIndex      = 18;
     listView.UseCompatibleStateImageBehavior = false;
     listView.View = System.Windows.Forms.View.Details;
     //
     // tabPage2
     //
     tabPage2.BackColor = System.Drawing.SystemColors.Control;
     tabPage2.Controls.Add(optionsPropertyGrid);
     tabPage2.Location = new System.Drawing.Point(4, 22);
     tabPage2.Name     = "tabPage2";
     tabPage2.Padding  = new System.Windows.Forms.Padding(3);
     tabPage2.Size     = new System.Drawing.Size(391, 242);
     tabPage2.TabIndex = 1;
     tabPage2.Text     = "tabPage2";
     //
     // optionsPropertyGrid
     //
     optionsPropertyGrid.HelpVisible    = false;
     optionsPropertyGrid.Location       = new System.Drawing.Point(7, 7);
     optionsPropertyGrid.Name           = "optionsPropertyGrid";
     optionsPropertyGrid.PropertySort   = System.Windows.Forms.PropertySort.Alphabetical;
     optionsPropertyGrid.Size           = new System.Drawing.Size(378, 229);
     optionsPropertyGrid.TabIndex       = 0;
     optionsPropertyGrid.ToolbarVisible = false;
     //
     // FormVSQtSettings
     //
     AcceptButton        = okButton;
     AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     CancelButton        = cancelButton;
     ClientSize          = new System.Drawing.Size(427, 322);
     Controls.Add(tabControl1);
     Controls.Add(cancelButton);
     Controls.Add(okButton);
     FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     KeyPreview      = true;
     MaximizeBox     = false;
     Name            = "FormVSQtSettings";
     ShowInTaskbar   = false;
     Text            = "FormQtVersions";
     tabControl1.ResumeLayout(false);
     tabPage1.ResumeLayout(false);
     tabPage1.PerformLayout();
     tabPage2.ResumeLayout(false);
     ResumeLayout(false);
 }
Esempio n. 31
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.TabPage tabPage1;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SellTickets));
     this.tabControl1 = new System.Windows.Forms.TabControl();
     this.tabPage2    = new System.Windows.Forms.TabPage();
     this.tabPage3    = new System.Windows.Forms.TabPage();
     this.tabPage4    = new System.Windows.Forms.TabPage();
     this.label1      = new System.Windows.Forms.Label();
     this.label2      = new System.Windows.Forms.Label();
     this.pictureBox1 = new System.Windows.Forms.PictureBox();
     this.label3      = new System.Windows.Forms.Label();
     this.textBox1    = new System.Windows.Forms.TextBox();
     this.label4      = new System.Windows.Forms.Label();
     tabPage1         = new System.Windows.Forms.TabPage();
     this.tabControl1.SuspendLayout();
     tabPage1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     this.SuspendLayout();
     //
     // tabControl1
     //
     this.tabControl1.Controls.Add(tabPage1);
     this.tabControl1.Controls.Add(this.tabPage2);
     this.tabControl1.Controls.Add(this.tabPage3);
     this.tabControl1.Controls.Add(this.tabPage4);
     this.tabControl1.Dock          = System.Windows.Forms.DockStyle.Fill;
     this.tabControl1.Location      = new System.Drawing.Point(0, 0);
     this.tabControl1.Name          = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size          = new System.Drawing.Size(715, 427);
     this.tabControl1.TabIndex      = 0;
     //
     // tabPage1
     //
     tabPage1.BackColor = System.Drawing.Color.DarkRed;
     tabPage1.Controls.Add(this.label4);
     tabPage1.Controls.Add(this.textBox1);
     tabPage1.Controls.Add(this.label3);
     tabPage1.Controls.Add(this.pictureBox1);
     tabPage1.Controls.Add(this.label2);
     tabPage1.Controls.Add(this.label1);
     tabPage1.Location = new System.Drawing.Point(4, 22);
     tabPage1.Name     = "tabPage1";
     tabPage1.Padding  = new System.Windows.Forms.Padding(3);
     tabPage1.Size     = new System.Drawing.Size(707, 401);
     tabPage1.TabIndex = 0;
     tabPage1.Text     = "Theatre 1";
     //
     // tabPage2
     //
     this.tabPage2.Location = new System.Drawing.Point(4, 22);
     this.tabPage2.Name     = "tabPage2";
     this.tabPage2.Padding  = new System.Windows.Forms.Padding(3);
     this.tabPage2.Size     = new System.Drawing.Size(707, 401);
     this.tabPage2.TabIndex = 1;
     this.tabPage2.Text     = "Theatre 2";
     this.tabPage2.UseVisualStyleBackColor = true;
     //
     // tabPage3
     //
     this.tabPage3.Location = new System.Drawing.Point(4, 22);
     this.tabPage3.Name     = "tabPage3";
     this.tabPage3.Padding  = new System.Windows.Forms.Padding(3);
     this.tabPage3.Size     = new System.Drawing.Size(707, 401);
     this.tabPage3.TabIndex = 2;
     this.tabPage3.Text     = "Theatre 3";
     this.tabPage3.UseVisualStyleBackColor = true;
     //
     // tabPage4
     //
     this.tabPage4.Location = new System.Drawing.Point(4, 22);
     this.tabPage4.Name     = "tabPage4";
     this.tabPage4.Padding  = new System.Windows.Forms.Padding(3);
     this.tabPage4.Size     = new System.Drawing.Size(707, 401);
     this.tabPage4.TabIndex = 3;
     this.tabPage4.Text     = "Theatre 4";
     this.tabPage4.UseVisualStyleBackColor = true;
     //
     // label1
     //
     this.label1.BackColor   = System.Drawing.Color.AntiqueWhite;
     this.label1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.label1.Font        = new System.Drawing.Font("Microsoft Sans Serif", 24F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.Location    = new System.Drawing.Point(91, 26);
     this.label1.Name        = "label1";
     this.label1.Size        = new System.Drawing.Size(514, 37);
     this.label1.TabIndex    = 0;
     this.label1.Text        = "Welcome To Theatre of Dreams";
     this.label1.TextAlign   = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // label2
     //
     this.label2.Font      = new System.Drawing.Font("Lucida Bright", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.Location  = new System.Drawing.Point(8, 73);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(163, 23);
     this.label2.TabIndex  = 1;
     this.label2.Text      = "Available Shows";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // pictureBox1
     //
     this.pictureBox1.Image    = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
     this.pictureBox1.Location = new System.Drawing.Point(26, 112);
     this.pictureBox1.Name     = "pictureBox1";
     this.pictureBox1.Size     = new System.Drawing.Size(190, 189);
     this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pictureBox1.TabIndex = 2;
     this.pictureBox1.TabStop  = false;
     //
     // label3
     //
     this.label3.Font      = new System.Drawing.Font("Lucida Bright", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.Location  = new System.Drawing.Point(343, 73);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(163, 23);
     this.label3.TabIndex  = 3;
     this.label3.Text      = "Show Details";
     this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // textBox1
     //
     this.textBox1.BackColor = System.Drawing.SystemColors.Info;
     this.textBox1.Location  = new System.Drawing.Point(340, 112);
     this.textBox1.Multiline = true;
     this.textBox1.Name      = "textBox1";
     this.textBox1.Size      = new System.Drawing.Size(277, 189);
     this.textBox1.TabIndex  = 4;
     //
     // label4
     //
     this.label4.BackColor = System.Drawing.Color.IndianRed;
     this.label4.Font      = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.Location  = new System.Drawing.Point(26, 308);
     this.label4.Name      = "label4";
     this.label4.Size      = new System.Drawing.Size(190, 21);
     this.label4.TabIndex  = 5;
     this.label4.Text      = "Avengers Age of Ultron";
     this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // SellTickets
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(715, 427);
     this.Controls.Add(this.tabControl1);
     this.Name = "SellTickets";
     this.Text = "SellTickets";
     this.tabControl1.ResumeLayout(false);
     tabPage1.ResumeLayout(false);
     tabPage1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     this.ResumeLayout(false);
 }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            System.Windows.Forms.TabPage tpAssemblies;
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle7 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle8 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle9 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle10 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle11 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle12 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle13 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle14 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle15 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle16 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle17 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle18 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle19 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle20 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle21 = new System.Windows.Forms.DataGridViewCellStyle();
            this.label2 = new System.Windows.Forms.Label();
            this.btnScanRepos = new System.Windows.Forms.Button();
            this.btnLoad = new System.Windows.Forms.Button();
            this.m_dgAssemblies = new System.Windows.Forms.DataGridView();
            this.tabPages = new System.Windows.Forms.TabControl();
            this.tpCoverage = new System.Windows.Forms.TabPage();
            this.btnCoverageLoad = new System.Windows.Forms.Button();
            this.m_dgCoverage = new System.Windows.Forms.DataGridView();
            this.tpType_Params = new System.Windows.Forms.TabPage();
            this.btnRemoveFilter = new System.Windows.Forms.Button();
            this.btnAddFilter = new System.Windows.Forms.Button();
            this.label1 = new System.Windows.Forms.Label();
            this.lbl1 = new System.Windows.Forms.Label();
            this.txtAddFilter = new System.Windows.Forms.TextBox();
            this.m_dgTypeFilters = new System.Windows.Forms.DataGridView();
            this.tpAnalysis = new System.Windows.Forms.TabPage();
            this.btnScan = new System.Windows.Forms.Button();
            this.checkBox1 = new System.Windows.Forms.CheckBox();
            this.tpAppStats = new System.Windows.Forms.TabPage();
            this.m_dgAppStats = new System.Windows.Forms.DataGridView();
            this.tpCodeRank = new System.Windows.Forms.TabPage();
            this.m_dgCodeRank = new System.Windows.Forms.DataGridView();
            this.tpResults = new System.Windows.Forms.TabPage();
            this.panel1 = new System.Windows.Forms.Panel();
            this.btnImportResults = new System.Windows.Forms.Button();
            this.btnExport = new System.Windows.Forms.Button();
            this.button5 = new System.Windows.Forms.Button();
            this.button6 = new System.Windows.Forms.Button();
            this.m_dgResults = new System.Windows.Forms.DataGridView();
            this.tabPage1 = new System.Windows.Forms.TabPage();
            this.m_dgPluginResults = new System.Windows.Forms.DataGridView();
            this.panel2 = new System.Windows.Forms.Panel();
            this.btnPluginImportResults = new System.Windows.Forms.Button();
            this.btnNextPluginResult = new System.Windows.Forms.Button();
            tpAssemblies = new System.Windows.Forms.TabPage();
            tpAssemblies.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.m_dgAssemblies)).BeginInit();
            this.tabPages.SuspendLayout();
            this.tpCoverage.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.m_dgCoverage)).BeginInit();
            this.tpType_Params.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.m_dgTypeFilters)).BeginInit();
            this.tpAnalysis.SuspendLayout();
            this.tpAppStats.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.m_dgAppStats)).BeginInit();
            this.tpCodeRank.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.m_dgCodeRank)).BeginInit();
            this.tpResults.SuspendLayout();
            this.panel1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.m_dgResults)).BeginInit();
            this.tabPage1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.m_dgPluginResults)).BeginInit();
            this.panel2.SuspendLayout();
            this.SuspendLayout();
            // 
            // tpAssemblies
            // 
            tpAssemblies.Controls.Add(this.label2);
            tpAssemblies.Controls.Add(this.btnScanRepos);
            tpAssemblies.Controls.Add(this.btnLoad);
            tpAssemblies.Controls.Add(this.m_dgAssemblies);
            tpAssemblies.Location = new System.Drawing.Point(4, 22);
            tpAssemblies.Name = "tpAssemblies";
            tpAssemblies.Padding = new System.Windows.Forms.Padding(3);
            tpAssemblies.Size = new System.Drawing.Size(794, 261);
            tpAssemblies.TabIndex = 0;
            tpAssemblies.Text = "Assemblies";
            tpAssemblies.UseVisualStyleBackColor = true;
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Location = new System.Drawing.Point(255, 222);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(185, 13);
            this.label2.TabIndex = 3;
            this.label2.Text = "Scans directory structure for dlls, exes";
            // 
            // btnScanRepos
            // 
            this.btnScanRepos.Location = new System.Drawing.Point(127, 217);
            this.btnScanRepos.Name = "btnScanRepos";
            this.btnScanRepos.Size = new System.Drawing.Size(122, 23);
            this.btnScanRepos.TabIndex = 2;
            this.btnScanRepos.Text = "Scan App Repository";
            this.btnScanRepos.UseVisualStyleBackColor = true;
            this.btnScanRepos.Click += new System.EventHandler(this.btnScanRepos_Click);
            // 
            // btnLoad
            // 
            this.btnLoad.Location = new System.Drawing.Point(31, 217);
            this.btnLoad.Name = "btnLoad";
            this.btnLoad.Size = new System.Drawing.Size(75, 23);
            this.btnLoad.TabIndex = 1;
            this.btnLoad.Text = "Load File(s)";
            this.btnLoad.UseVisualStyleBackColor = true;
            this.btnLoad.Click += new System.EventHandler(this.btnLoad_Click);
            // 
            // m_dgAssemblies
            // 
            dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control;
            dataGridViewCellStyle1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.WindowText;
            dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
            dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.m_dgAssemblies.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
            this.m_dgAssemblies.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.Window;
            dataGridViewCellStyle2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle2.ForeColor = System.Drawing.SystemColors.ControlText;
            dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
            dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
            this.m_dgAssemblies.DefaultCellStyle = dataGridViewCellStyle2;
            this.m_dgAssemblies.Location = new System.Drawing.Point(31, 15);
            this.m_dgAssemblies.Name = "m_dgAssemblies";
            dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle3.BackColor = System.Drawing.SystemColors.Control;
            dataGridViewCellStyle3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle3.ForeColor = System.Drawing.SystemColors.WindowText;
            dataGridViewCellStyle3.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle3.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
            dataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.m_dgAssemblies.RowHeadersDefaultCellStyle = dataGridViewCellStyle3;
            this.m_dgAssemblies.Size = new System.Drawing.Size(617, 196);
            this.m_dgAssemblies.TabIndex = 0;
            // 
            // tabPages
            // 
            this.tabPages.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                        | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.tabPages.Controls.Add(tpAssemblies);
            this.tabPages.Controls.Add(this.tpCoverage);
            this.tabPages.Controls.Add(this.tpType_Params);
            this.tabPages.Controls.Add(this.tpAnalysis);
            this.tabPages.Controls.Add(this.tpAppStats);
            this.tabPages.Controls.Add(this.tpCodeRank);
            this.tabPages.Controls.Add(this.tpResults);
            this.tabPages.Controls.Add(this.tabPage1);
            this.tabPages.Location = new System.Drawing.Point(0, 1);
            this.tabPages.Name = "tabPages";
            this.tabPages.SelectedIndex = 0;
            this.tabPages.Size = new System.Drawing.Size(802, 287);
            this.tabPages.TabIndex = 0;
            // 
            // tpCoverage
            // 
            this.tpCoverage.Controls.Add(this.btnCoverageLoad);
            this.tpCoverage.Controls.Add(this.m_dgCoverage);
            this.tpCoverage.Location = new System.Drawing.Point(4, 22);
            this.tpCoverage.Name = "tpCoverage";
            this.tpCoverage.Padding = new System.Windows.Forms.Padding(3);
            this.tpCoverage.Size = new System.Drawing.Size(794, 261);
            this.tpCoverage.TabIndex = 4;
            this.tpCoverage.Text = "Coverage";
            this.tpCoverage.UseVisualStyleBackColor = true;
            // 
            // btnCoverageLoad
            // 
            this.btnCoverageLoad.Location = new System.Drawing.Point(30, 220);
            this.btnCoverageLoad.Name = "btnCoverageLoad";
            this.btnCoverageLoad.Size = new System.Drawing.Size(75, 23);
            this.btnCoverageLoad.TabIndex = 3;
            this.btnCoverageLoad.Text = "Load File(s)";
            this.btnCoverageLoad.UseVisualStyleBackColor = true;
            this.btnCoverageLoad.Click += new System.EventHandler(this.btnCoverageLoad_Click);
            // 
            // m_dgCoverage
            // 
            dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle4.BackColor = System.Drawing.SystemColors.Control;
            dataGridViewCellStyle4.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle4.ForeColor = System.Drawing.SystemColors.WindowText;
            dataGridViewCellStyle4.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle4.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
            dataGridViewCellStyle4.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.m_dgCoverage.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle4;
            this.m_dgCoverage.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            dataGridViewCellStyle5.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle5.BackColor = System.Drawing.SystemColors.Window;
            dataGridViewCellStyle5.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle5.ForeColor = System.Drawing.SystemColors.ControlText;
            dataGridViewCellStyle5.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle5.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
            dataGridViewCellStyle5.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
            this.m_dgCoverage.DefaultCellStyle = dataGridViewCellStyle5;
            this.m_dgCoverage.Location = new System.Drawing.Point(30, 18);
            this.m_dgCoverage.Name = "m_dgCoverage";
            dataGridViewCellStyle6.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle6.BackColor = System.Drawing.SystemColors.Control;
            dataGridViewCellStyle6.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle6.ForeColor = System.Drawing.SystemColors.WindowText;
            dataGridViewCellStyle6.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle6.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
            dataGridViewCellStyle6.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.m_dgCoverage.RowHeadersDefaultCellStyle = dataGridViewCellStyle6;
            this.m_dgCoverage.Size = new System.Drawing.Size(406, 196);
            this.m_dgCoverage.TabIndex = 2;
            // 
            // tpType_Params
            // 
            this.tpType_Params.Controls.Add(this.btnRemoveFilter);
            this.tpType_Params.Controls.Add(this.btnAddFilter);
            this.tpType_Params.Controls.Add(this.label1);
            this.tpType_Params.Controls.Add(this.lbl1);
            this.tpType_Params.Controls.Add(this.txtAddFilter);
            this.tpType_Params.Controls.Add(this.m_dgTypeFilters);
            this.tpType_Params.Location = new System.Drawing.Point(4, 22);
            this.tpType_Params.Name = "tpType_Params";
            this.tpType_Params.Padding = new System.Windows.Forms.Padding(3);
            this.tpType_Params.Size = new System.Drawing.Size(794, 261);
            this.tpType_Params.TabIndex = 1;
            this.tpType_Params.Text = "Type Params";
            this.tpType_Params.UseVisualStyleBackColor = true;
            // 
            // btnRemoveFilter
            // 
            this.btnRemoveFilter.Location = new System.Drawing.Point(288, 171);
            this.btnRemoveFilter.Name = "btnRemoveFilter";
            this.btnRemoveFilter.Size = new System.Drawing.Size(75, 23);
            this.btnRemoveFilter.TabIndex = 6;
            this.btnRemoveFilter.Text = "Remove";
            this.btnRemoveFilter.UseVisualStyleBackColor = true;
            this.btnRemoveFilter.Click += new System.EventHandler(this.btnRemoveFilter_Click);
            // 
            // btnAddFilter
            // 
            this.btnAddFilter.Location = new System.Drawing.Point(207, 171);
            this.btnAddFilter.Name = "btnAddFilter";
            this.btnAddFilter.Size = new System.Drawing.Size(75, 23);
            this.btnAddFilter.TabIndex = 5;
            this.btnAddFilter.Text = "Add";
            this.btnAddFilter.UseVisualStyleBackColor = true;
            this.btnAddFilter.Click += new System.EventHandler(this.btnAddFilter_Click);
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(89, 197);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(89, 13);
            this.label1.TabIndex = 4;
            this.label1.Text = "(e.g. System.IO.*)";
            // 
            // lbl1
            // 
            this.lbl1.AutoSize = true;
            this.lbl1.Location = new System.Drawing.Point(32, 177);
            this.lbl1.Name = "lbl1";
            this.lbl1.Size = new System.Drawing.Size(29, 13);
            this.lbl1.TabIndex = 3;
            this.lbl1.Text = "Filter";
            // 
            // txtAddFilter
            // 
            this.txtAddFilter.Location = new System.Drawing.Point(67, 174);
            this.txtAddFilter.Name = "txtAddFilter";
            this.txtAddFilter.Size = new System.Drawing.Size(125, 20);
            this.txtAddFilter.TabIndex = 2;
            // 
            // m_dgTypeFilters
            // 
            dataGridViewCellStyle7.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle7.BackColor = System.Drawing.SystemColors.Control;
            dataGridViewCellStyle7.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle7.ForeColor = System.Drawing.SystemColors.WindowText;
            dataGridViewCellStyle7.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle7.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
            dataGridViewCellStyle7.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.m_dgTypeFilters.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle7;
            this.m_dgTypeFilters.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            dataGridViewCellStyle8.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle8.BackColor = System.Drawing.SystemColors.Window;
            dataGridViewCellStyle8.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle8.ForeColor = System.Drawing.SystemColors.ControlText;
            dataGridViewCellStyle8.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle8.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
            dataGridViewCellStyle8.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
            this.m_dgTypeFilters.DefaultCellStyle = dataGridViewCellStyle8;
            this.m_dgTypeFilters.Location = new System.Drawing.Point(35, 25);
            this.m_dgTypeFilters.Name = "m_dgTypeFilters";
            dataGridViewCellStyle9.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle9.BackColor = System.Drawing.SystemColors.Control;
            dataGridViewCellStyle9.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle9.ForeColor = System.Drawing.SystemColors.WindowText;
            dataGridViewCellStyle9.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle9.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
            dataGridViewCellStyle9.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.m_dgTypeFilters.RowHeadersDefaultCellStyle = dataGridViewCellStyle9;
            this.m_dgTypeFilters.Size = new System.Drawing.Size(340, 131);
            this.m_dgTypeFilters.TabIndex = 1;
            // 
            // tpAnalysis
            // 
            this.tpAnalysis.Controls.Add(this.btnScan);
            this.tpAnalysis.Controls.Add(this.checkBox1);
            this.tpAnalysis.Location = new System.Drawing.Point(4, 22);
            this.tpAnalysis.Name = "tpAnalysis";
            this.tpAnalysis.Padding = new System.Windows.Forms.Padding(3);
            this.tpAnalysis.Size = new System.Drawing.Size(794, 261);
            this.tpAnalysis.TabIndex = 2;
            this.tpAnalysis.Text = "Analysis";
            this.tpAnalysis.UseVisualStyleBackColor = true;
            // 
            // btnScan
            // 
            this.btnScan.Location = new System.Drawing.Point(412, 203);
            this.btnScan.Name = "btnScan";
            this.btnScan.Size = new System.Drawing.Size(75, 23);
            this.btnScan.TabIndex = 2;
            this.btnScan.Text = "Start";
            this.btnScan.UseVisualStyleBackColor = true;
            this.btnScan.Click += new System.EventHandler(this.btnScan_Click);
            // 
            // checkBox1
            // 
            this.checkBox1.AutoSize = true;
            this.checkBox1.Location = new System.Drawing.Point(32, 37);
            this.checkBox1.Name = "checkBox1";
            this.checkBox1.Size = new System.Drawing.Size(108, 17);
            this.checkBox1.TabIndex = 0;
            this.checkBox1.Text = "Use Code Rank?";
            this.checkBox1.UseVisualStyleBackColor = true;
            // 
            // tpAppStats
            // 
            this.tpAppStats.Controls.Add(this.m_dgAppStats);
            this.tpAppStats.Location = new System.Drawing.Point(4, 22);
            this.tpAppStats.Name = "tpAppStats";
            this.tpAppStats.Padding = new System.Windows.Forms.Padding(3);
            this.tpAppStats.Size = new System.Drawing.Size(794, 261);
            this.tpAppStats.TabIndex = 5;
            this.tpAppStats.Text = "AppStats";
            this.tpAppStats.UseVisualStyleBackColor = true;
            // 
            // m_dgAppStats
            // 
            this.m_dgAppStats.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            dataGridViewCellStyle10.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle10.BackColor = System.Drawing.SystemColors.Control;
            dataGridViewCellStyle10.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle10.ForeColor = System.Drawing.SystemColors.WindowText;
            dataGridViewCellStyle10.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle10.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
            dataGridViewCellStyle10.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.m_dgAppStats.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle10;
            this.m_dgAppStats.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            dataGridViewCellStyle11.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle11.BackColor = System.Drawing.SystemColors.Window;
            dataGridViewCellStyle11.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle11.ForeColor = System.Drawing.SystemColors.ControlText;
            dataGridViewCellStyle11.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle11.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
            dataGridViewCellStyle11.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
            this.m_dgAppStats.DefaultCellStyle = dataGridViewCellStyle11;
            this.m_dgAppStats.Location = new System.Drawing.Point(21, 19);
            this.m_dgAppStats.Name = "m_dgAppStats";
            dataGridViewCellStyle12.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle12.BackColor = System.Drawing.SystemColors.Control;
            dataGridViewCellStyle12.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle12.ForeColor = System.Drawing.SystemColors.WindowText;
            dataGridViewCellStyle12.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle12.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
            dataGridViewCellStyle12.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.m_dgAppStats.RowHeadersDefaultCellStyle = dataGridViewCellStyle12;
            this.m_dgAppStats.Size = new System.Drawing.Size(654, 196);
            this.m_dgAppStats.TabIndex = 2;
            // 
            // tpCodeRank
            // 
            this.tpCodeRank.Controls.Add(this.m_dgCodeRank);
            this.tpCodeRank.Location = new System.Drawing.Point(4, 22);
            this.tpCodeRank.Name = "tpCodeRank";
            this.tpCodeRank.Padding = new System.Windows.Forms.Padding(3);
            this.tpCodeRank.Size = new System.Drawing.Size(794, 261);
            this.tpCodeRank.TabIndex = 6;
            this.tpCodeRank.Text = "CodeRank";
            this.tpCodeRank.UseVisualStyleBackColor = true;
            // 
            // m_dgCodeRank
            // 
            this.m_dgCodeRank.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            dataGridViewCellStyle13.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle13.BackColor = System.Drawing.SystemColors.Control;
            dataGridViewCellStyle13.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle13.ForeColor = System.Drawing.SystemColors.WindowText;
            dataGridViewCellStyle13.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle13.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
            dataGridViewCellStyle13.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.m_dgCodeRank.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle13;
            this.m_dgCodeRank.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            dataGridViewCellStyle14.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle14.BackColor = System.Drawing.SystemColors.Window;
            dataGridViewCellStyle14.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle14.ForeColor = System.Drawing.SystemColors.ControlText;
            dataGridViewCellStyle14.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle14.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
            dataGridViewCellStyle14.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
            this.m_dgCodeRank.DefaultCellStyle = dataGridViewCellStyle14;
            this.m_dgCodeRank.Location = new System.Drawing.Point(19, 16);
            this.m_dgCodeRank.Name = "m_dgCodeRank";
            dataGridViewCellStyle15.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle15.BackColor = System.Drawing.SystemColors.Control;
            dataGridViewCellStyle15.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle15.ForeColor = System.Drawing.SystemColors.WindowText;
            dataGridViewCellStyle15.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle15.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
            dataGridViewCellStyle15.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.m_dgCodeRank.RowHeadersDefaultCellStyle = dataGridViewCellStyle15;
            this.m_dgCodeRank.Size = new System.Drawing.Size(654, 196);
            this.m_dgCodeRank.TabIndex = 2;
            // 
            // tpResults
            // 
            this.tpResults.Controls.Add(this.panel1);
            this.tpResults.Controls.Add(this.m_dgResults);
            this.tpResults.Location = new System.Drawing.Point(4, 22);
            this.tpResults.Name = "tpResults";
            this.tpResults.Padding = new System.Windows.Forms.Padding(3);
            this.tpResults.Size = new System.Drawing.Size(794, 261);
            this.tpResults.TabIndex = 3;
            this.tpResults.Text = "Results";
            this.tpResults.UseVisualStyleBackColor = true;
            // 
            // panel1
            // 
            this.panel1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.panel1.Controls.Add(this.btnImportResults);
            this.panel1.Controls.Add(this.btnExport);
            this.panel1.Controls.Add(this.button5);
            this.panel1.Controls.Add(this.button6);
            this.panel1.Location = new System.Drawing.Point(31, 217);
            this.panel1.Name = "panel1";
            this.panel1.Size = new System.Drawing.Size(626, 34);
            this.panel1.TabIndex = 6;
            // 
            // btnImportResults
            // 
            this.btnImportResults.Location = new System.Drawing.Point(3, 7);
            this.btnImportResults.Name = "btnImportResults";
            this.btnImportResults.Size = new System.Drawing.Size(91, 23);
            this.btnImportResults.TabIndex = 5;
            this.btnImportResults.Text = "Import Results";
            this.btnImportResults.UseVisualStyleBackColor = true;
            this.btnImportResults.Click += new System.EventHandler(this.btnImportResults_Click);
            // 
            // btnExport
            // 
            this.btnExport.Location = new System.Drawing.Point(110, 7);
            this.btnExport.Name = "btnExport";
            this.btnExport.Size = new System.Drawing.Size(75, 23);
            this.btnExport.TabIndex = 2;
            this.btnExport.Text = "Export";
            this.btnExport.UseVisualStyleBackColor = true;
            this.btnExport.Click += new System.EventHandler(this.btnExport_Click);
            // 
            // button5
            // 
            this.button5.Location = new System.Drawing.Point(401, 7);
            this.button5.Name = "button5";
            this.button5.Size = new System.Drawing.Size(93, 23);
            this.button5.TabIndex = 3;
            this.button5.Text = "Visual Report";
            this.button5.UseVisualStyleBackColor = true;
            // 
            // button6
            // 
            this.button6.Location = new System.Drawing.Point(500, 7);
            this.button6.Name = "button6";
            this.button6.Size = new System.Drawing.Size(108, 23);
            this.button6.TabIndex = 4;
            this.button6.Text = "Coverage Report";
            this.button6.UseVisualStyleBackColor = true;
            this.button6.Click += new System.EventHandler(this.button6_Click);
            // 
            // m_dgResults
            // 
            this.m_dgResults.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                        | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            dataGridViewCellStyle16.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle16.BackColor = System.Drawing.SystemColors.Control;
            dataGridViewCellStyle16.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle16.ForeColor = System.Drawing.SystemColors.WindowText;
            dataGridViewCellStyle16.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle16.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
            dataGridViewCellStyle16.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.m_dgResults.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle16;
            this.m_dgResults.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            dataGridViewCellStyle17.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle17.BackColor = System.Drawing.SystemColors.Window;
            dataGridViewCellStyle17.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle17.ForeColor = System.Drawing.SystemColors.ControlText;
            dataGridViewCellStyle17.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle17.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
            dataGridViewCellStyle17.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
            this.m_dgResults.DefaultCellStyle = dataGridViewCellStyle17;
            this.m_dgResults.Location = new System.Drawing.Point(31, 15);
            this.m_dgResults.Name = "m_dgResults";
            dataGridViewCellStyle18.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle18.BackColor = System.Drawing.SystemColors.Control;
            dataGridViewCellStyle18.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle18.ForeColor = System.Drawing.SystemColors.WindowText;
            dataGridViewCellStyle18.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle18.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
            dataGridViewCellStyle18.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.m_dgResults.RowHeadersDefaultCellStyle = dataGridViewCellStyle18;
            this.m_dgResults.Size = new System.Drawing.Size(654, 196);
            this.m_dgResults.TabIndex = 1;
            // 
            // tabPage1
            // 
            this.tabPage1.Controls.Add(this.panel2);
            this.tabPage1.Controls.Add(this.m_dgPluginResults);
            this.tabPage1.Location = new System.Drawing.Point(4, 22);
            this.tabPage1.Name = "tabPage1";
            this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
            this.tabPage1.Size = new System.Drawing.Size(794, 261);
            this.tabPage1.TabIndex = 7;
            this.tabPage1.Text = "PluginResults";
            this.tabPage1.UseVisualStyleBackColor = true;
            // 
            // m_dgPluginResults
            // 
            this.m_dgPluginResults.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                        | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            dataGridViewCellStyle19.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle19.BackColor = System.Drawing.SystemColors.Control;
            dataGridViewCellStyle19.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle19.ForeColor = System.Drawing.SystemColors.WindowText;
            dataGridViewCellStyle19.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle19.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
            dataGridViewCellStyle19.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.m_dgPluginResults.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle19;
            this.m_dgPluginResults.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            dataGridViewCellStyle20.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle20.BackColor = System.Drawing.SystemColors.Window;
            dataGridViewCellStyle20.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle20.ForeColor = System.Drawing.SystemColors.ControlText;
            dataGridViewCellStyle20.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle20.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
            dataGridViewCellStyle20.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
            this.m_dgPluginResults.DefaultCellStyle = dataGridViewCellStyle20;
            this.m_dgPluginResults.Location = new System.Drawing.Point(29, 18);
            this.m_dgPluginResults.Name = "m_dgPluginResults";
            dataGridViewCellStyle21.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle21.BackColor = System.Drawing.SystemColors.Control;
            dataGridViewCellStyle21.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle21.ForeColor = System.Drawing.SystemColors.WindowText;
            dataGridViewCellStyle21.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle21.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
            dataGridViewCellStyle21.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.m_dgPluginResults.RowHeadersDefaultCellStyle = dataGridViewCellStyle21;
            this.m_dgPluginResults.Size = new System.Drawing.Size(654, 196);
            this.m_dgPluginResults.TabIndex = 2;
            // 
            // panel2
            // 
            this.panel2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.panel2.Controls.Add(this.btnNextPluginResult);
            this.panel2.Controls.Add(this.btnPluginImportResults);
            this.panel2.Location = new System.Drawing.Point(29, 217);
            this.panel2.Name = "panel2";
            this.panel2.Size = new System.Drawing.Size(626, 34);
            this.panel2.TabIndex = 7;
            // 
            // btnPluginImportResults
            // 
            this.btnPluginImportResults.Location = new System.Drawing.Point(3, 7);
            this.btnPluginImportResults.Name = "btnPluginImportResults";
            this.btnPluginImportResults.Size = new System.Drawing.Size(91, 23);
            this.btnPluginImportResults.TabIndex = 5;
            this.btnPluginImportResults.Text = "Import Results";
            this.btnPluginImportResults.UseVisualStyleBackColor = true;
            this.btnPluginImportResults.Click += new System.EventHandler(this.btnPluginImportResults_Click);
            // 
            // btnNextPluginResult
            // 
            this.btnNextPluginResult.Location = new System.Drawing.Point(156, 7);
            this.btnNextPluginResult.Name = "btnNextPluginResult";
            this.btnNextPluginResult.Size = new System.Drawing.Size(75, 23);
            this.btnNextPluginResult.TabIndex = 6;
            this.btnNextPluginResult.Text = "Next Table";
            this.btnNextPluginResult.UseVisualStyleBackColor = true;
            this.btnNextPluginResult.Click += new System.EventHandler(this.btnNextPluginResult_Click);
            // 
            // Form1
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(801, 286);
            this.Controls.Add(this.tabPages);
            this.Name = "Form1";
            this.Text = "FieldStat";
            tpAssemblies.ResumeLayout(false);
            tpAssemblies.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.m_dgAssemblies)).EndInit();
            this.tabPages.ResumeLayout(false);
            this.tpCoverage.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.m_dgCoverage)).EndInit();
            this.tpType_Params.ResumeLayout(false);
            this.tpType_Params.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.m_dgTypeFilters)).EndInit();
            this.tpAnalysis.ResumeLayout(false);
            this.tpAnalysis.PerformLayout();
            this.tpAppStats.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.m_dgAppStats)).EndInit();
            this.tpCodeRank.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.m_dgCodeRank)).EndInit();
            this.tpResults.ResumeLayout(false);
            this.panel1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.m_dgResults)).EndInit();
            this.tabPage1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.m_dgPluginResults)).EndInit();
            this.panel2.ResumeLayout(false);
            this.ResumeLayout(false);

        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.TabPage tpThongTin;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmUpdateThongtinHDB));
     this.label16      = new System.Windows.Forms.Label();
     this.pictureBox7  = new System.Windows.Forms.PictureBox();
     this.btnSua       = new System.Windows.Forms.Button();
     this.pictureBox3  = new System.Windows.Forms.PictureBox();
     this.btnDong      = new System.Windows.Forms.Button();
     this.dtpNgayNhap  = new System.Windows.Forms.DateTimePicker();
     this.cboMaKH      = new System.Windows.Forms.ComboBox();
     this.cboMaNV      = new System.Windows.Forms.ComboBox();
     this.btnThemNV    = new System.Windows.Forms.Button();
     this.label8       = new System.Windows.Forms.Label();
     this.btnThemNCC   = new System.Windows.Forms.Button();
     this.label7       = new System.Windows.Forms.Label();
     this.label5       = new System.Windows.Forms.Label();
     this.txtTenNV     = new System.Windows.Forms.TextBox();
     this.txtTenKH     = new System.Windows.Forms.TextBox();
     this.txtDienthoai = new System.Windows.Forms.TextBox();
     this.txtMaHD      = new System.Windows.Forms.TextBox();
     this.label4       = new System.Windows.Forms.Label();
     this.label3       = new System.Windows.Forms.Label();
     this.label2       = new System.Windows.Forms.Label();
     this.label1       = new System.Windows.Forms.Label();
     this.btnXoaSP     = new System.Windows.Forms.Button();
     this.tcThongtin   = new System.Windows.Forms.TabControl();
     this.tpChiTiet    = new System.Windows.Forms.TabPage();
     this.pictureBox9  = new System.Windows.Forms.PictureBox();
     this.btnSuaSP     = new System.Windows.Forms.Button();
     this.txtTon       = new System.Windows.Forms.TextBox();
     this.label6       = new System.Windows.Forms.Label();
     this.label17      = new System.Windows.Forms.Label();
     this.txtTongTien  = new System.Windows.Forms.TextBox();
     this.txtThanhtien = new System.Windows.Forms.TextBox();
     this.txtGiamGia   = new System.Windows.Forms.TextBox();
     this.txtDonGia    = new System.Windows.Forms.TextBox();
     this.txtSoluong   = new System.Windows.Forms.TextBox();
     this.txtTenHang   = new System.Windows.Forms.TextBox();
     this.dgvUpdateCT  = new System.Windows.Forms.DataGridView();
     this.btnThemhang  = new System.Windows.Forms.Button();
     this.cboMahang    = new System.Windows.Forms.ComboBox();
     this.lblBangchu   = new System.Windows.Forms.Label();
     this.label15      = new System.Windows.Forms.Label();
     this.label14      = new System.Windows.Forms.Label();
     this.label13      = new System.Windows.Forms.Label();
     this.label12      = new System.Windows.Forms.Label();
     this.label11      = new System.Windows.Forms.Label();
     this.label10      = new System.Windows.Forms.Label();
     this.label9       = new System.Windows.Forms.Label();
     this.pictureBox6  = new System.Windows.Forms.PictureBox();
     this.pictureBox8  = new System.Windows.Forms.PictureBox();
     this.pictureBox2  = new System.Windows.Forms.PictureBox();
     this.btnThemSP    = new System.Windows.Forms.Button();
     this.button2      = new System.Windows.Forms.Button();
     tpThongTin        = new System.Windows.Forms.TabPage();
     tpThongTin.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).BeginInit();
     this.tcThongtin.SuspendLayout();
     this.tpChiTiet.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgvUpdateCT)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
     this.SuspendLayout();
     //
     // tpThongTin
     //
     tpThongTin.BackColor = System.Drawing.Color.WhiteSmoke;
     tpThongTin.Controls.Add(this.label16);
     tpThongTin.Controls.Add(this.pictureBox7);
     tpThongTin.Controls.Add(this.btnSua);
     tpThongTin.Controls.Add(this.pictureBox3);
     tpThongTin.Controls.Add(this.btnDong);
     tpThongTin.Controls.Add(this.dtpNgayNhap);
     tpThongTin.Controls.Add(this.cboMaKH);
     tpThongTin.Controls.Add(this.cboMaNV);
     tpThongTin.Controls.Add(this.btnThemNV);
     tpThongTin.Controls.Add(this.label8);
     tpThongTin.Controls.Add(this.btnThemNCC);
     tpThongTin.Controls.Add(this.label7);
     tpThongTin.Controls.Add(this.label5);
     tpThongTin.Controls.Add(this.txtTenNV);
     tpThongTin.Controls.Add(this.txtTenKH);
     tpThongTin.Controls.Add(this.txtDienthoai);
     tpThongTin.Controls.Add(this.txtMaHD);
     tpThongTin.Controls.Add(this.label4);
     tpThongTin.Controls.Add(this.label3);
     tpThongTin.Controls.Add(this.label2);
     tpThongTin.Controls.Add(this.label1);
     tpThongTin.Location = new System.Drawing.Point(4, 25);
     tpThongTin.Name     = "tpThongTin";
     tpThongTin.Padding  = new System.Windows.Forms.Padding(3);
     tpThongTin.Size     = new System.Drawing.Size(891, 481);
     tpThongTin.TabIndex = 0;
     tpThongTin.Text     = "Thông tin ";
     tpThongTin.Enter   += new System.EventHandler(this.tpThongTin_Enter);
     //
     // label16
     //
     this.label16.AutoSize  = true;
     this.label16.Font      = new System.Drawing.Font("Microsoft Sans Serif", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label16.ForeColor = System.Drawing.Color.ForestGreen;
     this.label16.Location  = new System.Drawing.Point(236, 21);
     this.label16.Name      = "label16";
     this.label16.Size      = new System.Drawing.Size(337, 36);
     this.label16.TabIndex  = 85;
     this.label16.Text      = "Thông tin hóa đơn bán";
     //
     // pictureBox7
     //
     this.pictureBox7.BackColor = System.Drawing.SystemColors.ControlLight;
     this.pictureBox7.Enabled   = false;
     this.pictureBox7.Image     = global::QuanLyCuaHang.Properties.Resources.Oxygen_Icons_org_Oxygen_Actions_document_save_all;
     this.pictureBox7.Location  = new System.Drawing.Point(400, 307);
     this.pictureBox7.Name      = "pictureBox7";
     this.pictureBox7.Size      = new System.Drawing.Size(47, 41);
     this.pictureBox7.SizeMode  = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pictureBox7.TabIndex  = 82;
     this.pictureBox7.TabStop   = false;
     //
     // btnSua
     //
     this.btnSua.BackColor = System.Drawing.SystemColors.ControlLight;
     this.btnSua.Location  = new System.Drawing.Point(397, 303);
     this.btnSua.Name      = "btnSua";
     this.btnSua.Size      = new System.Drawing.Size(111, 50);
     this.btnSua.TabIndex  = 81;
     this.btnSua.Text      = "Lưu";
     this.btnSua.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btnSua.UseVisualStyleBackColor = false;
     this.btnSua.Click += new System.EventHandler(this.btnSua_Click);
     //
     // pictureBox3
     //
     this.pictureBox3.BackColor = System.Drawing.SystemColors.ControlLight;
     this.pictureBox3.Enabled   = false;
     this.pictureBox3.Image     = global::QuanLyCuaHang.Properties.Resources.Delete;
     this.pictureBox3.Location  = new System.Drawing.Point(771, 423);
     this.pictureBox3.Name      = "pictureBox3";
     this.pictureBox3.Size      = new System.Drawing.Size(45, 40);
     this.pictureBox3.SizeMode  = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pictureBox3.TabIndex  = 80;
     this.pictureBox3.TabStop   = false;
     //
     // btnDong
     //
     this.btnDong.BackColor = System.Drawing.SystemColors.ControlLight;
     this.btnDong.Location  = new System.Drawing.Point(768, 419);
     this.btnDong.Name      = "btnDong";
     this.btnDong.Size      = new System.Drawing.Size(111, 50);
     this.btnDong.TabIndex  = 79;
     this.btnDong.Text      = "Đóng";
     this.btnDong.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btnDong.UseVisualStyleBackColor = false;
     this.btnDong.Click += new System.EventHandler(this.btnDong_Click);
     //
     // dtpNgayNhap
     //
     this.dtpNgayNhap.Format   = System.Windows.Forms.DateTimePickerFormat.Short;
     this.dtpNgayNhap.Location = new System.Drawing.Point(183, 138);
     this.dtpNgayNhap.Name     = "dtpNgayNhap";
     this.dtpNgayNhap.Size     = new System.Drawing.Size(215, 22);
     this.dtpNgayNhap.TabIndex = 78;
     //
     // cboMaKH
     //
     this.cboMaKH.FormattingEnabled = true;
     this.cboMaKH.Location          = new System.Drawing.Point(572, 122);
     this.cboMaKH.Name         = "cboMaKH";
     this.cboMaKH.Size         = new System.Drawing.Size(212, 24);
     this.cboMaKH.TabIndex     = 77;
     this.cboMaKH.DropDown    += new System.EventHandler(this.cboMaKH_DropDown);
     this.cboMaKH.TextChanged += new System.EventHandler(this.cboMaKH_TextChanged);
     //
     // cboMaNV
     //
     this.cboMaNV.FormattingEnabled = true;
     this.cboMaNV.Location          = new System.Drawing.Point(183, 193);
     this.cboMaNV.Name         = "cboMaNV";
     this.cboMaNV.Size         = new System.Drawing.Size(178, 24);
     this.cboMaNV.TabIndex     = 76;
     this.cboMaNV.DropDown    += new System.EventHandler(this.cboMaNV_DropDown);
     this.cboMaNV.TextChanged += new System.EventHandler(this.cboMaNV_TextChanged);
     //
     // btnThemNV
     //
     this.btnThemNV.Location = new System.Drawing.Point(367, 193);
     this.btnThemNV.Name     = "btnThemNV";
     this.btnThemNV.Size     = new System.Drawing.Size(31, 24);
     this.btnThemNV.TabIndex = 74;
     this.btnThemNV.Text     = "...";
     this.btnThemNV.UseVisualStyleBackColor = true;
     this.btnThemNV.Click += new System.EventHandler(this.btnThemNV_Click);
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Location = new System.Drawing.Point(468, 124);
     this.label8.Name     = "label8";
     this.label8.Size     = new System.Drawing.Size(86, 17);
     this.label8.TabIndex = 68;
     this.label8.Text     = "Khách Hàng";
     //
     // btnThemNCC
     //
     this.btnThemNCC.Location = new System.Drawing.Point(790, 120);
     this.btnThemNCC.Name     = "btnThemNCC";
     this.btnThemNCC.Size     = new System.Drawing.Size(31, 24);
     this.btnThemNCC.TabIndex = 75;
     this.btnThemNCC.Text     = "...";
     this.btnThemNCC.UseVisualStyleBackColor = true;
     this.btnThemNCC.Click += new System.EventHandler(this.btnThemNCC_Click);
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Location = new System.Drawing.Point(468, 172);
     this.label7.Name     = "label7";
     this.label7.Size     = new System.Drawing.Size(56, 17);
     this.label7.TabIndex = 66;
     this.label7.Text     = "Tên KH";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(468, 222);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(77, 17);
     this.label5.TabIndex = 61;
     this.label5.Text     = "Điện Thoại";
     //
     // txtTenNV
     //
     this.txtTenNV.Location = new System.Drawing.Point(183, 241);
     this.txtTenNV.Name     = "txtTenNV";
     this.txtTenNV.Size     = new System.Drawing.Size(215, 22);
     this.txtTenNV.TabIndex = 70;
     //
     // txtTenKH
     //
     this.txtTenKH.Location = new System.Drawing.Point(572, 171);
     this.txtTenKH.Name     = "txtTenKH";
     this.txtTenKH.Size     = new System.Drawing.Size(249, 22);
     this.txtTenKH.TabIndex = 71;
     //
     // txtDienthoai
     //
     this.txtDienthoai.Location = new System.Drawing.Point(572, 221);
     this.txtDienthoai.Name     = "txtDienthoai";
     this.txtDienthoai.Size     = new System.Drawing.Size(249, 22);
     this.txtDienthoai.TabIndex = 73;
     //
     // txtMaHD
     //
     this.txtMaHD.Location = new System.Drawing.Point(183, 98);
     this.txtMaHD.Name     = "txtMaHD";
     this.txtMaHD.Size     = new System.Drawing.Size(215, 22);
     this.txtMaHD.TabIndex = 69;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(74, 241);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(103, 17);
     this.label4.TabIndex = 64;
     this.label4.Text     = "Tên Nhân Viên";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(74, 193);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(97, 17);
     this.label3.TabIndex = 63;
     this.label3.Text     = "Mã Viên Nhân";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(74, 145);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(79, 17);
     this.label2.TabIndex = 62;
     this.label2.Text     = "Ngày Nhập";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(74, 97);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(80, 17);
     this.label1.TabIndex = 67;
     this.label1.Text     = "Mã HĐ Bán";
     //
     // btnXoaSP
     //
     this.btnXoaSP.BackColor = System.Drawing.SystemColors.ControlLight;
     this.btnXoaSP.Location  = new System.Drawing.Point(656, 424);
     this.btnXoaSP.Name      = "btnXoaSP";
     this.btnXoaSP.Size      = new System.Drawing.Size(111, 50);
     this.btnXoaSP.TabIndex  = 88;
     this.btnXoaSP.Text      = "Xóa SP";
     this.btnXoaSP.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btnXoaSP.UseVisualStyleBackColor = false;
     this.btnXoaSP.Click += new System.EventHandler(this.btnXoaSP_Click);
     //
     // tcThongtin
     //
     this.tcThongtin.Controls.Add(tpThongTin);
     this.tcThongtin.Controls.Add(this.tpChiTiet);
     this.tcThongtin.Location      = new System.Drawing.Point(9, 10);
     this.tcThongtin.Name          = "tcThongtin";
     this.tcThongtin.SelectedIndex = 0;
     this.tcThongtin.Size          = new System.Drawing.Size(899, 510);
     this.tcThongtin.TabIndex      = 1;
     //
     // tpChiTiet
     //
     this.tpChiTiet.BackColor = System.Drawing.Color.WhiteSmoke;
     this.tpChiTiet.Controls.Add(this.pictureBox9);
     this.tpChiTiet.Controls.Add(this.btnSuaSP);
     this.tpChiTiet.Controls.Add(this.txtTon);
     this.tpChiTiet.Controls.Add(this.label6);
     this.tpChiTiet.Controls.Add(this.label17);
     this.tpChiTiet.Controls.Add(this.txtTongTien);
     this.tpChiTiet.Controls.Add(this.txtThanhtien);
     this.tpChiTiet.Controls.Add(this.txtGiamGia);
     this.tpChiTiet.Controls.Add(this.txtDonGia);
     this.tpChiTiet.Controls.Add(this.txtSoluong);
     this.tpChiTiet.Controls.Add(this.txtTenHang);
     this.tpChiTiet.Controls.Add(this.dgvUpdateCT);
     this.tpChiTiet.Controls.Add(this.btnThemhang);
     this.tpChiTiet.Controls.Add(this.cboMahang);
     this.tpChiTiet.Controls.Add(this.lblBangchu);
     this.tpChiTiet.Controls.Add(this.label15);
     this.tpChiTiet.Controls.Add(this.label14);
     this.tpChiTiet.Controls.Add(this.label13);
     this.tpChiTiet.Controls.Add(this.label12);
     this.tpChiTiet.Controls.Add(this.label11);
     this.tpChiTiet.Controls.Add(this.label10);
     this.tpChiTiet.Controls.Add(this.label9);
     this.tpChiTiet.Controls.Add(this.pictureBox6);
     this.tpChiTiet.Controls.Add(this.pictureBox8);
     this.tpChiTiet.Controls.Add(this.pictureBox2);
     this.tpChiTiet.Controls.Add(this.btnThemSP);
     this.tpChiTiet.Controls.Add(this.btnXoaSP);
     this.tpChiTiet.Controls.Add(this.button2);
     this.tpChiTiet.Location = new System.Drawing.Point(4, 25);
     this.tpChiTiet.Name     = "tpChiTiet";
     this.tpChiTiet.Padding  = new System.Windows.Forms.Padding(3);
     this.tpChiTiet.Size     = new System.Drawing.Size(891, 481);
     this.tpChiTiet.TabIndex = 1;
     this.tpChiTiet.Text     = "Chi tiết";
     this.tpChiTiet.Enter   += new System.EventHandler(this.tpChiTiet_Enter);
     //
     // pictureBox9
     //
     this.pictureBox9.BackColor = System.Drawing.SystemColors.ControlLight;
     this.pictureBox9.Enabled   = false;
     this.pictureBox9.Image     = global::QuanLyCuaHang.Properties.Resources.Repair;
     this.pictureBox9.Location  = new System.Drawing.Point(543, 428);
     this.pictureBox9.Name      = "pictureBox9";
     this.pictureBox9.Size      = new System.Drawing.Size(47, 41);
     this.pictureBox9.SizeMode  = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pictureBox9.TabIndex  = 95;
     this.pictureBox9.TabStop   = false;
     //
     // btnSuaSP
     //
     this.btnSuaSP.BackColor = System.Drawing.SystemColors.ControlLight;
     this.btnSuaSP.Location  = new System.Drawing.Point(541, 424);
     this.btnSuaSP.Name      = "btnSuaSP";
     this.btnSuaSP.Size      = new System.Drawing.Size(109, 50);
     this.btnSuaSP.TabIndex  = 94;
     this.btnSuaSP.Text      = "Sửa SP";
     this.btnSuaSP.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btnSuaSP.UseVisualStyleBackColor = false;
     this.btnSuaSP.Click += new System.EventHandler(this.btnSuaSP_Click);
     //
     // txtTon
     //
     this.txtTon.Location = new System.Drawing.Point(418, 120);
     this.txtTon.Name     = "txtTon";
     this.txtTon.Size     = new System.Drawing.Size(59, 22);
     this.txtTon.TabIndex = 93;
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Location = new System.Drawing.Point(416, 102);
     this.label6.Name     = "label6";
     this.label6.Size     = new System.Drawing.Size(33, 17);
     this.label6.TabIndex = 92;
     this.label6.Text     = "Tồn";
     //
     // label17
     //
     this.label17.AutoSize  = true;
     this.label17.Font      = new System.Drawing.Font("Microsoft Sans Serif", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label17.ForeColor = System.Drawing.Color.ForestGreen;
     this.label17.Location  = new System.Drawing.Point(266, 20);
     this.label17.Name      = "label17";
     this.label17.Size      = new System.Drawing.Size(302, 36);
     this.label17.TabIndex  = 91;
     this.label17.Text      = "Chi tiết hóa đơn bán";
     //
     // txtTongTien
     //
     this.txtTongTien.Location = new System.Drawing.Point(87, 334);
     this.txtTongTien.Name     = "txtTongTien";
     this.txtTongTien.Size     = new System.Drawing.Size(174, 22);
     this.txtTongTien.TabIndex = 36;
     //
     // txtThanhtien
     //
     this.txtThanhtien.Location = new System.Drawing.Point(714, 120);
     this.txtThanhtien.Name     = "txtThanhtien";
     this.txtThanhtien.Size     = new System.Drawing.Size(165, 22);
     this.txtThanhtien.TabIndex = 34;
     //
     // txtGiamGia
     //
     this.txtGiamGia.Location     = new System.Drawing.Point(602, 120);
     this.txtGiamGia.Name         = "txtGiamGia";
     this.txtGiamGia.Size         = new System.Drawing.Size(106, 22);
     this.txtGiamGia.TabIndex     = 33;
     this.txtGiamGia.TextChanged += new System.EventHandler(this.txtGiamGia_TextChanged);
     //
     // txtDonGia
     //
     this.txtDonGia.Location     = new System.Drawing.Point(485, 120);
     this.txtDonGia.Name         = "txtDonGia";
     this.txtDonGia.Size         = new System.Drawing.Size(111, 22);
     this.txtDonGia.TabIndex     = 32;
     this.txtDonGia.TextChanged += new System.EventHandler(this.txtDonGia_TextChanged);
     //
     // txtSoluong
     //
     this.txtSoluong.Location     = new System.Drawing.Point(346, 120);
     this.txtSoluong.Name         = "txtSoluong";
     this.txtSoluong.Size         = new System.Drawing.Size(66, 22);
     this.txtSoluong.TabIndex     = 31;
     this.txtSoluong.TextChanged += new System.EventHandler(this.txtSoluong_TextChanged);
     //
     // txtTenHang
     //
     this.txtTenHang.Location = new System.Drawing.Point(166, 120);
     this.txtTenHang.Name     = "txtTenHang";
     this.txtTenHang.Size     = new System.Drawing.Size(171, 22);
     this.txtTenHang.TabIndex = 30;
     //
     // dgvUpdateCT
     //
     this.dgvUpdateCT.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgvUpdateCT.Location           = new System.Drawing.Point(14, 148);
     this.dgvUpdateCT.Name               = "dgvUpdateCT";
     this.dgvUpdateCT.ReadOnly           = true;
     this.dgvUpdateCT.RowTemplate.Height = 24;
     this.dgvUpdateCT.Size               = new System.Drawing.Size(865, 174);
     this.dgvUpdateCT.TabIndex           = 35;
     this.dgvUpdateCT.Click             += new System.EventHandler(this.dgvUpdateCT_Click);
     //
     // btnThemhang
     //
     this.btnThemhang.Location = new System.Drawing.Point(129, 120);
     this.btnThemhang.Name     = "btnThemhang";
     this.btnThemhang.Size     = new System.Drawing.Size(31, 25);
     this.btnThemhang.TabIndex = 29;
     this.btnThemhang.Text     = "...";
     this.btnThemhang.UseVisualStyleBackColor = true;
     this.btnThemhang.Click += new System.EventHandler(this.btnThemhang_Click);
     //
     // cboMahang
     //
     this.cboMahang.FormattingEnabled = true;
     this.cboMahang.Location          = new System.Drawing.Point(14, 120);
     this.cboMahang.Name         = "cboMahang";
     this.cboMahang.Size         = new System.Drawing.Size(109, 24);
     this.cboMahang.TabIndex     = 28;
     this.cboMahang.DropDown    += new System.EventHandler(this.cboMahang_DropDown);
     this.cboMahang.TextChanged += new System.EventHandler(this.cboMahang_TextChanged);
     this.cboMahang.Click       += new System.EventHandler(this.cboMahang_Click);
     //
     // lblBangchu
     //
     this.lblBangchu.AutoSize = true;
     this.lblBangchu.Location = new System.Drawing.Point(8, 365);
     this.lblBangchu.Name     = "lblBangchu";
     this.lblBangchu.Size     = new System.Drawing.Size(78, 17);
     this.lblBangchu.TabIndex = 27;
     this.lblBangchu.Text     = "Bằng Chữ: ";
     //
     // label15
     //
     this.label15.AutoSize = true;
     this.label15.Location = new System.Drawing.Point(8, 339);
     this.label15.Name     = "label15";
     this.label15.Size     = new System.Drawing.Size(73, 17);
     this.label15.TabIndex = 26;
     this.label15.Text     = "Tổng Tiền";
     //
     // label14
     //
     this.label14.AutoSize = true;
     this.label14.Location = new System.Drawing.Point(711, 102);
     this.label14.Name     = "label14";
     this.label14.Size     = new System.Drawing.Size(81, 17);
     this.label14.TabIndex = 25;
     this.label14.Text     = "Thành Tiền";
     //
     // label13
     //
     this.label13.AutoSize = true;
     this.label13.Location = new System.Drawing.Point(599, 102);
     this.label13.Name     = "label13";
     this.label13.Size     = new System.Drawing.Size(93, 17);
     this.label13.TabIndex = 24;
     this.label13.Text     = "Giảm Giá (%)";
     //
     // label12
     //
     this.label12.AutoSize = true;
     this.label12.Location = new System.Drawing.Point(482, 102);
     this.label12.Name     = "label12";
     this.label12.Size     = new System.Drawing.Size(60, 17);
     this.label12.TabIndex = 23;
     this.label12.Text     = "Đơn Giá";
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.Location = new System.Drawing.Point(343, 102);
     this.label11.Name     = "label11";
     this.label11.Size     = new System.Drawing.Size(69, 17);
     this.label11.TabIndex = 22;
     this.label11.Text     = "Số Lượng";
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.Location = new System.Drawing.Point(166, 102);
     this.label10.Name     = "label10";
     this.label10.Size     = new System.Drawing.Size(102, 17);
     this.label10.TabIndex = 21;
     this.label10.Text     = "Tên Sản Phẩm";
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.Location = new System.Drawing.Point(11, 102);
     this.label9.Name     = "label9";
     this.label9.Size     = new System.Drawing.Size(96, 17);
     this.label9.TabIndex = 20;
     this.label9.Text     = "Mã Sản Phẩm";
     //
     // pictureBox6
     //
     this.pictureBox6.BackColor = System.Drawing.SystemColors.ControlLight;
     this.pictureBox6.Enabled   = false;
     this.pictureBox6.Image     = global::QuanLyCuaHang.Properties.Resources.Trash_empty1;
     this.pictureBox6.Location  = new System.Drawing.Point(659, 428);
     this.pictureBox6.Name      = "pictureBox6";
     this.pictureBox6.Size      = new System.Drawing.Size(47, 41);
     this.pictureBox6.SizeMode  = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pictureBox6.TabIndex  = 90;
     this.pictureBox6.TabStop   = false;
     //
     // pictureBox8
     //
     this.pictureBox8.BackColor       = System.Drawing.SystemColors.ControlLight;
     this.pictureBox8.BackgroundImage = global::QuanLyCuaHang.Properties.Resources.icon1;
     this.pictureBox8.Enabled         = false;
     this.pictureBox8.ErrorImage      = null;
     this.pictureBox8.Image           = global::QuanLyCuaHang.Properties.Resources.edit_add;
     this.pictureBox8.InitialImage    = null;
     this.pictureBox8.Location        = new System.Drawing.Point(408, 428);
     this.pictureBox8.Name            = "pictureBox8";
     this.pictureBox8.Size            = new System.Drawing.Size(47, 41);
     this.pictureBox8.SizeMode        = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pictureBox8.TabIndex        = 89;
     this.pictureBox8.TabStop         = false;
     //
     // pictureBox2
     //
     this.pictureBox2.BackColor = System.Drawing.SystemColors.ControlLight;
     this.pictureBox2.Enabled   = false;
     this.pictureBox2.Image     = global::QuanLyCuaHang.Properties.Resources.Delete;
     this.pictureBox2.Location  = new System.Drawing.Point(776, 428);
     this.pictureBox2.Name      = "pictureBox2";
     this.pictureBox2.Size      = new System.Drawing.Size(45, 40);
     this.pictureBox2.SizeMode  = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pictureBox2.TabIndex  = 84;
     this.pictureBox2.TabStop   = false;
     //
     // btnThemSP
     //
     this.btnThemSP.BackColor = System.Drawing.SystemColors.ControlLight;
     this.btnThemSP.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnThemSP.Location  = new System.Drawing.Point(405, 424);
     this.btnThemSP.Name      = "btnThemSP";
     this.btnThemSP.Size      = new System.Drawing.Size(130, 50);
     this.btnThemSP.TabIndex  = 87;
     this.btnThemSP.Text      = "Thêm SP";
     this.btnThemSP.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btnThemSP.UseVisualStyleBackColor = false;
     this.btnThemSP.Click += new System.EventHandler(this.btnThemSP_Click);
     //
     // button2
     //
     this.button2.BackColor = System.Drawing.SystemColors.ControlLight;
     this.button2.Location  = new System.Drawing.Point(776, 424);
     this.button2.Name      = "button2";
     this.button2.Size      = new System.Drawing.Size(111, 50);
     this.button2.TabIndex  = 83;
     this.button2.Text      = "Đóng";
     this.button2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.button2.UseVisualStyleBackColor = false;
     this.button2.Click += new System.EventHandler(this.button2_Click);
     //
     // frmUpdateThongtinHDB
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(904, 516);
     this.Controls.Add(this.tcThongtin);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name = "frmUpdateThongtinHDB";
     this.Text = "Sửa hóa đơn bán";
     tpThongTin.ResumeLayout(false);
     tpThongTin.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).EndInit();
     this.tcThongtin.ResumeLayout(false);
     this.tpChiTiet.ResumeLayout(false);
     this.tpChiTiet.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgvUpdateCT)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.Label      measureEveryUnits;
     System.Windows.Forms.TabPage    tabPrinter;
     System.Windows.Forms.Label      rightLabel;
     System.Windows.Forms.Label      bottomLabel;
     System.Windows.Forms.Label      leftLabel;
     System.Windows.Forms.Label      topLabel;
     System.Windows.Forms.Label      widthLabel;
     System.Windows.Forms.TabPage    tabColors;
     System.Windows.Forms.Label      autoColorLabel;
     System.Windows.Forms.Label      maxZUnits;
     System.Windows.Forms.Label      maxZLabel;
     System.Windows.Forms.Label      minZUnits;
     System.Windows.Forms.Label      minZLabel;
     System.Windows.Forms.TabControl tabs;
     this.bottomText           = new System.Windows.Forms.TextBox();
     this.rightText            = new System.Windows.Forms.TextBox();
     this.autolevelCheckBox    = new System.Windows.Forms.CheckBox();
     this.autolevelLabel       = new System.Windows.Forms.Label();
     this.topText              = new System.Windows.Forms.TextBox();
     this.leftText             = new System.Windows.Forms.TextBox();
     this.maxZText             = new System.Windows.Forms.TextBox();
     this.minZText             = new System.Windows.Forms.TextBox();
     this.tabDetection         = new System.Windows.Forms.TabPage();
     this.checkCustom          = new System.Windows.Forms.CheckBox();
     this.checkMarlin2         = new System.Windows.Forms.CheckBox();
     this.checkMarlin1         = new System.Windows.Forms.CheckBox();
     this.textCustom           = new System.Windows.Forms.RichTextBox();
     this.portText             = new System.Windows.Forms.TextBox();
     this.connectButton        = new System.Windows.Forms.Button();
     this.outputText           = new System.Windows.Forms.TextBox();
     this.disconnectButton     = new System.Windows.Forms.Button();
     this.bedPicture           = new System.Windows.Forms.PictureBox();
     this.measureEveryText     = new System.Windows.Forms.TextBox();
     this.measureEveryButton   = new System.Windows.Forms.Button();
     this.setZ5Button          = new System.Windows.Forms.Button();
     this.measureCornersButton = new System.Windows.Forms.Button();
     this.recenterButton       = new System.Windows.Forms.Button();
     this.commandBox           = new System.Windows.Forms.TextBox();
     this.sendCommandButton    = new System.Windows.Forms.Button();
     this.settingsButton       = new System.Windows.Forms.Button();
     measureEveryUnits         = new System.Windows.Forms.Label();
     tabPrinter     = new System.Windows.Forms.TabPage();
     rightLabel     = new System.Windows.Forms.Label();
     bottomLabel    = new System.Windows.Forms.Label();
     leftLabel      = new System.Windows.Forms.Label();
     topLabel       = new System.Windows.Forms.Label();
     widthLabel     = new System.Windows.Forms.Label();
     tabColors      = new System.Windows.Forms.TabPage();
     autoColorLabel = new System.Windows.Forms.Label();
     maxZUnits      = new System.Windows.Forms.Label();
     maxZLabel      = new System.Windows.Forms.Label();
     minZUnits      = new System.Windows.Forms.Label();
     minZLabel      = new System.Windows.Forms.Label();
     tabs           = new System.Windows.Forms.TabControl();
     tabPrinter.SuspendLayout();
     tabColors.SuspendLayout();
     tabs.SuspendLayout();
     this.tabDetection.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.bedPicture)).BeginInit();
     this.SuspendLayout();
     //
     // measureEveryUnits
     //
     measureEveryUnits.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     measureEveryUnits.AutoSize = true;
     measureEveryUnits.Location = new System.Drawing.Point(251, 770);
     measureEveryUnits.Name     = "measureEveryUnits";
     measureEveryUnits.Size     = new System.Drawing.Size(23, 13);
     measureEveryUnits.TabIndex = 13;
     measureEveryUnits.Text     = "mm";
     //
     // tabPrinter
     //
     tabPrinter.Controls.Add(rightLabel);
     tabPrinter.Controls.Add(this.bottomText);
     tabPrinter.Controls.Add(bottomLabel);
     tabPrinter.Controls.Add(this.rightText);
     tabPrinter.Controls.Add(leftLabel);
     tabPrinter.Controls.Add(this.autolevelCheckBox);
     tabPrinter.Controls.Add(this.autolevelLabel);
     tabPrinter.Controls.Add(this.topText);
     tabPrinter.Controls.Add(topLabel);
     tabPrinter.Controls.Add(this.leftText);
     tabPrinter.Controls.Add(widthLabel);
     tabPrinter.Location = new System.Drawing.Point(4, 22);
     tabPrinter.Name     = "tabPrinter";
     tabPrinter.Padding  = new System.Windows.Forms.Padding(3);
     tabPrinter.Size     = new System.Drawing.Size(257, 141);
     tabPrinter.TabIndex = 0;
     tabPrinter.Text     = "Printer Settings";
     tabPrinter.UseVisualStyleBackColor = true;
     //
     // rightLabel
     //
     rightLabel.AutoSize = true;
     rightLabel.Location = new System.Drawing.Point(93, 37);
     rightLabel.Name     = "rightLabel";
     rightLabel.Size     = new System.Drawing.Size(13, 13);
     rightLabel.TabIndex = 3;
     rightLabel.Text     = "..";
     //
     // bottomText
     //
     this.bottomText.Location     = new System.Drawing.Point(111, 61);
     this.bottomText.Name         = "bottomText";
     this.bottomText.Size         = new System.Drawing.Size(38, 20);
     this.bottomText.TabIndex     = 8;
     this.bottomText.Text         = "150";
     this.bottomText.TextChanged += new System.EventHandler(this.RedrawBedImage);
     //
     // bottomLabel
     //
     bottomLabel.AutoSize = true;
     bottomLabel.Location = new System.Drawing.Point(93, 63);
     bottomLabel.Name     = "bottomLabel";
     bottomLabel.Size     = new System.Drawing.Size(13, 13);
     bottomLabel.TabIndex = 7;
     bottomLabel.Text     = "..";
     //
     // rightText
     //
     this.rightText.Location     = new System.Drawing.Point(111, 35);
     this.rightText.Name         = "rightText";
     this.rightText.Size         = new System.Drawing.Size(38, 20);
     this.rightText.TabIndex     = 4;
     this.rightText.Text         = "150";
     this.rightText.TextChanged += new System.EventHandler(this.RedrawBedImage);
     //
     // leftLabel
     //
     leftLabel.AutoSize = true;
     leftLabel.Location = new System.Drawing.Point(6, 37);
     leftLabel.Name     = "leftLabel";
     leftLabel.Size     = new System.Drawing.Size(39, 13);
     leftLabel.TabIndex = 1;
     leftLabel.Text     = "X Axis:";
     //
     // autolevelCheckBox
     //
     this.autolevelCheckBox.AutoSize = true;
     this.autolevelCheckBox.Location = new System.Drawing.Point(69, 96);
     this.autolevelCheckBox.Name     = "autolevelCheckBox";
     this.autolevelCheckBox.Size     = new System.Drawing.Size(15, 14);
     this.autolevelCheckBox.TabIndex = 10;
     this.autolevelCheckBox.UseVisualStyleBackColor = true;
     //
     // autolevelLabel
     //
     this.autolevelLabel.AutoSize = true;
     this.autolevelLabel.Location = new System.Drawing.Point(6, 95);
     this.autolevelLabel.Name     = "autolevelLabel";
     this.autolevelLabel.Size     = new System.Drawing.Size(57, 13);
     this.autolevelLabel.TabIndex = 9;
     this.autolevelLabel.Text     = "Auto-level:";
     //
     // topText
     //
     this.topText.Location     = new System.Drawing.Point(49, 62);
     this.topText.Name         = "topText";
     this.topText.Size         = new System.Drawing.Size(38, 20);
     this.topText.TabIndex     = 6;
     this.topText.Text         = "0";
     this.topText.TextChanged += new System.EventHandler(this.RedrawBedImage);
     //
     // topLabel
     //
     topLabel.AutoSize = true;
     topLabel.Location = new System.Drawing.Point(6, 63);
     topLabel.Name     = "topLabel";
     topLabel.Size     = new System.Drawing.Size(39, 13);
     topLabel.TabIndex = 5;
     topLabel.Text     = "Y Axis:";
     //
     // leftText
     //
     this.leftText.Location     = new System.Drawing.Point(49, 35);
     this.leftText.Name         = "leftText";
     this.leftText.Size         = new System.Drawing.Size(38, 20);
     this.leftText.TabIndex     = 2;
     this.leftText.Text         = "0";
     this.leftText.TextChanged += new System.EventHandler(this.RedrawBedImage);
     //
     // widthLabel
     //
     widthLabel.AutoSize = true;
     widthLabel.Location = new System.Drawing.Point(6, 9);
     widthLabel.Name     = "widthLabel";
     widthLabel.Size     = new System.Drawing.Size(108, 13);
     widthLabel.TabIndex = 0;
     widthLabel.Text     = "Bed Dimensions (mm)";
     //
     // tabColors
     //
     tabColors.Controls.Add(autoColorLabel);
     tabColors.Controls.Add(maxZUnits);
     tabColors.Controls.Add(this.maxZText);
     tabColors.Controls.Add(maxZLabel);
     tabColors.Controls.Add(minZUnits);
     tabColors.Controls.Add(this.minZText);
     tabColors.Controls.Add(minZLabel);
     tabColors.Location = new System.Drawing.Point(4, 22);
     tabColors.Name     = "tabColors";
     tabColors.Padding  = new System.Windows.Forms.Padding(3);
     tabColors.Size     = new System.Drawing.Size(257, 141);
     tabColors.TabIndex = 1;
     tabColors.Text     = "Colors";
     tabColors.UseVisualStyleBackColor = true;
     //
     // autoColorLabel
     //
     autoColorLabel.AutoSize = true;
     autoColorLabel.Location = new System.Drawing.Point(6, 70);
     autoColorLabel.Name     = "autoColorLabel";
     autoColorLabel.Size     = new System.Drawing.Size(161, 13);
     autoColorLabel.TabIndex = 6;
     autoColorLabel.Text     = "Leave blank for automatic colors";
     //
     // maxZUnits
     //
     maxZUnits.AutoSize = true;
     maxZUnits.Location = new System.Drawing.Point(168, 43);
     maxZUnits.Name     = "maxZUnits";
     maxZUnits.Size     = new System.Drawing.Size(23, 13);
     maxZUnits.TabIndex = 5;
     maxZUnits.Text     = "mm";
     //
     // maxZText
     //
     this.maxZText.Location     = new System.Drawing.Point(113, 40);
     this.maxZText.Name         = "maxZText";
     this.maxZText.Size         = new System.Drawing.Size(49, 20);
     this.maxZText.TabIndex     = 4;
     this.maxZText.TextChanged += new System.EventHandler(this.RedrawBedImage);
     //
     // maxZLabel
     //
     maxZLabel.AutoSize = true;
     maxZLabel.Location = new System.Drawing.Point(6, 43);
     maxZLabel.Name     = "maxZLabel";
     maxZLabel.Size     = new System.Drawing.Size(95, 13);
     maxZLabel.TabIndex = 3;
     maxZLabel.Text     = "Force max Z color:";
     //
     // minZUnits
     //
     minZUnits.AutoSize = true;
     minZUnits.Location = new System.Drawing.Point(168, 17);
     minZUnits.Name     = "minZUnits";
     minZUnits.Size     = new System.Drawing.Size(23, 13);
     minZUnits.TabIndex = 2;
     minZUnits.Text     = "mm";
     //
     // minZText
     //
     this.minZText.Location     = new System.Drawing.Point(113, 14);
     this.minZText.Name         = "minZText";
     this.minZText.Size         = new System.Drawing.Size(49, 20);
     this.minZText.TabIndex     = 1;
     this.minZText.TextChanged += new System.EventHandler(this.RedrawBedImage);
     //
     // minZLabel
     //
     minZLabel.AutoSize = true;
     minZLabel.Location = new System.Drawing.Point(6, 17);
     minZLabel.Name     = "minZLabel";
     minZLabel.Size     = new System.Drawing.Size(92, 13);
     minZLabel.TabIndex = 0;
     minZLabel.Text     = "Force min Z color:";
     //
     // tabs
     //
     tabs.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     tabs.Controls.Add(tabPrinter);
     tabs.Controls.Add(tabColors);
     tabs.Controls.Add(this.tabDetection);
     tabs.Location      = new System.Drawing.Point(12, 488);
     tabs.Name          = "tabs";
     tabs.SelectedIndex = 0;
     tabs.Size          = new System.Drawing.Size(265, 167);
     tabs.TabIndex      = 7;
     //
     // tabDetection
     //
     this.tabDetection.Controls.Add(this.checkCustom);
     this.tabDetection.Controls.Add(this.checkMarlin2);
     this.tabDetection.Controls.Add(this.checkMarlin1);
     this.tabDetection.Controls.Add(this.textCustom);
     this.tabDetection.Location = new System.Drawing.Point(4, 22);
     this.tabDetection.Name     = "tabDetection";
     this.tabDetection.Size     = new System.Drawing.Size(257, 141);
     this.tabDetection.TabIndex = 2;
     this.tabDetection.Text     = "Detection";
     this.tabDetection.UseVisualStyleBackColor = true;
     //
     // checkCustom
     //
     this.checkCustom.AutoSize = true;
     this.checkCustom.Location = new System.Drawing.Point(6, 63);
     this.checkCustom.Name     = "checkCustom";
     this.checkCustom.Size     = new System.Drawing.Size(61, 17);
     this.checkCustom.TabIndex = 2;
     this.checkCustom.Text     = "Custom";
     this.checkCustom.UseVisualStyleBackColor = true;
     this.checkCustom.CheckedChanged         += new System.EventHandler(this.CheckCustomChanged);
     //
     // checkMarlin2
     //
     this.checkMarlin2.AutoSize   = true;
     this.checkMarlin2.Checked    = true;
     this.checkMarlin2.CheckState = System.Windows.Forms.CheckState.Checked;
     this.checkMarlin2.Location   = new System.Drawing.Point(6, 40);
     this.checkMarlin2.Name       = "checkMarlin2";
     this.checkMarlin2.Size       = new System.Drawing.Size(71, 17);
     this.checkMarlin2.TabIndex   = 1;
     this.checkMarlin2.Text       = "Marlin 2.x";
     this.checkMarlin2.UseVisualStyleBackColor = true;
     this.checkMarlin2.CheckedChanged         += new System.EventHandler(this.RedrawBedImage);
     //
     // checkMarlin1
     //
     this.checkMarlin1.AutoSize   = true;
     this.checkMarlin1.Checked    = true;
     this.checkMarlin1.CheckState = System.Windows.Forms.CheckState.Checked;
     this.checkMarlin1.Location   = new System.Drawing.Point(6, 17);
     this.checkMarlin1.Name       = "checkMarlin1";
     this.checkMarlin1.Size       = new System.Drawing.Size(71, 17);
     this.checkMarlin1.TabIndex   = 0;
     this.checkMarlin1.Text       = "Marlin 1.x";
     this.checkMarlin1.UseVisualStyleBackColor = true;
     this.checkMarlin1.CheckedChanged         += new System.EventHandler(this.RedrawBedImage);
     //
     // textCustom
     //
     this.textCustom.DetectUrls       = false;
     this.textCustom.Enabled          = false;
     this.textCustom.Font             = new System.Drawing.Font("Courier New", 9.75F);
     this.textCustom.Location         = new System.Drawing.Point(23, 86);
     this.textCustom.Multiline        = false;
     this.textCustom.Name             = "textCustom";
     this.textCustom.ScrollBars       = System.Windows.Forms.RichTextBoxScrollBars.None;
     this.textCustom.ShortcutsEnabled = false;
     this.textCustom.Size             = new System.Drawing.Size(220, 22);
     this.textCustom.TabIndex         = 3;
     this.textCustom.Text             = "Bed X: {X} Y: {Y} Z: {Z}";
     this.textCustom.WordWrap         = false;
     this.textCustom.TextChanged     += new System.EventHandler(this.CustomDetectionChanged);
     //
     // portText
     //
     this.portText.Location = new System.Drawing.Point(12, 14);
     this.portText.Name     = "portText";
     this.portText.Size     = new System.Drawing.Size(67, 20);
     this.portText.TabIndex = 0;
     //
     // connectButton
     //
     this.connectButton.Location = new System.Drawing.Point(118, 12);
     this.connectButton.Name     = "connectButton";
     this.connectButton.Size     = new System.Drawing.Size(75, 23);
     this.connectButton.TabIndex = 2;
     this.connectButton.Text     = "&Connect";
     this.connectButton.UseVisualStyleBackColor = true;
     this.connectButton.Click += new System.EventHandler(this.ConnectButton_Click);
     //
     // outputText
     //
     this.outputText.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                    | System.Windows.Forms.AnchorStyles.Left)));
     this.outputText.Location   = new System.Drawing.Point(12, 41);
     this.outputText.Multiline  = true;
     this.outputText.Name       = "outputText";
     this.outputText.ReadOnly   = true;
     this.outputText.ScrollBars = System.Windows.Forms.ScrollBars.Both;
     this.outputText.Size       = new System.Drawing.Size(262, 416);
     this.outputText.TabIndex   = 4;
     //
     // disconnectButton
     //
     this.disconnectButton.Enabled  = false;
     this.disconnectButton.Location = new System.Drawing.Point(199, 12);
     this.disconnectButton.Name     = "disconnectButton";
     this.disconnectButton.Size     = new System.Drawing.Size(75, 23);
     this.disconnectButton.TabIndex = 3;
     this.disconnectButton.Text     = "&Disconnect";
     this.disconnectButton.UseVisualStyleBackColor = true;
     this.disconnectButton.Click += new System.EventHandler(this.DisconnectButton_Click);
     //
     // bedPicture
     //
     this.bedPicture.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                     | System.Windows.Forms.AnchorStyles.Left)
                                                                    | System.Windows.Forms.AnchorStyles.Right)));
     this.bedPicture.Location    = new System.Drawing.Point(284, 0);
     this.bedPicture.Name        = "bedPicture";
     this.bedPicture.Size        = new System.Drawing.Size(800, 800);
     this.bedPicture.TabIndex    = 5;
     this.bedPicture.TabStop     = false;
     this.bedPicture.Paint      += new System.Windows.Forms.PaintEventHandler(this.BedPaint);
     this.bedPicture.MouseClick += new System.Windows.Forms.MouseEventHandler(this.BedClick);
     this.bedPicture.Resize     += new System.EventHandler(this.RedrawBedImage);
     //
     // measureEveryText
     //
     this.measureEveryText.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.measureEveryText.Location = new System.Drawing.Point(196, 767);
     this.measureEveryText.Name     = "measureEveryText";
     this.measureEveryText.Size     = new System.Drawing.Size(49, 20);
     this.measureEveryText.TabIndex = 12;
     this.measureEveryText.Text     = "10";
     //
     // measureEveryButton
     //
     this.measureEveryButton.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.measureEveryButton.Location = new System.Drawing.Point(12, 765);
     this.measureEveryButton.Name     = "measureEveryButton";
     this.measureEveryButton.Size     = new System.Drawing.Size(178, 23);
     this.measureEveryButton.TabIndex = 11;
     this.measureEveryButton.Text     = "Measure every:";
     this.measureEveryButton.UseVisualStyleBackColor = true;
     this.measureEveryButton.Click += new System.EventHandler(this.GeneratePattern);
     //
     // setZ5Button
     //
     this.setZ5Button.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.setZ5Button.Location = new System.Drawing.Point(12, 689);
     this.setZ5Button.Name     = "setZ5Button";
     this.setZ5Button.Size     = new System.Drawing.Size(262, 23);
     this.setZ5Button.TabIndex = 9;
     this.setZ5Button.Text     = "Move Z to 5.0mm";
     this.setZ5Button.UseVisualStyleBackColor = true;
     this.setZ5Button.Click += new System.EventHandler(this.SetZto5);
     //
     // measureCornersButton
     //
     this.measureCornersButton.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.measureCornersButton.Location = new System.Drawing.Point(12, 736);
     this.measureCornersButton.Name     = "measureCornersButton";
     this.measureCornersButton.Size     = new System.Drawing.Size(262, 23);
     this.measureCornersButton.TabIndex = 10;
     this.measureCornersButton.Text     = "Measure corners";
     this.measureCornersButton.UseVisualStyleBackColor = true;
     this.measureCornersButton.Click += new System.EventHandler(this.MeasureCorners);
     //
     // recenterButton
     //
     this.recenterButton.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.recenterButton.Location = new System.Drawing.Point(12, 660);
     this.recenterButton.Name     = "recenterButton";
     this.recenterButton.Size     = new System.Drawing.Size(262, 23);
     this.recenterButton.TabIndex = 8;
     this.recenterButton.Text     = "Clear and return to center";
     this.recenterButton.UseVisualStyleBackColor = true;
     this.recenterButton.Click += new System.EventHandler(this.ClearClicked);
     //
     // commandBox
     //
     this.commandBox.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.commandBox.Location = new System.Drawing.Point(12, 464);
     this.commandBox.Name     = "commandBox";
     this.commandBox.Size     = new System.Drawing.Size(210, 20);
     this.commandBox.TabIndex = 5;
     this.commandBox.Enter   += new System.EventHandler(this.CommandBox_Enter);
     this.commandBox.Leave   += new System.EventHandler(this.CommandBox_Leave);
     //
     // sendCommandButton
     //
     this.sendCommandButton.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.sendCommandButton.Enabled  = false;
     this.sendCommandButton.Location = new System.Drawing.Point(227, 461);
     this.sendCommandButton.Name     = "sendCommandButton";
     this.sendCommandButton.Size     = new System.Drawing.Size(46, 23);
     this.sendCommandButton.TabIndex = 6;
     this.sendCommandButton.Text     = "Send";
     this.sendCommandButton.UseVisualStyleBackColor = true;
     this.sendCommandButton.Click += new System.EventHandler(this.SendCommand);
     //
     // settingsButton
     //
     this.settingsButton.Location = new System.Drawing.Point(85, 12);
     this.settingsButton.Name     = "settingsButton";
     this.settingsButton.Size     = new System.Drawing.Size(27, 23);
     this.settingsButton.TabIndex = 1;
     this.settingsButton.Text     = "...";
     this.settingsButton.UseVisualStyleBackColor = true;
     this.settingsButton.Click += new System.EventHandler(this.SettingsClick);
     //
     // BedLeveler
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(1084, 800);
     this.Controls.Add(this.settingsButton);
     this.Controls.Add(this.sendCommandButton);
     this.Controls.Add(this.commandBox);
     this.Controls.Add(tabs);
     this.Controls.Add(measureEveryUnits);
     this.Controls.Add(this.measureEveryText);
     this.Controls.Add(this.measureEveryButton);
     this.Controls.Add(this.setZ5Button);
     this.Controls.Add(this.measureCornersButton);
     this.Controls.Add(this.recenterButton);
     this.Controls.Add(this.bedPicture);
     this.Controls.Add(this.disconnectButton);
     this.Controls.Add(this.outputText);
     this.Controls.Add(this.connectButton);
     this.Controls.Add(this.portText);
     this.DoubleBuffered = true;
     this.MinimumSize    = new System.Drawing.Size(740, 490);
     this.Name           = "BedLeveler";
     this.Text           = "Printer Bed Inspector";
     this.FormClosing   += new System.Windows.Forms.FormClosingEventHandler(this.BedLeveler_FormClosing);
     tabPrinter.ResumeLayout(false);
     tabPrinter.PerformLayout();
     tabColors.ResumeLayout(false);
     tabColors.PerformLayout();
     tabs.ResumeLayout(false);
     this.tabDetection.ResumeLayout(false);
     this.tabDetection.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.bedPicture)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ExceptionReportView));
     listviewAssemblies   = new System.Windows.Forms.ListView();
     tabControl           = new System.Windows.Forms.TabControl();
     tabGeneral           = new System.Windows.Forms.TabPage();
     picGeneral           = new System.Windows.Forms.PictureBox();
     txtExceptionMessage  = new System.Windows.Forms.TextBox();
     lblExplanation       = new System.Windows.Forms.Label();
     txtUserExplanation   = new System.Windows.Forms.TextBox();
     lblRegion            = new System.Windows.Forms.Label();
     txtRegion            = new System.Windows.Forms.TextBox();
     lblDate              = new System.Windows.Forms.Label();
     txtDate              = new System.Windows.Forms.TextBox();
     lblTime              = new System.Windows.Forms.Label();
     txtTime              = new System.Windows.Forms.TextBox();
     lblApplication       = new System.Windows.Forms.Label();
     txtApplicationName   = new System.Windows.Forms.TextBox();
     lblVersion           = new System.Windows.Forms.Label();
     txtVersion           = new System.Windows.Forms.TextBox();
     tabExceptions        = new System.Windows.Forms.TabPage();
     tabAssemblies        = new System.Windows.Forms.TabPage();
     tabConfig            = new System.Windows.Forms.TabPage();
     webBrowserConfig     = new System.Windows.Forms.WebBrowser();
     tabSysInfo           = new System.Windows.Forms.TabPage();
     lblMachine           = new System.Windows.Forms.Label();
     txtMachine           = new System.Windows.Forms.TextBox();
     lblUsername          = new System.Windows.Forms.Label();
     txtUserName          = new System.Windows.Forms.TextBox();
     treeEnvironment      = new System.Windows.Forms.TreeView();
     tabContact           = new System.Windows.Forms.TabPage();
     lblContactMessageTop = new System.Windows.Forms.Label();
     txtFax                    = new System.Windows.Forms.TextBox();
     lblFax                    = new System.Windows.Forms.Label();
     txtPhone                  = new System.Windows.Forms.TextBox();
     lblPhone                  = new System.Windows.Forms.Label();
     lblWebSite                = new System.Windows.Forms.Label();
     urlWeb                    = new System.Windows.Forms.LinkLabel();
     lblEmail                  = new System.Windows.Forms.Label();
     urlEmail                  = new System.Windows.Forms.LinkLabel();
     btnSave                   = new System.Windows.Forms.Button();
     progressBar               = new System.Windows.Forms.ProgressBar();
     btnEmail                  = new System.Windows.Forms.Button();
     lblProgressMessage        = new System.Windows.Forms.Label();
     btnCopy                   = new System.Windows.Forms.Button();
     btnDetailToggle           = new System.Windows.Forms.Button();
     txtExceptionMessageLarge  = new System.Windows.Forms.TextBox();
     btnClose                  = new System.Windows.Forms.Button();
     lessDetailPanel           = new System.Windows.Forms.Panel();
     lessDetail_optionsPanel   = new System.Windows.Forms.Panel();
     lblContactCompany         = new System.Windows.Forms.Label();
     btnSimpleEmail            = new System.Windows.Forms.Button();
     btnSimpleDetailToggle     = new System.Windows.Forms.Button();
     btnSimpleCopy             = new System.Windows.Forms.Button();
     txtExceptionMessageLarge2 = new System.Windows.Forms.TextBox();
     lessDetail_alertIcon      = new System.Windows.Forms.PictureBox();
     label1                    = new System.Windows.Forms.Label();
     tabControl.SuspendLayout();
     tabGeneral.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.picGeneral)).BeginInit();
     tabAssemblies.SuspendLayout();
     tabConfig.SuspendLayout();
     tabSysInfo.SuspendLayout();
     tabContact.SuspendLayout();
     lessDetailPanel.SuspendLayout();
     lessDetail_optionsPanel.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lessDetail_alertIcon)).BeginInit();
     SuspendLayout();
     //
     // listviewAssemblies
     //
     listviewAssemblies.Activation     = System.Windows.Forms.ItemActivation.OneClick;
     listviewAssemblies.Dock           = System.Windows.Forms.DockStyle.Fill;
     listviewAssemblies.FullRowSelect  = true;
     listviewAssemblies.HotTracking    = true;
     listviewAssemblies.HoverSelection = true;
     listviewAssemblies.Location       = new System.Drawing.Point(0, 0);
     listviewAssemblies.Name           = "listviewAssemblies";
     listviewAssemblies.Size           = new System.Drawing.Size(364, 131);
     listviewAssemblies.TabIndex       = 21;
     listviewAssemblies.UseCompatibleStateImageBehavior = false;
     listviewAssemblies.View = System.Windows.Forms.View.Details;
     //
     // tabControl
     //
     tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                | System.Windows.Forms.AnchorStyles.Left)
                                                               | System.Windows.Forms.AnchorStyles.Right)));
     tabControl.Controls.Add(this.tabGeneral);
     tabControl.Controls.Add(this.tabExceptions);
     tabControl.Controls.Add(this.tabAssemblies);
     tabControl.Controls.Add(this.tabConfig);
     tabControl.Controls.Add(this.tabSysInfo);
     tabControl.Controls.Add(this.tabContact);
     tabControl.HotTrack      = true;
     tabControl.Location      = new System.Drawing.Point(6, 6);
     tabControl.MinimumSize   = new System.Drawing.Size(200, 0);
     tabControl.Multiline     = true;
     tabControl.Name          = "tabControl";
     tabControl.SelectedIndex = 0;
     tabControl.ShowToolTips  = true;
     tabControl.Size          = new System.Drawing.Size(372, 157);
     tabControl.TabIndex      = 6;
     //
     // tabGeneral
     //
     tabGeneral.Controls.Add(this.picGeneral);
     tabGeneral.Controls.Add(this.txtExceptionMessage);
     tabGeneral.Controls.Add(this.lblExplanation);
     tabGeneral.Controls.Add(this.txtUserExplanation);
     tabGeneral.Controls.Add(this.lblRegion);
     tabGeneral.Controls.Add(this.txtRegion);
     tabGeneral.Controls.Add(this.lblDate);
     tabGeneral.Controls.Add(this.txtDate);
     tabGeneral.Controls.Add(this.lblTime);
     tabGeneral.Controls.Add(this.txtTime);
     tabGeneral.Controls.Add(this.lblApplication);
     tabGeneral.Controls.Add(this.txtApplicationName);
     tabGeneral.Controls.Add(this.lblVersion);
     tabGeneral.Controls.Add(this.txtVersion);
     tabGeneral.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     tabGeneral.Location = new System.Drawing.Point(4, 22);
     tabGeneral.Name     = "tabGeneral";
     tabGeneral.Size     = new System.Drawing.Size(364, 131);
     tabGeneral.TabIndex = 0;
     tabGeneral.Text     = "General";
     tabGeneral.UseVisualStyleBackColor = true;
     //
     // picGeneral
     //
     picGeneral.Image    = ((System.Drawing.Image)(resources.GetObject("picGeneral.Image")));
     picGeneral.Location = new System.Drawing.Point(8, 7);
     picGeneral.Name     = "picGeneral";
     picGeneral.Size     = new System.Drawing.Size(64, 64);
     picGeneral.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     picGeneral.TabIndex = 25;
     picGeneral.TabStop  = false;
     //
     // txtExceptionMessage
     //
     txtExceptionMessage.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                        | System.Windows.Forms.AnchorStyles.Right)));
     txtExceptionMessage.BackColor  = System.Drawing.Color.White;
     txtExceptionMessage.Font       = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     txtExceptionMessage.Location   = new System.Drawing.Point(78, 7);
     txtExceptionMessage.Multiline  = true;
     txtExceptionMessage.Name       = "txtExceptionMessage";
     txtExceptionMessage.ReadOnly   = true;
     txtExceptionMessage.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     txtExceptionMessage.Size       = new System.Drawing.Size(271, 68);
     txtExceptionMessage.TabIndex   = 0;
     txtExceptionMessage.Text       = "No message";
     //
     // lblExplanation
     //
     lblExplanation.AutoSize = true;
     lblExplanation.Location = new System.Drawing.Point(6, 191);
     lblExplanation.Name     = "lblExplanation";
     lblExplanation.Size     = new System.Drawing.Size(334, 13);
     lblExplanation.TabIndex = 14;
     lblExplanation.Text     = "Please enter a brief explanation of events leading up to this exception";
     //
     // txtUserExplanation
     //
     txtUserExplanation.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                        | System.Windows.Forms.AnchorStyles.Left)
                                                                       | System.Windows.Forms.AnchorStyles.Right)));
     txtUserExplanation.BackColor = System.Drawing.Color.Cornsilk;
     txtUserExplanation.Font      = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     txtUserExplanation.Location  = new System.Drawing.Point(8, 210);
     txtUserExplanation.Multiline = true;
     txtUserExplanation.Name      = "txtUserExplanation";
     txtUserExplanation.Size      = new System.Drawing.Size(341, 0);
     txtUserExplanation.TabIndex  = 6;
     //
     // lblRegion
     //
     lblRegion.AutoSize = true;
     lblRegion.Location = new System.Drawing.Point(254, 127);
     lblRegion.Name     = "lblRegion";
     lblRegion.Size     = new System.Drawing.Size(41, 13);
     lblRegion.TabIndex = 7;
     lblRegion.Text     = "Region";
     //
     // txtRegion
     //
     txtRegion.BackColor = System.Drawing.Color.Snow;
     txtRegion.Location  = new System.Drawing.Point(310, 124);
     txtRegion.Name      = "txtRegion";
     txtRegion.ReadOnly  = true;
     txtRegion.Size      = new System.Drawing.Size(141, 20);
     txtRegion.TabIndex  = 3;
     //
     // lblDate
     //
     lblDate.AutoSize = true;
     lblDate.Location = new System.Drawing.Point(14, 159);
     lblDate.Name     = "lblDate";
     lblDate.Size     = new System.Drawing.Size(30, 13);
     lblDate.TabIndex = 9;
     lblDate.Text     = "Date";
     //
     // txtDate
     //
     txtDate.BackColor = System.Drawing.Color.Snow;
     txtDate.Location  = new System.Drawing.Point(78, 156);
     txtDate.Name      = "txtDate";
     txtDate.ReadOnly  = true;
     txtDate.Size      = new System.Drawing.Size(152, 20);
     txtDate.TabIndex  = 4;
     //
     // lblTime
     //
     lblTime.AutoSize = true;
     lblTime.Location = new System.Drawing.Point(254, 159);
     lblTime.Name     = "lblTime";
     lblTime.Size     = new System.Drawing.Size(30, 13);
     lblTime.TabIndex = 11;
     lblTime.Text     = "Time";
     //
     // txtTime
     //
     txtTime.BackColor = System.Drawing.Color.Snow;
     txtTime.Location  = new System.Drawing.Point(310, 156);
     txtTime.Name      = "txtTime";
     txtTime.ReadOnly  = true;
     txtTime.Size      = new System.Drawing.Size(141, 20);
     txtTime.TabIndex  = 5;
     //
     // lblApplication
     //
     lblApplication.AutoSize = true;
     lblApplication.Location = new System.Drawing.Point(14, 94);
     lblApplication.Name     = "lblApplication";
     lblApplication.Size     = new System.Drawing.Size(59, 13);
     lblApplication.TabIndex = 3;
     lblApplication.Text     = "Application";
     //
     // txtApplicationName
     //
     txtApplicationName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                       | System.Windows.Forms.AnchorStyles.Right)));
     txtApplicationName.BackColor = System.Drawing.Color.Snow;
     txtApplicationName.Location  = new System.Drawing.Point(78, 92);
     txtApplicationName.Name      = "txtApplicationName";
     txtApplicationName.ReadOnly  = true;
     txtApplicationName.Size      = new System.Drawing.Size(271, 20);
     txtApplicationName.TabIndex  = 1;
     //
     // lblVersion
     //
     lblVersion.Location = new System.Drawing.Point(14, 127);
     lblVersion.Name     = "lblVersion";
     lblVersion.Size     = new System.Drawing.Size(48, 16);
     lblVersion.TabIndex = 5;
     lblVersion.Text     = "Version";
     //
     // txtVersion
     //
     txtVersion.BackColor = System.Drawing.Color.Snow;
     txtVersion.Location  = new System.Drawing.Point(78, 124);
     txtVersion.Name      = "txtVersion";
     txtVersion.ReadOnly  = true;
     txtVersion.Size      = new System.Drawing.Size(152, 20);
     txtVersion.TabIndex  = 2;
     //
     // tabExceptions
     //
     tabExceptions.Location = new System.Drawing.Point(4, 22);
     tabExceptions.Name     = "tabExceptions";
     tabExceptions.Size     = new System.Drawing.Size(364, 131);
     tabExceptions.TabIndex = 1;
     tabExceptions.Text     = "Exceptions";
     tabExceptions.UseVisualStyleBackColor = true;
     //
     // tabAssemblies
     //
     tabAssemblies.Controls.Add(this.listviewAssemblies);
     tabAssemblies.Location = new System.Drawing.Point(4, 22);
     tabAssemblies.Name     = "tabAssemblies";
     tabAssemblies.Size     = new System.Drawing.Size(364, 131);
     tabAssemblies.TabIndex = 6;
     tabAssemblies.Text     = "Assemblies";
     tabAssemblies.UseVisualStyleBackColor = true;
     //
     // tabConfig
     //
     tabConfig.Controls.Add(this.webBrowserConfig);
     tabConfig.Location = new System.Drawing.Point(4, 22);
     tabConfig.Name     = "tabConfig";
     tabConfig.Size     = new System.Drawing.Size(364, 131);
     tabConfig.TabIndex = 5;
     tabConfig.Text     = "Configuration";
     tabConfig.UseVisualStyleBackColor = true;
     //
     // webBrowserConfig
     //
     webBrowserConfig.AllowNavigation     = false;
     webBrowserConfig.AllowWebBrowserDrop = false;
     webBrowserConfig.Dock = System.Windows.Forms.DockStyle.Fill;
     webBrowserConfig.IsWebBrowserContextMenuEnabled = false;
     webBrowserConfig.Location    = new System.Drawing.Point(0, 0);
     webBrowserConfig.MinimumSize = new System.Drawing.Size(20, 20);
     webBrowserConfig.Name        = "webBrowserConfig";
     webBrowserConfig.Size        = new System.Drawing.Size(364, 131);
     webBrowserConfig.TabIndex    = 21;
     webBrowserConfig.WebBrowserShortcutsEnabled = false;
     //
     // tabSysInfo
     //
     tabSysInfo.Controls.Add(this.lblMachine);
     tabSysInfo.Controls.Add(this.txtMachine);
     tabSysInfo.Controls.Add(this.lblUsername);
     tabSysInfo.Controls.Add(this.txtUserName);
     tabSysInfo.Controls.Add(this.treeEnvironment);
     tabSysInfo.Location = new System.Drawing.Point(4, 22);
     tabSysInfo.Name     = "tabSysInfo";
     tabSysInfo.Size     = new System.Drawing.Size(364, 131);
     tabSysInfo.TabIndex = 3;
     tabSysInfo.Text     = "System";
     tabSysInfo.UseVisualStyleBackColor = true;
     //
     // lblMachine
     //
     lblMachine.AutoSize = true;
     lblMachine.Location = new System.Drawing.Point(5, 15);
     lblMachine.Name     = "lblMachine";
     lblMachine.Size     = new System.Drawing.Size(46, 13);
     lblMachine.TabIndex = 16;
     lblMachine.Text     = "Machine";
     //
     // txtMachine
     //
     txtMachine.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                               | System.Windows.Forms.AnchorStyles.Right)));
     txtMachine.BackColor = System.Drawing.SystemColors.Control;
     txtMachine.Location  = new System.Drawing.Point(59, 12);
     txtMachine.Name      = "txtMachine";
     txtMachine.ReadOnly  = true;
     txtMachine.Size      = new System.Drawing.Size(270, 21);
     txtMachine.TabIndex  = 0;
     //
     // lblUsername
     //
     lblUsername.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     lblUsername.AutoSize = true;
     lblUsername.Location = new System.Drawing.Point(351, 15);
     lblUsername.Name     = "lblUsername";
     lblUsername.Size     = new System.Drawing.Size(55, 13);
     lblUsername.TabIndex = 1;
     lblUsername.Text     = "Username";
     //
     // txtUserName
     //
     txtUserName.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     txtUserName.BackColor = System.Drawing.SystemColors.Control;
     txtUserName.Location  = new System.Drawing.Point(412, 14);
     txtUserName.Name      = "txtUserName";
     txtUserName.ReadOnly  = true;
     txtUserName.Size      = new System.Drawing.Size(169, 21);
     txtUserName.TabIndex  = 1;
     //
     // treeEnvironment
     //
     treeEnvironment.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                     | System.Windows.Forms.AnchorStyles.Left)
                                                                    | System.Windows.Forms.AnchorStyles.Right)));
     treeEnvironment.BackColor   = System.Drawing.SystemColors.Window;
     treeEnvironment.HotTracking = true;
     treeEnvironment.Location    = new System.Drawing.Point(8, 40);
     treeEnvironment.Name        = "treeEnvironment";
     treeEnvironment.Size        = new System.Drawing.Size(573, 301);
     treeEnvironment.TabIndex    = 2;
     //
     // tabContact
     //
     tabContact.Controls.Add(this.lblContactMessageTop);
     tabContact.Controls.Add(this.txtFax);
     tabContact.Controls.Add(this.lblFax);
     tabContact.Controls.Add(this.txtPhone);
     tabContact.Controls.Add(this.lblPhone);
     tabContact.Controls.Add(this.lblWebSite);
     tabContact.Controls.Add(this.urlWeb);
     tabContact.Controls.Add(this.lblEmail);
     tabContact.Controls.Add(this.urlEmail);
     tabContact.Location = new System.Drawing.Point(4, 22);
     tabContact.Name     = "tabContact";
     tabContact.Size     = new System.Drawing.Size(364, 131);
     tabContact.TabIndex = 4;
     tabContact.Text     = "Contact";
     tabContact.UseVisualStyleBackColor = true;
     //
     // lblContactMessageTop
     //
     lblContactMessageTop.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                         | System.Windows.Forms.AnchorStyles.Right)));
     lblContactMessageTop.Location    = new System.Drawing.Point(8, 24);
     lblContactMessageTop.MinimumSize = new System.Drawing.Size(200, 0);
     lblContactMessageTop.Name        = "lblContactMessageTop";
     lblContactMessageTop.Size        = new System.Drawing.Size(533, 24);
     lblContactMessageTop.TabIndex    = 27;
     lblContactMessageTop.Text        = "The following details can be used to obtain support for this application.";
     //
     // txtFax
     //
     txtFax.BackColor   = System.Drawing.SystemColors.Control;
     txtFax.Location    = new System.Drawing.Point(72, 168);
     txtFax.MinimumSize = new System.Drawing.Size(200, 0);
     txtFax.Name        = "txtFax";
     txtFax.ReadOnly    = true;
     txtFax.Size        = new System.Drawing.Size(249, 21);
     txtFax.TabIndex    = 3;
     //
     // lblFax
     //
     lblFax.AutoSize = true;
     lblFax.Location = new System.Drawing.Point(18, 168);
     lblFax.Name     = "lblFax";
     lblFax.Size     = new System.Drawing.Size(25, 13);
     lblFax.TabIndex = 34;
     lblFax.Text     = "Fax";
     //
     // txtPhone
     //
     txtPhone.Location    = new System.Drawing.Point(72, 142);
     txtPhone.MinimumSize = new System.Drawing.Size(200, 0);
     txtPhone.Name        = "txtPhone";
     txtPhone.ReadOnly    = true;
     txtPhone.Size        = new System.Drawing.Size(249, 21);
     txtPhone.TabIndex    = 2;
     //
     // lblPhone
     //
     lblPhone.AutoSize = true;
     lblPhone.Location = new System.Drawing.Point(16, 144);
     lblPhone.Name     = "lblPhone";
     lblPhone.Size     = new System.Drawing.Size(37, 13);
     lblPhone.TabIndex = 32;
     lblPhone.Text     = "Phone";
     //
     // lblWebSite
     //
     lblWebSite.AutoSize = true;
     lblWebSite.Location = new System.Drawing.Point(16, 80);
     lblWebSite.Name     = "lblWebSite";
     lblWebSite.Size     = new System.Drawing.Size(29, 13);
     lblWebSite.TabIndex = 30;
     lblWebSite.Text     = "Web";
     //
     // urlWeb
     //
     urlWeb.ActiveLinkColor = System.Drawing.Color.Orange;
     urlWeb.Anchor          = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                    | System.Windows.Forms.AnchorStyles.Right)));
     urlWeb.AutoSize    = true;
     urlWeb.Font        = new System.Drawing.Font("Trebuchet MS", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     urlWeb.Location    = new System.Drawing.Point(72, 77);
     urlWeb.Margin      = new System.Windows.Forms.Padding(5);
     urlWeb.MinimumSize = new System.Drawing.Size(200, 0);
     urlWeb.Name        = "urlWeb";
     urlWeb.Size        = new System.Drawing.Size(200, 18);
     urlWeb.TabIndex    = 1;
     urlWeb.TabStop     = true;
     urlWeb.Text        = "NA";
     //
     // lblEmail
     //
     lblEmail.AutoSize = true;
     lblEmail.Location = new System.Drawing.Point(16, 56);
     lblEmail.Name     = "lblEmail";
     lblEmail.Size     = new System.Drawing.Size(31, 13);
     lblEmail.TabIndex = 28;
     lblEmail.Text     = "Email";
     //
     // urlEmail
     //
     urlEmail.ActiveLinkColor = System.Drawing.Color.Orange;
     urlEmail.Anchor          = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                      | System.Windows.Forms.AnchorStyles.Right)));
     urlEmail.AutoSize    = true;
     urlEmail.Font        = new System.Drawing.Font("Trebuchet MS", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     urlEmail.Location    = new System.Drawing.Point(72, 53);
     urlEmail.Margin      = new System.Windows.Forms.Padding(5);
     urlEmail.MinimumSize = new System.Drawing.Size(200, 0);
     urlEmail.Name        = "urlEmail";
     urlEmail.Size        = new System.Drawing.Size(200, 18);
     urlEmail.TabIndex    = 0;
     urlEmail.TabStop     = true;
     urlEmail.Text        = "NA";
     //
     // btnSave
     //
     btnSave.Anchor     = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     btnSave.Font       = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     btnSave.Image      = ((System.Drawing.Image)(resources.GetObject("btnSave.Image")));
     btnSave.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     btnSave.Location   = new System.Drawing.Point(151, 166);
     btnSave.Name       = "btnSave";
     btnSave.Size       = new System.Drawing.Size(72, 32);
     btnSave.TabIndex   = 2;
     btnSave.Text       = "Save";
     btnSave.TextAlign  = System.Drawing.ContentAlignment.MiddleRight;
     //
     // progressBar
     //
     progressBar.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     progressBar.Location = new System.Drawing.Point(5, 182);
     progressBar.Name     = "progressBar";
     progressBar.Size     = new System.Drawing.Size(141, 16);
     progressBar.Style    = System.Windows.Forms.ProgressBarStyle.Marquee;
     progressBar.TabIndex = 53;
     //
     // btnEmail
     //
     btnEmail.Anchor     = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     btnEmail.Font       = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     btnEmail.Image      = ((System.Drawing.Image)(resources.GetObject("btnEmail.Image")));
     btnEmail.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     btnEmail.Location   = new System.Drawing.Point(228, 166);
     btnEmail.Name       = "btnEmail";
     btnEmail.Size       = new System.Drawing.Size(72, 32);
     btnEmail.TabIndex   = 1;
     btnEmail.Text       = "Email";
     btnEmail.TextAlign  = System.Drawing.ContentAlignment.MiddleRight;
     //
     // lblProgressMessage
     //
     lblProgressMessage.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     lblProgressMessage.AutoSize  = true;
     lblProgressMessage.BackColor = System.Drawing.Color.Transparent;
     lblProgressMessage.Location  = new System.Drawing.Point(3, 166);
     lblProgressMessage.Name      = "lblProgressMessage";
     lblProgressMessage.Size      = new System.Drawing.Size(150, 13);
     lblProgressMessage.TabIndex  = 52;
     lblProgressMessage.Text      = "Loading system information...";
     //
     // btnCopy
     //
     btnCopy.Anchor     = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     btnCopy.Font       = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     btnCopy.Image      = ((System.Drawing.Image)(resources.GetObject("btnCopy.Image")));
     btnCopy.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     btnCopy.Location   = new System.Drawing.Point(74, 166);
     btnCopy.Name       = "btnCopy";
     btnCopy.Size       = new System.Drawing.Size(72, 32);
     btnCopy.TabIndex   = 3;
     btnCopy.Text       = "Copy";
     btnCopy.TextAlign  = System.Drawing.ContentAlignment.MiddleRight;
     //
     // btnDetailToggle
     //
     btnDetailToggle.Anchor     = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     btnDetailToggle.Font       = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     btnDetailToggle.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     btnDetailToggle.Location   = new System.Drawing.Point(-3, 166);
     btnDetailToggle.Name       = "btnDetailToggle";
     btnDetailToggle.Size       = new System.Drawing.Size(72, 32);
     btnDetailToggle.TabIndex   = 4;
     btnDetailToggle.Text       = "Less Detail";
     //
     // txtExceptionMessageLarge
     //
     txtExceptionMessageLarge.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                              | System.Windows.Forms.AnchorStyles.Left)
                                                                             | System.Windows.Forms.AnchorStyles.Right)));
     txtExceptionMessageLarge.BackColor  = System.Drawing.Color.White;
     txtExceptionMessageLarge.Font       = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     txtExceptionMessageLarge.Location   = new System.Drawing.Point(6, 6);
     txtExceptionMessageLarge.Multiline  = true;
     txtExceptionMessageLarge.Name       = "txtExceptionMessageLarge";
     txtExceptionMessageLarge.ReadOnly   = true;
     txtExceptionMessageLarge.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     txtExceptionMessageLarge.Size       = new System.Drawing.Size(371, 154);
     txtExceptionMessageLarge.TabIndex   = 5;
     txtExceptionMessageLarge.Text       = "No message";
     //
     // btnClose
     //
     btnClose.Anchor     = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     btnClose.Font       = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     btnClose.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     btnClose.Location   = new System.Drawing.Point(305, 166);
     btnClose.Name       = "btnClose";
     btnClose.Size       = new System.Drawing.Size(72, 32);
     btnClose.TabIndex   = 0;
     btnClose.Text       = "Close";
     //
     // lessDetailPanel
     //
     lessDetailPanel.BackColor = System.Drawing.Color.White;
     lessDetailPanel.Controls.Add(this.lessDetail_optionsPanel);
     lessDetailPanel.Controls.Add(this.txtExceptionMessageLarge2);
     lessDetailPanel.Controls.Add(this.lessDetail_alertIcon);
     lessDetailPanel.Controls.Add(this.label1);
     lessDetailPanel.Dock     = System.Windows.Forms.DockStyle.Fill;
     lessDetailPanel.Location = new System.Drawing.Point(0, 0);
     lessDetailPanel.Name     = "lessDetailPanel";
     lessDetailPanel.Size     = new System.Drawing.Size(384, 202);
     lessDetailPanel.TabIndex = 54;
     //
     // lessDetail_optionsPanel
     //
     lessDetail_optionsPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(236)))), ((int)(((byte)(240)))), ((int)(((byte)(245)))));
     lessDetail_optionsPanel.Controls.Add(this.lblContactCompany);
     lessDetail_optionsPanel.Controls.Add(this.btnSimpleEmail);
     lessDetail_optionsPanel.Controls.Add(this.btnSimpleDetailToggle);
     lessDetail_optionsPanel.Controls.Add(this.btnSimpleCopy);
     lessDetail_optionsPanel.Dock     = System.Windows.Forms.DockStyle.Bottom;
     lessDetail_optionsPanel.Location = new System.Drawing.Point(0, 123);
     lessDetail_optionsPanel.Name     = "lessDetail_optionsPanel";
     lessDetail_optionsPanel.Padding  = new System.Windows.Forms.Padding(8);
     lessDetail_optionsPanel.Size     = new System.Drawing.Size(384, 79);
     lessDetail_optionsPanel.TabIndex = 26;
     //
     // lblContactCompany
     //
     lblContactCompany.AutoSize  = true;
     lblContactCompany.ForeColor = System.Drawing.Color.SlateGray;
     lblContactCompany.Location  = new System.Drawing.Point(13, 11);
     lblContactCompany.Name      = "lblContactCompany";
     lblContactCompany.Size      = new System.Drawing.Size(0, 13);
     lblContactCompany.TabIndex  = 3;
     //
     // btnSimpleEmail
     //
     btnSimpleEmail.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     btnSimpleEmail.FlatAppearance.BorderSize         = 0;
     btnSimpleEmail.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(180)))), ((int)(((byte)(200)))), ((int)(((byte)(230)))));
     btnSimpleEmail.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(210)))), ((int)(((byte)(228)))), ((int)(((byte)(255)))));
     btnSimpleEmail.FlatStyle  = System.Windows.Forms.FlatStyle.Flat;
     btnSimpleEmail.Font       = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     btnSimpleEmail.Image      = ((System.Drawing.Image)(resources.GetObject("btnSimpleEmail.Image")));
     btnSimpleEmail.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     btnSimpleEmail.Location   = new System.Drawing.Point(255, 36);
     btnSimpleEmail.Name       = "btnSimpleEmail";
     btnSimpleEmail.Size       = new System.Drawing.Size(118, 32);
     btnSimpleEmail.TabIndex   = 1;
     btnSimpleEmail.TextAlign  = System.Drawing.ContentAlignment.MiddleRight;
     //
     // btnSimpleDetailToggle
     //
     btnSimpleDetailToggle.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     btnSimpleDetailToggle.FlatAppearance.BorderSize         = 0;
     btnSimpleDetailToggle.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(180)))), ((int)(((byte)(200)))), ((int)(((byte)(230)))));
     btnSimpleDetailToggle.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(210)))), ((int)(((byte)(228)))), ((int)(((byte)(255)))));
     btnSimpleDetailToggle.FlatStyle  = System.Windows.Forms.FlatStyle.Flat;
     btnSimpleDetailToggle.Font       = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     btnSimpleDetailToggle.Image      = ((System.Drawing.Image)(resources.GetObject("btnSimpleDetailToggle.Image")));
     btnSimpleDetailToggle.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     btnSimpleDetailToggle.Location   = new System.Drawing.Point(12, 36);
     btnSimpleDetailToggle.Name       = "btnSimpleDetailToggle";
     btnSimpleDetailToggle.Size       = new System.Drawing.Size(96, 32);
     btnSimpleDetailToggle.TabIndex   = 4;
     btnSimpleDetailToggle.Text       = "More detail";
     btnSimpleDetailToggle.TextAlign  = System.Drawing.ContentAlignment.MiddleRight;
     //
     // btnSimpleCopy
     //
     btnSimpleCopy.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     btnSimpleCopy.FlatAppearance.BorderSize         = 0;
     btnSimpleCopy.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(180)))), ((int)(((byte)(200)))), ((int)(((byte)(230)))));
     btnSimpleCopy.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(210)))), ((int)(((byte)(228)))), ((int)(((byte)(255)))));
     btnSimpleCopy.FlatStyle  = System.Windows.Forms.FlatStyle.Flat;
     btnSimpleCopy.Font       = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     btnSimpleCopy.Image      = ((System.Drawing.Image)(resources.GetObject("btnSimpleCopy.Image")));
     btnSimpleCopy.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     btnSimpleCopy.Location   = new System.Drawing.Point(144, 36);
     btnSimpleCopy.Name       = "btnSimpleCopy";
     btnSimpleCopy.Size       = new System.Drawing.Size(109, 32);
     btnSimpleCopy.TabIndex   = 3;
     btnSimpleCopy.Text       = "Copy details";
     btnSimpleCopy.TextAlign  = System.Drawing.ContentAlignment.MiddleRight;
     //
     // txtExceptionMessageLarge2
     //
     txtExceptionMessageLarge2.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                               | System.Windows.Forms.AnchorStyles.Left)
                                                                              | System.Windows.Forms.AnchorStyles.Right)));
     txtExceptionMessageLarge2.BackColor   = System.Drawing.Color.White;
     txtExceptionMessageLarge2.BorderStyle = System.Windows.Forms.BorderStyle.None;
     txtExceptionMessageLarge2.Location    = new System.Drawing.Point(86, 62);
     txtExceptionMessageLarge2.Multiline   = true;
     txtExceptionMessageLarge2.Name        = "txtExceptionMessageLarge2";
     txtExceptionMessageLarge2.ReadOnly    = true;
     txtExceptionMessageLarge2.Size        = new System.Drawing.Size(283, 55);
     txtExceptionMessageLarge2.TabIndex    = 0;
     txtExceptionMessageLarge2.Text        = "No message";
     //
     // lessDetail_alertIcon
     //
     lessDetail_alertIcon.Image    = ((System.Drawing.Image)(resources.GetObject("lessDetail_alertIcon.Image")));
     lessDetail_alertIcon.Location = new System.Drawing.Point(14, 13);
     lessDetail_alertIcon.Name     = "lessDetail_alertIcon";
     lessDetail_alertIcon.Size     = new System.Drawing.Size(64, 64);
     lessDetail_alertIcon.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
     lessDetail_alertIcon.TabIndex = 25;
     lessDetail_alertIcon.TabStop  = false;
     //
     // label1
     //
     label1.AutoSize = true;
     label1.Font     = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     label1.Location = new System.Drawing.Point(84, 33);
     label1.Name     = "label1";
     label1.Size     = new System.Drawing.Size(147, 23);
     label1.TabIndex = 14;
     label1.Text     = "Operation Failed";
     //
     // ExceptionReportView
     //
     AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
     ClientSize    = new System.Drawing.Size(384, 202);
     Controls.Add(this.lessDetailPanel);
     Controls.Add(this.btnClose);
     Controls.Add(this.btnDetailToggle);
     Controls.Add(this.tabControl);
     Controls.Add(this.btnSave);
     Controls.Add(this.progressBar);
     Controls.Add(this.btnEmail);
     Controls.Add(this.lblProgressMessage);
     Controls.Add(this.btnCopy);
     Controls.Add(this.txtExceptionMessageLarge);
     Font          = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     MaximizeBox   = false;
     Name          = "ExceptionReportView";
     StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     tabControl.ResumeLayout(false);
     tabGeneral.ResumeLayout(false);
     tabGeneral.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.picGeneral)).EndInit();
     tabAssemblies.ResumeLayout(false);
     tabConfig.ResumeLayout(false);
     tabSysInfo.ResumeLayout(false);
     tabSysInfo.PerformLayout();
     tabContact.ResumeLayout(false);
     tabContact.PerformLayout();
     lessDetailPanel.ResumeLayout(false);
     lessDetailPanel.PerformLayout();
     lessDetail_optionsPanel.ResumeLayout(false);
     lessDetail_optionsPanel.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lessDetail_alertIcon)).EndInit();
     ResumeLayout(false);
     PerformLayout();
 }
Esempio n. 36
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            System.Windows.Forms.ToolStrip toolStrip1;
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
            System.Windows.Forms.ToolStripButton runButton;
            System.Windows.Forms.SplitContainer splitContainer1;
            System.Windows.Forms.TabControl tabControl1;
            System.Windows.Forms.TabPage tabPage1;
            System.Windows.Forms.TabPage tabPage2;
            this.parseButton = new System.Windows.Forms.ToolStripButton();
            this.textBox = new System.Windows.Forms.TextBox();
            this.sexpTextBox = new System.Windows.Forms.TextBox();
            this.primitivesTextBox = new System.Windows.Forms.TextBox();
            toolStrip1 = new System.Windows.Forms.ToolStrip();
            runButton = new System.Windows.Forms.ToolStripButton();
            splitContainer1 = new System.Windows.Forms.SplitContainer();
            tabControl1 = new System.Windows.Forms.TabControl();
            tabPage1 = new System.Windows.Forms.TabPage();
            tabPage2 = new System.Windows.Forms.TabPage();
            toolStrip1.SuspendLayout();
            splitContainer1.Panel1.SuspendLayout();
            splitContainer1.Panel2.SuspendLayout();
            splitContainer1.SuspendLayout();
            tabControl1.SuspendLayout();
            tabPage1.SuspendLayout();
            tabPage2.SuspendLayout();
            this.SuspendLayout();
            // 
            // toolStrip1
            // 
            toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.parseButton,
            runButton});
            toolStrip1.Location = new System.Drawing.Point(0, 0);
            toolStrip1.Name = "toolStrip1";
            toolStrip1.Size = new System.Drawing.Size(292, 25);
            toolStrip1.TabIndex = 0;
            toolStrip1.Text = "toolStrip1";
            // 
            // parseButton
            // 
            this.parseButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
            this.parseButton.Image = ((System.Drawing.Image)(resources.GetObject("parseButton.Image")));
            this.parseButton.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.parseButton.Name = "parseButton";
            this.parseButton.Size = new System.Drawing.Size(38, 22);
            this.parseButton.Text = "&Parse";
            this.parseButton.Click += new System.EventHandler(this.parseButton_Click);
            // 
            // runButton
            // 
            runButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
            runButton.Image = ((System.Drawing.Image)(resources.GetObject("runButton.Image")));
            runButton.ImageTransparentColor = System.Drawing.Color.Magenta;
            runButton.Name = "runButton";
            runButton.Size = new System.Drawing.Size(30, 22);
            runButton.Text = "&Run";
            runButton.Click += new System.EventHandler(this.runButton_Click);
            // 
            // splitContainer1
            // 
            splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
            splitContainer1.FixedPanel = System.Windows.Forms.FixedPanel.Panel2;
            splitContainer1.Location = new System.Drawing.Point(0, 25);
            splitContainer1.Name = "splitContainer1";
            splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
            // 
            // splitContainer1.Panel1
            // 
            splitContainer1.Panel1.Controls.Add(this.textBox);
            // 
            // splitContainer1.Panel2
            // 
            splitContainer1.Panel2.Controls.Add(tabControl1);
            splitContainer1.Size = new System.Drawing.Size(292, 241);
            splitContainer1.SplitterDistance = 25;
            splitContainer1.TabIndex = 3;
            // 
            // textBox
            // 
            this.textBox.AcceptsReturn = true;
            this.textBox.AcceptsTab = true;
            this.textBox.Dock = System.Windows.Forms.DockStyle.Fill;
            this.textBox.Location = new System.Drawing.Point(0, 0);
            this.textBox.Multiline = true;
            this.textBox.Name = "textBox";
            this.textBox.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
            this.textBox.Size = new System.Drawing.Size(292, 25);
            this.textBox.TabIndex = 1;
            this.textBox.Text = "(define (fact n) (if (= n 0) 1 (* n (fact (- n 1)))))\r\n(MessageBox.Show (String.F" +
                "ormat \"6! = {0}\" (fact 6)) \"Lisp Demo\")";
            this.textBox.WordWrap = false;
            // 
            // tabControl1
            // 
            tabControl1.Controls.Add(tabPage1);
            tabControl1.Controls.Add(tabPage2);
            tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            tabControl1.Location = new System.Drawing.Point(0, 0);
            tabControl1.Name = "tabControl1";
            tabControl1.SelectedIndex = 0;
            tabControl1.Size = new System.Drawing.Size(292, 212);
            tabControl1.TabIndex = 3;
            // 
            // tabPage1
            // 
            tabPage1.Controls.Add(this.sexpTextBox);
            tabPage1.Location = new System.Drawing.Point(4, 22);
            tabPage1.Name = "tabPage1";
            tabPage1.Padding = new System.Windows.Forms.Padding(3);
            tabPage1.Size = new System.Drawing.Size(284, 186);
            tabPage1.TabIndex = 0;
            tabPage1.Text = "S-Expressions";
            tabPage1.UseVisualStyleBackColor = true;
            // 
            // sexpTextBox
            // 
            this.sexpTextBox.Dock = System.Windows.Forms.DockStyle.Fill;
            this.sexpTextBox.Location = new System.Drawing.Point(3, 3);
            this.sexpTextBox.Multiline = true;
            this.sexpTextBox.Name = "sexpTextBox";
            this.sexpTextBox.ReadOnly = true;
            this.sexpTextBox.ScrollBars = System.Windows.Forms.ScrollBars.Both;
            this.sexpTextBox.Size = new System.Drawing.Size(278, 180);
            this.sexpTextBox.TabIndex = 2;
            this.sexpTextBox.WordWrap = false;
            // 
            // tabPage2
            // 
            tabPage2.Controls.Add(this.primitivesTextBox);
            tabPage2.Location = new System.Drawing.Point(4, 22);
            tabPage2.Name = "tabPage2";
            tabPage2.Padding = new System.Windows.Forms.Padding(3);
            tabPage2.Size = new System.Drawing.Size(284, 100);
            tabPage2.TabIndex = 1;
            tabPage2.Text = "Primitives";
            tabPage2.UseVisualStyleBackColor = true;
            // 
            // primitivesTextBox
            // 
            this.primitivesTextBox.Dock = System.Windows.Forms.DockStyle.Fill;
            this.primitivesTextBox.Location = new System.Drawing.Point(3, 3);
            this.primitivesTextBox.Multiline = true;
            this.primitivesTextBox.Name = "primitivesTextBox";
            this.primitivesTextBox.ReadOnly = true;
            this.primitivesTextBox.ScrollBars = System.Windows.Forms.ScrollBars.Both;
            this.primitivesTextBox.Size = new System.Drawing.Size(278, 94);
            this.primitivesTextBox.TabIndex = 3;
            this.primitivesTextBox.WordWrap = false;
            // 
            // MainForm
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(292, 266);
            this.Controls.Add(splitContainer1);
            this.Controls.Add(toolStrip1);
            this.Name = "MainForm";
            this.StartPosition = System.Windows.Forms.FormStartPosition.WindowsDefaultBounds;
            this.Text = "Lisp Compiler Demo";
            toolStrip1.ResumeLayout(false);
            toolStrip1.PerformLayout();
            splitContainer1.Panel1.ResumeLayout(false);
            splitContainer1.Panel1.PerformLayout();
            splitContainer1.Panel2.ResumeLayout(false);
            splitContainer1.ResumeLayout(false);
            tabControl1.ResumeLayout(false);
            tabPage1.ResumeLayout(false);
            tabPage1.PerformLayout();
            tabPage2.ResumeLayout(false);
            tabPage2.PerformLayout();
            this.ResumeLayout(false);
            this.PerformLayout();

        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Windows.Forms.TabPage m_MainTab;
     System.Windows.Forms.Label   likesCountLabel;
     System.Windows.Forms.Label   createdTimeLabel;
     System.Windows.Forms.Label   descriptionLabel;
     System.Windows.Forms.Label   nameLabel;
     System.Windows.Forms.Label   updateTimeLabel;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FacebookForm));
     this.likesCountLabel1          = new System.Windows.Forms.Label();
     this.commentsBindingSource     = new System.Windows.Forms.BindingSource(this.components);
     this.postBindingSource         = new System.Windows.Forms.BindingSource(this.components);
     this.createdTimeDateTimePicker = new System.Windows.Forms.DateTimePicker();
     this.descriptionTextBox        = new System.Windows.Forms.TextBox();
     this.nameLabel1 = new System.Windows.Forms.Label();
     this.updateTimeDateTimePicker = new System.Windows.Forms.DateTimePicker();
     this.m_FriendListBox          = new System.Windows.Forms.ListBox();
     this.friendListBindingSource  = new System.Windows.Forms.BindingSource(this.components);
     this.m_GroupListBox           = new System.Windows.Forms.ListBox();
     this.groupBindingSource       = new System.Windows.Forms.BindingSource(this.components);
     this.label7                  = new System.Windows.Forms.Label();
     this.label6                  = new System.Windows.Forms.Label();
     this.m_RemberMeCheckbox      = new System.Windows.Forms.CheckBox();
     this.label1                  = new System.Windows.Forms.Label();
     this.m_PostListBox           = new System.Windows.Forms.ListBox();
     this.m_PostBtn               = new System.Windows.Forms.Button();
     this.m_LoginLogoutBtn        = new System.Windows.Forms.Button();
     this.m_ProfilePicMain        = new System.Windows.Forms.PictureBox();
     this.m_FaceBookBarPic        = new System.Windows.Forms.PictureBox();
     this.m_FindMatchTab          = new System.Windows.Forms.TabPage();
     this.m_MatchPhotoRadioBtn    = new C19_Ex01_LiorFridman_206081085_DorCohen_307993959.MatchTypeRadioBtn();
     this.m_MatchFriendRadioBtn   = new C19_Ex01_LiorFridman_206081085_DorCohen_307993959.MatchTypeRadioBtn();
     this.m_MatchGroupRadioBtn    = new C19_Ex01_LiorFridman_206081085_DorCohen_307993959.MatchTypeRadioBtn();
     this.m_ExplainOfMatchLabel   = new System.Windows.Forms.Label();
     this.m_RunMatchBtn           = new System.Windows.Forms.Button();
     this.label4                  = new System.Windows.Forms.Label();
     this.label3                  = new System.Windows.Forms.Label();
     this.label2                  = new System.Windows.Forms.Label();
     this.m_PictureProfileMatch   = new System.Windows.Forms.PictureBox();
     this.m_PictureProfileFeature = new System.Windows.Forms.PictureBox();
     this.m_Bar           = new System.Windows.Forms.TabControl();
     this.secondfeature   = new System.Windows.Forms.TabPage();
     this.m_BestTimeLabel = new System.Windows.Forms.Label();
     this.m_BestTImePic   = new System.Windows.Forms.PictureBox();
     this.label5          = new System.Windows.Forms.Label();
     this.m_BestPhotoBtn  = new System.Windows.Forms.Button();
     m_MainTab            = new System.Windows.Forms.TabPage();
     likesCountLabel      = new System.Windows.Forms.Label();
     createdTimeLabel     = new System.Windows.Forms.Label();
     descriptionLabel     = new System.Windows.Forms.Label();
     nameLabel            = new System.Windows.Forms.Label();
     updateTimeLabel      = new System.Windows.Forms.Label();
     m_MainTab.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.commentsBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.postBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.friendListBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.m_ProfilePicMain)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.m_FaceBookBarPic)).BeginInit();
     this.m_FindMatchTab.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.m_PictureProfileMatch)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.m_PictureProfileFeature)).BeginInit();
     this.m_Bar.SuspendLayout();
     this.secondfeature.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.m_BestTImePic)).BeginInit();
     this.SuspendLayout();
     //
     // m_MainTab
     //
     m_MainTab.AutoScroll = true;
     m_MainTab.BackColor  = System.Drawing.SystemColors.GradientActiveCaption;
     m_MainTab.Controls.Add(likesCountLabel);
     m_MainTab.Controls.Add(this.likesCountLabel1);
     m_MainTab.Controls.Add(createdTimeLabel);
     m_MainTab.Controls.Add(this.createdTimeDateTimePicker);
     m_MainTab.Controls.Add(descriptionLabel);
     m_MainTab.Controls.Add(this.descriptionTextBox);
     m_MainTab.Controls.Add(nameLabel);
     m_MainTab.Controls.Add(this.nameLabel1);
     m_MainTab.Controls.Add(updateTimeLabel);
     m_MainTab.Controls.Add(this.updateTimeDateTimePicker);
     m_MainTab.Controls.Add(this.m_FriendListBox);
     m_MainTab.Controls.Add(this.m_GroupListBox);
     m_MainTab.Controls.Add(this.label7);
     m_MainTab.Controls.Add(this.label6);
     m_MainTab.Controls.Add(this.m_RemberMeCheckbox);
     m_MainTab.Controls.Add(this.label1);
     m_MainTab.Controls.Add(this.m_PostListBox);
     m_MainTab.Controls.Add(this.m_PostBtn);
     m_MainTab.Controls.Add(this.m_LoginLogoutBtn);
     m_MainTab.Controls.Add(this.m_ProfilePicMain);
     m_MainTab.Location = new System.Drawing.Point(4, 22);
     m_MainTab.Name     = "m_MainTab";
     m_MainTab.Padding  = new System.Windows.Forms.Padding(3);
     m_MainTab.Size     = new System.Drawing.Size(873, 364);
     m_MainTab.TabIndex = 0;
     m_MainTab.Text     = "Main";
     //
     // likesCountLabel
     //
     likesCountLabel.AutoSize = true;
     likesCountLabel.Font     = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(177)));
     likesCountLabel.Location = new System.Drawing.Point(484, 324);
     likesCountLabel.Name     = "likesCountLabel";
     likesCountLabel.Size     = new System.Drawing.Size(80, 16);
     likesCountLabel.TabIndex = 19;
     likesCountLabel.Text     = "Likes Count:";
     //
     // likesCountLabel1
     //
     this.likesCountLabel1.DataBindings.Add(new System.Windows.Forms.Binding("Tag", this.commentsBindingSource, "LikesCount", true));
     this.likesCountLabel1.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.commentsBindingSource, "LikesCount", true));
     this.likesCountLabel1.Font     = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(177)));
     this.likesCountLabel1.Location = new System.Drawing.Point(590, 324);
     this.likesCountLabel1.Name     = "likesCountLabel1";
     this.likesCountLabel1.Size     = new System.Drawing.Size(100, 23);
     this.likesCountLabel1.TabIndex = 20;
     this.likesCountLabel1.Text     = "label8";
     //
     // commentsBindingSource
     //
     this.commentsBindingSource.DataMember = "Comments";
     this.commentsBindingSource.DataSource = this.postBindingSource;
     //
     // postBindingSource
     //
     this.postBindingSource.DataSource = typeof(FacebookWrapper.ObjectModel.Post);
     //
     // createdTimeLabel
     //
     createdTimeLabel.AutoSize = true;
     createdTimeLabel.Font     = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(177)));
     createdTimeLabel.Location = new System.Drawing.Point(484, 208);
     createdTimeLabel.Name     = "createdTimeLabel";
     createdTimeLabel.Size     = new System.Drawing.Size(93, 16);
     createdTimeLabel.TabIndex = 12;
     createdTimeLabel.Text     = "Created Time:";
     //
     // createdTimeDateTimePicker
     //
     this.createdTimeDateTimePicker.DataBindings.Add(new System.Windows.Forms.Binding("Value", this.postBindingSource, "CreatedTime", true));
     this.createdTimeDateTimePicker.Font     = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(177)));
     this.createdTimeDateTimePicker.Location = new System.Drawing.Point(590, 206);
     this.createdTimeDateTimePicker.Name     = "createdTimeDateTimePicker";
     this.createdTimeDateTimePicker.Size     = new System.Drawing.Size(200, 22);
     this.createdTimeDateTimePicker.TabIndex = 13;
     //
     // descriptionLabel
     //
     descriptionLabel.AutoSize = true;
     descriptionLabel.Font     = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(177)));
     descriptionLabel.Location = new System.Drawing.Point(484, 235);
     descriptionLabel.Name     = "descriptionLabel";
     descriptionLabel.Size     = new System.Drawing.Size(79, 16);
     descriptionLabel.TabIndex = 14;
     descriptionLabel.Text     = "Description:";
     //
     // descriptionTextBox
     //
     this.descriptionTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.postBindingSource, "Description", true));
     this.descriptionTextBox.Font     = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(177)));
     this.descriptionTextBox.Location = new System.Drawing.Point(590, 232);
     this.descriptionTextBox.Name     = "descriptionTextBox";
     this.descriptionTextBox.Size     = new System.Drawing.Size(200, 22);
     this.descriptionTextBox.TabIndex = 15;
     //
     // nameLabel
     //
     nameLabel.AutoSize = true;
     nameLabel.Font     = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(177)));
     nameLabel.Location = new System.Drawing.Point(484, 265);
     nameLabel.Name     = "nameLabel";
     nameLabel.Size     = new System.Drawing.Size(48, 16);
     nameLabel.TabIndex = 16;
     nameLabel.Text     = "Name:";
     //
     // nameLabel1
     //
     this.nameLabel1.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.postBindingSource, "Name", true));
     this.nameLabel1.Font     = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(177)));
     this.nameLabel1.Location = new System.Drawing.Point(590, 265);
     this.nameLabel1.Name     = "nameLabel1";
     this.nameLabel1.Size     = new System.Drawing.Size(200, 23);
     this.nameLabel1.TabIndex = 17;
     this.nameLabel1.Text     = "label8";
     //
     // updateTimeLabel
     //
     updateTimeLabel.AutoSize = true;
     updateTimeLabel.Font     = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(177)));
     updateTimeLabel.Location = new System.Drawing.Point(484, 298);
     updateTimeLabel.Name     = "updateTimeLabel";
     updateTimeLabel.Size     = new System.Drawing.Size(90, 16);
     updateTimeLabel.TabIndex = 18;
     updateTimeLabel.Text     = "Update Time:";
     //
     // updateTimeDateTimePicker
     //
     this.updateTimeDateTimePicker.DataBindings.Add(new System.Windows.Forms.Binding("Value", this.postBindingSource, "UpdateTime", true));
     this.updateTimeDateTimePicker.Font     = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(177)));
     this.updateTimeDateTimePicker.Location = new System.Drawing.Point(590, 293);
     this.updateTimeDateTimePicker.Name     = "updateTimeDateTimePicker";
     this.updateTimeDateTimePicker.Size     = new System.Drawing.Size(200, 22);
     this.updateTimeDateTimePicker.TabIndex = 19;
     //
     // m_FriendListBox
     //
     this.m_FriendListBox.DataSource        = this.friendListBindingSource;
     this.m_FriendListBox.DisplayMember     = "Name";
     this.m_FriendListBox.FormattingEnabled = true;
     this.m_FriendListBox.Location          = new System.Drawing.Point(232, 57);
     this.m_FriendListBox.Name     = "m_FriendListBox";
     this.m_FriendListBox.Size     = new System.Drawing.Size(216, 121);
     this.m_FriendListBox.TabIndex = 12;
     //
     // friendListBindingSource
     //
     this.friendListBindingSource.DataSource = typeof(FacebookWrapper.ObjectModel.FriendList);
     //
     // m_GroupListBox
     //
     this.m_GroupListBox.DataSource        = this.groupBindingSource;
     this.m_GroupListBox.DisplayMember     = "Name";
     this.m_GroupListBox.FormattingEnabled = true;
     this.m_GroupListBox.Location          = new System.Drawing.Point(232, 235);
     this.m_GroupListBox.Name     = "m_GroupListBox";
     this.m_GroupListBox.Size     = new System.Drawing.Size(216, 121);
     this.m_GroupListBox.TabIndex = 11;
     //
     // groupBindingSource
     //
     this.groupBindingSource.DataSource = typeof(FacebookWrapper.ObjectModel.Group);
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Font     = new System.Drawing.Font("Microsoft Sans Serif", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(177)));
     this.label7.Location = new System.Drawing.Point(227, 199);
     this.label7.Name     = "label7";
     this.label7.Size     = new System.Drawing.Size(111, 25);
     this.label7.TabIndex = 10;
     this.label7.Text     = "Groups List";
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Font     = new System.Drawing.Font("Microsoft Sans Serif", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(177)));
     this.label6.Location = new System.Drawing.Point(227, 21);
     this.label6.Name     = "label6";
     this.label6.Size     = new System.Drawing.Size(112, 25);
     this.label6.TabIndex = 9;
     this.label6.Text     = "Friends List";
     //
     // m_RemberMeCheckbox
     //
     this.m_RemberMeCheckbox.AutoSize = true;
     this.m_RemberMeCheckbox.Enabled  = false;
     this.m_RemberMeCheckbox.Font     = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(177)));
     this.m_RemberMeCheckbox.Location = new System.Drawing.Point(9, 249);
     this.m_RemberMeCheckbox.Name     = "m_RemberMeCheckbox";
     this.m_RemberMeCheckbox.Size     = new System.Drawing.Size(188, 24);
     this.m_RemberMeCheckbox.TabIndex = 7;
     this.m_RemberMeCheckbox.Text     = "Remeber me next time";
     this.m_RemberMeCheckbox.UseVisualStyleBackColor = true;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font     = new System.Drawing.Font("Microsoft Sans Serif", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(177)));
     this.label1.Location = new System.Drawing.Point(469, 16);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(100, 25);
     this.label1.TabIndex = 6;
     this.label1.Text     = "Post\'s List";
     //
     // m_PostListBox
     //
     this.m_PostListBox.DataSource        = this.postBindingSource;
     this.m_PostListBox.DisplayMember     = "Message";
     this.m_PostListBox.FormattingEnabled = true;
     this.m_PostListBox.Location          = new System.Drawing.Point(474, 57);
     this.m_PostListBox.Name        = "m_PostListBox";
     this.m_PostListBox.Size        = new System.Drawing.Size(357, 121);
     this.m_PostListBox.TabIndex    = 5;
     this.m_PostListBox.ValueMember = "Description";
     //
     // m_PostBtn
     //
     this.m_PostBtn.BackColor = System.Drawing.SystemColors.ActiveCaption;
     this.m_PostBtn.Font      = new System.Drawing.Font("Microsoft Sans Serif", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(177)));
     this.m_PostBtn.Location  = new System.Drawing.Point(703, 11);
     this.m_PostBtn.Name      = "m_PostBtn";
     this.m_PostBtn.Size      = new System.Drawing.Size(116, 35);
     this.m_PostBtn.TabIndex  = 3;
     this.m_PostBtn.Text      = "Post something";
     this.m_PostBtn.UseVisualStyleBackColor = false;
     this.m_PostBtn.Click += new System.EventHandler(this.postBtn_Click);
     //
     // m_LoginLogoutBtn
     //
     this.m_LoginLogoutBtn.BackColor = System.Drawing.SystemColors.ActiveCaption;
     this.m_LoginLogoutBtn.Font      = new System.Drawing.Font("Microsoft Sans Serif", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(177)));
     this.m_LoginLogoutBtn.Location  = new System.Drawing.Point(6, 6);
     this.m_LoginLogoutBtn.Name      = "m_LoginLogoutBtn";
     this.m_LoginLogoutBtn.Size      = new System.Drawing.Size(203, 45);
     this.m_LoginLogoutBtn.TabIndex  = 1;
     this.m_LoginLogoutBtn.Text      = "Login";
     this.m_LoginLogoutBtn.UseVisualStyleBackColor = false;
     this.m_LoginLogoutBtn.Click += new System.EventHandler(this.loginLogoutBtn_Click);
     //
     // m_ProfilePicMain
     //
     this.m_ProfilePicMain.Image    = ((System.Drawing.Image)(resources.GetObject("m_ProfilePicMain.Image")));
     this.m_ProfilePicMain.Location = new System.Drawing.Point(9, 57);
     this.m_ProfilePicMain.Name     = "m_ProfilePicMain";
     this.m_ProfilePicMain.Size     = new System.Drawing.Size(200, 167);
     this.m_ProfilePicMain.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.m_ProfilePicMain.TabIndex = 2;
     this.m_ProfilePicMain.TabStop  = false;
     //
     // m_FaceBookBarPic
     //
     this.m_FaceBookBarPic.Image    = ((System.Drawing.Image)(resources.GetObject("m_FaceBookBarPic.Image")));
     this.m_FaceBookBarPic.Location = new System.Drawing.Point(0, 6);
     this.m_FaceBookBarPic.Name     = "m_FaceBookBarPic";
     this.m_FaceBookBarPic.Size     = new System.Drawing.Size(881, 92);
     this.m_FaceBookBarPic.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.m_FaceBookBarPic.TabIndex = 0;
     this.m_FaceBookBarPic.TabStop  = false;
     //
     // m_FindMatchTab
     //
     this.m_FindMatchTab.BackColor = System.Drawing.SystemColors.GradientActiveCaption;
     this.m_FindMatchTab.Controls.Add(this.m_MatchPhotoRadioBtn);
     this.m_FindMatchTab.Controls.Add(this.m_MatchFriendRadioBtn);
     this.m_FindMatchTab.Controls.Add(this.m_MatchGroupRadioBtn);
     this.m_FindMatchTab.Controls.Add(this.m_ExplainOfMatchLabel);
     this.m_FindMatchTab.Controls.Add(this.m_RunMatchBtn);
     this.m_FindMatchTab.Controls.Add(this.label4);
     this.m_FindMatchTab.Controls.Add(this.label3);
     this.m_FindMatchTab.Controls.Add(this.label2);
     this.m_FindMatchTab.Controls.Add(this.m_PictureProfileMatch);
     this.m_FindMatchTab.Controls.Add(this.m_PictureProfileFeature);
     this.m_FindMatchTab.Location = new System.Drawing.Point(4, 22);
     this.m_FindMatchTab.Name     = "m_FindMatchTab";
     this.m_FindMatchTab.Padding  = new System.Windows.Forms.Padding(3);
     this.m_FindMatchTab.Size     = new System.Drawing.Size(873, 364);
     this.m_FindMatchTab.TabIndex = 1;
     this.m_FindMatchTab.Text     = "Find your match";
     //
     // m_MatchPhotoRadioBtn
     //
     this.m_MatchPhotoRadioBtn.AutoSize  = true;
     this.m_MatchPhotoRadioBtn.Font      = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(177)));
     this.m_MatchPhotoRadioBtn.Location  = new System.Drawing.Point(43, 138);
     this.m_MatchPhotoRadioBtn.MatchType = C19_Ex01_LiorFridman_206081085_DorCohen_307993959.MatchType.Photos;
     this.m_MatchPhotoRadioBtn.Name      = "m_MatchPhotoRadioBtn";
     this.m_MatchPhotoRadioBtn.Size      = new System.Drawing.Size(144, 24);
     this.m_MatchPhotoRadioBtn.TabIndex  = 15;
     this.m_MatchPhotoRadioBtn.TabStop   = true;
     this.m_MatchPhotoRadioBtn.Text      = "Match by photos";
     this.m_MatchPhotoRadioBtn.UseVisualStyleBackColor = true;
     //
     // m_MatchFriendRadioBtn
     //
     this.m_MatchFriendRadioBtn.AutoSize  = true;
     this.m_MatchFriendRadioBtn.Font      = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(177)));
     this.m_MatchFriendRadioBtn.Location  = new System.Drawing.Point(43, 108);
     this.m_MatchFriendRadioBtn.MatchType = C19_Ex01_LiorFridman_206081085_DorCohen_307993959.MatchType.Friends;
     this.m_MatchFriendRadioBtn.Name      = "m_MatchFriendRadioBtn";
     this.m_MatchFriendRadioBtn.Size      = new System.Drawing.Size(143, 24);
     this.m_MatchFriendRadioBtn.TabIndex  = 14;
     this.m_MatchFriendRadioBtn.TabStop   = true;
     this.m_MatchFriendRadioBtn.Text      = "Match by friends";
     this.m_MatchFriendRadioBtn.UseVisualStyleBackColor = true;
     //
     // m_MatchGroupRadioBtn
     //
     this.m_MatchGroupRadioBtn.AutoSize  = true;
     this.m_MatchGroupRadioBtn.Font      = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(177)));
     this.m_MatchGroupRadioBtn.Location  = new System.Drawing.Point(43, 75);
     this.m_MatchGroupRadioBtn.MatchType = C19_Ex01_LiorFridman_206081085_DorCohen_307993959.MatchType.Groups;
     this.m_MatchGroupRadioBtn.Name      = "m_MatchGroupRadioBtn";
     this.m_MatchGroupRadioBtn.Size      = new System.Drawing.Size(144, 24);
     this.m_MatchGroupRadioBtn.TabIndex  = 13;
     this.m_MatchGroupRadioBtn.TabStop   = true;
     this.m_MatchGroupRadioBtn.Text      = "Match by groups";
     this.m_MatchGroupRadioBtn.UseVisualStyleBackColor = true;
     //
     // m_ExplainOfMatchLabel
     //
     this.m_ExplainOfMatchLabel.AutoSize  = true;
     this.m_ExplainOfMatchLabel.Font      = new System.Drawing.Font("Microsoft Sans Serif", 20F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(177)));
     this.m_ExplainOfMatchLabel.Location  = new System.Drawing.Point(152, 245);
     this.m_ExplainOfMatchLabel.Name      = "m_ExplainOfMatchLabel";
     this.m_ExplainOfMatchLabel.Size      = new System.Drawing.Size(0, 31);
     this.m_ExplainOfMatchLabel.TabIndex  = 12;
     this.m_ExplainOfMatchLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // m_RunMatchBtn
     //
     this.m_RunMatchBtn.BackColor = System.Drawing.SystemColors.ActiveCaption;
     this.m_RunMatchBtn.Font      = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(177)));
     this.m_RunMatchBtn.Location  = new System.Drawing.Point(40, 172);
     this.m_RunMatchBtn.Name      = "m_RunMatchBtn";
     this.m_RunMatchBtn.Size      = new System.Drawing.Size(131, 38);
     this.m_RunMatchBtn.TabIndex  = 11;
     this.m_RunMatchBtn.Text      = "Run!";
     this.m_RunMatchBtn.UseVisualStyleBackColor = false;
     this.m_RunMatchBtn.Click += new System.EventHandler(this.runFindMatchBtn_Click);
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Font     = new System.Drawing.Font("Microsoft Sans Serif", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(177)));
     this.label4.Location = new System.Drawing.Point(35, 26);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(221, 25);
     this.label4.TabIndex = 10;
     this.label4.Text     = "Please choose category";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Font     = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(177)));
     this.label3.Location = new System.Drawing.Point(520, 26);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(91, 20);
     this.label3.TabIndex = 9;
     this.label3.Text     = "Your match";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Font     = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(177)));
     this.label2.Location = new System.Drawing.Point(336, 26);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(65, 20);
     this.label2.TabIndex = 8;
     this.label2.Text     = "You are";
     //
     // m_PictureProfileMatch
     //
     this.m_PictureProfileMatch.Image    = ((System.Drawing.Image)(resources.GetObject("m_PictureProfileMatch.Image")));
     this.m_PictureProfileMatch.Location = new System.Drawing.Point(490, 66);
     this.m_PictureProfileMatch.Name     = "m_PictureProfileMatch";
     this.m_PictureProfileMatch.Size     = new System.Drawing.Size(161, 146);
     this.m_PictureProfileMatch.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.m_PictureProfileMatch.TabIndex = 4;
     this.m_PictureProfileMatch.TabStop  = false;
     //
     // m_PictureProfileFeature
     //
     this.m_PictureProfileFeature.Image    = ((System.Drawing.Image)(resources.GetObject("m_PictureProfileFeature.Image")));
     this.m_PictureProfileFeature.Location = new System.Drawing.Point(285, 66);
     this.m_PictureProfileFeature.Name     = "m_PictureProfileFeature";
     this.m_PictureProfileFeature.Size     = new System.Drawing.Size(160, 146);
     this.m_PictureProfileFeature.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.m_PictureProfileFeature.TabIndex = 3;
     this.m_PictureProfileFeature.TabStop  = false;
     //
     // m_Bar
     //
     this.m_Bar.Controls.Add(m_MainTab);
     this.m_Bar.Controls.Add(this.m_FindMatchTab);
     this.m_Bar.Controls.Add(this.secondfeature);
     this.m_Bar.Dock          = System.Windows.Forms.DockStyle.Bottom;
     this.m_Bar.Location      = new System.Drawing.Point(0, 109);
     this.m_Bar.Name          = "m_Bar";
     this.m_Bar.SelectedIndex = 0;
     this.m_Bar.Size          = new System.Drawing.Size(881, 390);
     this.m_Bar.TabIndex      = 0;
     //
     // secondfeature
     //
     this.secondfeature.BackColor = System.Drawing.SystemColors.GradientActiveCaption;
     this.secondfeature.Controls.Add(this.m_BestTimeLabel);
     this.secondfeature.Controls.Add(this.m_BestTImePic);
     this.secondfeature.Controls.Add(this.label5);
     this.secondfeature.Controls.Add(this.m_BestPhotoBtn);
     this.secondfeature.Location = new System.Drawing.Point(4, 22);
     this.secondfeature.Name     = "secondfeature";
     this.secondfeature.Padding  = new System.Windows.Forms.Padding(3);
     this.secondfeature.Size     = new System.Drawing.Size(873, 364);
     this.secondfeature.TabIndex = 2;
     this.secondfeature.Text     = "Best time for picture post";
     //
     // m_BestTimeLabel
     //
     this.m_BestTimeLabel.AutoSize = true;
     this.m_BestTimeLabel.Font     = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(177)), true);
     this.m_BestTimeLabel.Location = new System.Drawing.Point(49, 186);
     this.m_BestTimeLabel.Name     = "m_BestTimeLabel";
     this.m_BestTimeLabel.Size     = new System.Drawing.Size(124, 20);
     this.m_BestTimeLabel.TabIndex = 3;
     this.m_BestTimeLabel.Text     = "The best time is:";
     //
     // m_BestTImePic
     //
     this.m_BestTImePic.Image    = ((System.Drawing.Image)(resources.GetObject("m_BestTImePic.Image")));
     this.m_BestTImePic.Location = new System.Drawing.Point(376, 80);
     this.m_BestTImePic.Name     = "m_BestTImePic";
     this.m_BestTImePic.Size     = new System.Drawing.Size(398, 226);
     this.m_BestTImePic.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.m_BestTImePic.TabIndex = 2;
     this.m_BestTImePic.TabStop  = false;
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Font     = new System.Drawing.Font("Microsoft Sans Serif", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(177)));
     this.label5.Location = new System.Drawing.Point(44, 25);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(401, 25);
     this.label5.TabIndex = 1;
     this.label5.Text     = "Click run to find the best hour for picture post!";
     //
     // m_BestPhotoBtn
     //
     this.m_BestPhotoBtn.BackColor = System.Drawing.SystemColors.ActiveCaption;
     this.m_BestPhotoBtn.Font      = new System.Drawing.Font("Microsoft Sans Serif", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(177)));
     this.m_BestPhotoBtn.Location  = new System.Drawing.Point(44, 67);
     this.m_BestPhotoBtn.Name      = "m_BestPhotoBtn";
     this.m_BestPhotoBtn.Size      = new System.Drawing.Size(165, 44);
     this.m_BestPhotoBtn.TabIndex  = 0;
     this.m_BestPhotoBtn.Text      = "run!";
     this.m_BestPhotoBtn.UseVisualStyleBackColor = false;
     this.m_BestPhotoBtn.Click += new System.EventHandler(this.bestPhotoBtn_Click);
     //
     // FacebookForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor           = System.Drawing.SystemColors.GradientActiveCaption;
     this.ClientSize          = new System.Drawing.Size(881, 499);
     this.Controls.Add(this.m_FaceBookBarPic);
     this.Controls.Add(this.m_Bar);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.Name            = "FacebookForm";
     this.Text            = "Facebook Application";
     m_MainTab.ResumeLayout(false);
     m_MainTab.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.commentsBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.postBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.friendListBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.m_ProfilePicMain)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.m_FaceBookBarPic)).EndInit();
     this.m_FindMatchTab.ResumeLayout(false);
     this.m_FindMatchTab.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.m_PictureProfileMatch)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.m_PictureProfileFeature)).EndInit();
     this.m_Bar.ResumeLayout(false);
     this.secondfeature.ResumeLayout(false);
     this.secondfeature.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.m_BestTImePic)).EndInit();
     this.ResumeLayout(false);
 }
        private void InitializeComponent()
        {
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(WizardPageDbGenSummary));
            System.Windows.Forms.TabPage CreateDatabaseTabDDL;
            System.Windows.Forms.Label lblSaveDdlAs;
            this.txtDDL = new System.Windows.Forms.TextBox();
            this.SummaryTabs = new System.Windows.Forms.TabControl();
            this.txtSaveDdlAs = new System.Windows.Forms.TextBox();
            this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
            CreateDatabaseTabDDL = new System.Windows.Forms.TabPage();
            lblSaveDdlAs = new System.Windows.Forms.Label();
            CreateDatabaseTabDDL.SuspendLayout();
            this.SummaryTabs.SuspendLayout();
            this.tableLayoutPanel1.SuspendLayout();
            this.SuspendLayout();
            // 
            // infoPanel
            // 
            resources.ApplyResources(this.infoPanel, "infoPanel");
            // 
            // CreateDatabaseTabDDL
            // 
            CreateDatabaseTabDDL.Controls.Add(this.txtDDL);
            resources.ApplyResources(CreateDatabaseTabDDL, "CreateDatabaseTabDDL");
            CreateDatabaseTabDDL.Name = "CreateDatabaseTabDDL";
            CreateDatabaseTabDDL.UseVisualStyleBackColor = true;
            // 
            // txtDDL
            // 
            resources.ApplyResources(this.txtDDL, "txtDDL");
            this.txtDDL.BackColor = System.Drawing.SystemColors.Window;
            this.txtDDL.Name = "txtDDL";
            this.txtDDL.ReadOnly = true;
            // 
            // lblSaveDdlAs
            // 
            resources.ApplyResources(lblSaveDdlAs, "lblSaveDdlAs");
            lblSaveDdlAs.Name = "lblSaveDdlAs";
            // 
            // SummaryTabs
            // 
            resources.ApplyResources(this.SummaryTabs, "SummaryTabs");
            this.SummaryTabs.Controls.Add(CreateDatabaseTabDDL);
            this.SummaryTabs.Name = "SummaryTabs";
            this.SummaryTabs.SelectedIndex = 0;
            // 
            // txtSaveDdlAs
            // 
            resources.ApplyResources(this.txtSaveDdlAs, "txtSaveDdlAs");
            this.txtSaveDdlAs.Name = "txtSaveDdlAs";
            this.txtSaveDdlAs.TextChanged += new System.EventHandler(this.txtSaveDdlAs_TextChanged);
            // 
            // tableLayoutPanel1
            // 
            resources.ApplyResources(this.tableLayoutPanel1, "tableLayoutPanel1");
            this.tableLayoutPanel1.Controls.Add(lblSaveDdlAs, 0, 0);
            this.tableLayoutPanel1.Controls.Add(this.txtSaveDdlAs, 1, 0);
            this.tableLayoutPanel1.Name = "tableLayoutPanel1";
            // 
            // WizardPageDbGenSummary
            // 
            resources.ApplyResources(this, "$this");
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.tableLayoutPanel1);
            this.Controls.Add(this.SummaryTabs);
            this.Name = "WizardPageDbGenSummary";
            this.Controls.SetChildIndex(this.infoPanel, 0);
            this.Controls.SetChildIndex(this.SummaryTabs, 0);
            this.Controls.SetChildIndex(this.tableLayoutPanel1, 0);
            CreateDatabaseTabDDL.ResumeLayout(false);
            CreateDatabaseTabDDL.PerformLayout();
            this.SummaryTabs.ResumeLayout(false);
            this.tableLayoutPanel1.ResumeLayout(false);
            this.tableLayoutPanel1.PerformLayout();
            this.ResumeLayout(false);
            this.PerformLayout();

        }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            System.Windows.Forms.Label label6;
            System.Windows.Forms.TabPage tabPassiveSkills;
            System.Windows.Forms.GroupBox groupBox9;
            System.Windows.Forms.GroupBox groupBox8;
            System.Windows.Forms.GroupBox groupBox7;
            System.Windows.Forms.GroupBox groupBox3;
            System.Windows.Forms.Label label17;
            System.Windows.Forms.Label label18;
            System.Windows.Forms.Label label16;
            System.Windows.Forms.GroupBox groupBox5;
            System.Windows.Forms.GroupBox groupBox4;
            System.Windows.Forms.GroupBox groupBoxBarbarianActiveSkills;
            System.Windows.Forms.GroupBox groupBoxMonkActiveSkills;
            System.Windows.Forms.TabPage tabMainHand;
            System.Windows.Forms.TabPage tabOffHand;
            System.Windows.Forms.TabPage tabLeftFinger;
            System.Windows.Forms.TabPage tabRightFinger;
            System.Windows.Forms.TabPage tabNeck;
            System.Windows.Forms.TabPage tabResults;
            System.Windows.Forms.GroupBox groupBox2;
            System.Windows.Forms.Label label46;
            System.Windows.Forms.Label label45;
            System.Windows.Forms.Label label44;
            System.Windows.Forms.Label label27;
            System.Windows.Forms.Label label20;
            System.Windows.Forms.Label label43;
            System.Windows.Forms.Label label42;
            System.Windows.Forms.Label label41;
            System.Windows.Forms.Label label40;
            System.Windows.Forms.Label label39;
            System.Windows.Forms.Label label38;
            System.Windows.Forms.Label label37;
            System.Windows.Forms.Label label36;
            System.Windows.Forms.Label label15;
            System.Windows.Forms.Label label12;
            System.Windows.Forms.Label label35;
            System.Windows.Forms.Label label26;
            System.Windows.Forms.Label label25;
            System.Windows.Forms.Label label24;
            System.Windows.Forms.Label label23;
            System.Windows.Forms.Label label22;
            System.Windows.Forms.Label label21;
            System.Windows.Forms.GroupBox groupBox10;
            System.Windows.Forms.Label label8;
            System.Windows.Forms.Label label10;
            System.Windows.Forms.Label label13;
            System.Windows.Forms.Label label14;
            System.Windows.Forms.GroupBox groupBox1;
            System.Windows.Forms.Label label47;
            System.Windows.Forms.Label label11;
            System.Windows.Forms.Label label28;
            System.Windows.Forms.Label label9;
            System.Windows.Forms.Label label29;
            System.Windows.Forms.Label label30;
            System.Windows.Forms.Label label31;
            System.Windows.Forms.Label label32;
            System.Windows.Forms.Label label33;
            System.Windows.Forms.Label label34;
            System.Windows.Forms.Label label19;
            System.Windows.Forms.Label label1;
            System.Windows.Forms.Label label7;
            System.Windows.Forms.Label label2;
            System.Windows.Forms.Label label3;
            System.Windows.Forms.Label label5;
            System.Windows.Forms.Label label4;
            System.Windows.Forms.TabPage tabActiveSkills;
            this.guiSkillGalvanizingWard = new System.Windows.Forms.CheckBox();
            this.guiSkillGlassCannon = new System.Windows.Forms.CheckBox();
            this.guiSkillPierceTheVeil = new System.Windows.Forms.CheckBox();
            this.guiSkillRuthless = new System.Windows.Forms.CheckBox();
            this.guiSkillToughAsNails = new System.Windows.Forms.CheckBox();
            this.guiSkillNervesOfSteel = new System.Windows.Forms.CheckBox();
            this.guiSkillWeaponsMaster = new System.Windows.Forms.CheckBox();
            this.guiSkillSeizeTheInitiative = new System.Windows.Forms.CheckBox();
            this.guiSkillOneWithEverything = new System.Windows.Forms.CheckBox();
            this.groupBox6 = new System.Windows.Forms.GroupBox();
            this.guiHeroClass = new System.Windows.Forms.ComboBox();
            this.guiHeroParagonLevel = new System.Windows.Forms.TextBox();
            this.guiHeroLevel = new System.Windows.Forms.TextBox();
            this.guiSkillPoweredArmor = new System.Windows.Forms.CheckBox();
            this.guiSkillAnatomy = new System.Windows.Forms.CheckBox();
            this.guiSkillFocusedMind = new System.Windows.Forms.CheckBox();
            this.guiSkillPerfectionnist = new System.Windows.Forms.CheckBox();
            this.guiSkillSharpShooter = new System.Windows.Forms.CheckBox();
            this.guiSkillArchery = new System.Windows.Forms.CheckBox();
            this.guiSkillSteadyAim = new System.Windows.Forms.CheckBox();
            this.guiSkillWarCry_Invigorate = new System.Windows.Forms.CheckBox();
            this.guiSkillMysticAlly_EarthAlly = new System.Windows.Forms.CheckBox();
            this.guiSkillMantraOfHealing_TimeOfNeed = new System.Windows.Forms.CheckBox();
            this.guiSkillMantraOfEvasion_HardTarget = new System.Windows.Forms.CheckBox();
            this.tabSetBonus = new System.Windows.Forms.TabPage();
            this.guiSetBonusEditor = new D3ItemEditor();
            this.guiMainHandEditor = new D3ItemEditor();
            this.guiOffHandEditor = new D3ItemEditor();
            this.guiLeftFingerEditor = new D3ItemEditor();
            this.guiRightFingerEditor = new D3ItemEditor();
            this.guiNeckEditor = new D3ItemEditor();
            this.tabHead = new System.Windows.Forms.TabPage();
            this.guiHeadEditor = new D3ItemEditor();
            this.tabShoulders = new System.Windows.Forms.TabPage();
            this.guiShouldersEditor = new D3ItemEditor();
            this.tabBracers = new System.Windows.Forms.TabPage();
            this.guiBracersEditor = new D3ItemEditor();
            this.tabHands = new System.Windows.Forms.TabPage();
            this.guiHandsEditor = new D3ItemEditor();
            this.tabTorso = new System.Windows.Forms.TabPage();
            this.guiTorsoEditor = new D3ItemEditor();
            this.tabWaist = new System.Windows.Forms.TabPage();
            this.guiWaistEditor = new D3ItemEditor();
            this.tabLegs = new System.Windows.Forms.TabPage();
            this.guiLegsEditor = new D3ItemEditor();
            this.tabFeet = new System.Windows.Forms.TabPage();
            this.guiFeetEditor = new D3ItemEditor();
            this.guiCalculatedDPSEHPRatio = new System.Windows.Forms.TextBox();
            this.guiCalculatedEffectiveHitpoints = new System.Windows.Forms.TextBox();
            this.guiCalculatedResistance_All = new System.Windows.Forms.TextBox();
            this.guiCalculatedHitpoints = new System.Windows.Forms.TextBox();
            this.guiCalculatedBlockMax = new System.Windows.Forms.TextBox();
            this.guiCalculatedBlockMin = new System.Windows.Forms.TextBox();
            this.guiCalculatedBlockChance = new System.Windows.Forms.TextBox();
            this.guiCalculatedDodge = new System.Windows.Forms.TextBox();
            this.guiCalculatedDamageReduction_Poison = new System.Windows.Forms.TextBox();
            this.guiCalculatedDamageReduction_Physical = new System.Windows.Forms.TextBox();
            this.guiCalculatedDamageReduction_Lightning = new System.Windows.Forms.TextBox();
            this.guiCalculatedDamageReduction_Fire = new System.Windows.Forms.TextBox();
            this.guiCalculatedDamageReduction_Cold = new System.Windows.Forms.TextBox();
            this.guiCalculatedDamageReduction_Arcane = new System.Windows.Forms.TextBox();
            this.guiCalculatedDamageReduction_Armor = new System.Windows.Forms.TextBox();
            this.guiCalculatedArmor = new System.Windows.Forms.TextBox();
            this.guiCalculatedResistance_Poison = new System.Windows.Forms.TextBox();
            this.guiCalculatedResistance_Physical = new System.Windows.Forms.TextBox();
            this.guiCalculatedResistance_Lightning = new System.Windows.Forms.TextBox();
            this.guiCalculatedResistance_Fire = new System.Windows.Forms.TextBox();
            this.guiCalculatedResistance_Cold = new System.Windows.Forms.TextBox();
            this.guiCalculatedResistance_Arcane = new System.Windows.Forms.TextBox();
            this.guiDoCalculations = new System.Windows.Forms.Button();
            this.guiCalculatedDPS = new System.Windows.Forms.TextBox();
            this.guiCalculatedAttackPerSecond = new System.Windows.Forms.TextBox();
            this.guiCalcultatedDamageMax = new System.Windows.Forms.TextBox();
            this.guiCalcultatedDamageMin = new System.Windows.Forms.TextBox();
            this.guiCalcultatedDamageCriticMax = new System.Windows.Forms.TextBox();
            this.guiCalcultatedDamageCriticMin = new System.Windows.Forms.TextBox();
            this.guiItemsLifeSteal = new System.Windows.Forms.TextBox();
            this.guiItemsLifePerSecond = new System.Windows.Forms.TextBox();
            this.guiItemsResistance_All = new System.Windows.Forms.TextBox();
            this.guiItemsLifeOnHit = new System.Windows.Forms.TextBox();
            this.guiItemsResistance_Poison = new System.Windows.Forms.TextBox();
            this.guiItemsResistance_Physical = new System.Windows.Forms.TextBox();
            this.guiItemsResistance_Lightning = new System.Windows.Forms.TextBox();
            this.guiItemsResistance_Fire = new System.Windows.Forms.TextBox();
            this.guiItemsResistance_Cold = new System.Windows.Forms.TextBox();
            this.guiItemsResistance_Arcane = new System.Windows.Forms.TextBox();
            this.guiItemsLifePercent = new System.Windows.Forms.TextBox();
            this.guiItemsDexterity = new System.Windows.Forms.TextBox();
            this.guiItemsCriticDamage = new System.Windows.Forms.TextBox();
            this.guiItemsCriticChance = new System.Windows.Forms.TextBox();
            this.guiItemsIntelligence = new System.Windows.Forms.TextBox();
            this.guiItemsSpeedAttack = new System.Windows.Forms.TextBox();
            this.guiItemsStrength = new System.Windows.Forms.TextBox();
            this.guiItemsVitality = new System.Windows.Forms.TextBox();
            this.tacControl1 = new System.Windows.Forms.TabControl();
            this.tabSpecial = new System.Windows.Forms.TabPage();
            this.guiSpecialEditor = new D3ItemEditor();
            label6 = new System.Windows.Forms.Label();
            tabPassiveSkills = new System.Windows.Forms.TabPage();
            groupBox9 = new System.Windows.Forms.GroupBox();
            groupBox8 = new System.Windows.Forms.GroupBox();
            groupBox7 = new System.Windows.Forms.GroupBox();
            groupBox3 = new System.Windows.Forms.GroupBox();
            label17 = new System.Windows.Forms.Label();
            label18 = new System.Windows.Forms.Label();
            label16 = new System.Windows.Forms.Label();
            groupBox5 = new System.Windows.Forms.GroupBox();
            groupBox4 = new System.Windows.Forms.GroupBox();
            groupBoxBarbarianActiveSkills = new System.Windows.Forms.GroupBox();
            groupBoxMonkActiveSkills = new System.Windows.Forms.GroupBox();
            tabMainHand = new System.Windows.Forms.TabPage();
            tabOffHand = new System.Windows.Forms.TabPage();
            tabLeftFinger = new System.Windows.Forms.TabPage();
            tabRightFinger = new System.Windows.Forms.TabPage();
            tabNeck = new System.Windows.Forms.TabPage();
            tabResults = new System.Windows.Forms.TabPage();
            groupBox2 = new System.Windows.Forms.GroupBox();
            label46 = new System.Windows.Forms.Label();
            label45 = new System.Windows.Forms.Label();
            label44 = new System.Windows.Forms.Label();
            label27 = new System.Windows.Forms.Label();
            label20 = new System.Windows.Forms.Label();
            label43 = new System.Windows.Forms.Label();
            label42 = new System.Windows.Forms.Label();
            label41 = new System.Windows.Forms.Label();
            label40 = new System.Windows.Forms.Label();
            label39 = new System.Windows.Forms.Label();
            label38 = new System.Windows.Forms.Label();
            label37 = new System.Windows.Forms.Label();
            label36 = new System.Windows.Forms.Label();
            label15 = new System.Windows.Forms.Label();
            label12 = new System.Windows.Forms.Label();
            label35 = new System.Windows.Forms.Label();
            label26 = new System.Windows.Forms.Label();
            label25 = new System.Windows.Forms.Label();
            label24 = new System.Windows.Forms.Label();
            label23 = new System.Windows.Forms.Label();
            label22 = new System.Windows.Forms.Label();
            label21 = new System.Windows.Forms.Label();
            groupBox10 = new System.Windows.Forms.GroupBox();
            label8 = new System.Windows.Forms.Label();
            label10 = new System.Windows.Forms.Label();
            label13 = new System.Windows.Forms.Label();
            label14 = new System.Windows.Forms.Label();
            groupBox1 = new System.Windows.Forms.GroupBox();
            label47 = new System.Windows.Forms.Label();
            label11 = new System.Windows.Forms.Label();
            label28 = new System.Windows.Forms.Label();
            label9 = new System.Windows.Forms.Label();
            label29 = new System.Windows.Forms.Label();
            label30 = new System.Windows.Forms.Label();
            label31 = new System.Windows.Forms.Label();
            label32 = new System.Windows.Forms.Label();
            label33 = new System.Windows.Forms.Label();
            label34 = new System.Windows.Forms.Label();
            label19 = new System.Windows.Forms.Label();
            label1 = new System.Windows.Forms.Label();
            label7 = new System.Windows.Forms.Label();
            label2 = new System.Windows.Forms.Label();
            label3 = new System.Windows.Forms.Label();
            label5 = new System.Windows.Forms.Label();
            label4 = new System.Windows.Forms.Label();
            tabActiveSkills = new System.Windows.Forms.TabPage();
            tabPassiveSkills.SuspendLayout();
            groupBox9.SuspendLayout();
            groupBox8.SuspendLayout();
            groupBox7.SuspendLayout();
            groupBox3.SuspendLayout();
            this.groupBox6.SuspendLayout();
            groupBox5.SuspendLayout();
            groupBox4.SuspendLayout();
            groupBoxBarbarianActiveSkills.SuspendLayout();
            groupBoxMonkActiveSkills.SuspendLayout();
            this.tabSetBonus.SuspendLayout();
            tabMainHand.SuspendLayout();
            tabOffHand.SuspendLayout();
            tabLeftFinger.SuspendLayout();
            tabRightFinger.SuspendLayout();
            tabNeck.SuspendLayout();
            this.tabHead.SuspendLayout();
            this.tabShoulders.SuspendLayout();
            this.tabBracers.SuspendLayout();
            this.tabHands.SuspendLayout();
            this.tabTorso.SuspendLayout();
            this.tabWaist.SuspendLayout();
            this.tabLegs.SuspendLayout();
            this.tabFeet.SuspendLayout();
            tabResults.SuspendLayout();
            groupBox2.SuspendLayout();
            groupBox10.SuspendLayout();
            groupBox1.SuspendLayout();
            this.tacControl1.SuspendLayout();
            tabActiveSkills.SuspendLayout();
            this.tabSpecial.SuspendLayout();
            this.SuspendLayout();
            // 
            // label6
            // 
            label6.AutoSize = true;
            label6.Location = new System.Drawing.Point(19, 152);
            label6.Name = "label6";
            label6.Size = new System.Drawing.Size(90, 13);
            label6.TabIndex = 10;
            label6.Text = "+ % Critic Chance";
            // 
            // tabPassiveSkills
            // 
            tabPassiveSkills.Controls.Add(groupBox9);
            tabPassiveSkills.Controls.Add(groupBox8);
            tabPassiveSkills.Controls.Add(groupBox7);
            tabPassiveSkills.Controls.Add(groupBox3);
            tabPassiveSkills.Controls.Add(this.groupBox6);
            tabPassiveSkills.Controls.Add(groupBox5);
            tabPassiveSkills.Controls.Add(groupBox4);
            tabPassiveSkills.Location = new System.Drawing.Point(4, 22);
            tabPassiveSkills.Name = "tabPassiveSkills";
            tabPassiveSkills.Padding = new System.Windows.Forms.Padding(3);
            tabPassiveSkills.Size = new System.Drawing.Size(1026, 576);
            tabPassiveSkills.TabIndex = 13;
            tabPassiveSkills.Text = "Passive Skills";
            tabPassiveSkills.UseVisualStyleBackColor = true;
            // 
            // groupBox9
            // 
            groupBox9.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            groupBox9.Controls.Add(this.guiSkillGalvanizingWard);
            groupBox9.Controls.Add(this.guiSkillGlassCannon);
            groupBox9.Location = new System.Drawing.Point(272, 184);
            groupBox9.Name = "groupBox9";
            groupBox9.Size = new System.Drawing.Size(260, 78);
            groupBox9.TabIndex = 5;
            groupBox9.TabStop = false;
            groupBox9.Text = "Wizard";
            // 
            // guiSkillGalvanizingWard
            // 
            this.guiSkillGalvanizingWard.AutoSize = true;
            this.guiSkillGalvanizingWard.Location = new System.Drawing.Point(6, 42);
            this.guiSkillGalvanizingWard.Name = "guiSkillGalvanizingWard";
            this.guiSkillGalvanizingWard.Size = new System.Drawing.Size(194, 17);
            this.guiSkillGalvanizingWard.TabIndex = 1;
            this.guiSkillGalvanizingWard.Tag = "galvanizing-ward";
            this.guiSkillGalvanizingWard.Text = "Galvanizing Ward (+life per second)";
            this.guiSkillGalvanizingWard.UseVisualStyleBackColor = true;
            // 
            // guiSkillGlassCannon
            // 
            this.guiSkillGlassCannon.AutoSize = true;
            this.guiSkillGlassCannon.Location = new System.Drawing.Point(6, 19);
            this.guiSkillGlassCannon.Name = "guiSkillGlassCannon";
            this.guiSkillGlassCannon.Size = new System.Drawing.Size(263, 17);
            this.guiSkillGlassCannon.TabIndex = 0;
            this.guiSkillGlassCannon.Tag = "glass-cannon";
            this.guiSkillGlassCannon.Text = "Glass Cannon (+15% Damage -10% Armor Resists)";
            this.guiSkillGlassCannon.UseVisualStyleBackColor = true;
            // 
            // groupBox8
            // 
            groupBox8.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            groupBox8.Controls.Add(this.guiSkillPierceTheVeil);
            groupBox8.Location = new System.Drawing.Point(272, 123);
            groupBox8.Name = "groupBox8";
            groupBox8.Size = new System.Drawing.Size(260, 55);
            groupBox8.TabIndex = 4;
            groupBox8.TabStop = false;
            groupBox8.Text = "Witch Doctor";
            // 
            // guiSkillPierceTheVeil
            // 
            this.guiSkillPierceTheVeil.AutoSize = true;
            this.guiSkillPierceTheVeil.Location = new System.Drawing.Point(6, 19);
            this.guiSkillPierceTheVeil.Name = "guiSkillPierceTheVeil";
            this.guiSkillPierceTheVeil.Size = new System.Drawing.Size(172, 17);
            this.guiSkillPierceTheVeil.TabIndex = 0;
            this.guiSkillPierceTheVeil.Tag = "pierce-the-veil";
            this.guiSkillPierceTheVeil.Text = "Pierce the Veil (+20% Damage)";
            this.guiSkillPierceTheVeil.UseVisualStyleBackColor = true;
            // 
            // groupBox7
            // 
            groupBox7.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            groupBox7.Controls.Add(this.guiSkillRuthless);
            groupBox7.Controls.Add(this.guiSkillToughAsNails);
            groupBox7.Controls.Add(this.guiSkillNervesOfSteel);
            groupBox7.Controls.Add(this.guiSkillWeaponsMaster);
            groupBox7.Location = new System.Drawing.Point(6, 6);
            groupBox7.Name = "groupBox7";
            groupBox7.Size = new System.Drawing.Size(260, 124);
            groupBox7.TabIndex = 1;
            groupBox7.TabStop = false;
            groupBox7.Text = "Barbarian";
            // 
            // guiSkillRuthless
            // 
            this.guiSkillRuthless.AutoSize = true;
            this.guiSkillRuthless.Location = new System.Drawing.Point(6, 42);
            this.guiSkillRuthless.Name = "guiSkillRuthless";
            this.guiSkillRuthless.Size = new System.Drawing.Size(162, 17);
            this.guiSkillRuthless.TabIndex = 1;
            this.guiSkillRuthless.Tag = "ruthless";
            this.guiSkillRuthless.Text = "Ruthless (+5% Critic Chance)";
            this.guiSkillRuthless.UseVisualStyleBackColor = true;
            // 
            // guiSkillToughAsNails
            // 
            this.guiSkillToughAsNails.AutoSize = true;
            this.guiSkillToughAsNails.Location = new System.Drawing.Point(6, 65);
            this.guiSkillToughAsNails.Name = "guiSkillToughAsNails";
            this.guiSkillToughAsNails.Size = new System.Drawing.Size(227, 17);
            this.guiSkillToughAsNails.TabIndex = 2;
            this.guiSkillToughAsNails.Tag = "tough-as-nails";
            this.guiSkillToughAsNails.Text = "Tough as Nails (+25% Armor +50% Thorns)";
            this.guiSkillToughAsNails.UseVisualStyleBackColor = true;
            // 
            // guiSkillNervesOfSteel
            // 
            this.guiSkillNervesOfSteel.AutoSize = true;
            this.guiSkillNervesOfSteel.Location = new System.Drawing.Point(6, 19);
            this.guiSkillNervesOfSteel.Name = "guiSkillNervesOfSteel";
            this.guiSkillNervesOfSteel.Size = new System.Drawing.Size(177, 17);
            this.guiSkillNervesOfSteel.TabIndex = 0;
            this.guiSkillNervesOfSteel.Tag = "nerves-of-steel";
            this.guiSkillNervesOfSteel.Text = "Nerves of Steel (Vitality > Armor)";
            this.guiSkillNervesOfSteel.UseVisualStyleBackColor = true;
            // 
            // guiSkillWeaponsMaster
            // 
            this.guiSkillWeaponsMaster.AutoSize = true;
            this.guiSkillWeaponsMaster.Location = new System.Drawing.Point(6, 88);
            this.guiSkillWeaponsMaster.Name = "guiSkillWeaponsMaster";
            this.guiSkillWeaponsMaster.Size = new System.Drawing.Size(213, 17);
            this.guiSkillWeaponsMaster.TabIndex = 3;
            this.guiSkillWeaponsMaster.Tag = "weapons-master";
            this.guiSkillWeaponsMaster.Text = "Weapons Master (depends on weapon)";
            this.guiSkillWeaponsMaster.UseVisualStyleBackColor = true;
            // 
            // groupBox3
            // 
            groupBox3.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            groupBox3.Controls.Add(this.guiSkillSeizeTheInitiative);
            groupBox3.Controls.Add(this.guiSkillOneWithEverything);
            groupBox3.Location = new System.Drawing.Point(6, 266);
            groupBox3.Name = "groupBox3";
            groupBox3.Size = new System.Drawing.Size(260, 78);
            groupBox3.TabIndex = 3;
            groupBox3.TabStop = false;
            groupBox3.Text = "Monk";
            // 
            // guiSkillSeizeTheInitiative
            // 
            this.guiSkillSeizeTheInitiative.AutoSize = true;
            this.guiSkillSeizeTheInitiative.Location = new System.Drawing.Point(6, 42);
            this.guiSkillSeizeTheInitiative.Name = "guiSkillSeizeTheInitiative";
            this.guiSkillSeizeTheInitiative.Size = new System.Drawing.Size(112, 17);
            this.guiSkillSeizeTheInitiative.TabIndex = 1;
            this.guiSkillSeizeTheInitiative.Tag = "seize-the-initiative";
            this.guiSkillSeizeTheInitiative.Text = "Seize the Initiative";
            this.guiSkillSeizeTheInitiative.UseVisualStyleBackColor = true;
            // 
            // guiSkillOneWithEverything
            // 
            this.guiSkillOneWithEverything.AutoSize = true;
            this.guiSkillOneWithEverything.Location = new System.Drawing.Point(6, 19);
            this.guiSkillOneWithEverything.Name = "guiSkillOneWithEverything";
            this.guiSkillOneWithEverything.Size = new System.Drawing.Size(121, 17);
            this.guiSkillOneWithEverything.TabIndex = 0;
            this.guiSkillOneWithEverything.Tag = "one-with-everything";
            this.guiSkillOneWithEverything.Text = "One with Everything";
            this.guiSkillOneWithEverything.UseVisualStyleBackColor = true;
            // 
            // groupBox6
            // 
            this.groupBox6.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            this.groupBox6.Controls.Add(this.guiHeroClass);
            this.groupBox6.Controls.Add(this.guiHeroParagonLevel);
            this.groupBox6.Controls.Add(label17);
            this.groupBox6.Controls.Add(label18);
            this.groupBox6.Controls.Add(this.guiHeroLevel);
            this.groupBox6.Controls.Add(label16);
            this.groupBox6.Location = new System.Drawing.Point(272, 6);
            this.groupBox6.Name = "groupBox6";
            this.groupBox6.Size = new System.Drawing.Size(210, 111);
            this.groupBox6.TabIndex = 0;
            this.groupBox6.TabStop = false;
            this.groupBox6.Text = "Hero details";
            // 
            // guiHeroClass
            // 
            this.guiHeroClass.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.guiHeroClass.FormattingEnabled = true;
            this.guiHeroClass.Location = new System.Drawing.Point(104, 19);
            this.guiHeroClass.Name = "guiHeroClass";
            this.guiHeroClass.Size = new System.Drawing.Size(100, 21);
            this.guiHeroClass.TabIndex = 5;
            this.guiHeroClass.SelectionChangeCommitted += new System.EventHandler(this.guiHeroClass_SelectionChangeCommitted);
            // 
            // guiHeroParagonLevel
            // 
            this.guiHeroParagonLevel.Location = new System.Drawing.Point(104, 72);
            this.guiHeroParagonLevel.Name = "guiHeroParagonLevel";
            this.guiHeroParagonLevel.Size = new System.Drawing.Size(40, 20);
            this.guiHeroParagonLevel.TabIndex = 3;
            // 
            // label17
            // 
            label17.AutoSize = true;
            label17.Location = new System.Drawing.Point(13, 75);
            label17.Name = "label17";
            label17.Size = new System.Drawing.Size(85, 13);
            label17.TabIndex = 1;
            label17.Text = "Parangon Level:";
            // 
            // label18
            // 
            label18.AutoSize = true;
            label18.Location = new System.Drawing.Point(63, 22);
            label18.Name = "label18";
            label18.Size = new System.Drawing.Size(35, 13);
            label18.TabIndex = 4;
            label18.Text = "Class:";
            // 
            // guiHeroLevel
            // 
            this.guiHeroLevel.Location = new System.Drawing.Point(104, 46);
            this.guiHeroLevel.Name = "guiHeroLevel";
            this.guiHeroLevel.Size = new System.Drawing.Size(40, 20);
            this.guiHeroLevel.TabIndex = 2;
            // 
            // label16
            // 
            label16.AutoSize = true;
            label16.Location = new System.Drawing.Point(62, 49);
            label16.Name = "label16";
            label16.Size = new System.Drawing.Size(36, 13);
            label16.TabIndex = 0;
            label16.Text = "Level:";
            // 
            // groupBox5
            // 
            groupBox5.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            groupBox5.Controls.Add(this.guiSkillPoweredArmor);
            groupBox5.Controls.Add(this.guiSkillAnatomy);
            groupBox5.Controls.Add(this.guiSkillFocusedMind);
            groupBox5.Location = new System.Drawing.Point(272, 268);
            groupBox5.Name = "groupBox5";
            groupBox5.Size = new System.Drawing.Size(260, 101);
            groupBox5.TabIndex = 4;
            groupBox5.TabStop = false;
            groupBox5.Text = "Followers";
            // 
            // guiSkillPoweredArmor
            // 
            this.guiSkillPoweredArmor.AutoSize = true;
            this.guiSkillPoweredArmor.Location = new System.Drawing.Point(6, 65);
            this.guiSkillPoweredArmor.Name = "guiSkillPoweredArmor";
            this.guiSkillPoweredArmor.Size = new System.Drawing.Size(157, 17);
            this.guiSkillPoweredArmor.TabIndex = 2;
            this.guiSkillPoweredArmor.Text = "Powered Armor (+5% Armor)";
            this.guiSkillPoweredArmor.UseVisualStyleBackColor = true;
            // 
            // guiSkillAnatomy
            // 
            this.guiSkillAnatomy.AutoSize = true;
            this.guiSkillAnatomy.Location = new System.Drawing.Point(6, 19);
            this.guiSkillAnatomy.Name = "guiSkillAnatomy";
            this.guiSkillAnatomy.Size = new System.Drawing.Size(162, 17);
            this.guiSkillAnatomy.TabIndex = 0;
            this.guiSkillAnatomy.Text = "Anatomy (+3% Critic Chance)";
            this.guiSkillAnatomy.UseVisualStyleBackColor = true;
            // 
            // guiSkillFocusedMind
            // 
            this.guiSkillFocusedMind.AutoSize = true;
            this.guiSkillFocusedMind.Location = new System.Drawing.Point(6, 42);
            this.guiSkillFocusedMind.Name = "guiSkillFocusedMind";
            this.guiSkillFocusedMind.Size = new System.Drawing.Size(190, 17);
            this.guiSkillFocusedMind.TabIndex = 1;
            this.guiSkillFocusedMind.Text = "Focused Mind (+3% Attack Speed)";
            this.guiSkillFocusedMind.UseVisualStyleBackColor = true;
            // 
            // groupBox4
            // 
            groupBox4.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            groupBox4.Controls.Add(this.guiSkillPerfectionnist);
            groupBox4.Controls.Add(this.guiSkillSharpShooter);
            groupBox4.Controls.Add(this.guiSkillArchery);
            groupBox4.Controls.Add(this.guiSkillSteadyAim);
            groupBox4.Location = new System.Drawing.Point(6, 136);
            groupBox4.Name = "groupBox4";
            groupBox4.Size = new System.Drawing.Size(260, 124);
            groupBox4.TabIndex = 2;
            groupBox4.TabStop = false;
            groupBox4.Text = "Demon hunter";
            // 
            // guiSkillPerfectionnist
            // 
            this.guiSkillPerfectionnist.AutoSize = true;
            this.guiSkillPerfectionnist.Location = new System.Drawing.Point(6, 88);
            this.guiSkillPerfectionnist.Name = "guiSkillPerfectionnist";
            this.guiSkillPerfectionnist.Size = new System.Drawing.Size(207, 17);
            this.guiSkillPerfectionnist.TabIndex = 5;
            this.guiSkillPerfectionnist.Tag = "perfectionist";
            this.guiSkillPerfectionnist.Text = "Perfectionist (+10% Armor, Resist, Life)";
            this.guiSkillPerfectionnist.UseVisualStyleBackColor = true;
            // 
            // guiSkillSharpShooter
            // 
            this.guiSkillSharpShooter.AutoSize = true;
            this.guiSkillSharpShooter.Location = new System.Drawing.Point(6, 42);
            this.guiSkillSharpShooter.Name = "guiSkillSharpShooter";
            this.guiSkillSharpShooter.Size = new System.Drawing.Size(192, 17);
            this.guiSkillSharpShooter.TabIndex = 3;
            this.guiSkillSharpShooter.Tag = "sharp-shooter";
            this.guiSkillSharpShooter.Text = "SharpShooter (100% Critic Chance)";
            this.guiSkillSharpShooter.UseVisualStyleBackColor = true;
            // 
            // guiSkillArchery
            // 
            this.guiSkillArchery.AutoSize = true;
            this.guiSkillArchery.Location = new System.Drawing.Point(6, 19);
            this.guiSkillArchery.Name = "guiSkillArchery";
            this.guiSkillArchery.Size = new System.Drawing.Size(168, 17);
            this.guiSkillArchery.TabIndex = 0;
            this.guiSkillArchery.Tag = "archery";
            this.guiSkillArchery.Text = "Archery (depends on weapon)";
            this.guiSkillArchery.UseVisualStyleBackColor = true;
            // 
            // guiSkillSteadyAim
            // 
            this.guiSkillSteadyAim.AutoSize = true;
            this.guiSkillSteadyAim.Location = new System.Drawing.Point(6, 65);
            this.guiSkillSteadyAim.Name = "guiSkillSteadyAim";
            this.guiSkillSteadyAim.Size = new System.Drawing.Size(157, 17);
            this.guiSkillSteadyAim.TabIndex = 4;
            this.guiSkillSteadyAim.Tag = "steady-aim";
            this.guiSkillSteadyAim.Text = "Steady Aim (+20% Damage)";
            this.guiSkillSteadyAim.UseVisualStyleBackColor = true;
            // 
            // groupBoxBarbarianActiveSkills
            // 
            groupBoxBarbarianActiveSkills.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            groupBoxBarbarianActiveSkills.Controls.Add(this.guiSkillWarCry_Invigorate);
            groupBoxBarbarianActiveSkills.Location = new System.Drawing.Point(6, 113);
            groupBoxBarbarianActiveSkills.Name = "groupBoxBarbarianActiveSkills";
            groupBoxBarbarianActiveSkills.Size = new System.Drawing.Size(263, 55);
            groupBoxBarbarianActiveSkills.TabIndex = 7;
            groupBoxBarbarianActiveSkills.TabStop = false;
            groupBoxBarbarianActiveSkills.Text = "Barbarian";
            // 
            // guiSkillWarCry_Invigorate
            // 
            this.guiSkillWarCry_Invigorate.AutoSize = true;
            this.guiSkillWarCry_Invigorate.Location = new System.Drawing.Point(6, 19);
            this.guiSkillWarCry_Invigorate.Name = "guiSkillWarCry_Invigorate";
            this.guiSkillWarCry_Invigorate.Size = new System.Drawing.Size(239, 17);
            this.guiSkillWarCry_Invigorate.TabIndex = 4;
            this.guiSkillWarCry_Invigorate.Text = "War Cry / Invigorate (+20% armor +610 life/s)";
            this.guiSkillWarCry_Invigorate.UseVisualStyleBackColor = true;
            // 
            // groupBoxMonkActiveSkills
            // 
            groupBoxMonkActiveSkills.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            groupBoxMonkActiveSkills.Controls.Add(this.guiSkillMysticAlly_EarthAlly);
            groupBoxMonkActiveSkills.Controls.Add(this.guiSkillMantraOfHealing_TimeOfNeed);
            groupBoxMonkActiveSkills.Controls.Add(this.guiSkillMantraOfEvasion_HardTarget);
            groupBoxMonkActiveSkills.Location = new System.Drawing.Point(6, 6);
            groupBoxMonkActiveSkills.Name = "groupBoxMonkActiveSkills";
            groupBoxMonkActiveSkills.Size = new System.Drawing.Size(260, 101);
            groupBoxMonkActiveSkills.TabIndex = 6;
            groupBoxMonkActiveSkills.TabStop = false;
            groupBoxMonkActiveSkills.Text = "Monk";
            // 
            // guiSkillMysticAlly_EarthAlly
            // 
            this.guiSkillMysticAlly_EarthAlly.AutoSize = true;
            this.guiSkillMysticAlly_EarthAlly.Location = new System.Drawing.Point(6, 65);
            this.guiSkillMysticAlly_EarthAlly.Name = "guiSkillMysticAlly_EarthAlly";
            this.guiSkillMysticAlly_EarthAlly.Size = new System.Drawing.Size(185, 17);
            this.guiSkillMysticAlly_EarthAlly.TabIndex = 6;
            this.guiSkillMysticAlly_EarthAlly.Text = "Mystic Ally / Earth Ally (+20% Life)";
            this.guiSkillMysticAlly_EarthAlly.UseVisualStyleBackColor = true;
            // 
            // guiSkillMantraOfHealing_TimeOfNeed
            // 
            this.guiSkillMantraOfHealing_TimeOfNeed.AutoSize = true;
            this.guiSkillMantraOfHealing_TimeOfNeed.Location = new System.Drawing.Point(6, 19);
            this.guiSkillMantraOfHealing_TimeOfNeed.Name = "guiSkillMantraOfHealing_TimeOfNeed";
            this.guiSkillMantraOfHealing_TimeOfNeed.Size = new System.Drawing.Size(257, 17);
            this.guiSkillMantraOfHealing_TimeOfNeed.TabIndex = 4;
            this.guiSkillMantraOfHealing_TimeOfNeed.Text = "Mantra of Healing / Time of Need (+20% Resists)";
            this.guiSkillMantraOfHealing_TimeOfNeed.UseVisualStyleBackColor = true;
            // 
            // guiSkillMantraOfEvasion_HardTarget
            // 
            this.guiSkillMantraOfEvasion_HardTarget.AutoSize = true;
            this.guiSkillMantraOfEvasion_HardTarget.Location = new System.Drawing.Point(6, 42);
            this.guiSkillMantraOfEvasion_HardTarget.Name = "guiSkillMantraOfEvasion_HardTarget";
            this.guiSkillMantraOfEvasion_HardTarget.Size = new System.Drawing.Size(245, 17);
            this.guiSkillMantraOfEvasion_HardTarget.TabIndex = 5;
            this.guiSkillMantraOfEvasion_HardTarget.Text = "Mantra of Evasion / Hard Targer (+20% Armor)";
            this.guiSkillMantraOfEvasion_HardTarget.UseVisualStyleBackColor = true;
            // 
            // tabSetBonus
            // 
            this.tabSetBonus.Controls.Add(this.guiSetBonusEditor);
            this.tabSetBonus.Location = new System.Drawing.Point(4, 22);
            this.tabSetBonus.Name = "tabSetBonus";
            this.tabSetBonus.Padding = new System.Windows.Forms.Padding(3);
            this.tabSetBonus.Size = new System.Drawing.Size(1026, 576);
            this.tabSetBonus.TabIndex = 16;
            this.tabSetBonus.Text = "Set Bonus";
            this.tabSetBonus.UseVisualStyleBackColor = true;
            // 
            // guiSetBonusEditor
            // 
            this.guiSetBonusEditor.AutoSize = true;
            this.guiSetBonusEditor.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            this.guiSetBonusEditor.KnownGems = null;
            this.guiSetBonusEditor.Location = new System.Drawing.Point(6, 6);
            this.guiSetBonusEditor.Name = "guiSetBonusEditor";
            this.guiSetBonusEditor.Size = new System.Drawing.Size(708, 531);
            this.guiSetBonusEditor.TabIndex = 0;
            // 
            // tabMainHand
            // 
            tabMainHand.AutoScroll = true;
            tabMainHand.Controls.Add(this.guiMainHandEditor);
            tabMainHand.Location = new System.Drawing.Point(4, 22);
            tabMainHand.Name = "tabMainHand";
            tabMainHand.Padding = new System.Windows.Forms.Padding(3);
            tabMainHand.Size = new System.Drawing.Size(1026, 576);
            tabMainHand.TabIndex = 0;
            tabMainHand.Text = "Main Hand";
            tabMainHand.UseVisualStyleBackColor = true;
            // 
            // guiMainHandEditor
            // 
            this.guiMainHandEditor.AutoSize = true;
            this.guiMainHandEditor.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            this.guiMainHandEditor.KnownGems = null;
            this.guiMainHandEditor.Location = new System.Drawing.Point(6, 6);
            this.guiMainHandEditor.Name = "guiMainHandEditor";
            this.guiMainHandEditor.Size = new System.Drawing.Size(708, 531);
            this.guiMainHandEditor.TabIndex = 0;
            // 
            // tabOffHand
            // 
            tabOffHand.AutoScroll = true;
            tabOffHand.Controls.Add(this.guiOffHandEditor);
            tabOffHand.Location = new System.Drawing.Point(4, 22);
            tabOffHand.Name = "tabOffHand";
            tabOffHand.Padding = new System.Windows.Forms.Padding(3);
            tabOffHand.Size = new System.Drawing.Size(1026, 576);
            tabOffHand.TabIndex = 1;
            tabOffHand.Text = "Off Hand";
            tabOffHand.UseVisualStyleBackColor = true;
            // 
            // guiOffHandEditor
            // 
            this.guiOffHandEditor.AutoSize = true;
            this.guiOffHandEditor.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            this.guiOffHandEditor.KnownGems = null;
            this.guiOffHandEditor.Location = new System.Drawing.Point(6, 6);
            this.guiOffHandEditor.Name = "guiOffHandEditor";
            this.guiOffHandEditor.Size = new System.Drawing.Size(708, 531);
            this.guiOffHandEditor.TabIndex = 0;
            // 
            // tabLeftFinger
            // 
            tabLeftFinger.AutoScroll = true;
            tabLeftFinger.Controls.Add(this.guiLeftFingerEditor);
            tabLeftFinger.Location = new System.Drawing.Point(4, 22);
            tabLeftFinger.Name = "tabLeftFinger";
            tabLeftFinger.Padding = new System.Windows.Forms.Padding(3);
            tabLeftFinger.Size = new System.Drawing.Size(1026, 576);
            tabLeftFinger.TabIndex = 6;
            tabLeftFinger.Text = "Left Finger";
            tabLeftFinger.UseVisualStyleBackColor = true;
            // 
            // guiLeftFingerEditor
            // 
            this.guiLeftFingerEditor.AutoSize = true;
            this.guiLeftFingerEditor.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            this.guiLeftFingerEditor.KnownGems = null;
            this.guiLeftFingerEditor.Location = new System.Drawing.Point(6, 6);
            this.guiLeftFingerEditor.Name = "guiLeftFingerEditor";
            this.guiLeftFingerEditor.Size = new System.Drawing.Size(708, 531);
            this.guiLeftFingerEditor.TabIndex = 0;
            // 
            // tabRightFinger
            // 
            tabRightFinger.AutoScroll = true;
            tabRightFinger.Controls.Add(this.guiRightFingerEditor);
            tabRightFinger.Location = new System.Drawing.Point(4, 22);
            tabRightFinger.Name = "tabRightFinger";
            tabRightFinger.Padding = new System.Windows.Forms.Padding(3);
            tabRightFinger.Size = new System.Drawing.Size(1026, 576);
            tabRightFinger.TabIndex = 9;
            tabRightFinger.Text = "Right Finger";
            tabRightFinger.UseVisualStyleBackColor = true;
            // 
            // guiRightFingerEditor
            // 
            this.guiRightFingerEditor.AutoSize = true;
            this.guiRightFingerEditor.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            this.guiRightFingerEditor.KnownGems = null;
            this.guiRightFingerEditor.Location = new System.Drawing.Point(6, 6);
            this.guiRightFingerEditor.Name = "guiRightFingerEditor";
            this.guiRightFingerEditor.Size = new System.Drawing.Size(708, 531);
            this.guiRightFingerEditor.TabIndex = 0;
            // 
            // tabNeck
            // 
            tabNeck.AutoScroll = true;
            tabNeck.Controls.Add(this.guiNeckEditor);
            tabNeck.Location = new System.Drawing.Point(4, 22);
            tabNeck.Name = "tabNeck";
            tabNeck.Padding = new System.Windows.Forms.Padding(3);
            tabNeck.Size = new System.Drawing.Size(1026, 576);
            tabNeck.TabIndex = 8;
            tabNeck.Text = "Neck";
            tabNeck.UseVisualStyleBackColor = true;
            // 
            // guiNeckEditor
            // 
            this.guiNeckEditor.AutoSize = true;
            this.guiNeckEditor.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            this.guiNeckEditor.KnownGems = null;
            this.guiNeckEditor.Location = new System.Drawing.Point(6, 6);
            this.guiNeckEditor.Name = "guiNeckEditor";
            this.guiNeckEditor.Size = new System.Drawing.Size(708, 531);
            this.guiNeckEditor.TabIndex = 0;
            // 
            // tabHead
            // 
            this.tabHead.AutoScroll = true;
            this.tabHead.Controls.Add(this.guiHeadEditor);
            this.tabHead.Location = new System.Drawing.Point(4, 22);
            this.tabHead.Name = "tabHead";
            this.tabHead.Padding = new System.Windows.Forms.Padding(3);
            this.tabHead.Size = new System.Drawing.Size(1026, 576);
            this.tabHead.TabIndex = 5;
            this.tabHead.Text = "Head";
            this.tabHead.UseVisualStyleBackColor = true;
            // 
            // guiHeadEditor
            // 
            this.guiHeadEditor.AutoSize = true;
            this.guiHeadEditor.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            this.guiHeadEditor.KnownGems = null;
            this.guiHeadEditor.Location = new System.Drawing.Point(6, 6);
            this.guiHeadEditor.Name = "guiHeadEditor";
            this.guiHeadEditor.Size = new System.Drawing.Size(708, 531);
            this.guiHeadEditor.TabIndex = 0;
            // 
            // tabShoulders
            // 
            this.tabShoulders.AutoScroll = true;
            this.tabShoulders.Controls.Add(this.guiShouldersEditor);
            this.tabShoulders.Location = new System.Drawing.Point(4, 22);
            this.tabShoulders.Name = "tabShoulders";
            this.tabShoulders.Padding = new System.Windows.Forms.Padding(3);
            this.tabShoulders.Size = new System.Drawing.Size(1026, 576);
            this.tabShoulders.TabIndex = 10;
            this.tabShoulders.Text = "Shoulders";
            this.tabShoulders.UseVisualStyleBackColor = true;
            // 
            // guiShouldersEditor
            // 
            this.guiShouldersEditor.AutoSize = true;
            this.guiShouldersEditor.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            this.guiShouldersEditor.KnownGems = null;
            this.guiShouldersEditor.Location = new System.Drawing.Point(6, 6);
            this.guiShouldersEditor.Name = "guiShouldersEditor";
            this.guiShouldersEditor.Size = new System.Drawing.Size(708, 531);
            this.guiShouldersEditor.TabIndex = 0;
            // 
            // tabBracers
            // 
            this.tabBracers.AutoScroll = true;
            this.tabBracers.Controls.Add(this.guiBracersEditor);
            this.tabBracers.Location = new System.Drawing.Point(4, 22);
            this.tabBracers.Name = "tabBracers";
            this.tabBracers.Padding = new System.Windows.Forms.Padding(3);
            this.tabBracers.Size = new System.Drawing.Size(1026, 576);
            this.tabBracers.TabIndex = 2;
            this.tabBracers.Text = "Bracers";
            this.tabBracers.UseVisualStyleBackColor = true;
            // 
            // guiBracersEditor
            // 
            this.guiBracersEditor.AutoSize = true;
            this.guiBracersEditor.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            this.guiBracersEditor.KnownGems = null;
            this.guiBracersEditor.Location = new System.Drawing.Point(6, 6);
            this.guiBracersEditor.Name = "guiBracersEditor";
            this.guiBracersEditor.Size = new System.Drawing.Size(708, 531);
            this.guiBracersEditor.TabIndex = 0;
            // 
            // tabHands
            // 
            this.tabHands.AutoScroll = true;
            this.tabHands.Controls.Add(this.guiHandsEditor);
            this.tabHands.Location = new System.Drawing.Point(4, 22);
            this.tabHands.Name = "tabHands";
            this.tabHands.Padding = new System.Windows.Forms.Padding(3);
            this.tabHands.Size = new System.Drawing.Size(1026, 576);
            this.tabHands.TabIndex = 4;
            this.tabHands.Text = "Hands";
            this.tabHands.UseVisualStyleBackColor = true;
            // 
            // guiHandsEditor
            // 
            this.guiHandsEditor.AutoSize = true;
            this.guiHandsEditor.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            this.guiHandsEditor.KnownGems = null;
            this.guiHandsEditor.Location = new System.Drawing.Point(6, 6);
            this.guiHandsEditor.Name = "guiHandsEditor";
            this.guiHandsEditor.Size = new System.Drawing.Size(708, 531);
            this.guiHandsEditor.TabIndex = 0;
            // 
            // tabTorso
            // 
            this.tabTorso.AutoScroll = true;
            this.tabTorso.Controls.Add(this.guiTorsoEditor);
            this.tabTorso.Location = new System.Drawing.Point(4, 22);
            this.tabTorso.Name = "tabTorso";
            this.tabTorso.Padding = new System.Windows.Forms.Padding(3);
            this.tabTorso.Size = new System.Drawing.Size(1026, 576);
            this.tabTorso.TabIndex = 11;
            this.tabTorso.Text = "Torso";
            this.tabTorso.UseVisualStyleBackColor = true;
            // 
            // guiTorsoEditor
            // 
            this.guiTorsoEditor.AutoSize = true;
            this.guiTorsoEditor.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            this.guiTorsoEditor.KnownGems = null;
            this.guiTorsoEditor.Location = new System.Drawing.Point(6, 6);
            this.guiTorsoEditor.Name = "guiTorsoEditor";
            this.guiTorsoEditor.Size = new System.Drawing.Size(708, 531);
            this.guiTorsoEditor.TabIndex = 0;
            // 
            // tabWaist
            // 
            this.tabWaist.AutoScroll = true;
            this.tabWaist.Controls.Add(this.guiWaistEditor);
            this.tabWaist.Location = new System.Drawing.Point(4, 22);
            this.tabWaist.Name = "tabWaist";
            this.tabWaist.Padding = new System.Windows.Forms.Padding(3);
            this.tabWaist.Size = new System.Drawing.Size(1026, 576);
            this.tabWaist.TabIndex = 12;
            this.tabWaist.Text = "Waist";
            this.tabWaist.UseVisualStyleBackColor = true;
            // 
            // guiWaistEditor
            // 
            this.guiWaistEditor.AutoSize = true;
            this.guiWaistEditor.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            this.guiWaistEditor.KnownGems = null;
            this.guiWaistEditor.Location = new System.Drawing.Point(6, 6);
            this.guiWaistEditor.Name = "guiWaistEditor";
            this.guiWaistEditor.Size = new System.Drawing.Size(708, 531);
            this.guiWaistEditor.TabIndex = 0;
            // 
            // tabLegs
            // 
            this.tabLegs.AutoScroll = true;
            this.tabLegs.Controls.Add(this.guiLegsEditor);
            this.tabLegs.Location = new System.Drawing.Point(4, 22);
            this.tabLegs.Name = "tabLegs";
            this.tabLegs.Padding = new System.Windows.Forms.Padding(3);
            this.tabLegs.Size = new System.Drawing.Size(1026, 576);
            this.tabLegs.TabIndex = 7;
            this.tabLegs.Text = "Legs";
            this.tabLegs.UseVisualStyleBackColor = true;
            // 
            // guiLegsEditor
            // 
            this.guiLegsEditor.AutoSize = true;
            this.guiLegsEditor.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            this.guiLegsEditor.KnownGems = null;
            this.guiLegsEditor.Location = new System.Drawing.Point(6, 6);
            this.guiLegsEditor.Name = "guiLegsEditor";
            this.guiLegsEditor.Size = new System.Drawing.Size(708, 531);
            this.guiLegsEditor.TabIndex = 0;
            // 
            // tabFeet
            // 
            this.tabFeet.AutoScroll = true;
            this.tabFeet.Controls.Add(this.guiFeetEditor);
            this.tabFeet.Location = new System.Drawing.Point(4, 22);
            this.tabFeet.Name = "tabFeet";
            this.tabFeet.Padding = new System.Windows.Forms.Padding(3);
            this.tabFeet.Size = new System.Drawing.Size(1026, 576);
            this.tabFeet.TabIndex = 3;
            this.tabFeet.Text = "Feet";
            this.tabFeet.UseVisualStyleBackColor = true;
            // 
            // guiFeetEditor
            // 
            this.guiFeetEditor.AutoSize = true;
            this.guiFeetEditor.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            this.guiFeetEditor.KnownGems = null;
            this.guiFeetEditor.Location = new System.Drawing.Point(6, 6);
            this.guiFeetEditor.Name = "guiFeetEditor";
            this.guiFeetEditor.Size = new System.Drawing.Size(708, 531);
            this.guiFeetEditor.TabIndex = 0;
            // 
            // tabResults
            // 
            tabResults.Controls.Add(groupBox2);
            tabResults.Controls.Add(this.guiDoCalculations);
            tabResults.Controls.Add(groupBox10);
            tabResults.Controls.Add(groupBox1);
            tabResults.Location = new System.Drawing.Point(4, 22);
            tabResults.Name = "tabResults";
            tabResults.Size = new System.Drawing.Size(1026, 576);
            tabResults.TabIndex = 15;
            tabResults.Text = "Calculation Results";
            tabResults.UseVisualStyleBackColor = true;
            // 
            // groupBox2
            // 
            groupBox2.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            groupBox2.Controls.Add(label46);
            groupBox2.Controls.Add(this.guiCalculatedDPSEHPRatio);
            groupBox2.Controls.Add(label45);
            groupBox2.Controls.Add(this.guiCalculatedEffectiveHitpoints);
            groupBox2.Controls.Add(label44);
            groupBox2.Controls.Add(this.guiCalculatedResistance_All);
            groupBox2.Controls.Add(label27);
            groupBox2.Controls.Add(this.guiCalculatedHitpoints);
            groupBox2.Controls.Add(label20);
            groupBox2.Controls.Add(label43);
            groupBox2.Controls.Add(label42);
            groupBox2.Controls.Add(label41);
            groupBox2.Controls.Add(label40);
            groupBox2.Controls.Add(label39);
            groupBox2.Controls.Add(label38);
            groupBox2.Controls.Add(label37);
            groupBox2.Controls.Add(label36);
            groupBox2.Controls.Add(this.guiCalculatedBlockMax);
            groupBox2.Controls.Add(this.guiCalculatedBlockMin);
            groupBox2.Controls.Add(label15);
            groupBox2.Controls.Add(this.guiCalculatedBlockChance);
            groupBox2.Controls.Add(label12);
            groupBox2.Controls.Add(this.guiCalculatedDodge);
            groupBox2.Controls.Add(this.guiCalculatedDamageReduction_Poison);
            groupBox2.Controls.Add(this.guiCalculatedDamageReduction_Physical);
            groupBox2.Controls.Add(this.guiCalculatedDamageReduction_Lightning);
            groupBox2.Controls.Add(this.guiCalculatedDamageReduction_Fire);
            groupBox2.Controls.Add(this.guiCalculatedDamageReduction_Cold);
            groupBox2.Controls.Add(this.guiCalculatedDamageReduction_Arcane);
            groupBox2.Controls.Add(this.guiCalculatedDamageReduction_Armor);
            groupBox2.Controls.Add(this.guiCalculatedArmor);
            groupBox2.Controls.Add(label35);
            groupBox2.Controls.Add(this.guiCalculatedResistance_Poison);
            groupBox2.Controls.Add(label26);
            groupBox2.Controls.Add(this.guiCalculatedResistance_Physical);
            groupBox2.Controls.Add(label25);
            groupBox2.Controls.Add(this.guiCalculatedResistance_Lightning);
            groupBox2.Controls.Add(label24);
            groupBox2.Controls.Add(this.guiCalculatedResistance_Fire);
            groupBox2.Controls.Add(label23);
            groupBox2.Controls.Add(this.guiCalculatedResistance_Cold);
            groupBox2.Controls.Add(label22);
            groupBox2.Controls.Add(this.guiCalculatedResistance_Arcane);
            groupBox2.Controls.Add(label21);
            groupBox2.Location = new System.Drawing.Point(165, 145);
            groupBox2.Name = "groupBox2";
            groupBox2.Size = new System.Drawing.Size(278, 370);
            groupBox2.TabIndex = 3;
            groupBox2.TabStop = false;
            groupBox2.Text = "Calculation: Defense";
            // 
            // label46
            // 
            label46.AutoSize = true;
            label46.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            label46.Location = new System.Drawing.Point(50, 74);
            label46.Name = "label46";
            label46.Size = new System.Drawing.Size(61, 13);
            label46.TabIndex = 53;
            label46.Text = "DPS * EHP";
            label46.TextAlign = System.Drawing.ContentAlignment.TopRight;
            // 
            // guiCalculatedDPSEHPRatio
            // 
            this.guiCalculatedDPSEHPRatio.Location = new System.Drawing.Point(126, 71);
            this.guiCalculatedDPSEHPRatio.Name = "guiCalculatedDPSEHPRatio";
            this.guiCalculatedDPSEHPRatio.ReadOnly = true;
            this.guiCalculatedDPSEHPRatio.Size = new System.Drawing.Size(70, 20);
            this.guiCalculatedDPSEHPRatio.TabIndex = 52;
            // 
            // label45
            // 
            label45.AutoSize = true;
            label45.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            label45.Location = new System.Drawing.Point(8, 48);
            label45.Name = "label45";
            label45.Size = new System.Drawing.Size(112, 13);
            label45.TabIndex = 51;
            label45.Text = "Effective Hitpoints";
            // 
            // guiCalculatedEffectiveHitpoints
            // 
            this.guiCalculatedEffectiveHitpoints.Location = new System.Drawing.Point(126, 45);
            this.guiCalculatedEffectiveHitpoints.Name = "guiCalculatedEffectiveHitpoints";
            this.guiCalculatedEffectiveHitpoints.ReadOnly = true;
            this.guiCalculatedEffectiveHitpoints.Size = new System.Drawing.Size(70, 20);
            this.guiCalculatedEffectiveHitpoints.TabIndex = 50;
            // 
            // label44
            // 
            label44.AutoSize = true;
            label44.Location = new System.Drawing.Point(243, 334);
            label44.Name = "label44";
            label44.Size = new System.Drawing.Size(15, 13);
            label44.TabIndex = 47;
            label44.Text = "%";
            // 
            // guiCalculatedResistance_All
            // 
            this.guiCalculatedResistance_All.Location = new System.Drawing.Point(126, 175);
            this.guiCalculatedResistance_All.Name = "guiCalculatedResistance_All";
            this.guiCalculatedResistance_All.ReadOnly = true;
            this.guiCalculatedResistance_All.Size = new System.Drawing.Size(35, 20);
            this.guiCalculatedResistance_All.TabIndex = 49;
            // 
            // label27
            // 
            label27.AutoSize = true;
            label27.Location = new System.Drawing.Point(71, 178);
            label27.Name = "label27";
            label27.Size = new System.Drawing.Size(49, 13);
            label27.TabIndex = 48;
            label27.Text = "all resists";
            // 
            // guiCalculatedHitpoints
            // 
            this.guiCalculatedHitpoints.Location = new System.Drawing.Point(126, 19);
            this.guiCalculatedHitpoints.Name = "guiCalculatedHitpoints";
            this.guiCalculatedHitpoints.ReadOnly = true;
            this.guiCalculatedHitpoints.Size = new System.Drawing.Size(70, 20);
            this.guiCalculatedHitpoints.TabIndex = 11;
            // 
            // label20
            // 
            label20.AutoSize = true;
            label20.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            label20.Location = new System.Drawing.Point(63, 22);
            label20.Name = "label20";
            label20.Size = new System.Drawing.Size(57, 13);
            label20.TabIndex = 10;
            label20.Text = "Hitpoints";
            // 
            // label43
            // 
            label43.AutoSize = true;
            label43.Location = new System.Drawing.Point(243, 308);
            label43.Name = "label43";
            label43.Size = new System.Drawing.Size(15, 13);
            label43.TabIndex = 43;
            label43.Text = "%";
            // 
            // label42
            // 
            label42.AutoSize = true;
            label42.Location = new System.Drawing.Point(243, 282);
            label42.Name = "label42";
            label42.Size = new System.Drawing.Size(15, 13);
            label42.TabIndex = 39;
            label42.Text = "%";
            // 
            // label41
            // 
            label41.AutoSize = true;
            label41.Location = new System.Drawing.Point(243, 256);
            label41.Name = "label41";
            label41.Size = new System.Drawing.Size(15, 13);
            label41.TabIndex = 35;
            label41.Text = "%";
            // 
            // label40
            // 
            label40.AutoSize = true;
            label40.Location = new System.Drawing.Point(243, 230);
            label40.Name = "label40";
            label40.Size = new System.Drawing.Size(15, 13);
            label40.TabIndex = 31;
            label40.Text = "%";
            // 
            // label39
            // 
            label39.AutoSize = true;
            label39.Location = new System.Drawing.Point(243, 204);
            label39.Name = "label39";
            label39.Size = new System.Drawing.Size(15, 13);
            label39.TabIndex = 27;
            label39.Text = "%";
            // 
            // label38
            // 
            label38.AutoSize = true;
            label38.Location = new System.Drawing.Point(243, 157);
            label38.Name = "label38";
            label38.Size = new System.Drawing.Size(15, 13);
            label38.TabIndex = 23;
            label38.Text = "%";
            // 
            // label37
            // 
            label37.AutoSize = true;
            label37.Location = new System.Drawing.Point(167, 100);
            label37.Name = "label37";
            label37.Size = new System.Drawing.Size(15, 13);
            label37.TabIndex = 14;
            label37.Text = "%";
            // 
            // label36
            // 
            label36.AutoSize = true;
            label36.Location = new System.Drawing.Point(167, 126);
            label36.Name = "label36";
            label36.Size = new System.Drawing.Size(15, 13);
            label36.TabIndex = 17;
            label36.Text = "%";
            // 
            // guiCalculatedBlockMax
            // 
            this.guiCalculatedBlockMax.Location = new System.Drawing.Point(229, 123);
            this.guiCalculatedBlockMax.Name = "guiCalculatedBlockMax";
            this.guiCalculatedBlockMax.ReadOnly = true;
            this.guiCalculatedBlockMax.Size = new System.Drawing.Size(35, 20);
            this.guiCalculatedBlockMax.TabIndex = 19;
            // 
            // guiCalculatedBlockMin
            // 
            this.guiCalculatedBlockMin.Location = new System.Drawing.Point(188, 123);
            this.guiCalculatedBlockMin.Name = "guiCalculatedBlockMin";
            this.guiCalculatedBlockMin.ReadOnly = true;
            this.guiCalculatedBlockMin.Size = new System.Drawing.Size(35, 20);
            this.guiCalculatedBlockMin.TabIndex = 18;
            // 
            // label15
            // 
            label15.AutoSize = true;
            label15.Location = new System.Drawing.Point(86, 126);
            label15.Name = "label15";
            label15.Size = new System.Drawing.Size(34, 13);
            label15.TabIndex = 15;
            label15.Text = "Block";
            // 
            // guiCalculatedBlockChance
            // 
            this.guiCalculatedBlockChance.Location = new System.Drawing.Point(126, 123);
            this.guiCalculatedBlockChance.Name = "guiCalculatedBlockChance";
            this.guiCalculatedBlockChance.ReadOnly = true;
            this.guiCalculatedBlockChance.Size = new System.Drawing.Size(35, 20);
            this.guiCalculatedBlockChance.TabIndex = 16;
            // 
            // label12
            // 
            label12.AutoSize = true;
            label12.Location = new System.Drawing.Point(41, 100);
            label12.Name = "label12";
            label12.Size = new System.Drawing.Size(79, 13);
            label12.TabIndex = 12;
            label12.Text = "Dodge Chance";
            // 
            // guiCalculatedDodge
            // 
            this.guiCalculatedDodge.Location = new System.Drawing.Point(126, 97);
            this.guiCalculatedDodge.Name = "guiCalculatedDodge";
            this.guiCalculatedDodge.ReadOnly = true;
            this.guiCalculatedDodge.Size = new System.Drawing.Size(35, 20);
            this.guiCalculatedDodge.TabIndex = 13;
            // 
            // guiCalculatedDamageReduction_Poison
            // 
            this.guiCalculatedDamageReduction_Poison.Location = new System.Drawing.Point(202, 331);
            this.guiCalculatedDamageReduction_Poison.Name = "guiCalculatedDamageReduction_Poison";
            this.guiCalculatedDamageReduction_Poison.ReadOnly = true;
            this.guiCalculatedDamageReduction_Poison.Size = new System.Drawing.Size(35, 20);
            this.guiCalculatedDamageReduction_Poison.TabIndex = 46;
            // 
            // guiCalculatedDamageReduction_Physical
            // 
            this.guiCalculatedDamageReduction_Physical.Location = new System.Drawing.Point(202, 305);
            this.guiCalculatedDamageReduction_Physical.Name = "guiCalculatedDamageReduction_Physical";
            this.guiCalculatedDamageReduction_Physical.ReadOnly = true;
            this.guiCalculatedDamageReduction_Physical.Size = new System.Drawing.Size(35, 20);
            this.guiCalculatedDamageReduction_Physical.TabIndex = 42;
            // 
            // guiCalculatedDamageReduction_Lightning
            // 
            this.guiCalculatedDamageReduction_Lightning.Location = new System.Drawing.Point(202, 279);
            this.guiCalculatedDamageReduction_Lightning.Name = "guiCalculatedDamageReduction_Lightning";
            this.guiCalculatedDamageReduction_Lightning.ReadOnly = true;
            this.guiCalculatedDamageReduction_Lightning.Size = new System.Drawing.Size(35, 20);
            this.guiCalculatedDamageReduction_Lightning.TabIndex = 38;
            // 
            // guiCalculatedDamageReduction_Fire
            // 
            this.guiCalculatedDamageReduction_Fire.Location = new System.Drawing.Point(202, 253);
            this.guiCalculatedDamageReduction_Fire.Name = "guiCalculatedDamageReduction_Fire";
            this.guiCalculatedDamageReduction_Fire.ReadOnly = true;
            this.guiCalculatedDamageReduction_Fire.Size = new System.Drawing.Size(35, 20);
            this.guiCalculatedDamageReduction_Fire.TabIndex = 34;
            // 
            // guiCalculatedDamageReduction_Cold
            // 
            this.guiCalculatedDamageReduction_Cold.Location = new System.Drawing.Point(202, 227);
            this.guiCalculatedDamageReduction_Cold.Name = "guiCalculatedDamageReduction_Cold";
            this.guiCalculatedDamageReduction_Cold.ReadOnly = true;
            this.guiCalculatedDamageReduction_Cold.Size = new System.Drawing.Size(35, 20);
            this.guiCalculatedDamageReduction_Cold.TabIndex = 30;
            // 
            // guiCalculatedDamageReduction_Arcane
            // 
            this.guiCalculatedDamageReduction_Arcane.Location = new System.Drawing.Point(202, 201);
            this.guiCalculatedDamageReduction_Arcane.Name = "guiCalculatedDamageReduction_Arcane";
            this.guiCalculatedDamageReduction_Arcane.ReadOnly = true;
            this.guiCalculatedDamageReduction_Arcane.Size = new System.Drawing.Size(35, 20);
            this.guiCalculatedDamageReduction_Arcane.TabIndex = 26;
            // 
            // guiCalculatedDamageReduction_Armor
            // 
            this.guiCalculatedDamageReduction_Armor.Location = new System.Drawing.Point(202, 150);
            this.guiCalculatedDamageReduction_Armor.Name = "guiCalculatedDamageReduction_Armor";
            this.guiCalculatedDamageReduction_Armor.ReadOnly = true;
            this.guiCalculatedDamageReduction_Armor.Size = new System.Drawing.Size(35, 20);
            this.guiCalculatedDamageReduction_Armor.TabIndex = 22;
            // 
            // guiCalculatedArmor
            // 
            this.guiCalculatedArmor.Location = new System.Drawing.Point(126, 149);
            this.guiCalculatedArmor.Name = "guiCalculatedArmor";
            this.guiCalculatedArmor.ReadOnly = true;
            this.guiCalculatedArmor.Size = new System.Drawing.Size(35, 20);
            this.guiCalculatedArmor.TabIndex = 21;
            // 
            // label35
            // 
            label35.AutoSize = true;
            label35.Location = new System.Drawing.Point(87, 153);
            label35.Name = "label35";
            label35.Size = new System.Drawing.Size(33, 13);
            label35.TabIndex = 20;
            label35.Text = "armor";
            // 
            // guiCalculatedResistance_Poison
            // 
            this.guiCalculatedResistance_Poison.Location = new System.Drawing.Point(126, 331);
            this.guiCalculatedResistance_Poison.Name = "guiCalculatedResistance_Poison";
            this.guiCalculatedResistance_Poison.ReadOnly = true;
            this.guiCalculatedResistance_Poison.Size = new System.Drawing.Size(35, 20);
            this.guiCalculatedResistance_Poison.TabIndex = 45;
            // 
            // label26
            // 
            label26.AutoSize = true;
            label26.Location = new System.Drawing.Point(55, 334);
            label26.Name = "label26";
            label26.Size = new System.Drawing.Size(65, 13);
            label26.TabIndex = 44;
            label26.Text = "poison resist";
            // 
            // guiCalculatedResistance_Physical
            // 
            this.guiCalculatedResistance_Physical.Location = new System.Drawing.Point(126, 305);
            this.guiCalculatedResistance_Physical.Name = "guiCalculatedResistance_Physical";
            this.guiCalculatedResistance_Physical.ReadOnly = true;
            this.guiCalculatedResistance_Physical.Size = new System.Drawing.Size(35, 20);
            this.guiCalculatedResistance_Physical.TabIndex = 41;
            // 
            // label25
            // 
            label25.AutoSize = true;
            label25.Location = new System.Drawing.Point(48, 308);
            label25.Name = "label25";
            label25.Size = new System.Drawing.Size(72, 13);
            label25.TabIndex = 40;
            label25.Text = "physical resist";
            // 
            // guiCalculatedResistance_Lightning
            // 
            this.guiCalculatedResistance_Lightning.Location = new System.Drawing.Point(126, 279);
            this.guiCalculatedResistance_Lightning.Name = "guiCalculatedResistance_Lightning";
            this.guiCalculatedResistance_Lightning.ReadOnly = true;
            this.guiCalculatedResistance_Lightning.Size = new System.Drawing.Size(35, 20);
            this.guiCalculatedResistance_Lightning.TabIndex = 37;
            // 
            // label24
            // 
            label24.AutoSize = true;
            label24.Location = new System.Drawing.Point(47, 282);
            label24.Name = "label24";
            label24.Size = new System.Drawing.Size(73, 13);
            label24.TabIndex = 36;
            label24.Text = "lightning resist";
            // 
            // guiCalculatedResistance_Fire
            // 
            this.guiCalculatedResistance_Fire.Location = new System.Drawing.Point(126, 253);
            this.guiCalculatedResistance_Fire.Name = "guiCalculatedResistance_Fire";
            this.guiCalculatedResistance_Fire.ReadOnly = true;
            this.guiCalculatedResistance_Fire.Size = new System.Drawing.Size(35, 20);
            this.guiCalculatedResistance_Fire.TabIndex = 33;
            // 
            // label23
            // 
            label23.AutoSize = true;
            label23.Location = new System.Drawing.Point(72, 256);
            label23.Name = "label23";
            label23.Size = new System.Drawing.Size(48, 13);
            label23.TabIndex = 32;
            label23.Text = "fire resist";
            // 
            // guiCalculatedResistance_Cold
            // 
            this.guiCalculatedResistance_Cold.Location = new System.Drawing.Point(126, 227);
            this.guiCalculatedResistance_Cold.Name = "guiCalculatedResistance_Cold";
            this.guiCalculatedResistance_Cold.ReadOnly = true;
            this.guiCalculatedResistance_Cold.Size = new System.Drawing.Size(35, 20);
            this.guiCalculatedResistance_Cold.TabIndex = 29;
            // 
            // label22
            // 
            label22.AutoSize = true;
            label22.Location = new System.Drawing.Point(66, 230);
            label22.Name = "label22";
            label22.Size = new System.Drawing.Size(54, 13);
            label22.TabIndex = 28;
            label22.Text = "cold resist";
            // 
            // guiCalculatedResistance_Arcane
            // 
            this.guiCalculatedResistance_Arcane.Location = new System.Drawing.Point(126, 201);
            this.guiCalculatedResistance_Arcane.Name = "guiCalculatedResistance_Arcane";
            this.guiCalculatedResistance_Arcane.ReadOnly = true;
            this.guiCalculatedResistance_Arcane.Size = new System.Drawing.Size(35, 20);
            this.guiCalculatedResistance_Arcane.TabIndex = 25;
            // 
            // label21
            // 
            label21.AutoSize = true;
            label21.Location = new System.Drawing.Point(53, 204);
            label21.Name = "label21";
            label21.Size = new System.Drawing.Size(67, 13);
            label21.TabIndex = 24;
            label21.Text = "arcane resist";
            // 
            // guiDoCalculations
            // 
            this.guiDoCalculations.Location = new System.Drawing.Point(3, 3);
            this.guiDoCalculations.Name = "guiDoCalculations";
            this.guiDoCalculations.Size = new System.Drawing.Size(100, 23);
            this.guiDoCalculations.TabIndex = 1;
            this.guiDoCalculations.Text = "Do Calculations";
            this.guiDoCalculations.UseVisualStyleBackColor = true;
            this.guiDoCalculations.Click += new System.EventHandler(this.guiDoCalculations_Click);
            // 
            // groupBox10
            // 
            groupBox10.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            groupBox10.Controls.Add(this.guiCalculatedDPS);
            groupBox10.Controls.Add(label8);
            groupBox10.Controls.Add(label10);
            groupBox10.Controls.Add(this.guiCalculatedAttackPerSecond);
            groupBox10.Controls.Add(label13);
            groupBox10.Controls.Add(this.guiCalcultatedDamageMax);
            groupBox10.Controls.Add(this.guiCalcultatedDamageMin);
            groupBox10.Controls.Add(this.guiCalcultatedDamageCriticMax);
            groupBox10.Controls.Add(label14);
            groupBox10.Controls.Add(this.guiCalcultatedDamageCriticMin);
            groupBox10.Location = new System.Drawing.Point(165, 3);
            groupBox10.Name = "groupBox10";
            groupBox10.Size = new System.Drawing.Size(278, 136);
            groupBox10.TabIndex = 4;
            groupBox10.TabStop = false;
            groupBox10.Text = "Calculation: Damage";
            // 
            // guiCalculatedDPS
            // 
            this.guiCalculatedDPS.Location = new System.Drawing.Point(126, 19);
            this.guiCalculatedDPS.Name = "guiCalculatedDPS";
            this.guiCalculatedDPS.ReadOnly = true;
            this.guiCalculatedDPS.Size = new System.Drawing.Size(70, 20);
            this.guiCalculatedDPS.TabIndex = 1;
            // 
            // label8
            // 
            label8.AutoSize = true;
            label8.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            label8.Location = new System.Drawing.Point(88, 22);
            label8.Name = "label8";
            label8.Size = new System.Drawing.Size(32, 13);
            label8.TabIndex = 0;
            label8.Text = "DPS";
            // 
            // label10
            // 
            label10.AutoSize = true;
            label10.Location = new System.Drawing.Point(68, 48);
            label10.Name = "label10";
            label10.Size = new System.Drawing.Size(52, 13);
            label10.TabIndex = 2;
            label10.Text = "Damages";
            // 
            // guiCalculatedAttackPerSecond
            // 
            this.guiCalculatedAttackPerSecond.Location = new System.Drawing.Point(126, 97);
            this.guiCalculatedAttackPerSecond.Name = "guiCalculatedAttackPerSecond";
            this.guiCalculatedAttackPerSecond.ReadOnly = true;
            this.guiCalculatedAttackPerSecond.Size = new System.Drawing.Size(70, 20);
            this.guiCalculatedAttackPerSecond.TabIndex = 9;
            // 
            // label13
            // 
            label13.AutoSize = true;
            label13.Location = new System.Drawing.Point(23, 100);
            label13.Name = "label13";
            label13.Size = new System.Drawing.Size(97, 13);
            label13.TabIndex = 8;
            label13.Text = "Attack Per Second";
            // 
            // guiCalcultatedDamageMax
            // 
            this.guiCalcultatedDamageMax.Location = new System.Drawing.Point(202, 45);
            this.guiCalcultatedDamageMax.Name = "guiCalcultatedDamageMax";
            this.guiCalcultatedDamageMax.ReadOnly = true;
            this.guiCalcultatedDamageMax.Size = new System.Drawing.Size(70, 20);
            this.guiCalcultatedDamageMax.TabIndex = 4;
            // 
            // guiCalcultatedDamageMin
            // 
            this.guiCalcultatedDamageMin.Location = new System.Drawing.Point(126, 45);
            this.guiCalcultatedDamageMin.Name = "guiCalcultatedDamageMin";
            this.guiCalcultatedDamageMin.ReadOnly = true;
            this.guiCalcultatedDamageMin.Size = new System.Drawing.Size(70, 20);
            this.guiCalcultatedDamageMin.TabIndex = 3;
            // 
            // guiCalcultatedDamageCriticMax
            // 
            this.guiCalcultatedDamageCriticMax.Location = new System.Drawing.Point(202, 71);
            this.guiCalcultatedDamageCriticMax.Name = "guiCalcultatedDamageCriticMax";
            this.guiCalcultatedDamageCriticMax.ReadOnly = true;
            this.guiCalcultatedDamageCriticMax.Size = new System.Drawing.Size(70, 20);
            this.guiCalcultatedDamageCriticMax.TabIndex = 7;
            // 
            // label14
            // 
            label14.AutoSize = true;
            label14.Location = new System.Drawing.Point(42, 74);
            label14.Name = "label14";
            label14.Size = new System.Drawing.Size(78, 13);
            label14.TabIndex = 5;
            label14.Text = "Critic Damages";
            // 
            // guiCalcultatedDamageCriticMin
            // 
            this.guiCalcultatedDamageCriticMin.Location = new System.Drawing.Point(126, 71);
            this.guiCalcultatedDamageCriticMin.Name = "guiCalcultatedDamageCriticMin";
            this.guiCalcultatedDamageCriticMin.ReadOnly = true;
            this.guiCalcultatedDamageCriticMin.Size = new System.Drawing.Size(70, 20);
            this.guiCalcultatedDamageCriticMin.TabIndex = 6;
            // 
            // groupBox1
            // 
            groupBox1.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            groupBox1.Controls.Add(this.guiItemsLifeSteal);
            groupBox1.Controls.Add(label47);
            groupBox1.Controls.Add(this.guiItemsLifePerSecond);
            groupBox1.Controls.Add(this.guiItemsResistance_All);
            groupBox1.Controls.Add(label11);
            groupBox1.Controls.Add(label28);
            groupBox1.Controls.Add(this.guiItemsLifeOnHit);
            groupBox1.Controls.Add(label9);
            groupBox1.Controls.Add(this.guiItemsResistance_Poison);
            groupBox1.Controls.Add(label29);
            groupBox1.Controls.Add(this.guiItemsResistance_Physical);
            groupBox1.Controls.Add(label30);
            groupBox1.Controls.Add(this.guiItemsResistance_Lightning);
            groupBox1.Controls.Add(label31);
            groupBox1.Controls.Add(this.guiItemsResistance_Fire);
            groupBox1.Controls.Add(label32);
            groupBox1.Controls.Add(this.guiItemsResistance_Cold);
            groupBox1.Controls.Add(label33);
            groupBox1.Controls.Add(this.guiItemsResistance_Arcane);
            groupBox1.Controls.Add(label34);
            groupBox1.Controls.Add(this.guiItemsLifePercent);
            groupBox1.Controls.Add(label19);
            groupBox1.Controls.Add(this.guiItemsDexterity);
            groupBox1.Controls.Add(this.guiItemsCriticDamage);
            groupBox1.Controls.Add(label1);
            groupBox1.Controls.Add(label7);
            groupBox1.Controls.Add(label2);
            groupBox1.Controls.Add(this.guiItemsCriticChance);
            groupBox1.Controls.Add(this.guiItemsIntelligence);
            groupBox1.Controls.Add(label6);
            groupBox1.Controls.Add(label3);
            groupBox1.Controls.Add(this.guiItemsSpeedAttack);
            groupBox1.Controls.Add(this.guiItemsStrength);
            groupBox1.Controls.Add(label5);
            groupBox1.Controls.Add(label4);
            groupBox1.Controls.Add(this.guiItemsVitality);
            groupBox1.Location = new System.Drawing.Point(3, 32);
            groupBox1.Name = "groupBox1";
            groupBox1.Size = new System.Drawing.Size(156, 500);
            groupBox1.TabIndex = 2;
            groupBox1.TabStop = false;
            groupBox1.Text = "Summary";
            // 
            // guiItemsLifeSteal
            // 
            this.guiItemsLifeSteal.Location = new System.Drawing.Point(115, 279);
            this.guiItemsLifeSteal.Name = "guiItemsLifeSteal";
            this.guiItemsLifeSteal.ReadOnly = true;
            this.guiItemsLifeSteal.Size = new System.Drawing.Size(35, 20);
            this.guiItemsLifeSteal.TabIndex = 35;
            // 
            // label47
            // 
            label47.AutoSize = true;
            label47.Location = new System.Drawing.Point(53, 282);
            label47.Name = "label47";
            label47.Size = new System.Drawing.Size(56, 13);
            label47.TabIndex = 34;
            label47.Text = "% life steal";
            // 
            // guiItemsLifePerSecond
            // 
            this.guiItemsLifePerSecond.Location = new System.Drawing.Point(115, 253);
            this.guiItemsLifePerSecond.Name = "guiItemsLifePerSecond";
            this.guiItemsLifePerSecond.ReadOnly = true;
            this.guiItemsLifePerSecond.Size = new System.Drawing.Size(35, 20);
            this.guiItemsLifePerSecond.TabIndex = 33;
            // 
            // guiItemsResistance_All
            // 
            this.guiItemsResistance_All.Location = new System.Drawing.Point(115, 461);
            this.guiItemsResistance_All.Name = "guiItemsResistance_All";
            this.guiItemsResistance_All.ReadOnly = true;
            this.guiItemsResistance_All.Size = new System.Drawing.Size(35, 20);
            this.guiItemsResistance_All.TabIndex = 29;
            // 
            // label11
            // 
            label11.AutoSize = true;
            label11.Location = new System.Drawing.Point(33, 256);
            label11.Name = "label11";
            label11.Size = new System.Drawing.Size(76, 13);
            label11.TabIndex = 32;
            label11.Text = "life per second";
            // 
            // label28
            // 
            label28.AutoSize = true;
            label28.Location = new System.Drawing.Point(60, 464);
            label28.Name = "label28";
            label28.Size = new System.Drawing.Size(49, 13);
            label28.TabIndex = 28;
            label28.Text = "all resists";
            // 
            // guiItemsLifeOnHit
            // 
            this.guiItemsLifeOnHit.Location = new System.Drawing.Point(115, 227);
            this.guiItemsLifeOnHit.Name = "guiItemsLifeOnHit";
            this.guiItemsLifeOnHit.ReadOnly = true;
            this.guiItemsLifeOnHit.Size = new System.Drawing.Size(35, 20);
            this.guiItemsLifeOnHit.TabIndex = 31;
            // 
            // label9
            // 
            label9.AutoSize = true;
            label9.Location = new System.Drawing.Point(60, 230);
            label9.Name = "label9";
            label9.Size = new System.Drawing.Size(49, 13);
            label9.TabIndex = 30;
            label9.Text = "life on hit";
            // 
            // guiItemsResistance_Poison
            // 
            this.guiItemsResistance_Poison.Location = new System.Drawing.Point(115, 435);
            this.guiItemsResistance_Poison.Name = "guiItemsResistance_Poison";
            this.guiItemsResistance_Poison.ReadOnly = true;
            this.guiItemsResistance_Poison.Size = new System.Drawing.Size(35, 20);
            this.guiItemsResistance_Poison.TabIndex = 27;
            // 
            // label29
            // 
            label29.AutoSize = true;
            label29.Location = new System.Drawing.Point(44, 438);
            label29.Name = "label29";
            label29.Size = new System.Drawing.Size(65, 13);
            label29.TabIndex = 26;
            label29.Text = "poison resist";
            // 
            // guiItemsResistance_Physical
            // 
            this.guiItemsResistance_Physical.Location = new System.Drawing.Point(115, 409);
            this.guiItemsResistance_Physical.Name = "guiItemsResistance_Physical";
            this.guiItemsResistance_Physical.ReadOnly = true;
            this.guiItemsResistance_Physical.Size = new System.Drawing.Size(35, 20);
            this.guiItemsResistance_Physical.TabIndex = 25;
            // 
            // label30
            // 
            label30.AutoSize = true;
            label30.Location = new System.Drawing.Point(37, 412);
            label30.Name = "label30";
            label30.Size = new System.Drawing.Size(72, 13);
            label30.TabIndex = 24;
            label30.Text = "physical resist";
            // 
            // guiItemsResistance_Lightning
            // 
            this.guiItemsResistance_Lightning.Location = new System.Drawing.Point(115, 383);
            this.guiItemsResistance_Lightning.Name = "guiItemsResistance_Lightning";
            this.guiItemsResistance_Lightning.ReadOnly = true;
            this.guiItemsResistance_Lightning.Size = new System.Drawing.Size(35, 20);
            this.guiItemsResistance_Lightning.TabIndex = 23;
            // 
            // label31
            // 
            label31.AutoSize = true;
            label31.Location = new System.Drawing.Point(36, 386);
            label31.Name = "label31";
            label31.Size = new System.Drawing.Size(73, 13);
            label31.TabIndex = 22;
            label31.Text = "lightning resist";
            // 
            // guiItemsResistance_Fire
            // 
            this.guiItemsResistance_Fire.Location = new System.Drawing.Point(115, 357);
            this.guiItemsResistance_Fire.Name = "guiItemsResistance_Fire";
            this.guiItemsResistance_Fire.ReadOnly = true;
            this.guiItemsResistance_Fire.Size = new System.Drawing.Size(35, 20);
            this.guiItemsResistance_Fire.TabIndex = 21;
            // 
            // label32
            // 
            label32.AutoSize = true;
            label32.Location = new System.Drawing.Point(61, 360);
            label32.Name = "label32";
            label32.Size = new System.Drawing.Size(48, 13);
            label32.TabIndex = 20;
            label32.Text = "fire resist";
            // 
            // guiItemsResistance_Cold
            // 
            this.guiItemsResistance_Cold.Location = new System.Drawing.Point(115, 331);
            this.guiItemsResistance_Cold.Name = "guiItemsResistance_Cold";
            this.guiItemsResistance_Cold.ReadOnly = true;
            this.guiItemsResistance_Cold.Size = new System.Drawing.Size(35, 20);
            this.guiItemsResistance_Cold.TabIndex = 19;
            // 
            // label33
            // 
            label33.AutoSize = true;
            label33.Location = new System.Drawing.Point(55, 334);
            label33.Name = "label33";
            label33.Size = new System.Drawing.Size(54, 13);
            label33.TabIndex = 18;
            label33.Text = "cold resist";
            // 
            // guiItemsResistance_Arcane
            // 
            this.guiItemsResistance_Arcane.Location = new System.Drawing.Point(115, 305);
            this.guiItemsResistance_Arcane.Name = "guiItemsResistance_Arcane";
            this.guiItemsResistance_Arcane.ReadOnly = true;
            this.guiItemsResistance_Arcane.Size = new System.Drawing.Size(35, 20);
            this.guiItemsResistance_Arcane.TabIndex = 17;
            // 
            // label34
            // 
            label34.AutoSize = true;
            label34.Location = new System.Drawing.Point(42, 308);
            label34.Name = "label34";
            label34.Size = new System.Drawing.Size(67, 13);
            label34.TabIndex = 16;
            label34.Text = "arcane resist";
            // 
            // guiItemsLifePercent
            // 
            this.guiItemsLifePercent.Location = new System.Drawing.Point(115, 201);
            this.guiItemsLifePercent.Name = "guiItemsLifePercent";
            this.guiItemsLifePercent.ReadOnly = true;
            this.guiItemsLifePercent.Size = new System.Drawing.Size(35, 20);
            this.guiItemsLifePercent.TabIndex = 15;
            // 
            // label19
            // 
            label19.AutoSize = true;
            label19.Location = new System.Drawing.Point(65, 204);
            label19.Name = "label19";
            label19.Size = new System.Drawing.Size(44, 13);
            label19.TabIndex = 14;
            label19.Text = "+ % Life";
            // 
            // guiItemsDexterity
            // 
            this.guiItemsDexterity.Location = new System.Drawing.Point(115, 19);
            this.guiItemsDexterity.Name = "guiItemsDexterity";
            this.guiItemsDexterity.ReadOnly = true;
            this.guiItemsDexterity.Size = new System.Drawing.Size(35, 20);
            this.guiItemsDexterity.TabIndex = 1;
            // 
            // guiItemsCriticDamage
            // 
            this.guiItemsCriticDamage.Location = new System.Drawing.Point(115, 175);
            this.guiItemsCriticDamage.Name = "guiItemsCriticDamage";
            this.guiItemsCriticDamage.ReadOnly = true;
            this.guiItemsCriticDamage.Size = new System.Drawing.Size(35, 20);
            this.guiItemsCriticDamage.TabIndex = 13;
            // 
            // label1
            // 
            label1.AutoSize = true;
            label1.Location = new System.Drawing.Point(63, 22);
            label1.Name = "label1";
            label1.Size = new System.Drawing.Size(46, 13);
            label1.TabIndex = 0;
            label1.Text = "dexterity";
            // 
            // label7
            // 
            label7.AutoSize = true;
            label7.Location = new System.Drawing.Point(16, 178);
            label7.Name = "label7";
            label7.Size = new System.Drawing.Size(93, 13);
            label7.TabIndex = 12;
            label7.Text = "+ % Critic Damage";
            // 
            // label2
            // 
            label2.AutoSize = true;
            label2.Location = new System.Drawing.Point(49, 48);
            label2.Name = "label2";
            label2.Size = new System.Drawing.Size(60, 13);
            label2.TabIndex = 2;
            label2.Text = "intelligence";
            // 
            // guiItemsCriticChance
            // 
            this.guiItemsCriticChance.Location = new System.Drawing.Point(115, 149);
            this.guiItemsCriticChance.Name = "guiItemsCriticChance";
            this.guiItemsCriticChance.ReadOnly = true;
            this.guiItemsCriticChance.Size = new System.Drawing.Size(35, 20);
            this.guiItemsCriticChance.TabIndex = 11;
            // 
            // guiItemsIntelligence
            // 
            this.guiItemsIntelligence.Location = new System.Drawing.Point(115, 45);
            this.guiItemsIntelligence.Name = "guiItemsIntelligence";
            this.guiItemsIntelligence.ReadOnly = true;
            this.guiItemsIntelligence.Size = new System.Drawing.Size(35, 20);
            this.guiItemsIntelligence.TabIndex = 3;
            // 
            // label3
            // 
            label3.AutoSize = true;
            label3.Location = new System.Drawing.Point(64, 74);
            label3.Name = "label3";
            label3.Size = new System.Drawing.Size(45, 13);
            label3.TabIndex = 4;
            label3.Text = "strength";
            // 
            // guiItemsSpeedAttack
            // 
            this.guiItemsSpeedAttack.Location = new System.Drawing.Point(115, 123);
            this.guiItemsSpeedAttack.Name = "guiItemsSpeedAttack";
            this.guiItemsSpeedAttack.ReadOnly = true;
            this.guiItemsSpeedAttack.Size = new System.Drawing.Size(35, 20);
            this.guiItemsSpeedAttack.TabIndex = 9;
            // 
            // guiItemsStrength
            // 
            this.guiItemsStrength.Location = new System.Drawing.Point(115, 71);
            this.guiItemsStrength.Name = "guiItemsStrength";
            this.guiItemsStrength.ReadOnly = true;
            this.guiItemsStrength.Size = new System.Drawing.Size(35, 20);
            this.guiItemsStrength.TabIndex = 5;
            // 
            // label5
            // 
            label5.AutoSize = true;
            label5.Location = new System.Drawing.Point(17, 126);
            label5.Name = "label5";
            label5.Size = new System.Drawing.Size(92, 13);
            label5.TabIndex = 8;
            label5.Text = "+ % Attack Speed";
            // 
            // label4
            // 
            label4.AutoSize = true;
            label4.Location = new System.Drawing.Point(73, 100);
            label4.Name = "label4";
            label4.Size = new System.Drawing.Size(36, 13);
            label4.TabIndex = 6;
            label4.Text = "vitality";
            // 
            // guiItemsVitality
            // 
            this.guiItemsVitality.Location = new System.Drawing.Point(115, 97);
            this.guiItemsVitality.Name = "guiItemsVitality";
            this.guiItemsVitality.ReadOnly = true;
            this.guiItemsVitality.Size = new System.Drawing.Size(35, 20);
            this.guiItemsVitality.TabIndex = 7;
            // 
            // tacControl1
            // 
            this.tacControl1.Controls.Add(tabPassiveSkills);
            this.tacControl1.Controls.Add(tabActiveSkills);
            this.tacControl1.Controls.Add(this.tabSetBonus);
            this.tacControl1.Controls.Add(tabMainHand);
            this.tacControl1.Controls.Add(tabOffHand);
            this.tacControl1.Controls.Add(this.tabSpecial);
            this.tacControl1.Controls.Add(tabLeftFinger);
            this.tacControl1.Controls.Add(tabRightFinger);
            this.tacControl1.Controls.Add(tabNeck);
            this.tacControl1.Controls.Add(this.tabHead);
            this.tacControl1.Controls.Add(this.tabShoulders);
            this.tacControl1.Controls.Add(this.tabBracers);
            this.tacControl1.Controls.Add(this.tabHands);
            this.tacControl1.Controls.Add(this.tabTorso);
            this.tacControl1.Controls.Add(this.tabWaist);
            this.tacControl1.Controls.Add(this.tabLegs);
            this.tacControl1.Controls.Add(this.tabFeet);
            this.tacControl1.Controls.Add(tabResults);
            this.tacControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tacControl1.HotTrack = true;
            this.tacControl1.Location = new System.Drawing.Point(0, 0);
            this.tacControl1.Multiline = true;
            this.tacControl1.Name = "tacControl1";
            this.tacControl1.SelectedIndex = 0;
            this.tacControl1.Size = new System.Drawing.Size(1034, 602);
            this.tacControl1.TabIndex = 0;
            // 
            // tabActiveSkills
            // 
            tabActiveSkills.Controls.Add(groupBoxBarbarianActiveSkills);
            tabActiveSkills.Controls.Add(groupBoxMonkActiveSkills);
            tabActiveSkills.Location = new System.Drawing.Point(4, 22);
            tabActiveSkills.Name = "tabActiveSkills";
            tabActiveSkills.Size = new System.Drawing.Size(1026, 576);
            tabActiveSkills.TabIndex = 14;
            tabActiveSkills.Text = "Active Skills";
            tabActiveSkills.UseVisualStyleBackColor = true;
            // 
            // tabSpecial
            // 
            this.tabSpecial.Controls.Add(this.guiSpecialEditor);
            this.tabSpecial.Location = new System.Drawing.Point(4, 22);
            this.tabSpecial.Name = "tabSpecial";
            this.tabSpecial.Padding = new System.Windows.Forms.Padding(3);
            this.tabSpecial.Size = new System.Drawing.Size(1026, 576);
            this.tabSpecial.TabIndex = 17;
            this.tabSpecial.Text = "Special";
            this.tabSpecial.UseVisualStyleBackColor = true;
            // 
            // guiSpecialEditor
            // 
            this.guiSpecialEditor.AutoSize = true;
            this.guiSpecialEditor.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            this.guiSpecialEditor.KnownGems = null;
            this.guiSpecialEditor.Location = new System.Drawing.Point(6, 6);
            this.guiSpecialEditor.Name = "guiSpecialEditor";
            this.guiSpecialEditor.Size = new System.Drawing.Size(708, 531);
            this.guiSpecialEditor.TabIndex = 0;
            // 
            // D3CalculatorForm
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(1034, 602);
            this.Controls.Add(this.tacControl1);
            this.Name = "D3CalculatorForm";
            this.Text = "D3 Calculator by ZTn";
            tabPassiveSkills.ResumeLayout(false);
            groupBox9.ResumeLayout(false);
            groupBox9.PerformLayout();
            groupBox8.ResumeLayout(false);
            groupBox8.PerformLayout();
            groupBox7.ResumeLayout(false);
            groupBox7.PerformLayout();
            groupBox3.ResumeLayout(false);
            groupBox3.PerformLayout();
            this.groupBox6.ResumeLayout(false);
            this.groupBox6.PerformLayout();
            groupBox5.ResumeLayout(false);
            groupBox5.PerformLayout();
            groupBox4.ResumeLayout(false);
            groupBox4.PerformLayout();
            groupBoxBarbarianActiveSkills.ResumeLayout(false);
            groupBoxBarbarianActiveSkills.PerformLayout();
            groupBoxMonkActiveSkills.ResumeLayout(false);
            groupBoxMonkActiveSkills.PerformLayout();
            this.tabSetBonus.ResumeLayout(false);
            this.tabSetBonus.PerformLayout();
            tabMainHand.ResumeLayout(false);
            tabMainHand.PerformLayout();
            tabOffHand.ResumeLayout(false);
            tabOffHand.PerformLayout();
            tabLeftFinger.ResumeLayout(false);
            tabLeftFinger.PerformLayout();
            tabRightFinger.ResumeLayout(false);
            tabRightFinger.PerformLayout();
            tabNeck.ResumeLayout(false);
            tabNeck.PerformLayout();
            this.tabHead.ResumeLayout(false);
            this.tabHead.PerformLayout();
            this.tabShoulders.ResumeLayout(false);
            this.tabShoulders.PerformLayout();
            this.tabBracers.ResumeLayout(false);
            this.tabBracers.PerformLayout();
            this.tabHands.ResumeLayout(false);
            this.tabHands.PerformLayout();
            this.tabTorso.ResumeLayout(false);
            this.tabTorso.PerformLayout();
            this.tabWaist.ResumeLayout(false);
            this.tabWaist.PerformLayout();
            this.tabLegs.ResumeLayout(false);
            this.tabLegs.PerformLayout();
            this.tabFeet.ResumeLayout(false);
            this.tabFeet.PerformLayout();
            tabResults.ResumeLayout(false);
            groupBox2.ResumeLayout(false);
            groupBox2.PerformLayout();
            groupBox10.ResumeLayout(false);
            groupBox10.PerformLayout();
            groupBox1.ResumeLayout(false);
            groupBox1.PerformLayout();
            this.tacControl1.ResumeLayout(false);
            tabActiveSkills.ResumeLayout(false);
            this.tabSpecial.ResumeLayout(false);
            this.tabSpecial.PerformLayout();
            this.ResumeLayout(false);

        }
Esempio n. 40
0
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(WizardPageDbGenSummary));
     System.Windows.Forms.TabPage CreateDatabaseTabDDL;
     System.Windows.Forms.Label   lblSaveDdlAs;
     this.txtDDL            = new System.Windows.Forms.TextBox();
     this.SummaryTabs       = new System.Windows.Forms.TabControl();
     this.txtSaveDdlAs      = new System.Windows.Forms.TextBox();
     this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
     CreateDatabaseTabDDL   = new System.Windows.Forms.TabPage();
     lblSaveDdlAs           = new System.Windows.Forms.Label();
     CreateDatabaseTabDDL.SuspendLayout();
     this.SummaryTabs.SuspendLayout();
     this.tableLayoutPanel1.SuspendLayout();
     this.SuspendLayout();
     //
     // infoPanel
     //
     resources.ApplyResources(this.infoPanel, "infoPanel");
     //
     // CreateDatabaseTabDDL
     //
     CreateDatabaseTabDDL.Controls.Add(this.txtDDL);
     resources.ApplyResources(CreateDatabaseTabDDL, "CreateDatabaseTabDDL");
     CreateDatabaseTabDDL.Name = "CreateDatabaseTabDDL";
     CreateDatabaseTabDDL.UseVisualStyleBackColor = true;
     //
     // txtDDL
     //
     resources.ApplyResources(this.txtDDL, "txtDDL");
     this.txtDDL.BackColor = System.Drawing.SystemColors.Window;
     this.txtDDL.Name      = "txtDDL";
     this.txtDDL.ReadOnly  = true;
     //
     // lblSaveDdlAs
     //
     resources.ApplyResources(lblSaveDdlAs, "lblSaveDdlAs");
     lblSaveDdlAs.Name = "lblSaveDdlAs";
     //
     // SummaryTabs
     //
     resources.ApplyResources(this.SummaryTabs, "SummaryTabs");
     this.SummaryTabs.Controls.Add(CreateDatabaseTabDDL);
     this.SummaryTabs.Name          = "SummaryTabs";
     this.SummaryTabs.SelectedIndex = 0;
     //
     // txtSaveDdlAs
     //
     resources.ApplyResources(this.txtSaveDdlAs, "txtSaveDdlAs");
     this.txtSaveDdlAs.Name         = "txtSaveDdlAs";
     this.txtSaveDdlAs.TextChanged += new System.EventHandler(this.txtSaveDdlAs_TextChanged);
     //
     // tableLayoutPanel1
     //
     resources.ApplyResources(this.tableLayoutPanel1, "tableLayoutPanel1");
     this.tableLayoutPanel1.Controls.Add(lblSaveDdlAs, 0, 0);
     this.tableLayoutPanel1.Controls.Add(this.txtSaveDdlAs, 1, 0);
     this.tableLayoutPanel1.Name = "tableLayoutPanel1";
     //
     // WizardPageDbGenSummary
     //
     resources.ApplyResources(this, "$this");
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.tableLayoutPanel1);
     this.Controls.Add(this.SummaryTabs);
     this.Name = "WizardPageDbGenSummary";
     this.Controls.SetChildIndex(this.infoPanel, 0);
     this.Controls.SetChildIndex(this.SummaryTabs, 0);
     this.Controls.SetChildIndex(this.tableLayoutPanel1, 0);
     CreateDatabaseTabDDL.ResumeLayout(false);
     CreateDatabaseTabDDL.PerformLayout();
     this.SummaryTabs.ResumeLayout(false);
     this.tableLayoutPanel1.ResumeLayout(false);
     this.tableLayoutPanel1.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Esempio n. 41
0
		/// <summary>
		/// Required method for Designer support - do not modify
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
			this.components = new System.ComponentModel.Container();
			System.Windows.Forms.TableLayoutPanel tblTreeAndDimension;
			System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DidjImpApp));
			System.Windows.Forms.TabPage tabPageImpedance;
			System.Windows.Forms.Panel pnlImpedancePlot;
			DidjImp.ImpedancePlot.ImpedancePlotContextMenu impedancePlotContextMenu1 = new DidjImp.ImpedancePlot.ImpedancePlotContextMenu();
			System.Windows.Forms.FlowLayoutPanel pnlImpedanceTools;
			System.Windows.Forms.Panel pnlImpedanceShowHarmonics;
			System.Windows.Forms.Label lblShowHarmonics;
			System.Windows.Forms.Panel pnlImpedanceGraphType;
			System.Windows.Forms.Label lblGraphType;
			System.Windows.Forms.TabPage tabBore;
			System.Windows.Forms.Panel pnlBoreTools;
			System.Windows.Forms.MenuStrip menuMain;
			System.Windows.Forms.ToolStripMenuItem mnuFile;
			System.Windows.Forms.ToolStripMenuItem mnuHelp;
			System.Windows.Forms.Label lblName;
			System.Windows.Forms.Label lblComments;
			this.btnCalculate = new System.Windows.Forms.Button();
			this.splitContainer1 = new System.Windows.Forms.SplitContainer();
			this.treeDidgeHistory = new System.Windows.Forms.TreeView();
			this.treeViewImageList = new System.Windows.Forms.ImageList(this.components);
			this.didgePropertyEditor = new DidjImp.DidgePropertyEditor();
			this.impedancePlot = new DidjImp.ImpedancePlot();
			this.comboHarmonics = new CustomComboBox.CustomComboBox();
			this.comboImpedanceGraphType = new System.Windows.Forms.ComboBox();
			this.borePlot = new DidjImp.BorePlot();
			this.comboWaveformSelect = new CustomComboBox.CustomComboBox();
			this.chkWaveform = new System.Windows.Forms.CheckBox();
			this.waveformPlot = new NPlot.Windows.PlotSurface2D();
			this.saveDimensionsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
			this.loadDimensionsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
			this.mnuOptions = new System.Windows.Forms.ToolStripMenuItem();
			this.mnuTools = new System.Windows.Forms.ToolStripMenuItem();
			this.mnuInterpolate = new System.Windows.Forms.ToolStripMenuItem();
			this.mnuScaleBoreByFactor = new System.Windows.Forms.ToolStripMenuItem();
			this.mnuScaleToFundamental = new System.Windows.Forms.ToolStripMenuItem();
			this.mnuCalculateSurfaceAreaToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
			this.mnuAbout = new System.Windows.Forms.ToolStripMenuItem();
			this.splitMain = new System.Windows.Forms.SplitContainer();
			this.tabPlots = new System.Windows.Forms.TabControl();
			this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
			this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
			this.tblDidgeComments = new System.Windows.Forms.TableLayoutPanel();
			this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
			tblTreeAndDimension = new System.Windows.Forms.TableLayoutPanel();
			tabPageImpedance = new System.Windows.Forms.TabPage();
			pnlImpedancePlot = new System.Windows.Forms.Panel();
			pnlImpedanceTools = new System.Windows.Forms.FlowLayoutPanel();
			pnlImpedanceShowHarmonics = new System.Windows.Forms.Panel();
			lblShowHarmonics = new System.Windows.Forms.Label();
			pnlImpedanceGraphType = new System.Windows.Forms.Panel();
			lblGraphType = new System.Windows.Forms.Label();
			tabBore = new System.Windows.Forms.TabPage();
			pnlBoreTools = new System.Windows.Forms.Panel();
			menuMain = new System.Windows.Forms.MenuStrip();
			mnuFile = new System.Windows.Forms.ToolStripMenuItem();
			mnuHelp = new System.Windows.Forms.ToolStripMenuItem();
			lblName = new System.Windows.Forms.Label();
			lblComments = new System.Windows.Forms.Label();
			tblTreeAndDimension.SuspendLayout();
			this.splitContainer1.Panel1.SuspendLayout();
			this.splitContainer1.Panel2.SuspendLayout();
			this.splitContainer1.SuspendLayout();
			tabPageImpedance.SuspendLayout();
			pnlImpedancePlot.SuspendLayout();
			pnlImpedanceTools.SuspendLayout();
			pnlImpedanceShowHarmonics.SuspendLayout();
			pnlImpedanceGraphType.SuspendLayout();
			tabBore.SuspendLayout();
			pnlBoreTools.SuspendLayout();
			menuMain.SuspendLayout();
			this.splitMain.Panel1.SuspendLayout();
			this.splitMain.Panel2.SuspendLayout();
			this.splitMain.SuspendLayout();
			this.tabPlots.SuspendLayout();
			this.tableLayoutPanel2.SuspendLayout();
			this.tableLayoutPanel1.SuspendLayout();
			this.tblDidgeComments.SuspendLayout();
			this.SuspendLayout();
			// 
			// tblTreeAndDimension
			// 
			tblTreeAndDimension.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
			tblTreeAndDimension.ColumnCount = 1;
			tblTreeAndDimension.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
			tblTreeAndDimension.Controls.Add(this.btnCalculate, 0, 1);
			tblTreeAndDimension.Controls.Add(this.splitContainer1, 0, 0);
			tblTreeAndDimension.Dock = System.Windows.Forms.DockStyle.Fill;
			tblTreeAndDimension.Location = new System.Drawing.Point(0, 0);
			tblTreeAndDimension.Margin = new System.Windows.Forms.Padding(0);
			tblTreeAndDimension.Name = "tblTreeAndDimension";
			tblTreeAndDimension.RowCount = 2;
			tblTreeAndDimension.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
			tblTreeAndDimension.RowStyles.Add(new System.Windows.Forms.RowStyle());
			tblTreeAndDimension.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
			tblTreeAndDimension.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
			tblTreeAndDimension.Size = new System.Drawing.Size(167, 517);
			tblTreeAndDimension.TabIndex = 6;
			// 
			// btnCalculate
			// 
			this.btnCalculate.Dock = System.Windows.Forms.DockStyle.Fill;
			this.btnCalculate.Enabled = false;
			this.btnCalculate.Location = new System.Drawing.Point(0, 496);
			this.btnCalculate.Margin = new System.Windows.Forms.Padding(0);
			this.btnCalculate.Name = "btnCalculate";
			this.btnCalculate.Size = new System.Drawing.Size(167, 21);
			this.btnCalculate.TabIndex = 8;
			this.btnCalculate.Text = "Calculate";
			this.btnCalculate.UseVisualStyleBackColor = true;
			this.btnCalculate.Click += new System.EventHandler(this.btnCalculate_Click);
			// 
			// splitContainer1
			// 
			this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
			this.splitContainer1.Location = new System.Drawing.Point(0, 0);
			this.splitContainer1.Margin = new System.Windows.Forms.Padding(0);
			this.splitContainer1.Name = "splitContainer1";
			this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
			// 
			// splitContainer1.Panel1
			// 
			this.splitContainer1.Panel1.Controls.Add(this.treeDidgeHistory);
			// 
			// splitContainer1.Panel2
			// 
			this.splitContainer1.Panel2.Controls.Add(this.didgePropertyEditor);
			this.splitContainer1.Size = new System.Drawing.Size(167, 496);
			this.splitContainer1.SplitterDistance = 234;
			this.splitContainer1.TabIndex = 10;
			// 
			// treeDidgeHistory
			// 
			this.treeDidgeHistory.AllowDrop = true;
			this.treeDidgeHistory.Dock = System.Windows.Forms.DockStyle.Fill;
			this.treeDidgeHistory.HideSelection = false;
			this.treeDidgeHistory.ImageIndex = 0;
			this.treeDidgeHistory.ImageList = this.treeViewImageList;
			this.treeDidgeHistory.Location = new System.Drawing.Point(0, 0);
			this.treeDidgeHistory.Margin = new System.Windows.Forms.Padding(0);
			this.treeDidgeHistory.Name = "treeDidgeHistory";
			this.treeDidgeHistory.SelectedImageIndex = 0;
			this.treeDidgeHistory.ShowLines = false;
			this.treeDidgeHistory.Size = new System.Drawing.Size(167, 234);
			this.treeDidgeHistory.TabIndex = 6;
			this.treeDidgeHistory.DragDrop += new System.Windows.Forms.DragEventHandler(this.treeDidgeHistory_DragDrop);
			this.treeDidgeHistory.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.treeDidgeHistory_AfterSelect);
			this.treeDidgeHistory.DragEnter += new System.Windows.Forms.DragEventHandler(this.treeDidgeHistory_DragEnter);
			this.treeDidgeHistory.BeforeSelect += new System.Windows.Forms.TreeViewCancelEventHandler(this.treeDidgeHistory_BeforeSelect);
			this.treeDidgeHistory.ItemDrag += new System.Windows.Forms.ItemDragEventHandler(this.treeDidgeHistory_ItemDrag);
			this.treeDidgeHistory.DragOver += new System.Windows.Forms.DragEventHandler(this.treeDidgeHistory_DragOver);
			// 
			// treeViewImageList
			// 
			this.treeViewImageList.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("treeViewImageList.ImageStream")));
			this.treeViewImageList.TransparentColor = System.Drawing.Color.Transparent;
			this.treeViewImageList.Images.SetKeyName(0, "folderopen.ico");
			this.treeViewImageList.Images.SetKeyName(1, "didge.ico");
			// 
			// didgePropertyEditor
			// 
			this.didgePropertyEditor.AutoSize = true;
			this.didgePropertyEditor.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
			this.didgePropertyEditor.AutoValidate = System.Windows.Forms.AutoValidate.EnableAllowFocusChange;
			this.didgePropertyEditor.DidgeComments = "";
			this.didgePropertyEditor.DidgeName = "";
			this.didgePropertyEditor.Dock = System.Windows.Forms.DockStyle.Fill;
			this.didgePropertyEditor.Location = new System.Drawing.Point(0, 0);
			this.didgePropertyEditor.Name = "didgePropertyEditor";
			this.didgePropertyEditor.PositionAndRadiusDimensions = "";
			this.didgePropertyEditor.RadiusAndLengthDimensions = "";
			this.didgePropertyEditor.Size = new System.Drawing.Size(167, 258);
			this.didgePropertyEditor.TabIndex = 0;
			this.didgePropertyEditor.Valid += new DidjImp.DidgePropertyEditor.ValidDelegate(this.didgePropertyEditor_Valid);
			this.didgePropertyEditor.DidgeNameChanged += new DidjImp.DidgePropertyEditor.DidgeNameChangedDelegate(this.didgePropertyEditor_DidgeNameChanged);
			this.didgePropertyEditor.DimensionsChanged += new DidjImp.DidgePropertyEditor.DimensionsChangedDelegate(this.didgePropertyEditor_DimensionsChanged);
			this.didgePropertyEditor.Unvalid += new DidjImp.DidgePropertyEditor.UnvalidDelegate(this.didgePropertyEditor_Unvalid);
			// 
			// tabPageImpedance
			// 
			tabPageImpedance.Controls.Add(pnlImpedancePlot);
			tabPageImpedance.Controls.Add(pnlImpedanceTools);
			tabPageImpedance.Location = new System.Drawing.Point(4, 22);
			tabPageImpedance.Margin = new System.Windows.Forms.Padding(0);
			tabPageImpedance.Name = "tabPageImpedance";
			tabPageImpedance.Size = new System.Drawing.Size(796, 491);
			tabPageImpedance.TabIndex = 0;
			tabPageImpedance.Text = "Impedance";
			tabPageImpedance.UseVisualStyleBackColor = true;
			// 
			// pnlImpedancePlot
			// 
			pnlImpedancePlot.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			pnlImpedancePlot.Controls.Add(this.impedancePlot);
			pnlImpedancePlot.Dock = System.Windows.Forms.DockStyle.Fill;
			pnlImpedancePlot.Location = new System.Drawing.Point(0, 26);
			pnlImpedancePlot.Margin = new System.Windows.Forms.Padding(0);
			pnlImpedancePlot.Name = "pnlImpedancePlot";
			pnlImpedancePlot.Size = new System.Drawing.Size(796, 465);
			pnlImpedancePlot.TabIndex = 9;
			// 
			// impedancePlot
			// 
			this.impedancePlot.AutoScaleAutoGeneratedAxes = false;
			this.impedancePlot.AutoScaleTitle = false;
			this.impedancePlot.BackColor = System.Drawing.SystemColors.ControlLightLight;
			this.impedancePlot.DateTimeToolTip = false;
			this.impedancePlot.Dock = System.Windows.Forms.DockStyle.Fill;
			this.impedancePlot.ImpedanceData = null;
			this.impedancePlot.ImpedancePlotType = DidjImp.ImpedancePlotType.Magnitude;
			this.impedancePlot.Legend = null;
			this.impedancePlot.LegendZOrder = -1;
			this.impedancePlot.Location = new System.Drawing.Point(0, 0);
			this.impedancePlot.Margin = new System.Windows.Forms.Padding(0);
			this.impedancePlot.Name = "impedancePlot";
			this.impedancePlot.RightMenu = impedancePlotContextMenu1;
			this.impedancePlot.SelectedFrequency = 0;
			this.impedancePlot.ShowCoordinates = true;
			this.impedancePlot.Size = new System.Drawing.Size(792, 461);
			this.impedancePlot.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.None;
			this.impedancePlot.SurfacePadding = 10;
			this.impedancePlot.TabIndex = 8;
			this.impedancePlot.Text = "impedancePlot";
			this.impedancePlot.Title = "";
			this.impedancePlot.TitleFont = new System.Drawing.Font("Arial", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
			this.impedancePlot.XAxis1 = null;
			this.impedancePlot.XAxis2 = null;
			this.impedancePlot.YAxis1 = null;
			this.impedancePlot.YAxis2 = null;
			// 
			// pnlImpedanceTools
			// 
			pnlImpedanceTools.AutoSize = true;
			pnlImpedanceTools.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
			pnlImpedanceTools.Controls.Add(pnlImpedanceShowHarmonics);
			pnlImpedanceTools.Controls.Add(pnlImpedanceGraphType);
			pnlImpedanceTools.Dock = System.Windows.Forms.DockStyle.Top;
			pnlImpedanceTools.Location = new System.Drawing.Point(0, 0);
			pnlImpedanceTools.Name = "pnlImpedanceTools";
			pnlImpedanceTools.Size = new System.Drawing.Size(796, 26);
			pnlImpedanceTools.TabIndex = 7;
			// 
			// pnlImpedanceShowHarmonics
			// 
			pnlImpedanceShowHarmonics.AutoSize = true;
			pnlImpedanceShowHarmonics.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
			pnlImpedanceShowHarmonics.Controls.Add(this.comboHarmonics);
			pnlImpedanceShowHarmonics.Controls.Add(lblShowHarmonics);
			pnlImpedanceShowHarmonics.Location = new System.Drawing.Point(0, 0);
			pnlImpedanceShowHarmonics.Margin = new System.Windows.Forms.Padding(0);
			pnlImpedanceShowHarmonics.Name = "pnlImpedanceShowHarmonics";
			pnlImpedanceShowHarmonics.Size = new System.Drawing.Size(229, 26);
			pnlImpedanceShowHarmonics.TabIndex = 4;
			// 
			// comboHarmonics
			// 
			this.comboHarmonics.AllowResizeDropDown = false;
			this.comboHarmonics.ControlSize = new System.Drawing.Size(1, 1);
			this.comboHarmonics.DropDownControl = null;
			this.comboHarmonics.DropDownSizeMode = CustomComboBox.CustomComboBox.SizeMode.UseControlSize;
			this.comboHarmonics.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.comboHarmonics.DropSize = new System.Drawing.Size(121, 106);
			this.comboHarmonics.FormattingEnabled = true;
			this.comboHarmonics.Location = new System.Drawing.Point(160, 2);
			this.comboHarmonics.Name = "comboHarmonics";
			this.comboHarmonics.Size = new System.Drawing.Size(66, 21);
			this.comboHarmonics.TabIndex = 5;
			this.comboHarmonics.SelectedIndexChanged += new System.EventHandler(this.comboHarmonics_SelectedIndexChanged);
			// 
			// lblShowHarmonics
			// 
			lblShowHarmonics.AutoSize = true;
			lblShowHarmonics.Location = new System.Drawing.Point(3, 5);
			lblShowHarmonics.Name = "lblShowHarmonics";
			lblShowHarmonics.Size = new System.Drawing.Size(158, 13);
			lblShowHarmonics.TabIndex = 4;
			lblShowHarmonics.Text = "Show Harmonics for Frequency:";
			// 
			// pnlImpedanceGraphType
			// 
			pnlImpedanceGraphType.AutoSize = true;
			pnlImpedanceGraphType.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
			pnlImpedanceGraphType.Controls.Add(this.comboImpedanceGraphType);
			pnlImpedanceGraphType.Controls.Add(lblGraphType);
			pnlImpedanceGraphType.Location = new System.Drawing.Point(229, 0);
			pnlImpedanceGraphType.Margin = new System.Windows.Forms.Padding(0);
			pnlImpedanceGraphType.Name = "pnlImpedanceGraphType";
			pnlImpedanceGraphType.Size = new System.Drawing.Size(207, 26);
			pnlImpedanceGraphType.TabIndex = 5;
			// 
			// comboImpedanceGraphType
			// 
			this.comboImpedanceGraphType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.comboImpedanceGraphType.FormattingEnabled = true;
			this.comboImpedanceGraphType.Items.AddRange(new object[] {
            "Impedance Magnitude",
            "Real Impedance",
            "Imaginary Impedance",
            "Impedance Phase"});
			this.comboImpedanceGraphType.Location = new System.Drawing.Point(68, 2);
			this.comboImpedanceGraphType.Name = "comboImpedanceGraphType";
			this.comboImpedanceGraphType.Size = new System.Drawing.Size(136, 21);
			this.comboImpedanceGraphType.TabIndex = 1;
			this.comboImpedanceGraphType.SelectedIndexChanged += new System.EventHandler(this.comboImpedanceGraphType_SelectedIndexChanged);
			// 
			// lblGraphType
			// 
			lblGraphType.AutoSize = true;
			lblGraphType.Location = new System.Drawing.Point(3, 5);
			lblGraphType.Name = "lblGraphType";
			lblGraphType.Size = new System.Drawing.Size(66, 13);
			lblGraphType.TabIndex = 0;
			lblGraphType.Text = "Graph Type:";
			// 
			// tabBore
			// 
			tabBore.Controls.Add(this.borePlot);
			tabBore.Controls.Add(pnlBoreTools);
			tabBore.Controls.Add(this.waveformPlot);
			tabBore.Location = new System.Drawing.Point(4, 22);
			tabBore.Name = "tabBore";
			tabBore.Padding = new System.Windows.Forms.Padding(3);
			tabBore.Size = new System.Drawing.Size(796, 491);
			tabBore.TabIndex = 1;
			tabBore.Text = "Bore";
			tabBore.UseVisualStyleBackColor = true;
			// 
			// borePlot
			// 
			this.borePlot.AutoScaleAutoGeneratedAxes = false;
			this.borePlot.AutoScaleTitle = false;
			this.borePlot.BackColor = System.Drawing.SystemColors.ControlLightLight;
			this.borePlot.Bore = null;
			this.borePlot.DateTimeToolTip = false;
			this.borePlot.Dock = System.Windows.Forms.DockStyle.Fill;
			this.borePlot.Legend = null;
			this.borePlot.LegendZOrder = -1;
			this.borePlot.Location = new System.Drawing.Point(3, 29);
			this.borePlot.Name = "borePlot";
			this.borePlot.RightMenu = null;
			this.borePlot.SelectedFrequency = 0;
			this.borePlot.ShowCoordinates = true;
			this.borePlot.ShowWaveformPlot = false;
			this.borePlot.Size = new System.Drawing.Size(790, 459);
			this.borePlot.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.AntiAlias;
			this.borePlot.SurfacePadding = 10;
			this.borePlot.TabIndex = 4;
			this.borePlot.Text = "j";
			this.borePlot.Title = "";
			this.borePlot.TitleFont = new System.Drawing.Font("Arial", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
			this.borePlot.XAxis1 = null;
			this.borePlot.XAxis2 = null;
			this.borePlot.YAxis1 = null;
			this.borePlot.YAxis2 = null;
			// 
			// pnlBoreTools
			// 
			pnlBoreTools.AutoSize = true;
			pnlBoreTools.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
			pnlBoreTools.Controls.Add(this.comboWaveformSelect);
			pnlBoreTools.Controls.Add(this.chkWaveform);
			pnlBoreTools.Dock = System.Windows.Forms.DockStyle.Top;
			pnlBoreTools.Location = new System.Drawing.Point(3, 3);
			pnlBoreTools.Name = "pnlBoreTools";
			pnlBoreTools.Size = new System.Drawing.Size(790, 26);
			pnlBoreTools.TabIndex = 5;
			// 
			// comboWaveformSelect
			// 
			this.comboWaveformSelect.AllowResizeDropDown = true;
			this.comboWaveformSelect.ControlSize = new System.Drawing.Size(1, 1);
			this.comboWaveformSelect.DropDownControl = null;
			this.comboWaveformSelect.DropDownSizeMode = CustomComboBox.CustomComboBox.SizeMode.UseControlSize;
			this.comboWaveformSelect.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.comboWaveformSelect.DropSize = new System.Drawing.Size(121, 106);
			this.comboWaveformSelect.Enabled = false;
			this.comboWaveformSelect.FormattingEnabled = true;
			this.comboWaveformSelect.Location = new System.Drawing.Point(178, 1);
			this.comboWaveformSelect.Name = "comboWaveformSelect";
			this.comboWaveformSelect.Size = new System.Drawing.Size(117, 21);
			this.comboWaveformSelect.TabIndex = 2;
			this.comboWaveformSelect.SelectedIndexChanged += new System.EventHandler(this.comboWaveformSelect_SelectedIndexChanged);
			// 
			// chkWaveform
			// 
			this.chkWaveform.CheckAlign = System.Drawing.ContentAlignment.TopLeft;
			this.chkWaveform.Location = new System.Drawing.Point(3, 3);
			this.chkWaveform.Name = "chkWaveform";
			this.chkWaveform.Size = new System.Drawing.Size(179, 20);
			this.chkWaveform.TabIndex = 3;
			this.chkWaveform.Text = "Show Waveform for Frequency:";
			this.chkWaveform.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this.chkWaveform.UseVisualStyleBackColor = true;
			this.chkWaveform.CheckedChanged += new System.EventHandler(this.chkWaveform_CheckedChanged);
			// 
			// waveformPlot
			// 
			this.waveformPlot.AutoScaleAutoGeneratedAxes = false;
			this.waveformPlot.AutoScaleTitle = false;
			this.waveformPlot.BackColor = System.Drawing.SystemColors.ControlLightLight;
			this.waveformPlot.DateTimeToolTip = false;
			this.waveformPlot.Legend = null;
			this.waveformPlot.LegendZOrder = -1;
			this.waveformPlot.Location = new System.Drawing.Point(3, 353);
			this.waveformPlot.Name = "waveformPlot";
			this.waveformPlot.RightMenu = null;
			this.waveformPlot.ShowCoordinates = true;
			this.waveformPlot.Size = new System.Drawing.Size(812, 172);
			this.waveformPlot.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.None;
			this.waveformPlot.SurfacePadding = 10;
			this.waveformPlot.TabIndex = 6;
			this.waveformPlot.Text = "plotSurface2D1";
			this.waveformPlot.Title = "";
			this.waveformPlot.TitleFont = new System.Drawing.Font("Arial", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
			this.waveformPlot.XAxis1 = null;
			this.waveformPlot.XAxis2 = null;
			this.waveformPlot.YAxis1 = null;
			this.waveformPlot.YAxis2 = null;
			// 
			// menuMain
			// 
			menuMain.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            mnuFile,
            this.mnuOptions,
            this.mnuTools,
            mnuHelp});
			menuMain.Location = new System.Drawing.Point(2, 0);
			menuMain.Name = "menuMain";
			menuMain.Size = new System.Drawing.Size(974, 24);
			menuMain.TabIndex = 1;
			menuMain.Text = "menuStrip1";
			// 
			// mnuFile
			// 
			mnuFile.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.saveDimensionsToolStripMenuItem,
            this.loadDimensionsToolStripMenuItem});
			mnuFile.Name = "mnuFile";
			mnuFile.Size = new System.Drawing.Size(35, 20);
			mnuFile.Text = "&File";
			// 
			// saveDimensionsToolStripMenuItem
			// 
			this.saveDimensionsToolStripMenuItem.Name = "saveDimensionsToolStripMenuItem";
			this.saveDimensionsToolStripMenuItem.Size = new System.Drawing.Size(165, 22);
			this.saveDimensionsToolStripMenuItem.Text = "&Save Dimensions";
			this.saveDimensionsToolStripMenuItem.Click += new System.EventHandler(this.saveDimensionsToolStripMenuItem_Click);
			// 
			// loadDimensionsToolStripMenuItem
			// 
			this.loadDimensionsToolStripMenuItem.Name = "loadDimensionsToolStripMenuItem";
			this.loadDimensionsToolStripMenuItem.Size = new System.Drawing.Size(165, 22);
			this.loadDimensionsToolStripMenuItem.Text = "&Load Dimensions";
			this.loadDimensionsToolStripMenuItem.Click += new System.EventHandler(this.loadDimensionsToolStripMenuItem_Click);
			// 
			// mnuOptions
			// 
			this.mnuOptions.Name = "mnuOptions";
			this.mnuOptions.Size = new System.Drawing.Size(56, 20);
			this.mnuOptions.Text = "&Options";
			this.mnuOptions.Click += new System.EventHandler(this.mnuOptions_Click);
			// 
			// mnuTools
			// 
			this.mnuTools.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.mnuInterpolate,
            this.mnuScaleBoreByFactor,
            this.mnuScaleToFundamental,
            this.mnuCalculateSurfaceAreaToolStripMenuItem});
			this.mnuTools.Name = "mnuTools";
			this.mnuTools.Size = new System.Drawing.Size(44, 20);
			this.mnuTools.Text = "&Tools";
			// 
			// mnuInterpolate
			// 
			this.mnuInterpolate.Name = "mnuInterpolate";
			this.mnuInterpolate.Size = new System.Drawing.Size(344, 22);
			this.mnuInterpolate.Text = "Interpolate Bore Radius at Arbitrary Position";
			this.mnuInterpolate.Click += new System.EventHandler(this.mnuInterpolate_Click);
			// 
			// mnuScaleBoreByFactor
			// 
			this.mnuScaleBoreByFactor.Name = "mnuScaleBoreByFactor";
			this.mnuScaleBoreByFactor.Size = new System.Drawing.Size(344, 22);
			this.mnuScaleBoreByFactor.Text = "&Scale Entire Bore";
			this.mnuScaleBoreByFactor.Click += new System.EventHandler(this.mnuScaleBoreByPercent_Click);
			// 
			// mnuScaleToFundamental
			// 
			this.mnuScaleToFundamental.Name = "mnuScaleToFundamental";
			this.mnuScaleToFundamental.Size = new System.Drawing.Size(344, 22);
			this.mnuScaleToFundamental.Text = "Scale Entire Bore to Specified &Fundamental Frequency";
			this.mnuScaleToFundamental.Click += new System.EventHandler(this.mnuScaleToFundamental_Click);
			// 
			// mnuCalculateSurfaceAreaToolStripMenuItem
			// 
			this.mnuCalculateSurfaceAreaToolStripMenuItem.Name = "mnuCalculateSurfaceAreaToolStripMenuItem";
			this.mnuCalculateSurfaceAreaToolStripMenuItem.Size = new System.Drawing.Size(344, 22);
			this.mnuCalculateSurfaceAreaToolStripMenuItem.Text = "&Calculate Surface Area";
			this.mnuCalculateSurfaceAreaToolStripMenuItem.Click += new System.EventHandler(this.mnuCalculateSurfaceAreaToolStripMenuItem_Click);
			// 
			// mnuHelp
			// 
			mnuHelp.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.mnuAbout});
			mnuHelp.Name = "mnuHelp";
			mnuHelp.Size = new System.Drawing.Size(40, 20);
			mnuHelp.Text = "&Help";
			// 
			// mnuAbout
			// 
			this.mnuAbout.Name = "mnuAbout";
			this.mnuAbout.Size = new System.Drawing.Size(114, 22);
			this.mnuAbout.Text = "&About";
			this.mnuAbout.Click += new System.EventHandler(this.mnuAbout_Click);
			// 
			// lblName
			// 
			lblName.AutoSize = true;
			lblName.Dock = System.Windows.Forms.DockStyle.Fill;
			lblName.Location = new System.Drawing.Point(0, 0);
			lblName.Margin = new System.Windows.Forms.Padding(0);
			lblName.Name = "lblName";
			lblName.Size = new System.Drawing.Size(38, 20);
			lblName.TabIndex = 0;
			lblName.Text = "Name:";
			lblName.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// lblComments
			// 
			lblComments.AutoSize = true;
			lblComments.Location = new System.Drawing.Point(0, 0);
			lblComments.Margin = new System.Windows.Forms.Padding(0);
			lblComments.Name = "lblComments";
			lblComments.Size = new System.Drawing.Size(59, 13);
			lblComments.TabIndex = 2;
			lblComments.Text = "Comments:";
			// 
			// splitMain
			// 
			this.splitMain.Dock = System.Windows.Forms.DockStyle.Fill;
			this.splitMain.Location = new System.Drawing.Point(2, 24);
			this.splitMain.Margin = new System.Windows.Forms.Padding(0);
			this.splitMain.Name = "splitMain";
			// 
			// splitMain.Panel1
			// 
			this.splitMain.Panel1.Controls.Add(tblTreeAndDimension);
			this.splitMain.Panel1MinSize = 80;
			// 
			// splitMain.Panel2
			// 
			this.splitMain.Panel2.Controls.Add(this.tabPlots);
			this.splitMain.Panel2.Padding = new System.Windows.Forms.Padding(1, 0, 0, 0);
			this.splitMain.Panel2MinSize = 120;
			this.splitMain.Size = new System.Drawing.Size(974, 517);
			this.splitMain.SplitterDistance = 167;
			this.splitMain.SplitterWidth = 2;
			this.splitMain.TabIndex = 2;
			// 
			// tabPlots
			// 
			this.tabPlots.Controls.Add(tabPageImpedance);
			this.tabPlots.Controls.Add(tabBore);
			this.tabPlots.Dock = System.Windows.Forms.DockStyle.Fill;
			this.tabPlots.Enabled = false;
			this.tabPlots.Location = new System.Drawing.Point(1, 0);
			this.tabPlots.Margin = new System.Windows.Forms.Padding(0);
			this.tabPlots.Name = "tabPlots";
			this.tabPlots.Padding = new System.Drawing.Point(0, 0);
			this.tabPlots.SelectedIndex = 0;
			this.tabPlots.Size = new System.Drawing.Size(804, 517);
			this.tabPlots.TabIndex = 1;
			// 
			// tableLayoutPanel2
			// 
			this.tableLayoutPanel2.ColumnCount = 1;
			this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
			this.tableLayoutPanel2.Controls.Add(this.tableLayoutPanel1, 0, 0);
			this.tableLayoutPanel2.Location = new System.Drawing.Point(0, 0);
			this.tableLayoutPanel2.Margin = new System.Windows.Forms.Padding(0);
			this.tableLayoutPanel2.Name = "tableLayoutPanel2";
			this.tableLayoutPanel2.RowCount = 2;
			this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
			this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
			this.tableLayoutPanel2.Size = new System.Drawing.Size(200, 100);
			this.tableLayoutPanel2.TabIndex = 0;
			// 
			// tableLayoutPanel1
			// 
			this.tableLayoutPanel1.AutoSize = true;
			this.tableLayoutPanel1.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
			this.tableLayoutPanel1.ColumnCount = 2;
			this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
			this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
			this.tableLayoutPanel1.Controls.Add(lblName, 0, 0);
			this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
			this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
			this.tableLayoutPanel1.Margin = new System.Windows.Forms.Padding(0);
			this.tableLayoutPanel1.Name = "tableLayoutPanel1";
			this.tableLayoutPanel1.RowCount = 1;
			this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
			this.tableLayoutPanel1.Size = new System.Drawing.Size(200, 20);
			this.tableLayoutPanel1.TabIndex = 5;
			// 
			// tblDidgeComments
			// 
			this.tblDidgeComments.ColumnCount = 2;
			this.tblDidgeComments.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
			this.tblDidgeComments.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
			this.tblDidgeComments.Controls.Add(lblComments, 1, 0);
			this.tblDidgeComments.Dock = System.Windows.Forms.DockStyle.Fill;
			this.tblDidgeComments.Location = new System.Drawing.Point(0, 23);
			this.tblDidgeComments.Margin = new System.Windows.Forms.Padding(0, 3, 0, 0);
			this.tblDidgeComments.Name = "tblDidgeComments";
			this.tblDidgeComments.RowCount = 2;
			this.tblDidgeComments.RowStyles.Add(new System.Windows.Forms.RowStyle());
			this.tblDidgeComments.RowStyles.Add(new System.Windows.Forms.RowStyle());
			this.tblDidgeComments.Size = new System.Drawing.Size(200, 77);
			this.tblDidgeComments.TabIndex = 6;
			// 
			// DidjImpApp
			// 
			this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.ClientSize = new System.Drawing.Size(976, 542);
			this.Controls.Add(this.splitMain);
			this.Controls.Add(menuMain);
			this.Name = "DidjImpApp";
			this.Padding = new System.Windows.Forms.Padding(2, 0, 0, 1);
			this.Text = "DidjImp";
			this.Load += new System.EventHandler(this.DidjImpApp_Load);
			tblTreeAndDimension.ResumeLayout(false);
			this.splitContainer1.Panel1.ResumeLayout(false);
			this.splitContainer1.Panel2.ResumeLayout(false);
			this.splitContainer1.Panel2.PerformLayout();
			this.splitContainer1.ResumeLayout(false);
			tabPageImpedance.ResumeLayout(false);
			tabPageImpedance.PerformLayout();
			pnlImpedancePlot.ResumeLayout(false);
			pnlImpedanceTools.ResumeLayout(false);
			pnlImpedanceTools.PerformLayout();
			pnlImpedanceShowHarmonics.ResumeLayout(false);
			pnlImpedanceShowHarmonics.PerformLayout();
			pnlImpedanceGraphType.ResumeLayout(false);
			pnlImpedanceGraphType.PerformLayout();
			tabBore.ResumeLayout(false);
			tabBore.PerformLayout();
			pnlBoreTools.ResumeLayout(false);
			menuMain.ResumeLayout(false);
			menuMain.PerformLayout();
			this.splitMain.Panel1.ResumeLayout(false);
			this.splitMain.Panel2.ResumeLayout(false);
			this.splitMain.ResumeLayout(false);
			this.tabPlots.ResumeLayout(false);
			this.tableLayoutPanel2.ResumeLayout(false);
			this.tableLayoutPanel2.PerformLayout();
			this.tableLayoutPanel1.ResumeLayout(false);
			this.tableLayoutPanel1.PerformLayout();
			this.tblDidgeComments.ResumeLayout(false);
			this.tblDidgeComments.PerformLayout();
			this.ResumeLayout(false);
			this.PerformLayout();

		}
Esempio n. 42
0
 /// <summary>
 /// Обязательный метод для поддержки конструктора - не изменяйте
 /// содержимое данного метода при помощи редактора кода.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Windows.Forms.TabPage searchTab;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(EditForm));
     System.Windows.Forms.TabPage replaceTab;
     this.comboBox1            = new System.Windows.Forms.ComboBox();
     this.btnNotTran           = new System.Windows.Forms.Button();
     this.searchFieldGroup     = new System.Windows.Forms.GroupBox();
     this.searchTranslateField = new System.Windows.Forms.RadioButton();
     this.searchOriginalField  = new System.Windows.Forms.RadioButton();
     this.searchAliasField     = new System.Windows.Forms.RadioButton();
     this.search                       = new System.Windows.Forms.Button();
     this.cancelSearch                 = new System.Windows.Forms.Button();
     this.searchIsRegex                = new System.Windows.Forms.CheckBox();
     this.searchNotIgnoreCase          = new System.Windows.Forms.CheckBox();
     this.replaceCancel                = new System.Windows.Forms.Button();
     this.replace                      = new System.Windows.Forms.Button();
     this.replaceAll                   = new System.Windows.Forms.Button();
     this.replaceIsRegex               = new System.Windows.Forms.CheckBox();
     this.replaceNotIgnoreCase         = new System.Windows.Forms.CheckBox();
     this.label1                       = new System.Windows.Forms.Label();
     this.textControlsContainer        = new System.Windows.Forms.SplitContainer();
     this.elements                     = new System.Windows.Forms.ListView();
     this.autoIdColumn                 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.aliasColumn                  = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.originalColumn               = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.translateColumn              = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.elementsContextMenu          = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.elementsContextMenuAliasCopy = new System.Windows.Forms.ToolStripMenuItem();
     this.searchReplaceTabs            = new System.Windows.Forms.TabControl();
     this.moveToIdPage                 = new System.Windows.Forms.TabPage();
     this.goToAutoId                   = new System.Windows.Forms.Button();
     this.textGroup                    = new System.Windows.Forms.GroupBox();
     this.tableLayoutPanel1            = new System.Windows.Forms.TableLayoutPanel();
     this.tagsContextMenu              = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.tagsContextMenuBr            = new System.Windows.Forms.ToolStripMenuItem();
     this.mainMenu                     = new System.Windows.Forms.MenuStrip();
     this.mainMenuFile                 = new System.Windows.Forms.ToolStripMenuItem();
     this.mainMenuOpen                 = new System.Windows.Forms.ToolStripMenuItem();
     this.mainMenuSave                 = new System.Windows.Forms.ToolStripMenuItem();
     this.mainMenuSaveAs               = new System.Windows.Forms.ToolStripMenuItem();
     this.mainMenuFileSeparator        = new System.Windows.Forms.ToolStripSeparator();
     this.mainMenuExit                 = new System.Windows.Forms.ToolStripMenuItem();
     this.правкаToolStripMenuItem      = new System.Windows.Forms.ToolStripMenuItem();
     this.miUndo                       = new System.Windows.Forms.ToolStripMenuItem();
     this.miRedo                       = new System.Windows.Forms.ToolStripMenuItem();
     this.mainMenuView                 = new System.Windows.Forms.ToolStripMenuItem();
     this.mainMenuElementsColumns      = new System.Windows.Forms.ToolStripMenuItem();
     this.miAutoIdColumn               = new System.Windows.Forms.ToolStripMenuItem();
     this.miAliasColumn                = new System.Windows.Forms.ToolStripMenuItem();
     this.miOriginalColumn             = new System.Windows.Forms.ToolStripMenuItem();
     this.miTranslatedColumn           = new System.Windows.Forms.ToolStripMenuItem();
     this.mainMenuViewHighlight        = new System.Windows.Forms.ToolStripMenuItem();
     this.mainMenuViewHighlightWords   = new System.Windows.Forms.ToolStripMenuItem();
     this.mainMenuLanguage             = new System.Windows.Forms.ToolStripMenuItem();
     this.mainMenuLanguageEnglish      = new System.Windows.Forms.ToolStripMenuItem();
     this.mainMenuLanguageRussian      = new System.Windows.Forms.ToolStripMenuItem();
     this.open               = new System.Windows.Forms.OpenFileDialog();
     this.statusBar          = new System.Windows.Forms.StatusStrip();
     this.itemsCountHint     = new System.Windows.Forms.ToolStripStatusLabel();
     this.itemsCount         = new System.Windows.Forms.ToolStripStatusLabel();
     this.save               = new System.Windows.Forms.SaveFileDialog();
     this.gTran              = new System.Windows.Forms.LinkLabel();
     this.resetTran          = new System.Windows.Forms.LinkLabel();
     this.searchQuery        = new BnsXmlEditor.Controls.HistoryComboBox();
     this.replaceString      = new BnsXmlEditor.Controls.HistoryComboBox();
     this.replaceSearchQuery = new BnsXmlEditor.Controls.HistoryComboBox();
     this.autoIdValue        = new BnsXmlEditor.Controls.HistoryComboBox();
     this.originalText       = new BnsXmlEditor.Controls.ExtendedRichTextBox();
     this.translatedText     = new BnsXmlEditor.Controls.ExtendedTextBox();
     searchTab               = new System.Windows.Forms.TabPage();
     replaceTab              = new System.Windows.Forms.TabPage();
     searchTab.SuspendLayout();
     this.searchFieldGroup.SuspendLayout();
     replaceTab.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textControlsContainer)).BeginInit();
     this.textControlsContainer.Panel1.SuspendLayout();
     this.textControlsContainer.Panel2.SuspendLayout();
     this.textControlsContainer.SuspendLayout();
     this.elementsContextMenu.SuspendLayout();
     this.searchReplaceTabs.SuspendLayout();
     this.moveToIdPage.SuspendLayout();
     this.textGroup.SuspendLayout();
     this.tableLayoutPanel1.SuspendLayout();
     this.tagsContextMenu.SuspendLayout();
     this.mainMenu.SuspendLayout();
     this.statusBar.SuspendLayout();
     this.SuspendLayout();
     //
     // searchTab
     //
     searchTab.Controls.Add(this.comboBox1);
     searchTab.Controls.Add(this.btnNotTran);
     searchTab.Controls.Add(this.searchFieldGroup);
     searchTab.Controls.Add(this.search);
     searchTab.Controls.Add(this.cancelSearch);
     searchTab.Controls.Add(this.searchIsRegex);
     searchTab.Controls.Add(this.searchQuery);
     searchTab.Controls.Add(this.searchNotIgnoreCase);
     resources.ApplyResources(searchTab, "searchTab");
     searchTab.Name = "searchTab";
     searchTab.UseVisualStyleBackColor = true;
     //
     // comboBox1
     //
     this.comboBox1.FormattingEnabled = true;
     this.comboBox1.Items.AddRange(new object[] {
         resources.GetString("comboBox1.Items"),
         resources.GetString("comboBox1.Items1"),
         resources.GetString("comboBox1.Items2"),
         resources.GetString("comboBox1.Items3")
     });
     resources.ApplyResources(this.comboBox1, "comboBox1");
     this.comboBox1.Name = "comboBox1";
     //
     // btnNotTran
     //
     resources.ApplyResources(this.btnNotTran, "btnNotTran");
     this.btnNotTran.Name = "btnNotTran";
     this.btnNotTran.UseVisualStyleBackColor = true;
     this.btnNotTran.Click += new System.EventHandler(this.btnNotTran_Click);
     //
     // searchFieldGroup
     //
     this.searchFieldGroup.Controls.Add(this.searchTranslateField);
     this.searchFieldGroup.Controls.Add(this.searchOriginalField);
     this.searchFieldGroup.Controls.Add(this.searchAliasField);
     resources.ApplyResources(this.searchFieldGroup, "searchFieldGroup");
     this.searchFieldGroup.Name    = "searchFieldGroup";
     this.searchFieldGroup.TabStop = false;
     //
     // searchTranslateField
     //
     resources.ApplyResources(this.searchTranslateField, "searchTranslateField");
     this.searchTranslateField.Name    = "searchTranslateField";
     this.searchTranslateField.TabStop = true;
     this.searchTranslateField.UseVisualStyleBackColor = true;
     this.searchTranslateField.Click += new System.EventHandler(this.searchField_Click);
     //
     // searchOriginalField
     //
     resources.ApplyResources(this.searchOriginalField, "searchOriginalField");
     this.searchOriginalField.Name    = "searchOriginalField";
     this.searchOriginalField.TabStop = true;
     this.searchOriginalField.UseVisualStyleBackColor = true;
     this.searchOriginalField.Click += new System.EventHandler(this.searchField_Click);
     //
     // searchAliasField
     //
     resources.ApplyResources(this.searchAliasField, "searchAliasField");
     this.searchAliasField.Checked = true;
     this.searchAliasField.Name    = "searchAliasField";
     this.searchAliasField.TabStop = true;
     this.searchAliasField.UseVisualStyleBackColor = true;
     this.searchAliasField.Click += new System.EventHandler(this.searchField_Click);
     //
     // search
     //
     resources.ApplyResources(this.search, "search");
     this.search.Name = "search";
     this.search.UseVisualStyleBackColor = true;
     this.search.Click += new System.EventHandler(this.search_Click);
     //
     // cancelSearch
     //
     resources.ApplyResources(this.cancelSearch, "cancelSearch");
     this.cancelSearch.Name = "cancelSearch";
     this.cancelSearch.UseVisualStyleBackColor = true;
     this.cancelSearch.Click += new System.EventHandler(this.cancelSearch_Click);
     //
     // searchIsRegex
     //
     resources.ApplyResources(this.searchIsRegex, "searchIsRegex");
     this.searchIsRegex.Name = "searchIsRegex";
     this.searchIsRegex.UseVisualStyleBackColor = true;
     //
     // searchNotIgnoreCase
     //
     resources.ApplyResources(this.searchNotIgnoreCase, "searchNotIgnoreCase");
     this.searchNotIgnoreCase.Name = "searchNotIgnoreCase";
     this.searchNotIgnoreCase.UseVisualStyleBackColor = true;
     //
     // replaceTab
     //
     replaceTab.Controls.Add(this.replaceCancel);
     replaceTab.Controls.Add(this.replace);
     replaceTab.Controls.Add(this.replaceAll);
     replaceTab.Controls.Add(this.replaceIsRegex);
     replaceTab.Controls.Add(this.replaceNotIgnoreCase);
     replaceTab.Controls.Add(this.label1);
     replaceTab.Controls.Add(this.replaceString);
     replaceTab.Controls.Add(this.replaceSearchQuery);
     resources.ApplyResources(replaceTab, "replaceTab");
     replaceTab.Name = "replaceTab";
     replaceTab.UseVisualStyleBackColor = true;
     //
     // replaceCancel
     //
     resources.ApplyResources(this.replaceCancel, "replaceCancel");
     this.replaceCancel.Name = "replaceCancel";
     this.replaceCancel.UseVisualStyleBackColor = true;
     this.replaceCancel.Click += new System.EventHandler(this.replaceCancel_Click);
     //
     // replace
     //
     resources.ApplyResources(this.replace, "replace");
     this.replace.Name = "replace";
     this.replace.UseVisualStyleBackColor = true;
     //
     // replaceAll
     //
     resources.ApplyResources(this.replaceAll, "replaceAll");
     this.replaceAll.Name = "replaceAll";
     this.replaceAll.UseVisualStyleBackColor = true;
     this.replaceAll.Click += new System.EventHandler(this.replaceAll_Click);
     //
     // replaceIsRegex
     //
     resources.ApplyResources(this.replaceIsRegex, "replaceIsRegex");
     this.replaceIsRegex.Name = "replaceIsRegex";
     this.replaceIsRegex.UseVisualStyleBackColor = true;
     //
     // replaceNotIgnoreCase
     //
     resources.ApplyResources(this.replaceNotIgnoreCase, "replaceNotIgnoreCase");
     this.replaceNotIgnoreCase.Name = "replaceNotIgnoreCase";
     this.replaceNotIgnoreCase.UseVisualStyleBackColor = true;
     //
     // label1
     //
     resources.ApplyResources(this.label1, "label1");
     this.label1.Name = "label1";
     //
     // textControlsContainer
     //
     resources.ApplyResources(this.textControlsContainer, "textControlsContainer");
     this.textControlsContainer.Name = "textControlsContainer";
     //
     // textControlsContainer.Panel1
     //
     this.textControlsContainer.Panel1.Controls.Add(this.elements);
     //
     // textControlsContainer.Panel2
     //
     this.textControlsContainer.Panel2.Controls.Add(this.searchReplaceTabs);
     this.textControlsContainer.Panel2.Controls.Add(this.textGroup);
     //
     // elements
     //
     this.elements.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.autoIdColumn,
         this.aliasColumn,
         this.originalColumn,
         this.translateColumn
     });
     this.elements.ContextMenuStrip = this.elementsContextMenu;
     resources.ApplyResources(this.elements, "elements");
     this.elements.FullRowSelect = true;
     this.elements.GridLines     = true;
     this.elements.HideSelection = false;
     this.elements.MultiSelect   = false;
     this.elements.Name          = "elements";
     this.elements.UseCompatibleStateImageBehavior = false;
     this.elements.View                  = System.Windows.Forms.View.Details;
     this.elements.VirtualMode           = true;
     this.elements.RetrieveVirtualItem  += new System.Windows.Forms.RetrieveVirtualItemEventHandler(this.elements_RetrieveVirtualItem);
     this.elements.SelectedIndexChanged += new System.EventHandler(this.elements_SelectedIndexChanged);
     //
     // autoIdColumn
     //
     resources.ApplyResources(this.autoIdColumn, "autoIdColumn");
     //
     // aliasColumn
     //
     resources.ApplyResources(this.aliasColumn, "aliasColumn");
     //
     // originalColumn
     //
     resources.ApplyResources(this.originalColumn, "originalColumn");
     //
     // translateColumn
     //
     resources.ApplyResources(this.translateColumn, "translateColumn");
     //
     // elementsContextMenu
     //
     this.elementsContextMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.elementsContextMenuAliasCopy
     });
     this.elementsContextMenu.Name            = "elementsContextMenu";
     this.elementsContextMenu.ShowImageMargin = false;
     resources.ApplyResources(this.elementsContextMenu, "elementsContextMenu");
     //
     // elementsContextMenuAliasCopy
     //
     this.elementsContextMenuAliasCopy.Name = "elementsContextMenuAliasCopy";
     resources.ApplyResources(this.elementsContextMenuAliasCopy, "elementsContextMenuAliasCopy");
     this.elementsContextMenuAliasCopy.Click += new System.EventHandler(this.elementsContextMenuAliasCopy_Click);
     //
     // searchReplaceTabs
     //
     resources.ApplyResources(this.searchReplaceTabs, "searchReplaceTabs");
     this.searchReplaceTabs.Controls.Add(searchTab);
     this.searchReplaceTabs.Controls.Add(replaceTab);
     this.searchReplaceTabs.Controls.Add(this.moveToIdPage);
     this.searchReplaceTabs.Name          = "searchReplaceTabs";
     this.searchReplaceTabs.SelectedIndex = 0;
     //
     // moveToIdPage
     //
     this.moveToIdPage.Controls.Add(this.goToAutoId);
     this.moveToIdPage.Controls.Add(this.autoIdValue);
     resources.ApplyResources(this.moveToIdPage, "moveToIdPage");
     this.moveToIdPage.Name = "moveToIdPage";
     this.moveToIdPage.UseVisualStyleBackColor = true;
     //
     // goToAutoId
     //
     resources.ApplyResources(this.goToAutoId, "goToAutoId");
     this.goToAutoId.Name = "goToAutoId";
     this.goToAutoId.UseVisualStyleBackColor = true;
     this.goToAutoId.Click += new System.EventHandler(this.goToAutoId_Click);
     //
     // textGroup
     //
     resources.ApplyResources(this.textGroup, "textGroup");
     this.textGroup.Controls.Add(this.tableLayoutPanel1);
     this.textGroup.Name    = "textGroup";
     this.textGroup.TabStop = false;
     //
     // tableLayoutPanel1
     //
     resources.ApplyResources(this.tableLayoutPanel1, "tableLayoutPanel1");
     this.tableLayoutPanel1.Controls.Add(this.originalText, 0, 0);
     this.tableLayoutPanel1.Controls.Add(this.translatedText, 0, 1);
     this.tableLayoutPanel1.Name = "tableLayoutPanel1";
     //
     // tagsContextMenu
     //
     this.tagsContextMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.tagsContextMenuBr
     });
     this.tagsContextMenu.Name            = "tagsContextMenu";
     this.tagsContextMenu.ShowImageMargin = false;
     resources.ApplyResources(this.tagsContextMenu, "tagsContextMenu");
     //
     // tagsContextMenuBr
     //
     this.tagsContextMenuBr.Name = "tagsContextMenuBr";
     resources.ApplyResources(this.tagsContextMenuBr, "tagsContextMenuBr");
     this.tagsContextMenuBr.Click += new System.EventHandler(this.tagsContextMenuBr_Click);
     //
     // mainMenu
     //
     this.mainMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.mainMenuFile,
         this.правкаToolStripMenuItem,
         this.mainMenuView,
         this.mainMenuLanguage
     });
     resources.ApplyResources(this.mainMenu, "mainMenu");
     this.mainMenu.Name = "mainMenu";
     //
     // mainMenuFile
     //
     this.mainMenuFile.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.mainMenuOpen,
         this.mainMenuSave,
         this.mainMenuSaveAs,
         this.mainMenuFileSeparator,
         this.mainMenuExit
     });
     this.mainMenuFile.Name = "mainMenuFile";
     resources.ApplyResources(this.mainMenuFile, "mainMenuFile");
     //
     // mainMenuOpen
     //
     this.mainMenuOpen.Name = "mainMenuOpen";
     resources.ApplyResources(this.mainMenuOpen, "mainMenuOpen");
     this.mainMenuOpen.Click += new System.EventHandler(this.mainMenuOpen_Click);
     //
     // mainMenuSave
     //
     this.mainMenuSave.Name = "mainMenuSave";
     resources.ApplyResources(this.mainMenuSave, "mainMenuSave");
     this.mainMenuSave.Click += new System.EventHandler(this.mainMenuSave_Click);
     //
     // mainMenuSaveAs
     //
     this.mainMenuSaveAs.Name = "mainMenuSaveAs";
     resources.ApplyResources(this.mainMenuSaveAs, "mainMenuSaveAs");
     this.mainMenuSaveAs.Click += new System.EventHandler(this.mainMenuSaveAs_Click);
     //
     // mainMenuFileSeparator
     //
     this.mainMenuFileSeparator.Name = "mainMenuFileSeparator";
     resources.ApplyResources(this.mainMenuFileSeparator, "mainMenuFileSeparator");
     //
     // mainMenuExit
     //
     this.mainMenuExit.Name = "mainMenuExit";
     resources.ApplyResources(this.mainMenuExit, "mainMenuExit");
     this.mainMenuExit.Click += new System.EventHandler(this.mainMenuExit_Click);
     //
     // правкаToolStripMenuItem
     //
     this.правкаToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.miUndo,
         this.miRedo
     });
     this.правкаToolStripMenuItem.Name = "правкаToolStripMenuItem";
     resources.ApplyResources(this.правкаToolStripMenuItem, "правкаToolStripMenuItem");
     //
     // miUndo
     //
     resources.ApplyResources(this.miUndo, "miUndo");
     this.miUndo.Name   = "miUndo";
     this.miUndo.Click += new System.EventHandler(this.miUndo_Click);
     //
     // miRedo
     //
     resources.ApplyResources(this.miRedo, "miRedo");
     this.miRedo.Name   = "miRedo";
     this.miRedo.Click += new System.EventHandler(this.miRedo_Click);
     //
     // mainMenuView
     //
     this.mainMenuView.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.mainMenuElementsColumns,
         this.mainMenuViewHighlight,
         this.mainMenuViewHighlightWords
     });
     this.mainMenuView.Name = "mainMenuView";
     resources.ApplyResources(this.mainMenuView, "mainMenuView");
     //
     // mainMenuElementsColumns
     //
     this.mainMenuElementsColumns.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.miAutoIdColumn,
         this.miAliasColumn,
         this.miOriginalColumn,
         this.miTranslatedColumn
     });
     this.mainMenuElementsColumns.Name = "mainMenuElementsColumns";
     resources.ApplyResources(this.mainMenuElementsColumns, "mainMenuElementsColumns");
     //
     // miAutoIdColumn
     //
     this.miAutoIdColumn.Checked    = true;
     this.miAutoIdColumn.CheckState = System.Windows.Forms.CheckState.Checked;
     this.miAutoIdColumn.Name       = "miAutoIdColumn";
     resources.ApplyResources(this.miAutoIdColumn, "miAutoIdColumn");
     //
     // miAliasColumn
     //
     this.miAliasColumn.Checked    = true;
     this.miAliasColumn.CheckState = System.Windows.Forms.CheckState.Checked;
     this.miAliasColumn.Name       = "miAliasColumn";
     resources.ApplyResources(this.miAliasColumn, "miAliasColumn");
     //
     // miOriginalColumn
     //
     this.miOriginalColumn.Checked    = true;
     this.miOriginalColumn.CheckState = System.Windows.Forms.CheckState.Checked;
     this.miOriginalColumn.Name       = "miOriginalColumn";
     resources.ApplyResources(this.miOriginalColumn, "miOriginalColumn");
     //
     // miTranslatedColumn
     //
     this.miTranslatedColumn.Checked    = true;
     this.miTranslatedColumn.CheckState = System.Windows.Forms.CheckState.Checked;
     this.miTranslatedColumn.Name       = "miTranslatedColumn";
     resources.ApplyResources(this.miTranslatedColumn, "miTranslatedColumn");
     //
     // mainMenuViewHighlight
     //
     this.mainMenuViewHighlight.Checked      = true;
     this.mainMenuViewHighlight.CheckOnClick = true;
     this.mainMenuViewHighlight.CheckState   = System.Windows.Forms.CheckState.Checked;
     this.mainMenuViewHighlight.Name         = "mainMenuViewHighlight";
     resources.ApplyResources(this.mainMenuViewHighlight, "mainMenuViewHighlight");
     this.mainMenuViewHighlight.CheckedChanged += new System.EventHandler(this.mainMenuViewHighlight_CheckedChanged);
     //
     // mainMenuViewHighlightWords
     //
     this.mainMenuViewHighlightWords.Checked      = true;
     this.mainMenuViewHighlightWords.CheckOnClick = true;
     this.mainMenuViewHighlightWords.CheckState   = System.Windows.Forms.CheckState.Checked;
     this.mainMenuViewHighlightWords.Name         = "mainMenuViewHighlightWords";
     resources.ApplyResources(this.mainMenuViewHighlightWords, "mainMenuViewHighlightWords");
     this.mainMenuViewHighlightWords.CheckedChanged += new System.EventHandler(this.mainMenuViewHighlightWords_CheckedChanged);
     //
     // mainMenuLanguage
     //
     this.mainMenuLanguage.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.mainMenuLanguageEnglish,
         this.mainMenuLanguageRussian
     });
     this.mainMenuLanguage.Name = "mainMenuLanguage";
     resources.ApplyResources(this.mainMenuLanguage, "mainMenuLanguage");
     //
     // mainMenuLanguageEnglish
     //
     this.mainMenuLanguageEnglish.Name = "mainMenuLanguageEnglish";
     resources.ApplyResources(this.mainMenuLanguageEnglish, "mainMenuLanguageEnglish");
     this.mainMenuLanguageEnglish.Click += new System.EventHandler(this.mainMenuLanguageEnglish_Click);
     //
     // mainMenuLanguageRussian
     //
     this.mainMenuLanguageRussian.Name = "mainMenuLanguageRussian";
     resources.ApplyResources(this.mainMenuLanguageRussian, "mainMenuLanguageRussian");
     this.mainMenuLanguageRussian.Click += new System.EventHandler(this.mainMenuLanguageRussian_Click);
     //
     // open
     //
     resources.ApplyResources(this.open, "open");
     this.open.SupportMultiDottedExtensions = true;
     //
     // statusBar
     //
     this.statusBar.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.itemsCountHint,
         this.itemsCount
     });
     resources.ApplyResources(this.statusBar, "statusBar");
     this.statusBar.Name       = "statusBar";
     this.statusBar.RenderMode = System.Windows.Forms.ToolStripRenderMode.ManagerRenderMode;
     //
     // itemsCountHint
     //
     this.itemsCountHint.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.itemsCountHint.Name         = "itemsCountHint";
     resources.ApplyResources(this.itemsCountHint, "itemsCountHint");
     this.itemsCountHint.TextDirection = System.Windows.Forms.ToolStripTextDirection.Horizontal;
     //
     // itemsCount
     //
     this.itemsCount.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.itemsCount.Name         = "itemsCount";
     resources.ApplyResources(this.itemsCount, "itemsCount");
     //
     // save
     //
     this.save.DefaultExt = "xml";
     resources.ApplyResources(this.save, "save");
     this.save.SupportMultiDottedExtensions = true;
     //
     // gTran
     //
     resources.ApplyResources(this.gTran, "gTran");
     this.gTran.Name         = "gTran";
     this.gTran.TabStop      = true;
     this.gTran.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.gTran_LinkClicked);
     //
     // resetTran
     //
     resources.ApplyResources(this.resetTran, "resetTran");
     this.resetTran.Name         = "resetTran";
     this.resetTran.TabStop      = true;
     this.resetTran.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.resetTran_LinkClicked);
     //
     // searchQuery
     //
     resources.ApplyResources(this.searchQuery, "searchQuery");
     this.searchQuery.HistoryFile     = "searchHistory.bin";
     this.searchQuery.HistoryMaxItems = 40;
     this.searchQuery.Name            = "searchQuery";
     this.searchQuery.KeyDown        += new System.Windows.Forms.KeyEventHandler(this.searchQuery_KeyDown);
     //
     // replaceString
     //
     resources.ApplyResources(this.replaceString, "replaceString");
     this.replaceString.FormattingEnabled = true;
     this.replaceString.HistoryFile       = "replaceHistory2.bin";
     this.replaceString.HistoryMaxItems   = 40;
     this.replaceString.Name = "replaceString";
     //
     // replaceSearchQuery
     //
     resources.ApplyResources(this.replaceSearchQuery, "replaceSearchQuery");
     this.replaceSearchQuery.FormattingEnabled = true;
     this.replaceSearchQuery.HistoryFile       = "replaceHistory1.bin";
     this.replaceSearchQuery.HistoryMaxItems   = 40;
     this.replaceSearchQuery.Name = "replaceSearchQuery";
     //
     // autoIdValue
     //
     resources.ApplyResources(this.autoIdValue, "autoIdValue");
     this.autoIdValue.FormattingEnabled = true;
     this.autoIdValue.HistoryFile       = "autoIdHistory.bin";
     this.autoIdValue.HistoryMaxItems   = 40;
     this.autoIdValue.Name     = "autoIdValue";
     this.autoIdValue.KeyDown += new System.Windows.Forms.KeyEventHandler(this.autoIdValue_KeyDown);
     //
     // originalText
     //
     resources.ApplyResources(this.originalText, "originalText");
     this.originalText.Name         = "originalText";
     this.originalText.ReadOnly     = true;
     this.originalText.TextChanged += new System.EventHandler(this.originalText_TextChanged);
     //
     // translatedText
     //
     resources.ApplyResources(this.translatedText, "translatedText");
     this.translatedText.ContextMenuStrip = this.tagsContextMenu;
     this.translatedText.Name             = "translatedText";
     this.translatedText.TextChanged     += new System.EventHandler(this.translatedText_TextChanged);
     this.translatedText.Leave           += new System.EventHandler(this.translatedText_Leave);
     //
     // EditForm
     //
     resources.ApplyResources(this, "$this");
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoValidate  = System.Windows.Forms.AutoValidate.Disable;
     this.BackColor     = System.Drawing.SystemColors.Control;
     this.Controls.Add(this.resetTran);
     this.Controls.Add(this.gTran);
     this.Controls.Add(this.textControlsContainer);
     this.Controls.Add(this.statusBar);
     this.Controls.Add(this.mainMenu);
     this.MainMenuStrip = this.mainMenu;
     this.Name          = "EditForm";
     this.FormClosing  += new System.Windows.Forms.FormClosingEventHandler(this.MainForm_FormClosing);
     this.Load         += new System.EventHandler(this.EditForm_Load);
     searchTab.ResumeLayout(false);
     searchTab.PerformLayout();
     this.searchFieldGroup.ResumeLayout(false);
     this.searchFieldGroup.PerformLayout();
     replaceTab.ResumeLayout(false);
     replaceTab.PerformLayout();
     this.textControlsContainer.Panel1.ResumeLayout(false);
     this.textControlsContainer.Panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.textControlsContainer)).EndInit();
     this.textControlsContainer.ResumeLayout(false);
     this.elementsContextMenu.ResumeLayout(false);
     this.searchReplaceTabs.ResumeLayout(false);
     this.moveToIdPage.ResumeLayout(false);
     this.textGroup.ResumeLayout(false);
     this.tableLayoutPanel1.ResumeLayout(false);
     this.tableLayoutPanel1.PerformLayout();
     this.tagsContextMenu.ResumeLayout(false);
     this.mainMenu.ResumeLayout(false);
     this.mainMenu.PerformLayout();
     this.statusBar.ResumeLayout(false);
     this.statusBar.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Esempio n. 43
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     components             = new System.ComponentModel.Container();
     tabControl             = new System.Windows.Forms.TabControl();
     tabPage1               = new System.Windows.Forms.TabPage();
     comboBoxEventType      = new System.Windows.Forms.ComboBox();
     labelEventType         = new System.Windows.Forms.Label();
     dateTimePickerSchedule = new System.Windows.Forms.DateTimePicker();
     monthCalendarSchedule  = new System.Windows.Forms.MonthCalendar();
     textBoxName            = new System.Windows.Forms.TextBox();
     dataGridViewPackage    = new System.Windows.Forms.DataGridView();
     label5                = new System.Windows.Forms.Label();
     comboBoxVenue         = new System.Windows.Forms.ComboBox();
     label2                = new System.Windows.Forms.Label();
     label3                = new System.Windows.Forms.Label();
     textBoxDescription    = new System.Windows.Forms.TextBox();
     label1                = new System.Windows.Forms.Label();
     label4                = new System.Windows.Forms.Label();
     tabPage2              = new System.Windows.Forms.TabPage();
     checkBoxStretch       = new System.Windows.Forms.CheckBox();
     panelPoster           = new System.Windows.Forms.Panel();
     pictureBoxPoster      = new System.Windows.Forms.PictureBox();
     linkLabelUploadPoster = new System.Windows.Forms.LinkLabel();
     tabPage3              = new System.Windows.Forms.TabPage();
     comboBoxActor         = new System.Windows.Forms.ComboBox();
     dataGridViewActor     = new System.Windows.Forms.DataGridView();
     ColumnActorName       = new System.Windows.Forms.DataGridViewTextBoxColumn();
     ColumnActorID         = new System.Windows.Forms.DataGridViewTextBoxColumn();
     ColumnDelete          = new System.Windows.Forms.DataGridViewImageColumn();
     buttonAddToList       = new System.Windows.Forms.Button();
     label7                = new System.Windows.Forms.Label();
     buttonCancel          = new System.Windows.Forms.Button();
     buttonSave            = new System.Windows.Forms.Button();
     openFileDialog        = new System.Windows.Forms.OpenFileDialog();
     errorProvider         = new System.Windows.Forms.ErrorProvider(components);
     pictureBoxNewVenue    = new System.Windows.Forms.PictureBox();
     tabControl.SuspendLayout();
     tabPage1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(dataGridViewPackage)).BeginInit();
     tabPage2.SuspendLayout();
     panelPoster.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(pictureBoxPoster)).BeginInit();
     tabPage3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(dataGridViewActor)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(errorProvider)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(pictureBoxNewVenue)).BeginInit();
     SuspendLayout();
     //
     // tabControl
     //
     tabControl.Controls.Add(tabPage1);
     tabControl.Controls.Add(tabPage2);
     tabControl.Controls.Add(tabPage3);
     tabControl.Location      = new System.Drawing.Point(3, 4);
     tabControl.Name          = "tabControl";
     tabControl.SelectedIndex = 0;
     tabControl.Size          = new System.Drawing.Size(494, 400);
     tabControl.TabIndex      = 0;
     //
     // tabPage1
     //
     tabPage1.Controls.Add(pictureBoxNewVenue);
     tabPage1.Controls.Add(comboBoxEventType);
     tabPage1.Controls.Add(labelEventType);
     tabPage1.Controls.Add(dateTimePickerSchedule);
     tabPage1.Controls.Add(monthCalendarSchedule);
     tabPage1.Controls.Add(textBoxName);
     tabPage1.Controls.Add(dataGridViewPackage);
     tabPage1.Controls.Add(label5);
     tabPage1.Controls.Add(comboBoxVenue);
     tabPage1.Controls.Add(label2);
     tabPage1.Controls.Add(label3);
     tabPage1.Controls.Add(textBoxDescription);
     tabPage1.Controls.Add(label1);
     tabPage1.Controls.Add(label4);
     tabPage1.Location = new System.Drawing.Point(4, 22);
     tabPage1.Name     = "tabPage1";
     tabPage1.Padding  = new System.Windows.Forms.Padding(3);
     tabPage1.Size     = new System.Drawing.Size(486, 374);
     tabPage1.TabIndex = 0;
     tabPage1.Text     = "Event";
     tabPage1.UseVisualStyleBackColor = true;
     //
     // comboBoxEventType
     //
     comboBoxEventType.FormattingEnabled = true;
     comboBoxEventType.Location          = new System.Drawing.Point(11, 127);
     comboBoxEventType.Name     = "comboBoxEventType";
     comboBoxEventType.Size     = new System.Drawing.Size(189, 21);
     comboBoxEventType.TabIndex = 27;
     //
     // labelEventType
     //
     labelEventType.AutoSize = true;
     labelEventType.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     labelEventType.Location = new System.Drawing.Point(11, 107);
     labelEventType.Name     = "labelEventType";
     labelEventType.Size     = new System.Drawing.Size(62, 13);
     labelEventType.TabIndex = 26;
     labelEventType.Text     = "Event Type";
     //
     // dateTimePickerSchedule
     //
     dateTimePickerSchedule.CustomFormat = "";
     dateTimePickerSchedule.Format       = System.Windows.Forms.DateTimePickerFormat.Time;
     dateTimePickerSchedule.Location     = new System.Drawing.Point(11, 337);
     dateTimePickerSchedule.Name         = "dateTimePickerSchedule";
     dateTimePickerSchedule.ShowUpDown   = true;
     dateTimePickerSchedule.Size         = new System.Drawing.Size(178, 20);
     dateTimePickerSchedule.TabIndex     = 4;
     //
     // monthCalendarSchedule
     //
     monthCalendarSchedule.Location  = new System.Drawing.Point(11, 175);
     monthCalendarSchedule.Name      = "monthCalendarSchedule";
     monthCalendarSchedule.ShowToday = false;
     monthCalendarSchedule.TabIndex  = 3;
     monthCalendarSchedule.TodayDate = new System.DateTime(2006, 12, 29, 0, 0, 0, 0);
     //
     // textBoxName
     //
     textBoxName.Location = new System.Drawing.Point(11, 32);
     textBoxName.Name     = "textBoxName";
     textBoxName.Size     = new System.Drawing.Size(189, 20);
     textBoxName.TabIndex = 1;
     //
     // dataGridViewPackage
     //
     dataGridViewPackage.AllowUserToAddRows          = false;
     dataGridViewPackage.AllowUserToDeleteRows       = false;
     dataGridViewPackage.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     dataGridViewPackage.Location          = new System.Drawing.Point(221, 30);
     dataGridViewPackage.Name              = "dataGridViewPackage";
     dataGridViewPackage.RowHeadersVisible = false;
     dataGridViewPackage.Size              = new System.Drawing.Size(246, 127);
     dataGridViewPackage.TabIndex          = 5;
     dataGridViewPackage.CellValueNeeded  += new System.Windows.Forms.DataGridViewCellValueEventHandler(dataGridViewPackage_CellValueNeeded);
     dataGridViewPackage.CellValuePushed  += new System.Windows.Forms.DataGridViewCellValueEventHandler(dataGridViewPackage_CellValuePushed);
     //
     // label5
     //
     label5.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     label5.Location = new System.Drawing.Point(218, 12);
     label5.Name     = "label5";
     label5.Size     = new System.Drawing.Size(104, 13);
     label5.TabIndex = 25;
     label5.Text     = "Packages";
     //
     // comboBoxVenue
     //
     comboBoxVenue.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     comboBoxVenue.FormattingEnabled = true;
     comboBoxVenue.Location          = new System.Drawing.Point(11, 79);
     comboBoxVenue.Name     = "comboBoxVenue";
     comboBoxVenue.Size     = new System.Drawing.Size(162, 21);
     comboBoxVenue.TabIndex = 2;
     //
     // label2
     //
     label2.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     label2.Location = new System.Drawing.Point(218, 170);
     label2.Name     = "label2";
     label2.Size     = new System.Drawing.Size(104, 13);
     label2.TabIndex = 18;
     label2.Text     = "Description";
     //
     // label3
     //
     label3.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     label3.Location = new System.Drawing.Point(11, 155);
     label3.Name     = "label3";
     label3.Size     = new System.Drawing.Size(98, 13);
     label3.TabIndex = 20;
     label3.Text     = "Schedule";
     //
     // textBoxDescription
     //
     textBoxDescription.Location   = new System.Drawing.Point(221, 187);
     textBoxDescription.Multiline  = true;
     textBoxDescription.Name       = "textBoxDescription";
     textBoxDescription.ScrollBars = System.Windows.Forms.ScrollBars.Both;
     textBoxDescription.Size       = new System.Drawing.Size(246, 170);
     textBoxDescription.TabIndex   = 6;
     //
     // label1
     //
     label1.AutoSize = true;
     label1.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     label1.Location = new System.Drawing.Point(11, 12);
     label1.Name     = "label1";
     label1.Size     = new System.Drawing.Size(35, 13);
     label1.TabIndex = 17;
     label1.Text     = "Name";
     //
     // label4
     //
     label4.AutoSize = true;
     label4.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     label4.Location = new System.Drawing.Point(11, 59);
     label4.Name     = "label4";
     label4.Size     = new System.Drawing.Size(38, 13);
     label4.TabIndex = 22;
     label4.Text     = "Venue";
     //
     // tabPage2
     //
     tabPage2.Controls.Add(checkBoxStretch);
     tabPage2.Controls.Add(panelPoster);
     tabPage2.Controls.Add(linkLabelUploadPoster);
     tabPage2.Location = new System.Drawing.Point(4, 22);
     tabPage2.Name     = "tabPage2";
     tabPage2.Padding  = new System.Windows.Forms.Padding(3);
     tabPage2.Size     = new System.Drawing.Size(486, 374);
     tabPage2.TabIndex = 1;
     tabPage2.Text     = "Poster";
     tabPage2.UseVisualStyleBackColor = true;
     //
     // checkBoxStretch
     //
     checkBoxStretch.AutoSize = true;
     checkBoxStretch.Location = new System.Drawing.Point(3, 7);
     checkBoxStretch.Name     = "checkBoxStretch";
     checkBoxStretch.Size     = new System.Drawing.Size(92, 17);
     checkBoxStretch.TabIndex = 3;
     checkBoxStretch.Text     = "Stretch Image";
     checkBoxStretch.UseVisualStyleBackColor = true;
     checkBoxStretch.CheckedChanged         += new System.EventHandler(checkBoxStretch_CheckedChanged);
     //
     // panelPoster
     //
     panelPoster.AutoScroll = true;
     panelPoster.BackColor  = System.Drawing.Color.Black;
     panelPoster.Controls.Add(pictureBoxPoster);
     panelPoster.Dock     = System.Windows.Forms.DockStyle.Bottom;
     panelPoster.Location = new System.Drawing.Point(3, 29);
     panelPoster.Name     = "panelPoster";
     panelPoster.Size     = new System.Drawing.Size(480, 342);
     panelPoster.TabIndex = 2;
     //
     // pictureBoxPoster
     //
     pictureBoxPoster.BackColor = System.Drawing.Color.Black;
     pictureBoxPoster.Location  = new System.Drawing.Point(0, 0);
     pictureBoxPoster.Name      = "pictureBoxPoster";
     pictureBoxPoster.Size      = new System.Drawing.Size(10, 10);
     pictureBoxPoster.SizeMode  = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
     pictureBoxPoster.TabIndex  = 0;
     pictureBoxPoster.TabStop   = false;
     //
     // linkLabelUploadPoster
     //
     linkLabelUploadPoster.AutoSize     = true;
     linkLabelUploadPoster.Location     = new System.Drawing.Point(390, 6);
     linkLabelUploadPoster.Name         = "linkLabelUploadPoster";
     linkLabelUploadPoster.Size         = new System.Drawing.Size(82, 13);
     linkLabelUploadPoster.TabIndex     = 1;
     linkLabelUploadPoster.TabStop      = true;
     linkLabelUploadPoster.Text         = "Upload poster...";
     linkLabelUploadPoster.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(linkLabelUploadPoster_LinkClicked);
     //
     // tabPage3
     //
     tabPage3.Controls.Add(comboBoxActor);
     tabPage3.Controls.Add(dataGridViewActor);
     tabPage3.Controls.Add(buttonAddToList);
     tabPage3.Controls.Add(label7);
     tabPage3.Location = new System.Drawing.Point(4, 22);
     tabPage3.Name     = "tabPage3";
     tabPage3.Size     = new System.Drawing.Size(486, 374);
     tabPage3.TabIndex = 2;
     tabPage3.Text     = "Actor";
     tabPage3.UseVisualStyleBackColor = true;
     //
     // comboBoxActor
     //
     comboBoxActor.FormattingEnabled = true;
     comboBoxActor.Location          = new System.Drawing.Point(12, 29);
     comboBoxActor.Name     = "comboBoxActor";
     comboBoxActor.Size     = new System.Drawing.Size(360, 21);
     comboBoxActor.TabIndex = 23;
     //
     // dataGridViewActor
     //
     dataGridViewActor.AllowUserToAddRows          = false;
     dataGridViewActor.AllowUserToDeleteRows       = false;
     dataGridViewActor.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     dataGridViewActor.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
         ColumnActorName,
         ColumnActorID,
         ColumnDelete
     });
     dataGridViewActor.Location          = new System.Drawing.Point(12, 66);
     dataGridViewActor.Name              = "dataGridViewActor";
     dataGridViewActor.ReadOnly          = true;
     dataGridViewActor.RowHeadersVisible = false;
     dataGridViewActor.RowHeadersWidth   = 10;
     dataGridViewActor.Size              = new System.Drawing.Size(460, 291);
     dataGridViewActor.TabIndex          = 22;
     dataGridViewActor.CellClick        += new System.Windows.Forms.DataGridViewCellEventHandler(dataGridViewActor_CellClick);
     //
     // ColumnActorName
     //
     ColumnActorName.DataPropertyName = "ActorName";
     ColumnActorName.HeaderText       = "Actor";
     ColumnActorName.Name             = "ColumnActorName";
     ColumnActorName.ReadOnly         = true;
     ColumnActorName.Width            = 435;
     //
     // ColumnActorID
     //
     ColumnActorID.DataPropertyName = "ActorID";
     ColumnActorID.HeaderText       = "ActorID";
     ColumnActorID.Name             = "ColumnActorID";
     ColumnActorID.ReadOnly         = true;
     ColumnActorID.Visible          = false;
     //
     // ColumnDelete
     //
     ColumnDelete.HeaderText = "";
     ColumnDelete.Image      = global::Microsoft.SAPSK.ContosoTours.Properties.Resources.icodelete;
     ColumnDelete.Name       = "ColumnDelete";
     ColumnDelete.ReadOnly   = true;
     ColumnDelete.Width      = 25;
     //
     // buttonAddToList
     //
     buttonAddToList.Location = new System.Drawing.Point(378, 27);
     buttonAddToList.Name     = "buttonAddToList";
     buttonAddToList.Size     = new System.Drawing.Size(94, 23);
     buttonAddToList.TabIndex = 21;
     buttonAddToList.Text     = "Add To List";
     buttonAddToList.UseVisualStyleBackColor = true;
     buttonAddToList.Click += new System.EventHandler(buttonAddToList_Click);
     //
     // label7
     //
     label7.AutoSize  = true;
     label7.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     label7.ForeColor = System.Drawing.Color.Gray;
     label7.Location  = new System.Drawing.Point(9, 11);
     label7.Name      = "label7";
     label7.Size      = new System.Drawing.Size(43, 13);
     label7.TabIndex  = 18;
     label7.Text      = "Actors";
     //
     // buttonCancel
     //
     buttonCancel.Location = new System.Drawing.Point(399, 410);
     buttonCancel.Name     = "buttonCancel";
     buttonCancel.Size     = new System.Drawing.Size(75, 23);
     buttonCancel.TabIndex = 8;
     buttonCancel.Text     = "Cancel";
     buttonCancel.UseVisualStyleBackColor = true;
     buttonCancel.Click += new System.EventHandler(buttonCancel_Click);
     //
     // buttonSave
     //
     buttonSave.Location = new System.Drawing.Point(318, 410);
     buttonSave.Name     = "buttonSave";
     buttonSave.Size     = new System.Drawing.Size(75, 23);
     buttonSave.TabIndex = 7;
     buttonSave.Text     = "Save";
     buttonSave.UseVisualStyleBackColor = true;
     buttonSave.Click += new System.EventHandler(buttonSave_Click);
     //
     // openFileDialog
     //
     openFileDialog.Filter = "ImageFiles(*.gif,*.jpg,*.jpeg,*.bmp,*.wmf,*.png)|*.gif;*.jpg;*.jpeg;*.bmp;*.wmf;*" +
                             ".png|All Files (*.*)|*.*";
     //
     // errorProvider
     //
     errorProvider.ContainerControl = this;
     //
     // pictureBoxNewVenue
     //
     pictureBoxNewVenue.Location    = new System.Drawing.Point(180, 79);
     pictureBoxNewVenue.Name        = "pictureBoxNewVenue";
     pictureBoxNewVenue.Size        = new System.Drawing.Size(20, 20);
     pictureBoxNewVenue.TabIndex    = 28;
     pictureBoxNewVenue.TabStop     = false;
     pictureBoxNewVenue.MouseLeave += new System.EventHandler(pictureBoxNewVenue_MouseLeave);
     pictureBoxNewVenue.Click      += new System.EventHandler(pictureBoxNewVenue_Click);
     pictureBoxNewVenue.MouseHover += new System.EventHandler(pictureBoxNewVenue_MouseHover);
     //
     // EventForm
     //
     AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     ClientSize          = new System.Drawing.Size(499, 445);
     ControlBox          = false;
     Controls.Add(buttonSave);
     Controls.Add(buttonCancel);
     Controls.Add(tabControl);
     FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     Name            = "EventForm";
     ShowInTaskbar   = false;
     StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     Text            = " Event";
     Load           += new System.EventHandler(frmEvent_Load);
     tabControl.ResumeLayout(false);
     tabPage1.ResumeLayout(false);
     tabPage1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(dataGridViewPackage)).EndInit();
     tabPage2.ResumeLayout(false);
     tabPage2.PerformLayout();
     panelPoster.ResumeLayout(false);
     panelPoster.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(pictureBoxPoster)).EndInit();
     tabPage3.ResumeLayout(false);
     tabPage3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(dataGridViewActor)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(errorProvider)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(pictureBoxNewVenue)).EndInit();
     ResumeLayout(false);
 }
Esempio n. 44
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Windows.Forms.Label   noteLabel;
     System.Windows.Forms.TabPage interfaceTab;
     System.Windows.Forms.Label   label4;
     System.Windows.Forms.Label   label1;
     System.Windows.Forms.Label   label2;
     System.Windows.Forms.Label   label3;
     System.Windows.Forms.Label   label5;
     this.refreshTeamButton     = new System.Windows.Forms.Button();
     this.memberBox             = new System.Windows.Forms.GroupBox();
     this.teamLevelLabel        = new System.Windows.Forms.Label();
     this.teamRateLabel         = new System.Windows.Forms.Label();
     this.teamPriceLabel        = new System.Windows.Forms.Label();
     this.memberList            = new BrightIdeasSoftware.ObjectListView();
     this.memberColumn          = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
     this.kickColumn            = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
     this.baseInfoBox           = new System.Windows.Forms.GroupBox();
     this.spinnerRateLabel      = new System.Windows.Forms.Label();
     this.numLabel              = new System.Windows.Forms.Label();
     this.spinnerLevelLabel     = new System.Windows.Forms.Label();
     this.priceLabel            = new System.Windows.Forms.Label();
     this.teamBox               = new System.Windows.Forms.GroupBox();
     this.textileLevelInput     = new System.Windows.Forms.NumericUpDown();
     this.quitAndMakeButton     = new System.Windows.Forms.Button();
     this.createLegionButton    = new System.Windows.Forms.Button();
     this.createNationButton    = new System.Windows.Forms.Button();
     this.inviteButton          = new System.Windows.Forms.Button();
     this.quitButton            = new System.Windows.Forms.Button();
     this.disbandButton         = new System.Windows.Forms.Button();
     this.makeButton            = new System.Windows.Forms.Button();
     this.teamList              = new BrightIdeasSoftware.ObjectListView();
     this.teamColumn            = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
     this.joinColumn            = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
     this.refreshTeamInterval   = new System.Windows.Forms.NumericUpDown();
     this.autoRefreshTeamBox    = new System.Windows.Forms.CheckBox();
     this.autoTextileLevelInput = new System.Windows.Forms.NumericUpDown();
     this.refreshTeamTimer      = new System.Windows.Forms.Timer(this.components);
     this.autoQuitAndMake       = new System.Windows.Forms.CheckBox();
     this.autoCreate            = new System.Windows.Forms.CheckBox();
     this.autoMake              = new System.Windows.Forms.CheckBox();
     this.tabControl            = new System.Windows.Forms.TabControl();
     this.configTab             = new System.Windows.Forms.TabPage();
     this.slot2PlayerInput      = new System.Windows.Forms.TextBox();
     this.slot1PlayerInput      = new System.Windows.Forms.TextBox();
     this.btBuyWeave            = new System.Windows.Forms.Button();
     noteLabel    = new System.Windows.Forms.Label();
     interfaceTab = new System.Windows.Forms.TabPage();
     label4       = new System.Windows.Forms.Label();
     label1       = new System.Windows.Forms.Label();
     label2       = new System.Windows.Forms.Label();
     label3       = new System.Windows.Forms.Label();
     label5       = new System.Windows.Forms.Label();
     interfaceTab.SuspendLayout();
     this.memberBox.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.memberList)).BeginInit();
     this.baseInfoBox.SuspendLayout();
     this.teamBox.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textileLevelInput)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.teamList)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.refreshTeamInterval)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.autoTextileLevelInput)).BeginInit();
     this.tabControl.SuspendLayout();
     this.configTab.SuspendLayout();
     this.SuspendLayout();
     //
     // noteLabel
     //
     noteLabel.AutoSize = true;
     noteLabel.Location = new System.Drawing.Point(15, 120);
     noteLabel.Name     = "noteLabel";
     noteLabel.Size     = new System.Drawing.Size(172, 39);
     noteLabel.TabIndex = 35;
     noteLabel.Text     = "Chú ý: nếu tích cả 2 ô trên thì:\r\n- Dệt chung khi còn >1 lượt.\r\n- Thoát và dệt kh" +
                          "i còn đúng 1 lượt.";
     //
     // interfaceTab
     //
     interfaceTab.Controls.Add(this.btBuyWeave);
     interfaceTab.Controls.Add(this.refreshTeamButton);
     interfaceTab.Controls.Add(this.memberBox);
     interfaceTab.Controls.Add(this.baseInfoBox);
     interfaceTab.Controls.Add(this.teamBox);
     interfaceTab.Controls.Add(this.refreshTeamInterval);
     interfaceTab.Controls.Add(this.autoRefreshTeamBox);
     interfaceTab.Location = new System.Drawing.Point(4, 22);
     interfaceTab.Name     = "interfaceTab";
     interfaceTab.Padding  = new System.Windows.Forms.Padding(3);
     interfaceTab.Size     = new System.Drawing.Size(402, 464);
     interfaceTab.TabIndex = 0;
     interfaceTab.Text     = "Giao diện";
     interfaceTab.UseVisualStyleBackColor = true;
     //
     // refreshTeamButton
     //
     this.refreshTeamButton.Location = new System.Drawing.Point(10, 10);
     this.refreshTeamButton.Name     = "refreshTeamButton";
     this.refreshTeamButton.Size     = new System.Drawing.Size(100, 30);
     this.refreshTeamButton.TabIndex = 27;
     this.refreshTeamButton.Text     = "Làm mới tổ đội";
     this.refreshTeamButton.UseVisualStyleBackColor = true;
     this.refreshTeamButton.Click += new System.EventHandler(this.refreshTeamButton_Click);
     //
     // memberBox
     //
     this.memberBox.Controls.Add(this.teamLevelLabel);
     this.memberBox.Controls.Add(this.teamRateLabel);
     this.memberBox.Controls.Add(this.teamPriceLabel);
     this.memberBox.Controls.Add(this.memberList);
     this.memberBox.Location = new System.Drawing.Point(10, 340);
     this.memberBox.Name     = "memberBox";
     this.memberBox.Size     = new System.Drawing.Size(380, 115);
     this.memberBox.TabIndex = 29;
     this.memberBox.TabStop  = false;
     this.memberBox.Text     = "Danh sách thành viên tổ đội";
     //
     // teamLevelLabel
     //
     this.teamLevelLabel.AutoSize = true;
     this.teamLevelLabel.Location = new System.Drawing.Point(8, 20);
     this.teamLevelLabel.Name     = "teamLevelLabel";
     this.teamLevelLabel.Size     = new System.Drawing.Size(44, 13);
     this.teamLevelLabel.TabIndex = 24;
     this.teamLevelLabel.Text     = "Cấp: 99";
     //
     // teamRateLabel
     //
     this.teamRateLabel.AutoSize = true;
     this.teamRateLabel.Location = new System.Drawing.Point(180, 20);
     this.teamRateLabel.Name     = "teamRateLabel";
     this.teamRateLabel.Size     = new System.Drawing.Size(94, 13);
     this.teamRateLabel.TabIndex = 23;
     this.teamRateLabel.Text     = "Tỉ lệ: 999% - 999%";
     //
     // teamPriceLabel
     //
     this.teamPriceLabel.AutoSize = true;
     this.teamPriceLabel.Location = new System.Drawing.Point(70, 20);
     this.teamPriceLabel.Name     = "teamPriceLabel";
     this.teamPriceLabel.Size     = new System.Drawing.Size(98, 13);
     this.teamPriceLabel.TabIndex = 18;
     this.teamPriceLabel.Text     = "Giá: 99999 - 99999";
     //
     // memberList
     //
     this.memberList.AllColumns.Add(this.memberColumn);
     this.memberList.AllColumns.Add(this.kickColumn);
     this.memberList.CellEditUseWholeCell = false;
     this.memberList.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.memberColumn,
         this.kickColumn
     });
     this.memberList.Cursor      = System.Windows.Forms.Cursors.Default;
     this.memberList.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None;
     this.memberList.Location    = new System.Drawing.Point(10, 40);
     this.memberList.MultiSelect = false;
     this.memberList.Name        = "memberList";
     this.memberList.ShowGroups  = false;
     this.memberList.Size        = new System.Drawing.Size(360, 64);
     this.memberList.TabIndex    = 22;
     this.memberList.UseCompatibleStateImageBehavior = false;
     this.memberList.View         = System.Windows.Forms.View.Details;
     this.memberList.ButtonClick += new System.EventHandler <BrightIdeasSoftware.CellClickEventArgs>(this.memberList_ButtonClick);
     //
     // memberColumn
     //
     this.memberColumn.AspectName = "";
     this.memberColumn.Width      = 200;
     //
     // kickColumn
     //
     this.kickColumn.AspectName           = "Name";
     this.kickColumn.AspectToStringFormat = "KICK";
     this.kickColumn.ButtonSizing         = BrightIdeasSoftware.OLVColumn.ButtonSizingMode.CellBounds;
     this.kickColumn.IsButton             = true;
     this.kickColumn.Width = 55;
     //
     // baseInfoBox
     //
     this.baseInfoBox.Controls.Add(this.spinnerRateLabel);
     this.baseInfoBox.Controls.Add(this.numLabel);
     this.baseInfoBox.Controls.Add(this.spinnerLevelLabel);
     this.baseInfoBox.Controls.Add(this.priceLabel);
     this.baseInfoBox.Location = new System.Drawing.Point(10, 45);
     this.baseInfoBox.Name     = "baseInfoBox";
     this.baseInfoBox.Size     = new System.Drawing.Size(380, 45);
     this.baseInfoBox.TabIndex = 31;
     this.baseInfoBox.TabStop  = false;
     this.baseInfoBox.Text     = "Thông tin cơ bản";
     //
     // spinnerRateLabel
     //
     this.spinnerRateLabel.AutoSize = true;
     this.spinnerRateLabel.Location = new System.Drawing.Point(105, 20);
     this.spinnerRateLabel.Name     = "spinnerRateLabel";
     this.spinnerRateLabel.Size     = new System.Drawing.Size(78, 13);
     this.spinnerRateLabel.TabIndex = 16;
     this.spinnerRateLabel.Text     = "Tỉ lệ: 999 - 999";
     //
     // numLabel
     //
     this.numLabel.AutoSize = true;
     this.numLabel.Location = new System.Drawing.Point(310, 20);
     this.numLabel.Name     = "numLabel";
     this.numLabel.Size     = new System.Drawing.Size(63, 13);
     this.numLabel.TabIndex = 14;
     this.numLabel.Text     = "Lượt: 99/99";
     //
     // spinnerLevelLabel
     //
     this.spinnerLevelLabel.AutoSize = true;
     this.spinnerLevelLabel.Location = new System.Drawing.Point(8, 20);
     this.spinnerLevelLabel.Name     = "spinnerLevelLabel";
     this.spinnerLevelLabel.Size     = new System.Drawing.Size(95, 13);
     this.spinnerLevelLabel.TabIndex = 15;
     this.spinnerLevelLabel.Text     = "Công nhân: Lv. 99";
     //
     // priceLabel
     //
     this.priceLabel.AutoSize = true;
     this.priceLabel.Location = new System.Drawing.Point(185, 20);
     this.priceLabel.Name     = "priceLabel";
     this.priceLabel.Size     = new System.Drawing.Size(123, 13);
     this.priceLabel.TabIndex = 13;
     this.priceLabel.Text     = "Giá bán: 999 ▲ (Xuống)";
     //
     // teamBox
     //
     this.teamBox.Controls.Add(this.textileLevelInput);
     this.teamBox.Controls.Add(label4);
     this.teamBox.Controls.Add(this.quitAndMakeButton);
     this.teamBox.Controls.Add(this.createLegionButton);
     this.teamBox.Controls.Add(this.createNationButton);
     this.teamBox.Controls.Add(this.inviteButton);
     this.teamBox.Controls.Add(this.quitButton);
     this.teamBox.Controls.Add(this.disbandButton);
     this.teamBox.Controls.Add(this.makeButton);
     this.teamBox.Controls.Add(this.teamList);
     this.teamBox.Location = new System.Drawing.Point(10, 95);
     this.teamBox.Name     = "teamBox";
     this.teamBox.Size     = new System.Drawing.Size(380, 235);
     this.teamBox.TabIndex = 28;
     this.teamBox.TabStop  = false;
     this.teamBox.Text     = "Danh sách tổ đội";
     //
     // textileLevelInput
     //
     this.textileLevelInput.Location = new System.Drawing.Point(319, 205);
     this.textileLevelInput.Maximum  = new decimal(new int[] {
         70,
         0,
         0,
         0
     });
     this.textileLevelInput.Minimum = new decimal(new int[] {
         1,
         0,
         0,
         0
     });
     this.textileLevelInput.Name      = "textileLevelInput";
     this.textileLevelInput.Size      = new System.Drawing.Size(50, 20);
     this.textileLevelInput.TabIndex  = 33;
     this.textileLevelInput.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.textileLevelInput.Value     = new decimal(new int[] {
         21,
         0,
         0,
         0
     });
     //
     // label4
     //
     label4.AutoSize = true;
     label4.Location = new System.Drawing.Point(185, 207);
     label4.Name     = "label4";
     label4.Size     = new System.Drawing.Size(120, 13);
     label4.TabIndex = 32;
     label4.Text     = "Lập tổ đội dùng cấp vải";
     //
     // quitAndMakeButton
     //
     this.quitAndMakeButton.Location = new System.Drawing.Point(265, 165);
     this.quitAndMakeButton.Name     = "quitAndMakeButton";
     this.quitAndMakeButton.Size     = new System.Drawing.Size(105, 30);
     this.quitAndMakeButton.TabIndex = 31;
     this.quitAndMakeButton.Text     = "Thoát và chế tạo";
     this.quitAndMakeButton.UseVisualStyleBackColor = true;
     this.quitAndMakeButton.Click += new System.EventHandler(this.quitAndMakeButton_Click);
     //
     // createLegionButton
     //
     this.createLegionButton.Location = new System.Drawing.Point(95, 198);
     this.createLegionButton.Name     = "createLegionButton";
     this.createLegionButton.Size     = new System.Drawing.Size(80, 30);
     this.createLegionButton.TabIndex = 30;
     this.createLegionButton.Text     = "Lập bang";
     this.createLegionButton.UseVisualStyleBackColor = true;
     this.createLegionButton.Click += new System.EventHandler(this.createLegionButton_Click);
     //
     // createNationButton
     //
     this.createNationButton.Location = new System.Drawing.Point(10, 198);
     this.createNationButton.Name     = "createNationButton";
     this.createNationButton.Size     = new System.Drawing.Size(80, 30);
     this.createNationButton.TabIndex = 29;
     this.createNationButton.Text     = "Lập quốc gia";
     this.createNationButton.UseVisualStyleBackColor = true;
     this.createNationButton.Click += new System.EventHandler(this.createButton_Click);
     //
     // inviteButton
     //
     this.inviteButton.Enabled  = false;
     this.inviteButton.Location = new System.Drawing.Point(10, 200);
     this.inviteButton.Name     = "inviteButton";
     this.inviteButton.Size     = new System.Drawing.Size(0, 0);
     this.inviteButton.TabIndex = 28;
     this.inviteButton.Text     = "Mời";
     this.inviteButton.UseVisualStyleBackColor = true;
     //
     // quitButton
     //
     this.quitButton.Location = new System.Drawing.Point(180, 165);
     this.quitButton.Name     = "quitButton";
     this.quitButton.Size     = new System.Drawing.Size(80, 30);
     this.quitButton.TabIndex = 27;
     this.quitButton.Text     = "Thoát";
     this.quitButton.UseVisualStyleBackColor = true;
     this.quitButton.Click += new System.EventHandler(this.quitButton_Click);
     //
     // disbandButton
     //
     this.disbandButton.Location = new System.Drawing.Point(95, 165);
     this.disbandButton.Name     = "disbandButton";
     this.disbandButton.Size     = new System.Drawing.Size(80, 30);
     this.disbandButton.TabIndex = 26;
     this.disbandButton.Text     = "Giải tán";
     this.disbandButton.UseVisualStyleBackColor = true;
     this.disbandButton.Click += new System.EventHandler(this.disbandButton_Click);
     //
     // makeButton
     //
     this.makeButton.Location = new System.Drawing.Point(10, 165);
     this.makeButton.Name     = "makeButton";
     this.makeButton.Size     = new System.Drawing.Size(80, 30);
     this.makeButton.TabIndex = 24;
     this.makeButton.Text     = "Chế tạo";
     this.makeButton.UseVisualStyleBackColor = true;
     this.makeButton.Click += new System.EventHandler(this.makeButton_Click);
     //
     // teamList
     //
     this.teamList.AllColumns.Add(this.teamColumn);
     this.teamList.AllColumns.Add(this.joinColumn);
     this.teamList.CellEditUseWholeCell = false;
     this.teamList.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.teamColumn,
         this.joinColumn
     });
     this.teamList.Cursor      = System.Windows.Forms.Cursors.Default;
     this.teamList.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None;
     this.teamList.Location    = new System.Drawing.Point(10, 20);
     this.teamList.MultiSelect = false;
     this.teamList.Name        = "teamList";
     this.teamList.ShowGroups  = false;
     this.teamList.Size        = new System.Drawing.Size(360, 140);
     this.teamList.TabIndex    = 22;
     this.teamList.UseCompatibleStateImageBehavior = false;
     this.teamList.View         = System.Windows.Forms.View.Details;
     this.teamList.ButtonClick += new System.EventHandler <BrightIdeasSoftware.CellClickEventArgs>(this.teamList_ButtonClick);
     //
     // teamColumn
     //
     this.teamColumn.AspectName = "";
     this.teamColumn.Width      = 280;
     //
     // joinColumn
     //
     this.joinColumn.AspectName           = "Name";
     this.joinColumn.AspectToStringFormat = "Gia nhập";
     this.joinColumn.ButtonSizing         = BrightIdeasSoftware.OLVColumn.ButtonSizingMode.CellBounds;
     this.joinColumn.IsButton             = true;
     this.joinColumn.Width = 55;
     //
     // refreshTeamInterval
     //
     this.refreshTeamInterval.Location = new System.Drawing.Point(269, 16);
     this.refreshTeamInterval.Maximum  = new decimal(new int[] {
         5000,
         0,
         0,
         0
     });
     this.refreshTeamInterval.Minimum = new decimal(new int[] {
         500,
         0,
         0,
         0
     });
     this.refreshTeamInterval.Name      = "refreshTeamInterval";
     this.refreshTeamInterval.Size      = new System.Drawing.Size(60, 20);
     this.refreshTeamInterval.TabIndex  = 31;
     this.refreshTeamInterval.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.refreshTeamInterval.Value     = new decimal(new int[] {
         1000,
         0,
         0,
         0
     });
     this.refreshTeamInterval.ValueChanged += new System.EventHandler(this.refreshTeamInterval_ValueChanged);
     //
     // autoRefreshTeamBox
     //
     this.autoRefreshTeamBox.AutoSize = true;
     this.autoRefreshTeamBox.Location = new System.Drawing.Point(115, 17);
     this.autoRefreshTeamBox.Name     = "autoRefreshTeamBox";
     this.autoRefreshTeamBox.Size     = new System.Drawing.Size(157, 17);
     this.autoRefreshTeamBox.TabIndex = 30;
     this.autoRefreshTeamBox.Text     = "Tự động làm mới tổ đội (ms)";
     this.autoRefreshTeamBox.UseVisualStyleBackColor = true;
     this.autoRefreshTeamBox.CheckedChanged         += new System.EventHandler(this.autoRefreshTeamBox_CheckedChanged);
     //
     // label1
     //
     label1.AutoSize = true;
     label1.Location = new System.Drawing.Point(15, 250);
     label1.Name     = "label1";
     label1.Size     = new System.Drawing.Size(259, 65);
     label1.TabIndex = 39;
     label1.Text     = "Chú ý:\r\n- Để trống thì ai vào cũng được.\r\n- Tên người chơi phân cách nhau bởi dấu" +
                       " phẩy.\r\n- Nhập đúng tên kể cả chữ viết hoa viết thường.\r\n- Những ai không đủ điề" +
                       "u kiện thì sẽ bị kick ra tổ đội.";
     //
     // label2
     //
     label2.AutoSize = true;
     label2.Location = new System.Drawing.Point(30, 200);
     label2.Name     = "label2";
     label2.Size     = new System.Drawing.Size(43, 13);
     label2.TabIndex = 40;
     label2.Text     = "- Slot 1:";
     //
     // label3
     //
     label3.AutoSize = true;
     label3.Location = new System.Drawing.Point(30, 225);
     label3.Name     = "label3";
     label3.Size     = new System.Drawing.Size(43, 13);
     label3.TabIndex = 41;
     label3.Text     = "- Slot 2:";
     //
     // label5
     //
     label5.AutoSize = true;
     label5.Location = new System.Drawing.Point(15, 175);
     label5.Name     = "label5";
     label5.Size     = new System.Drawing.Size(237, 13);
     label5.TabIndex = 43;
     label5.Text     = "Chỉ dệt khi có những người chơi sau trong tổ đội:";
     //
     // autoTextileLevelInput
     //
     this.autoTextileLevelInput.Location = new System.Drawing.Point(210, 14);
     this.autoTextileLevelInput.Maximum  = new decimal(new int[] {
         70,
         0,
         0,
         0
     });
     this.autoTextileLevelInput.Minimum = new decimal(new int[] {
         1,
         0,
         0,
         0
     });
     this.autoTextileLevelInput.Name      = "autoTextileLevelInput";
     this.autoTextileLevelInput.Size      = new System.Drawing.Size(50, 20);
     this.autoTextileLevelInput.TabIndex  = 31;
     this.autoTextileLevelInput.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.autoTextileLevelInput.Value     = new decimal(new int[] {
         21,
         0,
         0,
         0
     });
     //
     // refreshTeamTimer
     //
     this.refreshTeamTimer.Enabled  = true;
     this.refreshTeamTimer.Interval = 1000;
     this.refreshTeamTimer.Tick    += new System.EventHandler(this.refreshTeamTimer_Tick);
     //
     // autoQuitAndMake
     //
     this.autoQuitAndMake.AutoSize = true;
     this.autoQuitAndMake.Location = new System.Drawing.Point(15, 85);
     this.autoQuitAndMake.Name     = "autoQuitAndMake";
     this.autoQuitAndMake.Size     = new System.Drawing.Size(250, 17);
     this.autoQuitAndMake.TabIndex = 32;
     this.autoQuitAndMake.Text     = "Tự thoát và dệt khi có 3 người (chế độ kéo vải)";
     this.autoQuitAndMake.UseVisualStyleBackColor = true;
     //
     // autoCreate
     //
     this.autoCreate.AutoSize = true;
     this.autoCreate.Location = new System.Drawing.Point(15, 15);
     this.autoCreate.Name     = "autoCreate";
     this.autoCreate.Size     = new System.Drawing.Size(192, 17);
     this.autoCreate.TabIndex = 33;
     this.autoCreate.Text     = "Tự lập tổ đội bang sử dụng cấp vải";
     this.autoCreate.UseVisualStyleBackColor = true;
     //
     // autoMake
     //
     this.autoMake.AutoSize = true;
     this.autoMake.Location = new System.Drawing.Point(15, 50);
     this.autoMake.Name     = "autoMake";
     this.autoMake.Size     = new System.Drawing.Size(160, 17);
     this.autoMake.TabIndex = 34;
     this.autoMake.Text     = "Tự dệt chung khi có 3 người";
     this.autoMake.UseVisualStyleBackColor = true;
     //
     // tabControl
     //
     this.tabControl.Controls.Add(interfaceTab);
     this.tabControl.Controls.Add(this.configTab);
     this.tabControl.Dock          = System.Windows.Forms.DockStyle.Fill;
     this.tabControl.Location      = new System.Drawing.Point(0, 0);
     this.tabControl.Name          = "tabControl";
     this.tabControl.SelectedIndex = 0;
     this.tabControl.Size          = new System.Drawing.Size(410, 490);
     this.tabControl.TabIndex      = 35;
     //
     // configTab
     //
     this.configTab.Controls.Add(label5);
     this.configTab.Controls.Add(this.slot2PlayerInput);
     this.configTab.Controls.Add(label3);
     this.configTab.Controls.Add(label2);
     this.configTab.Controls.Add(label1);
     this.configTab.Controls.Add(this.slot1PlayerInput);
     this.configTab.Controls.Add(noteLabel);
     this.configTab.Controls.Add(this.autoTextileLevelInput);
     this.configTab.Controls.Add(this.autoQuitAndMake);
     this.configTab.Controls.Add(this.autoMake);
     this.configTab.Controls.Add(this.autoCreate);
     this.configTab.Location = new System.Drawing.Point(4, 22);
     this.configTab.Name     = "configTab";
     this.configTab.Padding  = new System.Windows.Forms.Padding(3);
     this.configTab.Size     = new System.Drawing.Size(402, 464);
     this.configTab.TabIndex = 1;
     this.configTab.Text     = "Cấu hình";
     this.configTab.UseVisualStyleBackColor = true;
     //
     // slot2PlayerInput
     //
     this.slot2PlayerInput.Location = new System.Drawing.Point(80, 222);
     this.slot2PlayerInput.Name     = "slot2PlayerInput";
     this.slot2PlayerInput.Size     = new System.Drawing.Size(280, 20);
     this.slot2PlayerInput.TabIndex = 42;
     //
     // slot1PlayerInput
     //
     this.slot1PlayerInput.Location = new System.Drawing.Point(80, 197);
     this.slot1PlayerInput.Name     = "slot1PlayerInput";
     this.slot1PlayerInput.Size     = new System.Drawing.Size(280, 20);
     this.slot1PlayerInput.TabIndex = 38;
     //
     // btBuyWeave
     //
     this.btBuyWeave.Location = new System.Drawing.Point(331, 16);
     this.btBuyWeave.Name     = "btBuyWeave";
     this.btBuyWeave.Size     = new System.Drawing.Size(68, 23);
     this.btBuyWeave.TabIndex = 32;
     this.btBuyWeave.Text     = "Mua Lượt";
     this.btBuyWeave.UseVisualStyleBackColor = true;
     this.btBuyWeave.Click += new System.EventHandler(this.btBuyWeave_Click);
     //
     // WeaveView
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.tabControl);
     this.Name = "WeaveView";
     this.Size = new System.Drawing.Size(410, 490);
     interfaceTab.ResumeLayout(false);
     interfaceTab.PerformLayout();
     this.memberBox.ResumeLayout(false);
     this.memberBox.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.memberList)).EndInit();
     this.baseInfoBox.ResumeLayout(false);
     this.baseInfoBox.PerformLayout();
     this.teamBox.ResumeLayout(false);
     this.teamBox.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textileLevelInput)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.teamList)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.refreshTeamInterval)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.autoTextileLevelInput)).EndInit();
     this.tabControl.ResumeLayout(false);
     this.configTab.ResumeLayout(false);
     this.configTab.PerformLayout();
     this.ResumeLayout(false);
 }
        /// <summary>
        /// デザイナ サポートに必要なメソッドです。このメソッドの内容を
        /// コード エディタで変更しないでください。
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.Windows.Forms.TabPage perModelSimulationParametersPage;
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SimulationConfigurationDialog));
            System.Windows.Forms.Label label6;
            System.Windows.Forms.Label label5;
            System.Windows.Forms.Label label3;
            System.Windows.Forms.Label label4;
            this.initialParameters = new System.Windows.Forms.DataGridView();
            this.keyDataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.valueDataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.initialContextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.deleteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.initialConditionsBindingSource = new System.Windows.Forms.BindingSource(this.components);
            this.modelCombo = new System.Windows.Forms.ComboBox();
            this.perModelSimulationParameterBindingSource = new System.Windows.Forms.BindingSource(this.components);
            this.m_simParamSets = new System.Windows.Forms.BindingSource(this.components);
            this.propertiesBindingSource = new System.Windows.Forms.BindingSource(this.components);
            this.propertiesBindingSource1 = new System.Windows.Forms.BindingSource(this.components);
            this.steppersBindingSource = new System.Windows.Forms.BindingSource(this.components);
            this.SSCreateButton = new System.Windows.Forms.Button();
            this.paramCombo = new System.Windows.Forms.ComboBox();
            this.SSDeleteButton = new System.Windows.Forms.Button();
            this.SSApplyButton = new System.Windows.Forms.Button();
            this.SSCloseButton = new System.Windows.Forms.Button();
            this.configurationLabel = new System.Windows.Forms.Label();
            this.loggingPage = new System.Windows.Forms.TabPage();
            this.groupBox2 = new System.Windows.Forms.GroupBox();
            this.overrideRadio = new System.Windows.Forms.RadioButton();
            this.exceptionRadio = new System.Windows.Forms.RadioButton();
            this.groupBox3 = new System.Windows.Forms.GroupBox();
            this.noLimitRadio = new System.Windows.Forms.RadioButton();
            this.maxKbTextBox = new System.Windows.Forms.TextBox();
            this.maxSizeRadio = new System.Windows.Forms.RadioButton();
            this.groupBox1 = new System.Windows.Forms.GroupBox();
            this.freqBySecRadio = new System.Windows.Forms.RadioButton();
            this.freqBySecTextBox = new System.Windows.Forms.TextBox();
            this.freqByStepRadio = new System.Windows.Forms.RadioButton();
            this.freqByStepTextBox = new System.Windows.Forms.TextBox();
            this.tabControl1 = new System.Windows.Forms.TabControl();
            this.simSettingToolTip = new System.Windows.Forms.ToolTip(this.components);
            this.SSImportButton = new System.Windows.Forms.Button();
            this.SSExportButton = new System.Windows.Forms.Button();
            this.SSSaveFileDialog = new System.Windows.Forms.SaveFileDialog();
            this.SSOpenFileDialog = new System.Windows.Forms.OpenFileDialog();
            perModelSimulationParametersPage = new System.Windows.Forms.TabPage();
            label6 = new System.Windows.Forms.Label();
            label5 = new System.Windows.Forms.Label();
            label3 = new System.Windows.Forms.Label();
            label4 = new System.Windows.Forms.Label();
            perModelSimulationParametersPage.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.initialParameters)).BeginInit();
            this.initialContextMenuStrip.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.initialConditionsBindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.perModelSimulationParameterBindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.m_simParamSets)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.propertiesBindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.propertiesBindingSource1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.steppersBindingSource)).BeginInit();
            this.loggingPage.SuspendLayout();
            this.groupBox2.SuspendLayout();
            this.groupBox3.SuspendLayout();
            this.groupBox1.SuspendLayout();
            this.tabControl1.SuspendLayout();
            this.SuspendLayout();
            // 
            // perModelSimulationParametersPage
            // 
            perModelSimulationParametersPage.Controls.Add(this.initialParameters);
            perModelSimulationParametersPage.Controls.Add(label6);
            perModelSimulationParametersPage.Controls.Add(this.modelCombo);
            resources.ApplyResources(perModelSimulationParametersPage, "perModelSimulationParametersPage");
            perModelSimulationParametersPage.Name = "perModelSimulationParametersPage";
            perModelSimulationParametersPage.UseVisualStyleBackColor = true;
            // 
            // initialParameters
            // 
            this.initialParameters.AllowUserToAddRows = false;
            this.initialParameters.AllowUserToResizeRows = false;
            this.initialParameters.AutoGenerateColumns = false;
            this.initialParameters.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
            dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control;
            dataGridViewCellStyle1.Font = new System.Drawing.Font("MS UI Gothic", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
            dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.WindowText;
            dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
            dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
            this.initialParameters.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
            this.initialParameters.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
            this.initialParameters.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
            this.keyDataGridViewTextBoxColumn1,
            this.valueDataGridViewTextBoxColumn1});
            this.initialParameters.ContextMenuStrip = this.initialContextMenuStrip;
            this.initialParameters.DataSource = this.initialConditionsBindingSource;
            resources.ApplyResources(this.initialParameters, "initialParameters");
            this.initialParameters.MultiSelect = false;
            this.initialParameters.Name = "initialParameters";
            this.initialParameters.RowHeadersVisible = false;
            this.initialParameters.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
            this.initialParameters.RowTemplate.Height = 21;
            this.initialParameters.DataError += new System.Windows.Forms.DataGridViewDataErrorEventHandler(this.InitialParameterDataError);
            // 
            // keyDataGridViewTextBoxColumn1
            // 
            this.keyDataGridViewTextBoxColumn1.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
            this.keyDataGridViewTextBoxColumn1.DataPropertyName = "Key";
            this.keyDataGridViewTextBoxColumn1.FillWeight = 80F;
            resources.ApplyResources(this.keyDataGridViewTextBoxColumn1, "keyDataGridViewTextBoxColumn1");
            this.keyDataGridViewTextBoxColumn1.Name = "keyDataGridViewTextBoxColumn1";
            this.keyDataGridViewTextBoxColumn1.ReadOnly = true;
            // 
            // valueDataGridViewTextBoxColumn1
            // 
            this.valueDataGridViewTextBoxColumn1.DataPropertyName = "Value";
            this.valueDataGridViewTextBoxColumn1.FillWeight = 20F;
            resources.ApplyResources(this.valueDataGridViewTextBoxColumn1, "valueDataGridViewTextBoxColumn1");
            this.valueDataGridViewTextBoxColumn1.Name = "valueDataGridViewTextBoxColumn1";
            // 
            // initialContextMenuStrip
            // 
            this.initialContextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.deleteToolStripMenuItem});
            this.initialContextMenuStrip.Name = "initialContextMenuStrip";
            resources.ApplyResources(this.initialContextMenuStrip, "initialContextMenuStrip");
            this.initialContextMenuStrip.Opening += new System.ComponentModel.CancelEventHandler(this.initialContextMenuStrip_Opening);
            // 
            // deleteToolStripMenuItem
            // 
            this.deleteToolStripMenuItem.Name = "deleteToolStripMenuItem";
            resources.ApplyResources(this.deleteToolStripMenuItem, "deleteToolStripMenuItem");
            this.deleteToolStripMenuItem.Click += new System.EventHandler(this.deleteToolStripMenuItem_Click);
            // 
            // initialConditionsBindingSource
            // 
            this.initialConditionsBindingSource.DataSource = typeof(Ecell.IDE.Plugins.Simulation.MutableKeyValuePair<string, double>);
            this.initialConditionsBindingSource.DataError += new System.Windows.Forms.BindingManagerDataErrorEventHandler(this.initialConditionsBindingSource_DataError);
            // 
            // label6
            // 
            resources.ApplyResources(label6, "label6");
            label6.Name = "label6";
            // 
            // modelCombo
            // 
            resources.ApplyResources(this.modelCombo, "modelCombo");
            this.modelCombo.DataSource = this.perModelSimulationParameterBindingSource;
            this.modelCombo.DisplayMember = "ModelID";
            this.modelCombo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.modelCombo.FormattingEnabled = true;
            this.modelCombo.Name = "modelCombo";
            // 
            // perModelSimulationParameterBindingSource
            // 
            this.perModelSimulationParameterBindingSource.DataMember = "PerModelSimulationParameters";
            this.perModelSimulationParameterBindingSource.DataSource = this.m_simParamSets;
            // 
            // m_simParamSets
            // 
            this.m_simParamSets.AllowNew = true;
            this.m_simParamSets.DataSource = typeof(Ecell.IDE.Plugins.Simulation.SimulationParameterSet);
            this.m_simParamSets.CurrentChanged += new System.EventHandler(this.m_simParamSets_CurrentChanged);
            // 
            // label5
            // 
            resources.ApplyResources(label5, "label5");
            label5.Name = "label5";
            // 
            // label3
            // 
            resources.ApplyResources(label3, "label3");
            label3.Name = "label3";
            // 
            // label4
            // 
            resources.ApplyResources(label4, "label4");
            label4.Name = "label4";
            // 
            // propertiesBindingSource
            // 
            this.propertiesBindingSource.DataSource = this.propertiesBindingSource1;
            this.propertiesBindingSource.DataError += new System.Windows.Forms.BindingManagerDataErrorEventHandler(this.propertiesBindingSource_DataError);
            // 
            // propertiesBindingSource1
            // 
            this.propertiesBindingSource1.DataMember = "Properties";
            this.propertiesBindingSource1.DataSource = this.steppersBindingSource;
            // 
            // steppersBindingSource
            // 
            this.steppersBindingSource.DataSource = typeof(Ecell.IDE.Plugins.Simulation.StepperConfiguration);
            // 
            // SSCreateButton
            // 
            resources.ApplyResources(this.SSCreateButton, "SSCreateButton");
            this.SSCreateButton.Name = "SSCreateButton";
            this.SSCreateButton.UseVisualStyleBackColor = true;
            this.SSCreateButton.Click += new System.EventHandler(this.NewButtonClick);
            // 
            // paramCombo
            // 
            resources.ApplyResources(this.paramCombo, "paramCombo");
            this.paramCombo.DataSource = this.m_simParamSets;
            this.paramCombo.DisplayMember = "Name";
            this.paramCombo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.paramCombo.FormattingEnabled = true;
            this.paramCombo.Name = "paramCombo";
            // 
            // SSDeleteButton
            // 
            resources.ApplyResources(this.SSDeleteButton, "SSDeleteButton");
            this.SSDeleteButton.Name = "SSDeleteButton";
            this.SSDeleteButton.UseVisualStyleBackColor = true;
            this.SSDeleteButton.Click += new System.EventHandler(this.DeleteButtonClick);
            // 
            // SSApplyButton
            // 
            resources.ApplyResources(this.SSApplyButton, "SSApplyButton");
            this.SSApplyButton.DialogResult = System.Windows.Forms.DialogResult.OK;
            this.SSApplyButton.Name = "SSApplyButton";
            this.SSApplyButton.UseVisualStyleBackColor = true;
            // 
            // SSCloseButton
            // 
            resources.ApplyResources(this.SSCloseButton, "SSCloseButton");
            this.SSCloseButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
            this.SSCloseButton.Name = "SSCloseButton";
            this.SSCloseButton.UseVisualStyleBackColor = true;
            // 
            // configurationLabel
            // 
            resources.ApplyResources(this.configurationLabel, "configurationLabel");
            this.configurationLabel.Name = "configurationLabel";
            // 
            // loggingPage
            // 
            this.loggingPage.Controls.Add(this.groupBox2);
            this.loggingPage.Controls.Add(this.groupBox3);
            this.loggingPage.Controls.Add(this.groupBox1);
            resources.ApplyResources(this.loggingPage, "loggingPage");
            this.loggingPage.Name = "loggingPage";
            this.loggingPage.UseVisualStyleBackColor = true;
            // 
            // groupBox2
            // 
            resources.ApplyResources(this.groupBox2, "groupBox2");
            this.groupBox2.Controls.Add(this.overrideRadio);
            this.groupBox2.Controls.Add(this.exceptionRadio);
            this.groupBox2.Name = "groupBox2";
            this.groupBox2.TabStop = false;
            // 
            // overrideRadio
            // 
            resources.ApplyResources(this.overrideRadio, "overrideRadio");
            this.overrideRadio.Name = "overrideRadio";
            this.overrideRadio.UseVisualStyleBackColor = true;
            this.overrideRadio.CheckedChanged += new System.EventHandler(this.overrideRadio_CheckedChanged);
            // 
            // exceptionRadio
            // 
            resources.ApplyResources(this.exceptionRadio, "exceptionRadio");
            this.exceptionRadio.Checked = true;
            this.exceptionRadio.Name = "exceptionRadio";
            this.exceptionRadio.TabStop = true;
            this.exceptionRadio.UseVisualStyleBackColor = true;
            // 
            // groupBox3
            // 
            resources.ApplyResources(this.groupBox3, "groupBox3");
            this.groupBox3.Controls.Add(label5);
            this.groupBox3.Controls.Add(this.noLimitRadio);
            this.groupBox3.Controls.Add(this.maxKbTextBox);
            this.groupBox3.Controls.Add(this.maxSizeRadio);
            this.groupBox3.Name = "groupBox3";
            this.groupBox3.TabStop = false;
            // 
            // noLimitRadio
            // 
            resources.ApplyResources(this.noLimitRadio, "noLimitRadio");
            this.noLimitRadio.Checked = true;
            this.noLimitRadio.Name = "noLimitRadio";
            this.noLimitRadio.TabStop = true;
            this.noLimitRadio.UseVisualStyleBackColor = true;
            this.noLimitRadio.CheckedChanged += new System.EventHandler(this.noLimitRadio_CheckedChanged);
            // 
            // maxKbTextBox
            // 
            resources.ApplyResources(this.maxKbTextBox, "maxKbTextBox");
            this.maxKbTextBox.Name = "maxKbTextBox";
            this.maxKbTextBox.Validated += new System.EventHandler(this.maxKbTextBox_Validated);
            this.maxKbTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.maxKbTextBox_Validating);
            // 
            // maxSizeRadio
            // 
            resources.ApplyResources(this.maxSizeRadio, "maxSizeRadio");
            this.maxSizeRadio.Name = "maxSizeRadio";
            this.maxSizeRadio.UseVisualStyleBackColor = true;
            // 
            // groupBox1
            // 
            resources.ApplyResources(this.groupBox1, "groupBox1");
            this.groupBox1.Controls.Add(label4);
            this.groupBox1.Controls.Add(label3);
            this.groupBox1.Controls.Add(this.freqBySecRadio);
            this.groupBox1.Controls.Add(this.freqBySecTextBox);
            this.groupBox1.Controls.Add(this.freqByStepRadio);
            this.groupBox1.Controls.Add(this.freqByStepTextBox);
            this.groupBox1.Name = "groupBox1";
            this.groupBox1.TabStop = false;
            // 
            // freqBySecRadio
            // 
            resources.ApplyResources(this.freqBySecRadio, "freqBySecRadio");
            this.freqBySecRadio.Name = "freqBySecRadio";
            this.freqBySecRadio.UseVisualStyleBackColor = true;
            // 
            // freqBySecTextBox
            // 
            resources.ApplyResources(this.freqBySecTextBox, "freqBySecTextBox");
            this.freqBySecTextBox.Name = "freqBySecTextBox";
            this.freqBySecTextBox.TextChanged += new System.EventHandler(this.freqBySecTextBox_TextChanged);
            this.freqBySecTextBox.Validated += new System.EventHandler(this.freqBySecTextBox_Validated);
            this.freqBySecTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.freqBySecTextBox_Validating);
            // 
            // freqByStepRadio
            // 
            resources.ApplyResources(this.freqByStepRadio, "freqByStepRadio");
            this.freqByStepRadio.Checked = true;
            this.freqByStepRadio.Name = "freqByStepRadio";
            this.freqByStepRadio.TabStop = true;
            this.freqByStepRadio.UseVisualStyleBackColor = true;
            this.freqByStepRadio.CheckedChanged += new System.EventHandler(this.freqByStepRadio_CheckedChanged);
            // 
            // freqByStepTextBox
            // 
            resources.ApplyResources(this.freqByStepTextBox, "freqByStepTextBox");
            this.freqByStepTextBox.Name = "freqByStepTextBox";
            this.freqByStepTextBox.TextChanged += new System.EventHandler(this.freqByStepTextBox_TextChanged);
            this.freqByStepTextBox.Validated += new System.EventHandler(this.freqByStepTextBox_Validated);
            this.freqByStepTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.freqByStepTextBox_Validating);
            // 
            // tabControl1
            // 
            resources.ApplyResources(this.tabControl1, "tabControl1");
            this.tabControl1.Controls.Add(perModelSimulationParametersPage);
            this.tabControl1.Controls.Add(this.loggingPage);
            this.tabControl1.Name = "tabControl1";
            this.tabControl1.SelectedIndex = 0;
            // 
            // SSImportButton
            // 
            resources.ApplyResources(this.SSImportButton, "SSImportButton");
            this.SSImportButton.Name = "SSImportButton";
            this.SSImportButton.UseVisualStyleBackColor = true;
            this.SSImportButton.Click += new System.EventHandler(this.ImportSimulationParameterClicked);
            // 
            // SSExportButton
            // 
            resources.ApplyResources(this.SSExportButton, "SSExportButton");
            this.SSExportButton.Name = "SSExportButton";
            this.SSExportButton.UseVisualStyleBackColor = true;
            this.SSExportButton.Click += new System.EventHandler(this.ExportSimulationParameterClicked);
            // 
            // SSOpenFileDialog
            // 
            this.SSOpenFileDialog.FileName = "openFileDialog1";
            // 
            // SimulationConfigurationDialog
            // 
            this.AcceptButton = this.SSApplyButton;
            resources.ApplyResources(this, "$this");
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.CancelButton = this.SSCloseButton;
            this.Controls.Add(this.SSExportButton);
            this.Controls.Add(this.SSImportButton);
            this.Controls.Add(this.tabControl1);
            this.Controls.Add(this.SSApplyButton);
            this.Controls.Add(this.SSCloseButton);
            this.Controls.Add(this.configurationLabel);
            this.Controls.Add(this.SSDeleteButton);
            this.Controls.Add(this.SSCreateButton);
            this.Controls.Add(this.paramCombo);
            this.Name = "SimulationConfigurationDialog";
            this.Load += new System.EventHandler(this.SimulationConfigurationDialog_Load);
            this.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.SetupKeyPress);
            this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.SimulationConfigurationDialog_FormClosing);
            perModelSimulationParametersPage.ResumeLayout(false);
            perModelSimulationParametersPage.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.initialParameters)).EndInit();
            this.initialContextMenuStrip.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.initialConditionsBindingSource)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.perModelSimulationParameterBindingSource)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.m_simParamSets)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.propertiesBindingSource)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.propertiesBindingSource1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.steppersBindingSource)).EndInit();
            this.loggingPage.ResumeLayout(false);
            this.groupBox2.ResumeLayout(false);
            this.groupBox2.PerformLayout();
            this.groupBox3.ResumeLayout(false);
            this.groupBox3.PerformLayout();
            this.groupBox1.ResumeLayout(false);
            this.groupBox1.PerformLayout();
            this.tabControl1.ResumeLayout(false);
            this.ResumeLayout(false);
            this.PerformLayout();

        }
Esempio n. 46
0
    /// <summary>
    /// Required method for Designer support - do not modify
    /// the contents of this method with the code editor.
    /// </summary>
    private void InitializeComponent()
    {
      System.Windows.Forms.Button btnCancel;
      System.Windows.Forms.Button btnOk;
      System.Windows.Forms.TabPage m_pagePaths;
      System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(OptionsForm));
      this.label4 = new System.Windows.Forms.Label();
      this.m_updownMruFilesInList = new System.Windows.Forms.NumericUpDown();
      this.label3 = new System.Windows.Forms.Label();
      this.pictureBox1 = new System.Windows.Forms.PictureBox();
      this.label2 = new System.Windows.Forms.Label();
      this.m_updownMruFilesAtStart = new System.Windows.Forms.NumericUpDown();
      this.toolStrip1 = new System.Windows.Forms.ToolStrip();
      this.m_btnAddToSearchPath = new System.Windows.Forms.ToolStripButton();
      this.m_btnRemoveFromSearchPath = new System.Windows.Forms.ToolStripButton();
      this.m_btnMoveUpInSearchPath = new System.Windows.Forms.ToolStripButton();
      this.m_btnMoveDownInSearchPath = new System.Windows.Forms.ToolStripButton();
      this.m_btnOpenPath = new System.Windows.Forms.ToolStripButton();
      this.label1 = new System.Windows.Forms.Label();
      this.m_listPaths = new System.Windows.Forms.ListBox();
      this.m_tabOptions = new System.Windows.Forms.TabControl();
      this.m_pageEditor = new System.Windows.Forms.TabPage();
      this.label6 = new System.Windows.Forms.Label();
      this.m_comboFontSizes = new System.Windows.Forms.ComboBox();
      this.m_comboFontNames = new System.Windows.Forms.ComboBox();
      this.label5 = new System.Windows.Forms.Label();
      this.button1 = new System.Windows.Forms.Button();
      this.m_chkConvertTabsToSpaces = new System.Windows.Forms.CheckBox();
      btnCancel = new System.Windows.Forms.Button();
      btnOk = new System.Windows.Forms.Button();
      m_pagePaths = new System.Windows.Forms.TabPage();
      m_pagePaths.SuspendLayout();
      ((System.ComponentModel.ISupportInitialize)(this.m_updownMruFilesInList)).BeginInit();
      ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
      ((System.ComponentModel.ISupportInitialize)(this.m_updownMruFilesAtStart)).BeginInit();
      this.toolStrip1.SuspendLayout();
      this.m_tabOptions.SuspendLayout();
      this.m_pageEditor.SuspendLayout();
      this.SuspendLayout();
      // 
      // btnCancel
      // 
      btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
      btnCancel.Location = new System.Drawing.Point(417, 400);
      btnCancel.Name = "btnCancel";
      btnCancel.Size = new System.Drawing.Size(75, 23);
      btnCancel.TabIndex = 1;
      btnCancel.Text = "Cancel";
      btnCancel.UseVisualStyleBackColor = true;
      // 
      // btnOk
      // 
      btnOk.DialogResult = System.Windows.Forms.DialogResult.OK;
      btnOk.Location = new System.Drawing.Point(336, 400);
      btnOk.Name = "btnOk";
      btnOk.Size = new System.Drawing.Size(75, 23);
      btnOk.TabIndex = 0;
      btnOk.Text = "OK";
      btnOk.UseVisualStyleBackColor = true;
      // 
      // m_pagePaths
      // 
      m_pagePaths.Controls.Add(this.label4);
      m_pagePaths.Controls.Add(this.m_updownMruFilesInList);
      m_pagePaths.Controls.Add(this.label3);
      m_pagePaths.Controls.Add(this.pictureBox1);
      m_pagePaths.Controls.Add(this.label2);
      m_pagePaths.Controls.Add(this.m_updownMruFilesAtStart);
      m_pagePaths.Controls.Add(this.toolStrip1);
      m_pagePaths.Controls.Add(this.label1);
      m_pagePaths.Controls.Add(this.m_listPaths);
      m_pagePaths.Location = new System.Drawing.Point(4, 22);
      m_pagePaths.Name = "m_pagePaths";
      m_pagePaths.Padding = new System.Windows.Forms.Padding(3);
      m_pagePaths.Size = new System.Drawing.Size(472, 356);
      m_pagePaths.TabIndex = 0;
      m_pagePaths.Text = "Files";
      m_pagePaths.UseVisualStyleBackColor = true;
      // 
      // label4
      // 
      this.label4.AutoSize = true;
      this.label4.Location = new System.Drawing.Point(83, 243);
      this.label4.Name = "label4";
      this.label4.Size = new System.Drawing.Size(112, 13);
      this.label4.TabIndex = 17;
      this.label4.Text = "Files in most recent list";
      // 
      // m_updownMruFilesInList
      // 
      this.m_updownMruFilesInList.Location = new System.Drawing.Point(33, 241);
      this.m_updownMruFilesInList.Maximum = new decimal(new int[] {
            30,
            0,
            0,
            0});
      this.m_updownMruFilesInList.Minimum = new decimal(new int[] {
            1,
            0,
            0,
            0});
      this.m_updownMruFilesInList.Name = "m_updownMruFilesInList";
      this.m_updownMruFilesInList.Size = new System.Drawing.Size(43, 20);
      this.m_updownMruFilesInList.TabIndex = 3;
      this.m_updownMruFilesInList.Value = new decimal(new int[] {
            10,
            0,
            0,
            0});
      // 
      // label3
      // 
      this.label3.AutoSize = true;
      this.label3.Location = new System.Drawing.Point(83, 218);
      this.label3.Name = "label3";
      this.label3.Size = new System.Drawing.Size(102, 13);
      this.label3.TabIndex = 15;
      this.label3.Text = "Files to open at start";
      // 
      // pictureBox1
      // 
      this.pictureBox1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
      this.pictureBox1.Location = new System.Drawing.Point(10, 174);
      this.pictureBox1.Name = "pictureBox1";
      this.pictureBox1.Size = new System.Drawing.Size(453, 2);
      this.pictureBox1.TabIndex = 14;
      this.pictureBox1.TabStop = false;
      // 
      // label2
      // 
      this.label2.AutoSize = true;
      this.label2.Location = new System.Drawing.Point(7, 188);
      this.label2.Name = "label2";
      this.label2.Size = new System.Drawing.Size(92, 13);
      this.label2.TabIndex = 13;
      this.label2.Text = "Most Recent Files";
      // 
      // m_updownMruFilesAtStart
      // 
      this.m_updownMruFilesAtStart.Location = new System.Drawing.Point(33, 214);
      this.m_updownMruFilesAtStart.Maximum = new decimal(new int[] {
            10,
            0,
            0,
            0});
      this.m_updownMruFilesAtStart.Minimum = new decimal(new int[] {
            1,
            0,
            0,
            0});
      this.m_updownMruFilesAtStart.Name = "m_updownMruFilesAtStart";
      this.m_updownMruFilesAtStart.Size = new System.Drawing.Size(43, 20);
      this.m_updownMruFilesAtStart.TabIndex = 2;
      this.m_updownMruFilesAtStart.Value = new decimal(new int[] {
            3,
            0,
            0,
            0});
      // 
      // toolStrip1
      // 
      this.toolStrip1.Dock = System.Windows.Forms.DockStyle.None;
      this.toolStrip1.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
      this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.m_btnAddToSearchPath,
            this.m_btnRemoveFromSearchPath,
            this.m_btnMoveUpInSearchPath,
            this.m_btnMoveDownInSearchPath,
            this.m_btnOpenPath});
      this.toolStrip1.LayoutStyle = System.Windows.Forms.ToolStripLayoutStyle.HorizontalStackWithOverflow;
      this.toolStrip1.Location = new System.Drawing.Point(353, 121);
      this.toolStrip1.Name = "toolStrip1";
      this.toolStrip1.Size = new System.Drawing.Size(118, 25);
      this.toolStrip1.TabIndex = 1;
      this.toolStrip1.Text = "toolStrip1";
      // 
      // m_btnAddToSearchPath
      // 
      this.m_btnAddToSearchPath.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
      this.m_btnAddToSearchPath.Image = ((System.Drawing.Image)(resources.GetObject("m_btnAddToSearchPath.Image")));
      this.m_btnAddToSearchPath.ImageTransparentColor = System.Drawing.Color.Magenta;
      this.m_btnAddToSearchPath.Name = "m_btnAddToSearchPath";
      this.m_btnAddToSearchPath.Size = new System.Drawing.Size(23, 22);
      this.m_btnAddToSearchPath.ToolTipText = "Add to search path";
      this.m_btnAddToSearchPath.Click += new System.EventHandler(this.OnAddToSearchPath);
      // 
      // m_btnRemoveFromSearchPath
      // 
      this.m_btnRemoveFromSearchPath.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
      this.m_btnRemoveFromSearchPath.Enabled = false;
      this.m_btnRemoveFromSearchPath.Image = ((System.Drawing.Image)(resources.GetObject("m_btnRemoveFromSearchPath.Image")));
      this.m_btnRemoveFromSearchPath.ImageTransparentColor = System.Drawing.Color.Magenta;
      this.m_btnRemoveFromSearchPath.Name = "m_btnRemoveFromSearchPath";
      this.m_btnRemoveFromSearchPath.Size = new System.Drawing.Size(23, 22);
      this.m_btnRemoveFromSearchPath.ToolTipText = "Remove from search path";
      this.m_btnRemoveFromSearchPath.Click += new System.EventHandler(this.OnRemoveFromSearchPath);
      // 
      // m_btnMoveUpInSearchPath
      // 
      this.m_btnMoveUpInSearchPath.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
      this.m_btnMoveUpInSearchPath.Enabled = false;
      this.m_btnMoveUpInSearchPath.Image = ((System.Drawing.Image)(resources.GetObject("m_btnMoveUpInSearchPath.Image")));
      this.m_btnMoveUpInSearchPath.ImageTransparentColor = System.Drawing.Color.Magenta;
      this.m_btnMoveUpInSearchPath.Name = "m_btnMoveUpInSearchPath";
      this.m_btnMoveUpInSearchPath.Size = new System.Drawing.Size(23, 22);
      this.m_btnMoveUpInSearchPath.ToolTipText = "Move up in search order";
      this.m_btnMoveUpInSearchPath.Click += new System.EventHandler(this.OnMoveUpInSearchPath);
      // 
      // m_btnMoveDownInSearchPath
      // 
      this.m_btnMoveDownInSearchPath.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
      this.m_btnMoveDownInSearchPath.Enabled = false;
      this.m_btnMoveDownInSearchPath.Image = ((System.Drawing.Image)(resources.GetObject("m_btnMoveDownInSearchPath.Image")));
      this.m_btnMoveDownInSearchPath.ImageTransparentColor = System.Drawing.Color.Magenta;
      this.m_btnMoveDownInSearchPath.Name = "m_btnMoveDownInSearchPath";
      this.m_btnMoveDownInSearchPath.Size = new System.Drawing.Size(23, 22);
      this.m_btnMoveDownInSearchPath.ToolTipText = "Move down in search order";
      this.m_btnMoveDownInSearchPath.Click += new System.EventHandler(this.OnMoveDownInSearchPath);
      // 
      // m_btnOpenPath
      // 
      this.m_btnOpenPath.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
      this.m_btnOpenPath.Enabled = false;
      this.m_btnOpenPath.Image = ((System.Drawing.Image)(resources.GetObject("m_btnOpenPath.Image")));
      this.m_btnOpenPath.ImageTransparentColor = System.Drawing.Color.Magenta;
      this.m_btnOpenPath.Name = "m_btnOpenPath";
      this.m_btnOpenPath.Size = new System.Drawing.Size(23, 22);
      this.m_btnOpenPath.ToolTipText = "Open in file explorer";
      this.m_btnOpenPath.Click += new System.EventHandler(this.OnOpenPath);
      // 
      // label1
      // 
      this.label1.AutoSize = true;
      this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
      this.label1.Location = new System.Drawing.Point(7, 7);
      this.label1.Name = "label1";
      this.label1.Size = new System.Drawing.Size(109, 13);
      this.label1.TabIndex = 5;
      this.label1.Text = "Module Search Paths";
      // 
      // m_listPaths
      // 
      this.m_listPaths.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                  | System.Windows.Forms.AnchorStyles.Right)));
      this.m_listPaths.FormattingEnabled = true;
      this.m_listPaths.HorizontalScrollbar = true;
      this.m_listPaths.Location = new System.Drawing.Point(33, 23);
      this.m_listPaths.Name = "m_listPaths";
      this.m_listPaths.Size = new System.Drawing.Size(433, 95);
      this.m_listPaths.TabIndex = 0;
      this.m_listPaths.SelectedIndexChanged += new System.EventHandler(this.OnSearchPathItemSelect);
      this.m_listPaths.DoubleClick += new System.EventHandler(this.ItemDoubleClick);
      // 
      // m_tabOptions
      // 
      this.m_tabOptions.Controls.Add(m_pagePaths);
      this.m_tabOptions.Controls.Add(this.m_pageEditor);
      this.m_tabOptions.Location = new System.Drawing.Point(12, 12);
      this.m_tabOptions.Name = "m_tabOptions";
      this.m_tabOptions.SelectedIndex = 0;
      this.m_tabOptions.Size = new System.Drawing.Size(480, 382);
      this.m_tabOptions.TabIndex = 10;
      // 
      // m_pageEditor
      // 
      this.m_pageEditor.Controls.Add(this.m_chkConvertTabsToSpaces);
      this.m_pageEditor.Controls.Add(this.label6);
      this.m_pageEditor.Controls.Add(this.m_comboFontSizes);
      this.m_pageEditor.Controls.Add(this.m_comboFontNames);
      this.m_pageEditor.Controls.Add(this.label5);
      this.m_pageEditor.Location = new System.Drawing.Point(4, 22);
      this.m_pageEditor.Name = "m_pageEditor";
      this.m_pageEditor.Padding = new System.Windows.Forms.Padding(3);
      this.m_pageEditor.Size = new System.Drawing.Size(472, 356);
      this.m_pageEditor.TabIndex = 1;
      this.m_pageEditor.Text = "Text Editor";
      this.m_pageEditor.UseVisualStyleBackColor = true;
      // 
      // label6
      // 
      this.label6.AutoSize = true;
      this.label6.Location = new System.Drawing.Point(368, 26);
      this.label6.Name = "label6";
      this.label6.Size = new System.Drawing.Size(27, 13);
      this.label6.TabIndex = 4;
      this.label6.Text = "Size";
      // 
      // m_comboFontSizes
      // 
      this.m_comboFontSizes.FormattingEnabled = true;
      this.m_comboFontSizes.Location = new System.Drawing.Point(401, 23);
      this.m_comboFontSizes.Name = "m_comboFontSizes";
      this.m_comboFontSizes.Size = new System.Drawing.Size(65, 21);
      this.m_comboFontSizes.TabIndex = 3;
      // 
      // m_comboFontNames
      // 
      this.m_comboFontNames.FormattingEnabled = true;
      this.m_comboFontNames.Location = new System.Drawing.Point(33, 23);
      this.m_comboFontNames.Name = "m_comboFontNames";
      this.m_comboFontNames.Size = new System.Drawing.Size(295, 21);
      this.m_comboFontNames.TabIndex = 2;
      // 
      // label5
      // 
      this.label5.AutoSize = true;
      this.label5.Location = new System.Drawing.Point(7, 7);
      this.label5.Name = "label5";
      this.label5.Size = new System.Drawing.Size(28, 13);
      this.label5.TabIndex = 0;
      this.label5.Text = "Font";
      // 
      // button1
      // 
      this.button1.Location = new System.Drawing.Point(13, 400);
      this.button1.Name = "button1";
      this.button1.Size = new System.Drawing.Size(102, 23);
      this.button1.TabIndex = 11;
      this.button1.Text = "Restore Defaults";
      this.button1.UseVisualStyleBackColor = true;
      this.button1.Click += new System.EventHandler(this.OnRestoreDefaults);
      // 
      // m_chkConvertTabsToSpaces
      // 
      this.m_chkConvertTabsToSpaces.AutoSize = true;
      this.m_chkConvertTabsToSpaces.Checked = true;
      this.m_chkConvertTabsToSpaces.CheckState = System.Windows.Forms.CheckState.Checked;
      this.m_chkConvertTabsToSpaces.Location = new System.Drawing.Point(10, 65);
      this.m_chkConvertTabsToSpaces.Name = "m_chkConvertTabsToSpaces";
      this.m_chkConvertTabsToSpaces.Size = new System.Drawing.Size(135, 17);
      this.m_chkConvertTabsToSpaces.TabIndex = 5;
      this.m_chkConvertTabsToSpaces.Text = "Convert tabs to spaces";
      this.m_chkConvertTabsToSpaces.UseVisualStyleBackColor = true;
      // 
      // OptionsForm
      // 
      this.AcceptButton = btnOk;
      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
      this.CancelButton = btnCancel;
      this.ClientSize = new System.Drawing.Size(504, 435);
      this.Controls.Add(this.button1);
      this.Controls.Add(this.m_tabOptions);
      this.Controls.Add(btnOk);
      this.Controls.Add(btnCancel);
      this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
      this.Name = "OptionsForm";
      this.ShowInTaskbar = false;
      this.Text = "Python Options";
      m_pagePaths.ResumeLayout(false);
      m_pagePaths.PerformLayout();
      ((System.ComponentModel.ISupportInitialize)(this.m_updownMruFilesInList)).EndInit();
      ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
      ((System.ComponentModel.ISupportInitialize)(this.m_updownMruFilesAtStart)).EndInit();
      this.toolStrip1.ResumeLayout(false);
      this.toolStrip1.PerformLayout();
      this.m_tabOptions.ResumeLayout(false);
      this.m_pageEditor.ResumeLayout(false);
      this.m_pageEditor.PerformLayout();
      this.ResumeLayout(false);

    }
Esempio n. 47
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.TabControl       tabControl1;
     System.Windows.Forms.TabPage          tabPage1;
     System.Windows.Forms.GroupBox         groupBox1;
     System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
     System.Windows.Forms.Label            label1;
     System.Windows.Forms.CheckBox         headerCheckBox;
     System.Windows.Forms.Button           cancelButton;
     System.Windows.Forms.Button           okButton;
     System.Windows.Forms.FlowLayoutPanel  flowLayoutPanel1;
     this.namespaceTextBox = new System.Windows.Forms.TextBox();
     tabControl1           = new System.Windows.Forms.TabControl();
     tabPage1          = new System.Windows.Forms.TabPage();
     groupBox1         = new System.Windows.Forms.GroupBox();
     tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
     label1            = new System.Windows.Forms.Label();
     headerCheckBox    = new System.Windows.Forms.CheckBox();
     cancelButton      = new System.Windows.Forms.Button();
     okButton          = new System.Windows.Forms.Button();
     flowLayoutPanel1  = new System.Windows.Forms.FlowLayoutPanel();
     tabControl1.SuspendLayout();
     tabPage1.SuspendLayout();
     groupBox1.SuspendLayout();
     tableLayoutPanel1.SuspendLayout();
     flowLayoutPanel1.SuspendLayout();
     this.SuspendLayout();
     //
     // tabControl1
     //
     tabControl1.Controls.Add(tabPage1);
     tabControl1.Dock          = System.Windows.Forms.DockStyle.Fill;
     tabControl1.Location      = new System.Drawing.Point(5, 5);
     tabControl1.Name          = "tabControl1";
     tabControl1.SelectedIndex = 0;
     tabControl1.Size          = new System.Drawing.Size(284, 308);
     tabControl1.TabIndex      = 0;
     //
     // tabPage1
     //
     tabPage1.Controls.Add(groupBox1);
     tabPage1.Location = new System.Drawing.Point(4, 24);
     tabPage1.Name     = "tabPage1";
     tabPage1.Padding  = new System.Windows.Forms.Padding(8, 5, 8, 5);
     tabPage1.Size     = new System.Drawing.Size(276, 280);
     tabPage1.TabIndex = 0;
     tabPage1.Text     = "Options";
     tabPage1.UseVisualStyleBackColor = true;
     //
     // groupBox1
     //
     groupBox1.AutoSize = true;
     groupBox1.Controls.Add(tableLayoutPanel1);
     groupBox1.Dock     = System.Windows.Forms.DockStyle.Top;
     groupBox1.Location = new System.Drawing.Point(8, 5);
     groupBox1.Name     = "groupBox1";
     groupBox1.Padding  = new System.Windows.Forms.Padding(5, 3, 5, 5);
     groupBox1.Size     = new System.Drawing.Size(260, 97);
     groupBox1.TabIndex = 0;
     groupBox1.TabStop  = false;
     groupBox1.Text     = "Code generation";
     //
     // tableLayoutPanel1
     //
     tableLayoutPanel1.AutoSize    = true;
     tableLayoutPanel1.ColumnCount = 1;
     tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     tableLayoutPanel1.Controls.Add(label1, 0, 0);
     tableLayoutPanel1.Controls.Add(headerCheckBox, 0, 2);
     tableLayoutPanel1.Controls.Add(this.namespaceTextBox, 0, 1);
     tableLayoutPanel1.Dock     = System.Windows.Forms.DockStyle.Top;
     tableLayoutPanel1.Location = new System.Drawing.Point(5, 19);
     tableLayoutPanel1.Name     = "tableLayoutPanel1";
     tableLayoutPanel1.RowCount = 3;
     tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
     tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
     tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
     tableLayoutPanel1.Size     = new System.Drawing.Size(250, 73);
     tableLayoutPanel1.TabIndex = 0;
     //
     // label1
     //
     label1.AutoSize = true;
     label1.Location = new System.Drawing.Point(0, 0);
     label1.Margin   = new System.Windows.Forms.Padding(0, 0, 3, 0);
     label1.Name     = "label1";
     label1.Size     = new System.Drawing.Size(72, 15);
     label1.TabIndex = 0;
     label1.Text     = "&Namespace:";
     //
     // headerCheckBox
     //
     headerCheckBox.AutoSize   = true;
     headerCheckBox.Checked    = global::ToolStripCustomizer.Properties.Settings.Default.IncludeHeader;
     headerCheckBox.CheckState = System.Windows.Forms.CheckState.Checked;
     headerCheckBox.DataBindings.Add(new System.Windows.Forms.Binding("Checked", global::ToolStripCustomizer.Properties.Settings.Default, "IncludeHeader", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     headerCheckBox.Location = new System.Drawing.Point(3, 51);
     headerCheckBox.Margin   = new System.Windows.Forms.Padding(3, 7, 3, 3);
     headerCheckBox.Name     = "headerCheckBox";
     headerCheckBox.Size     = new System.Drawing.Size(196, 19);
     headerCheckBox.TabIndex = 4;
     headerCheckBox.Text     = "Print <auto-generated/> header";
     headerCheckBox.UseVisualStyleBackColor = true;
     //
     // namespaceTextBox
     //
     this.namespaceTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
     this.namespaceTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", global::ToolStripCustomizer.Properties.Settings.Default, "DefaultNamespace", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this.namespaceTextBox.Location = new System.Drawing.Point(3, 18);
     this.namespaceTextBox.Name     = "namespaceTextBox";
     this.namespaceTextBox.Size     = new System.Drawing.Size(244, 23);
     this.namespaceTextBox.TabIndex = 1;
     this.namespaceTextBox.Text     = global::ToolStripCustomizer.Properties.Settings.Default.DefaultNamespace;
     //
     // cancelButton
     //
     cancelButton.DialogResult            = System.Windows.Forms.DialogResult.Cancel;
     cancelButton.FlatStyle               = System.Windows.Forms.FlatStyle.System;
     cancelButton.Location                = new System.Drawing.Point(206, 8);
     cancelButton.Name                    = "cancelButton";
     cancelButton.Size                    = new System.Drawing.Size(75, 23);
     cancelButton.TabIndex                = 2;
     cancelButton.Text                    = "Cancel";
     cancelButton.UseVisualStyleBackColor = true;
     //
     // okButton
     //
     okButton.DialogResult            = System.Windows.Forms.DialogResult.OK;
     okButton.FlatStyle               = System.Windows.Forms.FlatStyle.System;
     okButton.Location                = new System.Drawing.Point(125, 8);
     okButton.Name                    = "okButton";
     okButton.Size                    = new System.Drawing.Size(75, 23);
     okButton.TabIndex                = 1;
     okButton.Text                    = "OK";
     okButton.UseVisualStyleBackColor = true;
     //
     // flowLayoutPanel1
     //
     flowLayoutPanel1.AutoSize = true;
     flowLayoutPanel1.Controls.Add(cancelButton);
     flowLayoutPanel1.Controls.Add(okButton);
     flowLayoutPanel1.Dock          = System.Windows.Forms.DockStyle.Bottom;
     flowLayoutPanel1.FlowDirection = System.Windows.Forms.FlowDirection.RightToLeft;
     flowLayoutPanel1.Location      = new System.Drawing.Point(5, 313);
     flowLayoutPanel1.Name          = "flowLayoutPanel1";
     flowLayoutPanel1.Padding       = new System.Windows.Forms.Padding(0, 5, 0, 0);
     flowLayoutPanel1.Size          = new System.Drawing.Size(284, 34);
     flowLayoutPanel1.TabIndex      = 3;
     //
     // OptionsForm
     //
     this.AcceptButton        = okButton;
     this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Dpi;
     this.CancelButton        = cancelButton;
     this.ClientSize          = new System.Drawing.Size(294, 352);
     this.Controls.Add(tabControl1);
     this.Controls.Add(flowLayoutPanel1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "OptionsForm";
     this.Padding         = new System.Windows.Forms.Padding(5);
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text            = "Options";
     this.FormClosing    += new System.Windows.Forms.FormClosingEventHandler(this.OptionsFormFormClosing);
     this.FormClosed     += new System.Windows.Forms.FormClosedEventHandler(this.OptionsFormFormClosed);
     tabControl1.ResumeLayout(false);
     tabPage1.ResumeLayout(false);
     tabPage1.PerformLayout();
     groupBox1.ResumeLayout(false);
     groupBox1.PerformLayout();
     tableLayoutPanel1.ResumeLayout(false);
     tableLayoutPanel1.PerformLayout();
     flowLayoutPanel1.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Windows.Forms.TabPage tabPage3;
     this.checkBox1    = new System.Windows.Forms.CheckBox();
     this.tabControl1  = new System.Windows.Forms.TabControl();
     this.tabPage1     = new System.Windows.Forms.TabPage();
     this.label3       = new System.Windows.Forms.Label();
     this.textBox2     = new System.Windows.Forms.TextBox();
     this.textBox1     = new System.Windows.Forms.TextBox();
     this.label2       = new System.Windows.Forms.Label();
     this.label1       = new System.Windows.Forms.Label();
     this.tabPage2     = new System.Windows.Forms.TabPage();
     this.label5       = new System.Windows.Forms.Label();
     this.label4       = new System.Windows.Forms.Label();
     this.port         = new System.Windows.Forms.TextBox();
     this.hostname     = new System.Windows.Forms.TextBox();
     this.radioButton2 = new System.Windows.Forms.RadioButton();
     this.radioButton1 = new System.Windows.Forms.RadioButton();
     this.buttonOk     = new System.Windows.Forms.Button();
     this.buttonCancel = new System.Windows.Forms.Button();
     this.Tooltip      = new System.Windows.Forms.ToolTip(this.components);
     tabPage3          = new System.Windows.Forms.TabPage();
     tabPage3.SuspendLayout();
     this.tabControl1.SuspendLayout();
     this.tabPage1.SuspendLayout();
     this.tabPage2.SuspendLayout();
     this.SuspendLayout();
     //
     // tabPage3
     //
     tabPage3.Controls.Add(this.checkBox1);
     tabPage3.Location = new System.Drawing.Point(4, 25);
     tabPage3.Name     = "tabPage3";
     tabPage3.Padding  = new System.Windows.Forms.Padding(3);
     tabPage3.Size     = new System.Drawing.Size(324, 154);
     tabPage3.TabIndex = 2;
     tabPage3.Text     = "Settings";
     tabPage3.UseVisualStyleBackColor = true;
     //
     // checkBox1
     //
     this.checkBox1.AutoSize   = true;
     this.checkBox1.Checked    = global::FSEconomy.Properties.Settings.Default.showFinishedFlight;
     this.checkBox1.CheckState = System.Windows.Forms.CheckState.Checked;
     this.checkBox1.DataBindings.Add(new System.Windows.Forms.Binding("Checked", global::FSEconomy.Properties.Settings.Default, "showFinishedFlight", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this.checkBox1.Location = new System.Drawing.Point(17, 19);
     this.checkBox1.Name     = "checkBox1";
     this.checkBox1.Size     = new System.Drawing.Size(241, 21);
     this.checkBox1.TabIndex = 0;
     this.checkBox1.Text     = "Show dialog when flight is finished";
     this.checkBox1.UseVisualStyleBackColor = true;
     //
     // tabControl1
     //
     this.tabControl1.Controls.Add(this.tabPage1);
     this.tabControl1.Controls.Add(this.tabPage2);
     this.tabControl1.Controls.Add(tabPage3);
     this.tabControl1.Location      = new System.Drawing.Point(12, 12);
     this.tabControl1.Margin        = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.tabControl1.Name          = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size          = new System.Drawing.Size(332, 183);
     this.tabControl1.TabIndex      = 0;
     //
     // tabPage1
     //
     this.tabPage1.Controls.Add(this.label3);
     this.tabPage1.Controls.Add(this.textBox2);
     this.tabPage1.Controls.Add(this.textBox1);
     this.tabPage1.Controls.Add(this.label2);
     this.tabPage1.Controls.Add(this.label1);
     this.tabPage1.Location = new System.Drawing.Point(4, 25);
     this.tabPage1.Margin   = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.tabPage1.Name     = "tabPage1";
     this.tabPage1.Padding  = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.tabPage1.Size     = new System.Drawing.Size(324, 154);
     this.tabPage1.TabIndex = 0;
     this.tabPage1.Text     = "Account";
     this.tabPage1.UseVisualStyleBackColor = true;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(19, 16);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(177, 17);
     this.label3.TabIndex = 4;
     this.label3.Text     = "Enter your account details.";
     //
     // textBox2
     //
     this.textBox2.DataBindings.Add(new System.Windows.Forms.Binding("Text", global::FSEconomy.Properties.Settings.Default, "password", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this.textBox2.Location = new System.Drawing.Point(116, 85);
     this.textBox2.Margin   = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.textBox2.Name     = "textBox2";
     this.textBox2.Size     = new System.Drawing.Size(155, 22);
     this.textBox2.TabIndex = 3;
     this.textBox2.Text     = global::FSEconomy.Properties.Settings.Default.password;
     this.textBox2.UseSystemPasswordChar = true;
     //
     // textBox1
     //
     this.textBox1.DataBindings.Add(new System.Windows.Forms.Binding("Text", global::FSEconomy.Properties.Settings.Default, "username", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this.textBox1.Location = new System.Drawing.Point(116, 57);
     this.textBox1.Margin   = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.textBox1.Name     = "textBox1";
     this.textBox1.Size     = new System.Drawing.Size(155, 22);
     this.textBox1.TabIndex = 2;
     this.textBox1.Text     = global::FSEconomy.Properties.Settings.Default.username;
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(19, 85);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(69, 17);
     this.label2.TabIndex = 1;
     this.label2.Text     = "Password";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(19, 60);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(73, 17);
     this.label1.TabIndex = 0;
     this.label1.Text     = "Username";
     //
     // tabPage2
     //
     this.tabPage2.Controls.Add(this.label5);
     this.tabPage2.Controls.Add(this.label4);
     this.tabPage2.Controls.Add(this.port);
     this.tabPage2.Controls.Add(this.hostname);
     this.tabPage2.Controls.Add(this.radioButton2);
     this.tabPage2.Controls.Add(this.radioButton1);
     this.tabPage2.Location = new System.Drawing.Point(4, 25);
     this.tabPage2.Margin   = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.tabPage2.Name     = "tabPage2";
     this.tabPage2.Padding  = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.tabPage2.Size     = new System.Drawing.Size(324, 154);
     this.tabPage2.TabIndex = 1;
     this.tabPage2.Text     = "Simulator";
     this.tabPage2.UseVisualStyleBackColor = true;
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(51, 98);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(34, 17);
     this.label5.TabIndex = 5;
     this.label5.Text     = "Port";
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(15, 70);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(72, 17);
     this.label4.TabIndex = 4;
     this.label4.Text     = "Hostname";
     //
     // port
     //
     this.port.DataBindings.Add(new System.Windows.Forms.Binding("Text", global::FSEconomy.Properties.Settings.Default, "fsxPort", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this.port.Location = new System.Drawing.Point(91, 95);
     this.port.Margin   = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.port.Name     = "port";
     this.port.Size     = new System.Drawing.Size(48, 22);
     this.port.TabIndex = 3;
     this.port.Text     = global::FSEconomy.Properties.Settings.Default.fsxPort;
     this.Tooltip.SetToolTip(this.port, "The TCP port that Flight Simulator X is listening on.");
     //
     // hostname
     //
     this.hostname.DataBindings.Add(new System.Windows.Forms.Binding("Text", global::FSEconomy.Properties.Settings.Default, "fsxHostname", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this.hostname.Location = new System.Drawing.Point(91, 66);
     this.hostname.Margin   = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.hostname.Name     = "hostname";
     this.hostname.Size     = new System.Drawing.Size(177, 22);
     this.hostname.TabIndex = 2;
     this.hostname.Text     = global::FSEconomy.Properties.Settings.Default.fsxHostname;
     this.Tooltip.SetToolTip(this.hostname, "The name of the computer where Flight Simulator X is installed.");
     //
     // radioButton2
     //
     this.radioButton2.AutoSize = true;
     this.radioButton2.Location = new System.Drawing.Point(16, 39);
     this.radioButton2.Margin   = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.radioButton2.Name     = "radioButton2";
     this.radioButton2.Size     = new System.Drawing.Size(138, 21);
     this.radioButton2.TabIndex = 1;
     this.radioButton2.Text     = "Remote computer";
     this.Tooltip.SetToolTip(this.radioButton2, "Use Flight Simulator X on a remote computer.");
     this.radioButton2.UseVisualStyleBackColor = true;
     this.radioButton2.Click += new System.EventHandler(this.CheckedChanged);
     //
     // radioButton1
     //
     this.radioButton1.AutoSize = true;
     this.radioButton1.Checked  = global::FSEconomy.Properties.Settings.Default.localComputer;
     this.radioButton1.DataBindings.Add(new System.Windows.Forms.Binding("Checked", global::FSEconomy.Properties.Settings.Default, "localComputer", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this.radioButton1.Location = new System.Drawing.Point(16, 14);
     this.radioButton1.Margin   = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.radioButton1.Name     = "radioButton1";
     this.radioButton1.Size     = new System.Drawing.Size(123, 21);
     this.radioButton1.TabIndex = 0;
     this.radioButton1.TabStop  = true;
     this.radioButton1.Text     = "Local computer";
     this.Tooltip.SetToolTip(this.radioButton1, "Use Flight Simulator X installed on your local computer.");
     this.radioButton1.UseVisualStyleBackColor = true;
     this.radioButton1.Click += new System.EventHandler(this.CheckedChanged);
     //
     // buttonOk
     //
     this.buttonOk.DialogResult            = System.Windows.Forms.DialogResult.OK;
     this.buttonOk.Font                    = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.buttonOk.Location                = new System.Drawing.Point(181, 222);
     this.buttonOk.Margin                  = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.buttonOk.Name                    = "buttonOk";
     this.buttonOk.Size                    = new System.Drawing.Size(93, 30);
     this.buttonOk.TabIndex                = 1;
     this.buttonOk.Text                    = "Ok";
     this.buttonOk.UseVisualStyleBackColor = true;
     //
     // buttonCancel
     //
     this.buttonCancel.DialogResult            = System.Windows.Forms.DialogResult.Cancel;
     this.buttonCancel.Location                = new System.Drawing.Point(283, 222);
     this.buttonCancel.Margin                  = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.buttonCancel.Name                    = "buttonCancel";
     this.buttonCancel.Size                    = new System.Drawing.Size(93, 30);
     this.buttonCancel.TabIndex                = 2;
     this.buttonCancel.Text                    = "Cancel";
     this.buttonCancel.UseVisualStyleBackColor = true;
     //
     // Config
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(388, 270);
     this.Controls.Add(this.buttonCancel);
     this.Controls.Add(this.buttonOk);
     this.Controls.Add(this.tabControl1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Margin          = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "Config";
     this.ShowInTaskbar   = false;
     this.Text            = "Config";
     this.TopMost         = true;
     this.Activated      += new System.EventHandler(this.Config_Activated);
     tabPage3.ResumeLayout(false);
     tabPage3.PerformLayout();
     this.tabControl1.ResumeLayout(false);
     this.tabPage1.ResumeLayout(false);
     this.tabPage1.PerformLayout();
     this.tabPage2.ResumeLayout(false);
     this.tabPage2.PerformLayout();
     this.ResumeLayout(false);
 }
Esempio n. 49
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(LIGHT));
     TELE              = new ReaLTaiizor.Controls.LabelEdit();
     LOPB              = new System.Windows.Forms.PictureBox();
     PWDTB             = new ReaLTaiizor.Controls.BigTextBox();
     PLPB              = new ReaLTaiizor.Controls.PoisonProgressBar();
     SSBR              = new ReaLTaiizor.Controls.ForeverStatusBar();
     CEB               = new ReaLTaiizor.Controls.MaterialButton();
     CYB               = new ReaLTaiizor.Controls.MaterialButton();
     MTC               = new ReaLTaiizor.Controls.MaterialTabControl();
     Generate          = new System.Windows.Forms.TabPage();
     HYS               = new ReaLTaiizor.Controls.MaterialSwitch();
     WRPB              = new System.Windows.Forms.PictureBox();
     History           = new System.Windows.Forms.TabPage();
     HYP               = new System.Windows.Forms.Panel();
     Setting           = new System.Windows.Forms.TabPage();
     PWLN              = new ReaLTaiizor.Controls.HopeTrackBar();
     DKUC              = new UC.THEME.DK();
     LTUC              = new UC.THEME.LT();
     TMCB              = new ReaLTaiizor.Controls.MaterialCheckBox();
     SMCB              = new ReaLTaiizor.Controls.MaterialComboBox();
     AMCB              = new ReaLTaiizor.Controls.MaterialComboBox();
     RTPB              = new System.Windows.Forms.PictureBox();
     MTS               = new ReaLTaiizor.Controls.MaterialTabSelector();
     STATUST           = new System.Windows.Forms.Timer(components);
     STATUSMT          = new System.Windows.Forms.Timer(components);
     materialCheckBox1 = new ReaLTaiizor.Controls.MaterialCheckBox();
     materialCheckBox2 = new ReaLTaiizor.Controls.MaterialCheckBox();
     materialCheckBox3 = new ReaLTaiizor.Controls.MaterialCheckBox();
     TETT              = new ReaLTaiizor.Controls.MetroToolTip();
     ((System.ComponentModel.ISupportInitialize)(LOPB)).BeginInit();
     MTC.SuspendLayout();
     Generate.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(WRPB)).BeginInit();
     History.SuspendLayout();
     Setting.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(RTPB)).BeginInit();
     SuspendLayout();
     //
     // TELE
     //
     TELE.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                         | System.Windows.Forms.AnchorStyles.Right)));
     TELE.BackColor = System.Drawing.Color.Transparent;
     TELE.Enabled   = false;
     TELE.Font      = new System.Drawing.Font("Microsoft Sans Serif", 20F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel);
     TELE.ForeColor = System.Drawing.Color.White;
     TELE.Location  = new System.Drawing.Point(0, 0);
     TELE.Name      = "TELE";
     TELE.Size      = new System.Drawing.Size(359, 25);
     TELE.TabIndex  = 1;
     TELE.Text      = "Nerator";
     TELE.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // LOPB
     //
     LOPB.BackColor = System.Drawing.Color.Transparent;
     LOPB.Enabled   = false;
     LOPB.Image     = global::Nerator.Properties.Resources.ShowPassword;
     LOPB.Location  = new System.Drawing.Point(0, 0);
     LOPB.Name      = "LOPB";
     LOPB.Size      = new System.Drawing.Size(25, 24);
     LOPB.SizeMode  = System.Windows.Forms.PictureBoxSizeMode.Zoom;
     LOPB.TabIndex  = 3;
     LOPB.TabStop   = false;
     //
     // PWDTB
     //
     PWDTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                                                          | System.Windows.Forms.AnchorStyles.Right)));
     PWDTB.BackColor             = System.Drawing.Color.White;
     PWDTB.Font                  = new System.Drawing.Font("Tahoma", 11F);
     PWDTB.ForeColor             = System.Drawing.Color.DimGray;
     PWDTB.Image                 = global::Nerator.Properties.Resources.PasteSpecial;
     PWDTB.Location              = new System.Drawing.Point(6, 106);
     PWDTB.MaxLength             = 50;
     PWDTB.Multiline             = false;
     PWDTB.Name                  = "PWDTB";
     PWDTB.ReadOnly              = false;
     PWDTB.Size                  = new System.Drawing.Size(315, 41);
     PWDTB.TabIndex              = 6;
     PWDTB.Text                  = "Nerator";
     PWDTB.TextAlignment         = System.Windows.Forms.HorizontalAlignment.Center;
     PWDTB.UseSystemPasswordChar = false;
     //
     // PLPB
     //
     PLPB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                                                         | System.Windows.Forms.AnchorStyles.Right)));
     PLPB.Location = new System.Drawing.Point(10, 146);
     PLPB.Name     = "PLPB";
     PLPB.Size     = new System.Drawing.Size(307, 5);
     PLPB.Style    = ReaLTaiizor.Enum.Poison.ColorStyle.Green;
     PLPB.TabIndex = 12;
     PLPB.Theme    = ReaLTaiizor.Enum.Poison.ThemeStyle.Light;
     PLPB.Value    = 50;
     //
     // SSBR
     //
     SSBR.BaseColor    = System.Drawing.Color.FromArgb(((int)(((byte)(222)))), ((int)(((byte)(222)))), ((int)(((byte)(222)))));
     SSBR.Dock         = System.Windows.Forms.DockStyle.Bottom;
     SSBR.Font         = new System.Drawing.Font("Segoe UI", 8F);
     SSBR.ForeColor    = System.Drawing.Color.White;
     SSBR.Location     = new System.Drawing.Point(0, 336);
     SSBR.Name         = "SSBR";
     SSBR.RectColor    = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(63)))), ((int)(((byte)(159)))));
     SSBR.ShowTimeDate = true;
     SSBR.Size         = new System.Drawing.Size(359, 22);
     SSBR.TabIndex     = 13;
     SSBR.Text         = "The application continues to run smoothly.";
     SSBR.TextColor    = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     SSBR.TimeColor    = System.Drawing.Color.FromArgb(((int)(((byte)(54)))), ((int)(((byte)(54)))), ((int)(((byte)(54)))));
     SSBR.TimeFormat   = "HH:mm:ss";
     //
     // CEB
     //
     CEB.Anchor                  = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     CEB.AutoSizeMode            = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     CEB.Cursor                  = System.Windows.Forms.Cursors.Hand;
     CEB.Depth                   = 0;
     CEB.DrawShadows             = true;
     CEB.HighEmphasis            = true;
     CEB.Icon                    = global::Nerator.Properties.Resources.QuillInk;
     CEB.Location                = new System.Drawing.Point(6, 156);
     CEB.Margin                  = new System.Windows.Forms.Padding(4, 6, 4, 6);
     CEB.MouseState              = ReaLTaiizor.Helper.MaterialDrawHelper.MaterialMouseState.HOVER;
     CEB.Name                    = "CEB";
     CEB.Size                    = new System.Drawing.Size(104, 36);
     CEB.TabIndex                = 14;
     CEB.Text                    = "CREATE";
     CEB.Type                    = ReaLTaiizor.Controls.MaterialButton.MaterialButtonType.Contained;
     CEB.UseAccentColor          = false;
     CEB.UseVisualStyleBackColor = true;
     CEB.Click                  += new System.EventHandler(CEB_Click);
     //
     // CYB
     //
     CYB.Anchor                  = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     CYB.AutoSizeMode            = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     CYB.Cursor                  = System.Windows.Forms.Cursors.Hand;
     CYB.Depth                   = 0;
     CYB.DrawShadows             = true;
     CYB.HighEmphasis            = true;
     CYB.Icon                    = global::Nerator.Properties.Resources.CopyClipboard;
     CYB.Location                = new System.Drawing.Point(234, 156);
     CYB.Margin                  = new System.Windows.Forms.Padding(4, 6, 4, 6);
     CYB.MouseState              = ReaLTaiizor.Helper.MaterialDrawHelper.MaterialMouseState.HOVER;
     CYB.Name                    = "CYB";
     CYB.Size                    = new System.Drawing.Size(87, 36);
     CYB.TabIndex                = 15;
     CYB.Text                    = "COPY";
     CYB.Type                    = ReaLTaiizor.Controls.MaterialButton.MaterialButtonType.Contained;
     CYB.UseAccentColor          = false;
     CYB.UseVisualStyleBackColor = true;
     CYB.Click                  += new System.EventHandler(CYB_Click);
     //
     // MTC
     //
     MTC.Alignment = System.Windows.Forms.TabAlignment.Bottom;
     MTC.Controls.Add(Generate);
     MTC.Controls.Add(History);
     MTC.Controls.Add(Setting);
     MTC.Depth         = 0;
     MTC.ItemSize      = new System.Drawing.Size(44, 18);
     MTC.Location      = new System.Drawing.Point(12, 98);
     MTC.Margin        = new System.Windows.Forms.Padding(3, 0, 3, 3);
     MTC.MouseState    = ReaLTaiizor.Helper.MaterialDrawHelper.MaterialMouseState.HOVER;
     MTC.Multiline     = true;
     MTC.Name          = "MTC";
     MTC.Padding       = new System.Drawing.Point(0, 0);
     MTC.SelectedIndex = 0;
     MTC.Size          = new System.Drawing.Size(335, 227);
     MTC.TabIndex      = 16;
     //
     // Generate
     //
     Generate.BackColor = System.Drawing.SystemColors.Control;
     Generate.Controls.Add(HYS);
     Generate.Controls.Add(CEB);
     Generate.Controls.Add(CYB);
     Generate.Controls.Add(PWDTB);
     Generate.Controls.Add(PLPB);
     Generate.Controls.Add(WRPB);
     Generate.Location = new System.Drawing.Point(4, 4);
     Generate.Name     = "Generate";
     Generate.Padding  = new System.Windows.Forms.Padding(3);
     Generate.Size     = new System.Drawing.Size(327, 201);
     Generate.TabIndex = 1;
     Generate.Text     = "Generate";
     //
     // HYS
     //
     HYS.Anchor                  = System.Windows.Forms.AnchorStyles.Bottom;
     HYS.AutoSize                = true;
     HYS.Checked                 = true;
     HYS.CheckState              = System.Windows.Forms.CheckState.Checked;
     HYS.Depth                   = 0;
     HYS.Location                = new System.Drawing.Point(117, 157);
     HYS.Margin                  = new System.Windows.Forms.Padding(0);
     HYS.MouseLocation           = new System.Drawing.Point(-1, -1);
     HYS.MouseState              = ReaLTaiizor.Helper.MaterialDrawHelper.MaterialMouseState.HOVER;
     HYS.Name                    = "HYS";
     HYS.Ripple                  = true;
     HYS.Size                    = new System.Drawing.Size(108, 37);
     HYS.TabIndex                = 16;
     HYS.Text                    = "History";
     HYS.UseAccentColor          = true;
     HYS.UseVisualStyleBackColor = true;
     HYS.CheckedChanged         += new System.EventHandler(HYS_CheckedChanged);
     //
     // WRPB
     //
     WRPB.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                          | System.Windows.Forms.AnchorStyles.Left)
                                                         | System.Windows.Forms.AnchorStyles.Right)));
     WRPB.BackColor = System.Drawing.Color.Transparent;
     WRPB.Image     = global::Nerator.Properties.Resources.WaitRabbit;
     WRPB.Location  = new System.Drawing.Point(0, 0);
     WRPB.Margin    = new System.Windows.Forms.Padding(0);
     WRPB.Name      = "WRPB";
     WRPB.Size      = new System.Drawing.Size(327, 103);
     WRPB.SizeMode  = System.Windows.Forms.PictureBoxSizeMode.Zoom;
     WRPB.TabIndex  = 17;
     WRPB.TabStop   = false;
     //
     // History
     //
     History.BackColor = System.Drawing.SystemColors.Control;
     History.Controls.Add(HYP);
     History.Location = new System.Drawing.Point(4, 4);
     History.Name     = "History";
     History.Padding  = new System.Windows.Forms.Padding(3);
     History.Size     = new System.Drawing.Size(327, 201);
     History.TabIndex = 0;
     History.Text     = "History";
     //
     // HYP
     //
     HYP.AutoScroll = true;
     HYP.BackColor  = System.Drawing.Color.Transparent;
     HYP.Dock       = System.Windows.Forms.DockStyle.Fill;
     HYP.Location   = new System.Drawing.Point(3, 3);
     HYP.Margin     = new System.Windows.Forms.Padding(0);
     HYP.Name       = "HYP";
     HYP.Size       = new System.Drawing.Size(321, 195);
     HYP.TabIndex   = 0;
     //
     // Setting
     //
     Setting.BackColor = System.Drawing.SystemColors.Control;
     Setting.Controls.Add(PWLN);
     Setting.Controls.Add(DKUC);
     Setting.Controls.Add(LTUC);
     Setting.Controls.Add(TMCB);
     Setting.Controls.Add(SMCB);
     Setting.Controls.Add(AMCB);
     Setting.Controls.Add(RTPB);
     Setting.Location = new System.Drawing.Point(4, 4);
     Setting.Name     = "Setting";
     Setting.Padding  = new System.Windows.Forms.Padding(3);
     Setting.Size     = new System.Drawing.Size(327, 201);
     Setting.TabIndex = 2;
     Setting.Text     = "Setting";
     //
     // PWLN
     //
     PWLN.AlwaysValueVisible = true;
     PWLN.Anchor             = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                     | System.Windows.Forms.AnchorStyles.Right)));
     PWLN.BallonArrowColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(158)))), ((int)(((byte)(255)))));
     PWLN.BallonColor      = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(158)))), ((int)(((byte)(255)))));
     PWLN.BarColor         = System.Drawing.Color.FromArgb(((int)(((byte)(218)))), ((int)(((byte)(220)))), ((int)(((byte)(223)))));
     PWLN.BaseColor        = System.Drawing.SystemColors.Control;
     PWLN.Cursor           = System.Windows.Forms.Cursors.Hand;
     PWLN.FillBarColor     = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(158)))), ((int)(((byte)(255)))));
     PWLN.Font             = new System.Drawing.Font("Segoe UI", 8F);
     PWLN.ForeColor        = System.Drawing.Color.White;
     PWLN.HeadBorderColor  = System.Drawing.Color.DodgerBlue;
     PWLN.HeadColor        = System.Drawing.Color.Black;
     PWLN.Location         = new System.Drawing.Point(6, 57);
     PWLN.MaxValue         = 50;
     PWLN.MinValue         = 0;
     PWLN.Name             = "PWLN";
     PWLN.ShowValue        = true;
     PWLN.Size             = new System.Drawing.Size(315, 45);
     PWLN.TabIndex         = 17;
     PWLN.Text             = "PWLN";
     PWLN.ThemeColor       = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(158)))), ((int)(((byte)(255)))));
     TETT.SetToolTip(PWLN, "Password Length");
     PWLN.UnknownColor = System.Drawing.Color.White;
     PWLN.Value        = 15;
     //
     // DKUC
     //
     DKUC.Anchor      = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     DKUC.BackColor   = System.Drawing.Color.Transparent;
     DKUC.Location    = new System.Drawing.Point(218, 98);
     DKUC.Margin      = new System.Windows.Forms.Padding(5);
     DKUC.MaximumSize = new System.Drawing.Size(103, 97);
     DKUC.MinimumSize = new System.Drawing.Size(103, 97);
     DKUC.Name        = "DKUC";
     DKUC.Size        = new System.Drawing.Size(103, 97);
     DKUC.TabIndex    = 16;
     //
     // LTUC
     //
     LTUC.Anchor      = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     LTUC.BackColor   = System.Drawing.Color.Transparent;
     LTUC.Location    = new System.Drawing.Point(6, 98);
     LTUC.Margin      = new System.Windows.Forms.Padding(5);
     LTUC.MaximumSize = new System.Drawing.Size(103, 97);
     LTUC.MinimumSize = new System.Drawing.Size(103, 97);
     LTUC.Name        = "LTUC";
     LTUC.Size        = new System.Drawing.Size(103, 97);
     LTUC.TabIndex    = 15;
     //
     // TMCB
     //
     TMCB.Anchor                  = System.Windows.Forms.AnchorStyles.Bottom;
     TMCB.AutoSize                = true;
     TMCB.Checked                 = true;
     TMCB.CheckState              = System.Windows.Forms.CheckState.Checked;
     TMCB.Cursor                  = System.Windows.Forms.Cursors.Hand;
     TMCB.Depth                   = 0;
     TMCB.Location                = new System.Drawing.Point(110, 164);
     TMCB.Margin                  = new System.Windows.Forms.Padding(0);
     TMCB.MouseLocation           = new System.Drawing.Point(-1, -1);
     TMCB.MouseState              = ReaLTaiizor.Helper.MaterialDrawHelper.MaterialMouseState.HOVER;
     TMCB.Name                    = "TMCB";
     TMCB.Ripple                  = true;
     TMCB.Size                    = new System.Drawing.Size(103, 37);
     TMCB.TabIndex                = 12;
     TMCB.Text                    = "Top Most";
     TMCB.UseVisualStyleBackColor = true;
     TMCB.CheckedChanged         += new System.EventHandler(TMCB_CheckedChanged);
     //
     // SMCB
     //
     SMCB.Anchor            = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     SMCB.AutoResize        = false;
     SMCB.BackColor         = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     SMCB.Cursor            = System.Windows.Forms.Cursors.Hand;
     SMCB.Depth             = 0;
     SMCB.DrawMode          = System.Windows.Forms.DrawMode.OwnerDrawVariable;
     SMCB.DropDownHeight    = 174;
     SMCB.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     SMCB.DropDownWidth     = 135;
     SMCB.Font              = new System.Drawing.Font("Microsoft Sans Serif", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel);
     SMCB.ForeColor         = System.Drawing.Color.FromArgb(((int)(((byte)(222)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     SMCB.FormattingEnabled = true;
     SMCB.Hint              = "Special Mode";
     SMCB.IntegralHeight    = false;
     SMCB.ItemHeight        = 43;
     SMCB.Items.AddRange(new object[] {
         "Mixed",
         "Symbol",
         "Number"
     });
     SMCB.Location              = new System.Drawing.Point(186, 6);
     SMCB.MaxDropDownItems      = 4;
     SMCB.MouseState            = ReaLTaiizor.Helper.MaterialDrawHelper.MaterialMouseState.OUT;
     SMCB.Name                  = "SMCB";
     SMCB.Size                  = new System.Drawing.Size(135, 49);
     SMCB.TabIndex              = 14;
     SMCB.SelectedIndexChanged += new System.EventHandler(SMCB_SelectedIndexChanged);
     //
     // AMCB
     //
     AMCB.AutoResize        = false;
     AMCB.BackColor         = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     AMCB.Cursor            = System.Windows.Forms.Cursors.Hand;
     AMCB.Depth             = 0;
     AMCB.DrawMode          = System.Windows.Forms.DrawMode.OwnerDrawVariable;
     AMCB.DropDownHeight    = 174;
     AMCB.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     AMCB.DropDownWidth     = 135;
     AMCB.Font              = new System.Drawing.Font("Microsoft Sans Serif", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel);
     AMCB.ForeColor         = System.Drawing.Color.FromArgb(((int)(((byte)(222)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     AMCB.FormattingEnabled = true;
     AMCB.Hint              = "Alphabetic Mode";
     AMCB.IntegralHeight    = false;
     AMCB.ItemHeight        = 43;
     AMCB.Items.AddRange(new object[] {
         "Mixed",
         "Uppercase",
         "Lowercase"
     });
     AMCB.Location              = new System.Drawing.Point(6, 6);
     AMCB.MaxDropDownItems      = 4;
     AMCB.MouseState            = ReaLTaiizor.Helper.MaterialDrawHelper.MaterialMouseState.OUT;
     AMCB.Name                  = "AMCB";
     AMCB.Size                  = new System.Drawing.Size(135, 49);
     AMCB.TabIndex              = 13;
     AMCB.SelectedIndexChanged += new System.EventHandler(AMCB_SelectedIndexChanged);
     //
     // RTPB
     //
     RTPB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                                                         | System.Windows.Forms.AnchorStyles.Right)));
     RTPB.BackColor = System.Drawing.Color.Transparent;
     RTPB.Image     = global::Nerator.Properties.Resources.WhiteCat;
     RTPB.Location  = new System.Drawing.Point(0, 71);
     RTPB.Margin    = new System.Windows.Forms.Padding(0);
     RTPB.Name      = "RTPB";
     RTPB.Size      = new System.Drawing.Size(327, 93);
     RTPB.SizeMode  = System.Windows.Forms.PictureBoxSizeMode.Zoom;
     RTPB.TabIndex  = 5;
     RTPB.TabStop   = false;
     //
     // MTS
     //
     MTS.BaseTabControl = MTC;
     MTS.Cursor         = System.Windows.Forms.Cursors.Default;
     MTS.Depth          = 0;
     MTS.Font           = new System.Drawing.Font("Roboto", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
     MTS.HeadAlignment  = ReaLTaiizor.Controls.MaterialTabSelector.Alignment.Center;
     MTS.Location       = new System.Drawing.Point(12, 75);
     MTS.Margin         = new System.Windows.Forms.Padding(3, 3, 3, 0);
     MTS.MouseState     = ReaLTaiizor.Helper.MaterialDrawHelper.MaterialMouseState.HOVER;
     MTS.Name           = "MTS";
     MTS.Size           = new System.Drawing.Size(335, 23);
     MTS.TabIndex       = 17;
     MTS.Text           = "materialTabSelector1";
     MTS.TitleTextState = ReaLTaiizor.Controls.MaterialTabSelector.TextState.Normal;
     //
     // STATUST
     //
     STATUST.Enabled  = true;
     STATUST.Interval = 1000;
     STATUST.Tick    += new System.EventHandler(STATUST_Tick);
     //
     // STATUSMT
     //
     STATUSMT.Enabled  = true;
     STATUSMT.Interval = 50;
     STATUSMT.Tick    += new System.EventHandler(STATUSMT_Tick);
     //
     // materialCheckBox1
     //
     materialCheckBox1.Depth                   = 0;
     materialCheckBox1.Location                = new System.Drawing.Point(0, 0);
     materialCheckBox1.Margin                  = new System.Windows.Forms.Padding(0);
     materialCheckBox1.MouseLocation           = new System.Drawing.Point(-1, -1);
     materialCheckBox1.MouseState              = ReaLTaiizor.Helper.MaterialDrawHelper.MaterialMouseState.HOVER;
     materialCheckBox1.Name                    = "materialCheckBox1";
     materialCheckBox1.Ripple                  = true;
     materialCheckBox1.Size                    = new System.Drawing.Size(104, 37);
     materialCheckBox1.TabIndex                = 0;
     materialCheckBox1.Text                    = "materialCheckBox1";
     materialCheckBox1.UseVisualStyleBackColor = true;
     //
     // materialCheckBox2
     //
     materialCheckBox2.Depth                   = 0;
     materialCheckBox2.Location                = new System.Drawing.Point(0, 0);
     materialCheckBox2.Margin                  = new System.Windows.Forms.Padding(0);
     materialCheckBox2.MouseLocation           = new System.Drawing.Point(-1, -1);
     materialCheckBox2.MouseState              = ReaLTaiizor.Helper.MaterialDrawHelper.MaterialMouseState.HOVER;
     materialCheckBox2.Name                    = "materialCheckBox2";
     materialCheckBox2.Ripple                  = true;
     materialCheckBox2.Size                    = new System.Drawing.Size(104, 37);
     materialCheckBox2.TabIndex                = 0;
     materialCheckBox2.Text                    = "materialCheckBox2";
     materialCheckBox2.UseVisualStyleBackColor = true;
     //
     // materialCheckBox3
     //
     materialCheckBox3.Depth                   = 0;
     materialCheckBox3.Location                = new System.Drawing.Point(0, 0);
     materialCheckBox3.Margin                  = new System.Windows.Forms.Padding(0);
     materialCheckBox3.MouseLocation           = new System.Drawing.Point(-1, -1);
     materialCheckBox3.MouseState              = ReaLTaiizor.Helper.MaterialDrawHelper.MaterialMouseState.HOVER;
     materialCheckBox3.Name                    = "materialCheckBox3";
     materialCheckBox3.Ripple                  = true;
     materialCheckBox3.Size                    = new System.Drawing.Size(104, 37);
     materialCheckBox3.TabIndex                = 0;
     materialCheckBox3.Text                    = "materialCheckBox3";
     materialCheckBox3.UseVisualStyleBackColor = true;
     //
     // TETT
     //
     TETT.BackColor      = System.Drawing.Color.White;
     TETT.BorderColor    = System.Drawing.Color.FromArgb(((int)(((byte)(204)))), ((int)(((byte)(204)))), ((int)(((byte)(204)))));
     TETT.ForeColor      = System.Drawing.Color.FromArgb(((int)(((byte)(170)))), ((int)(((byte)(170)))), ((int)(((byte)(170)))));
     TETT.IsDerivedStyle = true;
     TETT.OwnerDraw      = true;
     TETT.Style          = ReaLTaiizor.Enum.Metro.Style.Light;
     TETT.StyleManager   = null;
     TETT.ThemeAuthor    = "Taiizor";
     TETT.ThemeName      = "MetroLight";
     //
     // LIGHT
     //
     AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
     AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Dpi;
     ClientSize          = new System.Drawing.Size(359, 358);
     Controls.Add(SSBR);
     Controls.Add(MTS);
     Controls.Add(MTC);
     Controls.Add(LOPB);
     Controls.Add(TELE);
     Icon          = ((System.Drawing.Icon)(resources.GetObject("$Icon")));
     MaximizeBox   = false;
     MaximumSize   = new System.Drawing.Size(359, 358);
     MinimumSize   = new System.Drawing.Size(359, 358);
     Name          = "LIGHT";
     Sizable       = false;
     StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     Text          = "New Generation Password Generator";
     FormClosed   += new System.Windows.Forms.FormClosedEventHandler(LIGHT_FormClosed);
     ((System.ComponentModel.ISupportInitialize)(LOPB)).EndInit();
     MTC.ResumeLayout(false);
     Generate.ResumeLayout(false);
     Generate.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(WRPB)).EndInit();
     History.ResumeLayout(false);
     Setting.ResumeLayout(false);
     Setting.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(RTPB)).EndInit();
     ResumeLayout(false);
 }
Esempio n. 50
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.Label      measureEveryUnits;
     System.Windows.Forms.TabPage    tabBedSize;
     System.Windows.Forms.Label      heightUnits;
     System.Windows.Forms.Label      heightLabel;
     System.Windows.Forms.Label      widthUnits;
     System.Windows.Forms.Label      widthLabel;
     System.Windows.Forms.TabPage    tabColors;
     System.Windows.Forms.Label      autoColorLabel;
     System.Windows.Forms.Label      maxZUnits;
     System.Windows.Forms.Label      maxZLabel;
     System.Windows.Forms.Label      minZUnits;
     System.Windows.Forms.Label      minZLabel;
     System.Windows.Forms.TabControl tabs;
     this.heightText           = new System.Windows.Forms.TextBox();
     this.widthText            = new System.Windows.Forms.TextBox();
     this.maxZText             = new System.Windows.Forms.TextBox();
     this.minZText             = new System.Windows.Forms.TextBox();
     this.tabDetection         = new System.Windows.Forms.TabPage();
     this.checkCustom          = new System.Windows.Forms.CheckBox();
     this.checkMarlin2         = new System.Windows.Forms.CheckBox();
     this.checkMarlin1         = new System.Windows.Forms.CheckBox();
     this.textCustom           = new System.Windows.Forms.RichTextBox();
     this.portText             = new System.Windows.Forms.TextBox();
     this.connectButton        = new System.Windows.Forms.Button();
     this.outputText           = new System.Windows.Forms.TextBox();
     this.disconnectButton     = new System.Windows.Forms.Button();
     this.bedPicture           = new System.Windows.Forms.PictureBox();
     this.measureEveryText     = new System.Windows.Forms.TextBox();
     this.measureEveryButton   = new System.Windows.Forms.Button();
     this.setZ5Button          = new System.Windows.Forms.Button();
     this.measureCornersButton = new System.Windows.Forms.Button();
     this.recenterButton       = new System.Windows.Forms.Button();
     measureEveryUnits         = new System.Windows.Forms.Label();
     tabBedSize     = new System.Windows.Forms.TabPage();
     heightUnits    = new System.Windows.Forms.Label();
     heightLabel    = new System.Windows.Forms.Label();
     widthUnits     = new System.Windows.Forms.Label();
     widthLabel     = new System.Windows.Forms.Label();
     tabColors      = new System.Windows.Forms.TabPage();
     autoColorLabel = new System.Windows.Forms.Label();
     maxZUnits      = new System.Windows.Forms.Label();
     maxZLabel      = new System.Windows.Forms.Label();
     minZUnits      = new System.Windows.Forms.Label();
     minZLabel      = new System.Windows.Forms.Label();
     tabs           = new System.Windows.Forms.TabControl();
     tabBedSize.SuspendLayout();
     tabColors.SuspendLayout();
     tabs.SuspendLayout();
     this.tabDetection.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.bedPicture)).BeginInit();
     this.SuspendLayout();
     //
     // measureEveryUnits
     //
     measureEveryUnits.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     measureEveryUnits.AutoSize = true;
     measureEveryUnits.Location = new System.Drawing.Point(251, 770);
     measureEveryUnits.Name     = "measureEveryUnits";
     measureEveryUnits.Size     = new System.Drawing.Size(23, 13);
     measureEveryUnits.TabIndex = 10;
     measureEveryUnits.Text     = "mm";
     //
     // tabBedSize
     //
     tabBedSize.Controls.Add(heightUnits);
     tabBedSize.Controls.Add(this.heightText);
     tabBedSize.Controls.Add(heightLabel);
     tabBedSize.Controls.Add(widthUnits);
     tabBedSize.Controls.Add(this.widthText);
     tabBedSize.Controls.Add(widthLabel);
     tabBedSize.Location = new System.Drawing.Point(4, 22);
     tabBedSize.Name     = "tabBedSize";
     tabBedSize.Padding  = new System.Windows.Forms.Padding(3);
     tabBedSize.Size     = new System.Drawing.Size(254, 127);
     tabBedSize.TabIndex = 0;
     tabBedSize.Text     = "Bed Size";
     tabBedSize.UseVisualStyleBackColor = true;
     //
     // heightUnits
     //
     heightUnits.AutoSize = true;
     heightUnits.Location = new System.Drawing.Point(130, 52);
     heightUnits.Name     = "heightUnits";
     heightUnits.Size     = new System.Drawing.Size(23, 13);
     heightUnits.TabIndex = 5;
     heightUnits.Text     = "mm";
     //
     // heightText
     //
     this.heightText.Location     = new System.Drawing.Point(75, 49);
     this.heightText.Name         = "heightText";
     this.heightText.Size         = new System.Drawing.Size(49, 20);
     this.heightText.TabIndex     = 4;
     this.heightText.Text         = "150";
     this.heightText.TextChanged += new System.EventHandler(this.RedrawBedImage);
     //
     // heightLabel
     //
     heightLabel.AutoSize = true;
     heightLabel.Location = new System.Drawing.Point(6, 52);
     heightLabel.Name     = "heightLabel";
     heightLabel.Size     = new System.Drawing.Size(63, 13);
     heightLabel.TabIndex = 3;
     heightLabel.Text     = "Bed Height:";
     //
     // widthUnits
     //
     widthUnits.AutoSize = true;
     widthUnits.Location = new System.Drawing.Point(130, 26);
     widthUnits.Name     = "widthUnits";
     widthUnits.Size     = new System.Drawing.Size(23, 13);
     widthUnits.TabIndex = 2;
     widthUnits.Text     = "mm";
     //
     // widthText
     //
     this.widthText.Location     = new System.Drawing.Point(75, 23);
     this.widthText.Name         = "widthText";
     this.widthText.Size         = new System.Drawing.Size(49, 20);
     this.widthText.TabIndex     = 1;
     this.widthText.Text         = "150";
     this.widthText.TextChanged += new System.EventHandler(this.RedrawBedImage);
     //
     // widthLabel
     //
     widthLabel.AutoSize = true;
     widthLabel.Location = new System.Drawing.Point(6, 26);
     widthLabel.Name     = "widthLabel";
     widthLabel.Size     = new System.Drawing.Size(60, 13);
     widthLabel.TabIndex = 0;
     widthLabel.Text     = "Bed Width:";
     //
     // tabColors
     //
     tabColors.Controls.Add(autoColorLabel);
     tabColors.Controls.Add(maxZUnits);
     tabColors.Controls.Add(this.maxZText);
     tabColors.Controls.Add(maxZLabel);
     tabColors.Controls.Add(minZUnits);
     tabColors.Controls.Add(this.minZText);
     tabColors.Controls.Add(minZLabel);
     tabColors.Location = new System.Drawing.Point(4, 22);
     tabColors.Name     = "tabColors";
     tabColors.Padding  = new System.Windows.Forms.Padding(3);
     tabColors.Size     = new System.Drawing.Size(254, 127);
     tabColors.TabIndex = 1;
     tabColors.Text     = "Colors";
     tabColors.UseVisualStyleBackColor = true;
     //
     // autoColorLabel
     //
     autoColorLabel.AutoSize = true;
     autoColorLabel.Location = new System.Drawing.Point(6, 70);
     autoColorLabel.Name     = "autoColorLabel";
     autoColorLabel.Size     = new System.Drawing.Size(161, 13);
     autoColorLabel.TabIndex = 6;
     autoColorLabel.Text     = "Leave blank for automatic colors";
     //
     // maxZUnits
     //
     maxZUnits.AutoSize = true;
     maxZUnits.Location = new System.Drawing.Point(168, 43);
     maxZUnits.Name     = "maxZUnits";
     maxZUnits.Size     = new System.Drawing.Size(23, 13);
     maxZUnits.TabIndex = 5;
     maxZUnits.Text     = "mm";
     //
     // maxZText
     //
     this.maxZText.Location     = new System.Drawing.Point(113, 40);
     this.maxZText.Name         = "maxZText";
     this.maxZText.Size         = new System.Drawing.Size(49, 20);
     this.maxZText.TabIndex     = 4;
     this.maxZText.TextChanged += new System.EventHandler(this.RedrawBedImage);
     //
     // maxZLabel
     //
     maxZLabel.AutoSize = true;
     maxZLabel.Location = new System.Drawing.Point(6, 43);
     maxZLabel.Name     = "maxZLabel";
     maxZLabel.Size     = new System.Drawing.Size(95, 13);
     maxZLabel.TabIndex = 3;
     maxZLabel.Text     = "Force max Z color:";
     //
     // minZUnits
     //
     minZUnits.AutoSize = true;
     minZUnits.Location = new System.Drawing.Point(168, 17);
     minZUnits.Name     = "minZUnits";
     minZUnits.Size     = new System.Drawing.Size(23, 13);
     minZUnits.TabIndex = 2;
     minZUnits.Text     = "mm";
     //
     // minZText
     //
     this.minZText.Location     = new System.Drawing.Point(113, 14);
     this.minZText.Name         = "minZText";
     this.minZText.Size         = new System.Drawing.Size(49, 20);
     this.minZText.TabIndex     = 1;
     this.minZText.TextChanged += new System.EventHandler(this.RedrawBedImage);
     //
     // minZLabel
     //
     minZLabel.AutoSize = true;
     minZLabel.Location = new System.Drawing.Point(6, 17);
     minZLabel.Name     = "minZLabel";
     minZLabel.Size     = new System.Drawing.Size(92, 13);
     minZLabel.TabIndex = 0;
     minZLabel.Text     = "Force min Z color:";
     //
     // tabs
     //
     tabs.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     tabs.Controls.Add(tabBedSize);
     tabs.Controls.Add(tabColors);
     tabs.Controls.Add(this.tabDetection);
     tabs.Location      = new System.Drawing.Point(12, 488);
     tabs.Name          = "tabs";
     tabs.SelectedIndex = 0;
     tabs.Size          = new System.Drawing.Size(262, 153);
     tabs.TabIndex      = 4;
     //
     // tabDetection
     //
     this.tabDetection.Controls.Add(this.checkCustom);
     this.tabDetection.Controls.Add(this.checkMarlin2);
     this.tabDetection.Controls.Add(this.checkMarlin1);
     this.tabDetection.Controls.Add(this.textCustom);
     this.tabDetection.Location = new System.Drawing.Point(4, 22);
     this.tabDetection.Name     = "tabDetection";
     this.tabDetection.Size     = new System.Drawing.Size(254, 127);
     this.tabDetection.TabIndex = 2;
     this.tabDetection.Text     = "Detection";
     this.tabDetection.UseVisualStyleBackColor = true;
     //
     // checkCustom
     //
     this.checkCustom.AutoSize = true;
     this.checkCustom.Location = new System.Drawing.Point(6, 63);
     this.checkCustom.Name     = "checkCustom";
     this.checkCustom.Size     = new System.Drawing.Size(61, 17);
     this.checkCustom.TabIndex = 2;
     this.checkCustom.Text     = "Custom";
     this.checkCustom.UseVisualStyleBackColor = true;
     this.checkCustom.CheckedChanged         += new System.EventHandler(this.checkCustomChanged);
     //
     // checkMarlin2
     //
     this.checkMarlin2.AutoSize   = true;
     this.checkMarlin2.Checked    = true;
     this.checkMarlin2.CheckState = System.Windows.Forms.CheckState.Checked;
     this.checkMarlin2.Location   = new System.Drawing.Point(6, 40);
     this.checkMarlin2.Name       = "checkMarlin2";
     this.checkMarlin2.Size       = new System.Drawing.Size(71, 17);
     this.checkMarlin2.TabIndex   = 1;
     this.checkMarlin2.Text       = "Marlin 2.x";
     this.checkMarlin2.UseVisualStyleBackColor = true;
     this.checkMarlin2.CheckedChanged         += new System.EventHandler(this.RedrawBedImage);
     //
     // checkMarlin1
     //
     this.checkMarlin1.AutoSize   = true;
     this.checkMarlin1.Checked    = true;
     this.checkMarlin1.CheckState = System.Windows.Forms.CheckState.Checked;
     this.checkMarlin1.Location   = new System.Drawing.Point(6, 17);
     this.checkMarlin1.Name       = "checkMarlin1";
     this.checkMarlin1.Size       = new System.Drawing.Size(71, 17);
     this.checkMarlin1.TabIndex   = 0;
     this.checkMarlin1.Text       = "Marlin 1.x";
     this.checkMarlin1.UseVisualStyleBackColor = true;
     this.checkMarlin1.CheckedChanged         += new System.EventHandler(this.RedrawBedImage);
     //
     // textCustom
     //
     this.textCustom.DetectUrls       = false;
     this.textCustom.Enabled          = false;
     this.textCustom.Font             = new System.Drawing.Font("Courier New", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textCustom.Location         = new System.Drawing.Point(23, 86);
     this.textCustom.Multiline        = false;
     this.textCustom.Name             = "textCustom";
     this.textCustom.ScrollBars       = System.Windows.Forms.RichTextBoxScrollBars.None;
     this.textCustom.ShortcutsEnabled = false;
     this.textCustom.Size             = new System.Drawing.Size(220, 22);
     this.textCustom.TabIndex         = 3;
     this.textCustom.Text             = "Bed X: {X} Y: {Y} Z: {Z}";
     this.textCustom.WordWrap         = false;
     this.textCustom.TextChanged     += new System.EventHandler(this.customDetectionChanged);
     //
     // portText
     //
     this.portText.Location = new System.Drawing.Point(12, 14);
     this.portText.Name     = "portText";
     this.portText.Size     = new System.Drawing.Size(100, 20);
     this.portText.TabIndex = 0;
     //
     // connectButton
     //
     this.connectButton.Location = new System.Drawing.Point(118, 12);
     this.connectButton.Name     = "connectButton";
     this.connectButton.Size     = new System.Drawing.Size(75, 23);
     this.connectButton.TabIndex = 1;
     this.connectButton.Text     = "&Connect";
     this.connectButton.UseVisualStyleBackColor = true;
     this.connectButton.Click += new System.EventHandler(this.ConnectButton_Click);
     //
     // outputText
     //
     this.outputText.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                    | System.Windows.Forms.AnchorStyles.Left)));
     this.outputText.Location   = new System.Drawing.Point(12, 41);
     this.outputText.Multiline  = true;
     this.outputText.Name       = "outputText";
     this.outputText.ScrollBars = System.Windows.Forms.ScrollBars.Both;
     this.outputText.Size       = new System.Drawing.Size(262, 416);
     this.outputText.TabIndex   = 3;
     //
     // disconnectButton
     //
     this.disconnectButton.Enabled  = false;
     this.disconnectButton.Location = new System.Drawing.Point(199, 12);
     this.disconnectButton.Name     = "disconnectButton";
     this.disconnectButton.Size     = new System.Drawing.Size(75, 23);
     this.disconnectButton.TabIndex = 2;
     this.disconnectButton.Text     = "&Disconnect";
     this.disconnectButton.UseVisualStyleBackColor = true;
     this.disconnectButton.Click += new System.EventHandler(this.DisconnectButton_Click);
     //
     // bedPicture
     //
     this.bedPicture.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                     | System.Windows.Forms.AnchorStyles.Left)
                                                                    | System.Windows.Forms.AnchorStyles.Right)));
     this.bedPicture.Location    = new System.Drawing.Point(284, 0);
     this.bedPicture.Name        = "bedPicture";
     this.bedPicture.Size        = new System.Drawing.Size(800, 800);
     this.bedPicture.TabIndex    = 5;
     this.bedPicture.TabStop     = false;
     this.bedPicture.Paint      += new System.Windows.Forms.PaintEventHandler(this.BedPaint);
     this.bedPicture.MouseClick += new System.Windows.Forms.MouseEventHandler(this.BedClick);
     this.bedPicture.Resize     += new System.EventHandler(this.RedrawBedImage);
     //
     // measureEveryText
     //
     this.measureEveryText.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.measureEveryText.Location = new System.Drawing.Point(196, 767);
     this.measureEveryText.Name     = "measureEveryText";
     this.measureEveryText.Size     = new System.Drawing.Size(49, 20);
     this.measureEveryText.TabIndex = 9;
     this.measureEveryText.Text     = "10";
     //
     // measureEveryButton
     //
     this.measureEveryButton.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.measureEveryButton.Location = new System.Drawing.Point(12, 765);
     this.measureEveryButton.Name     = "measureEveryButton";
     this.measureEveryButton.Size     = new System.Drawing.Size(178, 23);
     this.measureEveryButton.TabIndex = 8;
     this.measureEveryButton.Text     = "Measure every:";
     this.measureEveryButton.UseVisualStyleBackColor = true;
     this.measureEveryButton.Click += new System.EventHandler(this.GeneratePattern);
     //
     // setZ5Button
     //
     this.setZ5Button.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.setZ5Button.Location = new System.Drawing.Point(12, 689);
     this.setZ5Button.Name     = "setZ5Button";
     this.setZ5Button.Size     = new System.Drawing.Size(262, 23);
     this.setZ5Button.TabIndex = 6;
     this.setZ5Button.Text     = "Move Z to 5.0mm";
     this.setZ5Button.UseVisualStyleBackColor = true;
     this.setZ5Button.Click += new System.EventHandler(this.SetZto5);
     //
     // measureCornersButton
     //
     this.measureCornersButton.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.measureCornersButton.Location = new System.Drawing.Point(12, 736);
     this.measureCornersButton.Name     = "measureCornersButton";
     this.measureCornersButton.Size     = new System.Drawing.Size(262, 23);
     this.measureCornersButton.TabIndex = 7;
     this.measureCornersButton.Text     = "Measure corners";
     this.measureCornersButton.UseVisualStyleBackColor = true;
     this.measureCornersButton.Click += new System.EventHandler(this.MeasureCorners);
     //
     // recenterButton
     //
     this.recenterButton.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.recenterButton.Location = new System.Drawing.Point(12, 660);
     this.recenterButton.Name     = "recenterButton";
     this.recenterButton.Size     = new System.Drawing.Size(262, 23);
     this.recenterButton.TabIndex = 5;
     this.recenterButton.Text     = "Clear and return to center";
     this.recenterButton.UseVisualStyleBackColor = true;
     this.recenterButton.Click += new System.EventHandler(this.ClearClicked);
     //
     // BedLeveler
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(1084, 800);
     this.Controls.Add(tabs);
     this.Controls.Add(measureEveryUnits);
     this.Controls.Add(this.measureEveryText);
     this.Controls.Add(this.measureEveryButton);
     this.Controls.Add(this.setZ5Button);
     this.Controls.Add(this.measureCornersButton);
     this.Controls.Add(this.recenterButton);
     this.Controls.Add(this.bedPicture);
     this.Controls.Add(this.disconnectButton);
     this.Controls.Add(this.outputText);
     this.Controls.Add(this.connectButton);
     this.Controls.Add(this.portText);
     this.DoubleBuffered = true;
     this.MinimumSize    = new System.Drawing.Size(740, 490);
     this.Name           = "BedLeveler";
     this.Text           = "Printer Bed Inspector";
     this.FormClosing   += new System.Windows.Forms.FormClosingEventHandler(this.BedLeveler_FormClosing);
     tabBedSize.ResumeLayout(false);
     tabBedSize.PerformLayout();
     tabColors.ResumeLayout(false);
     tabColors.PerformLayout();
     tabs.ResumeLayout(false);
     this.tabDetection.ResumeLayout(false);
     this.tabDetection.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.bedPicture)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Esempio n. 51
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.Windows.Forms.TabPage tabOversikt;
            this.lblDodeSauer = new System.Windows.Forms.Label();
            this.lblAntallSauer = new System.Windows.Forms.Label();
            this.label26 = new System.Windows.Forms.Label();
            this.label25 = new System.Windows.Forms.Label();
            this.lblTemperatur = new System.Windows.Forms.Label();
            this.lblHjerteslag = new System.Windows.Forms.Label();
            this.label24 = new System.Windows.Forms.Label();
            this.label23 = new System.Windows.Forms.Label();
            this.label9 = new System.Windows.Forms.Label();
            this.label7 = new System.Windows.Forms.Label();
            this.label8 = new System.Windows.Forms.Label();
            this.button2 = new System.Windows.Forms.Button();
            this.dgwSearchSheep = new System.Windows.Forms.DataGridView();
            this.button3 = new System.Windows.Forms.Button();
            this.btnEmptyAlterSheepFields = new System.Windows.Forms.Button();
            this.btnAlterSheep = new System.Windows.Forms.Button();
            this.label20 = new System.Windows.Forms.Label();
            this.textBoxNyNotat = new System.Windows.Forms.TextBox();
            this.textBoxNyFdato = new System.Windows.Forms.TextBox();
            this.textBoxNyNavn = new System.Windows.Forms.TextBox();
            this.label13 = new System.Windows.Forms.Label();
            this.label15 = new System.Windows.Forms.Label();
            this.label16 = new System.Windows.Forms.Label();
            this.label17 = new System.Windows.Forms.Label();
            this.textBoxNyFlokkID = new System.Windows.Forms.TextBox();
            this.buttonLeggTilNySau = new System.Windows.Forms.Button();
            this.textBoxNotat = new System.Windows.Forms.TextBox();
            this.textBoxFdato = new System.Windows.Forms.TextBox();
            this.textBoxNavn = new System.Windows.Forms.TextBox();
            this.label14 = new System.Windows.Forms.Label();
            this.label10 = new System.Windows.Forms.Label();
            this.label11 = new System.Windows.Forms.Label();
            this.label5 = new System.Windows.Forms.Label();
            this.label4 = new System.Windows.Forms.Label();
            this.textBoxFlokkID = new System.Windows.Forms.TextBox();
            this.textBoxSauID = new System.Windows.Forms.TextBox();
            this.buttonSoksau = new System.Windows.Forms.Button();
            this.labelSokSau = new System.Windows.Forms.Label();
            this.textSokSauInstillinger = new System.Windows.Forms.TextBox();
            this.menuStrip1 = new System.Windows.Forms.MenuStrip();
            this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.logOutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.sdlfkjdsfToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.viewToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.dgvSauer = new System.Windows.Forms.DataGridView();
            this.webBrowser1 = new System.Windows.Forms.WebBrowser();
            this.textSokSauKart = new System.Windows.Forms.TextBox();
            this.label1 = new System.Windows.Forms.Label();
            this.tabControl1 = new System.Windows.Forms.TabControl();
            this.tabKart = new System.Windows.Forms.TabPage();
            this.button6 = new System.Windows.Forms.Button();
            this.dataGridView1 = new System.Windows.Forms.DataGridView();
            this.button5 = new System.Windows.Forms.Button();
            this.button4 = new System.Windows.Forms.Button();
            this.button1 = new System.Windows.Forms.Button();
            this.btnShowSheepPos = new System.Windows.Forms.Button();
            this.tabInstillinger = new System.Windows.Forms.TabPage();
            this.label6 = new System.Windows.Forms.Label();
            this.comboBoxTextsize = new System.Windows.Forms.ComboBox();
            this.label21 = new System.Windows.Forms.Label();
            this.textBoxID = new System.Windows.Forms.TextBox();
            this.buttonLagreEndringer = new System.Windows.Forms.Button();
            this.textBoxAdresse = new System.Windows.Forms.TextBox();
            this.labelAdresse = new System.Windows.Forms.Label();
            this.textBoxTelefon = new System.Windows.Forms.TextBox();
            this.textBoxNyPassord = new System.Windows.Forms.TextBox();
            this.labelNyPassord = new System.Windows.Forms.Label();
            this.textBoxGammelPassord = new System.Windows.Forms.TextBox();
            this.textBoxEpost = new System.Windows.Forms.TextBox();
            this.labelGammelPassord = new System.Windows.Forms.Label();
            this.labelEpost = new System.Windows.Forms.Label();
            this.label12 = new System.Windows.Forms.Label();
            this.label2 = new System.Windows.Forms.Label();
            this.timer1 = new System.Windows.Forms.Timer(this.components);
            this.label3 = new System.Windows.Forms.Label();
            tabOversikt = new System.Windows.Forms.TabPage();
            tabOversikt.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dgwSearchSheep)).BeginInit();
            this.menuStrip1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dgvSauer)).BeginInit();
            this.tabControl1.SuspendLayout();
            this.tabKart.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
            this.tabInstillinger.SuspendLayout();
            this.SuspendLayout();
            // 
            // tabOversikt
            // 
            tabOversikt.Controls.Add(this.lblDodeSauer);
            tabOversikt.Controls.Add(this.lblAntallSauer);
            tabOversikt.Controls.Add(this.label26);
            tabOversikt.Controls.Add(this.label25);
            tabOversikt.Controls.Add(this.lblTemperatur);
            tabOversikt.Controls.Add(this.lblHjerteslag);
            tabOversikt.Controls.Add(this.label24);
            tabOversikt.Controls.Add(this.label23);
            tabOversikt.Controls.Add(this.label9);
            tabOversikt.Controls.Add(this.label7);
            tabOversikt.Controls.Add(this.label8);
            tabOversikt.Controls.Add(this.button2);
            tabOversikt.Controls.Add(this.dgwSearchSheep);
            tabOversikt.Controls.Add(this.button3);
            tabOversikt.Controls.Add(this.btnEmptyAlterSheepFields);
            tabOversikt.Controls.Add(this.btnAlterSheep);
            tabOversikt.Controls.Add(this.label20);
            tabOversikt.Controls.Add(this.textBoxNyNotat);
            tabOversikt.Controls.Add(this.textBoxNyFdato);
            tabOversikt.Controls.Add(this.textBoxNyNavn);
            tabOversikt.Controls.Add(this.label13);
            tabOversikt.Controls.Add(this.label15);
            tabOversikt.Controls.Add(this.label16);
            tabOversikt.Controls.Add(this.label17);
            tabOversikt.Controls.Add(this.textBoxNyFlokkID);
            tabOversikt.Controls.Add(this.buttonLeggTilNySau);
            tabOversikt.Controls.Add(this.textBoxNotat);
            tabOversikt.Controls.Add(this.textBoxFdato);
            tabOversikt.Controls.Add(this.textBoxNavn);
            tabOversikt.Controls.Add(this.label14);
            tabOversikt.Controls.Add(this.label10);
            tabOversikt.Controls.Add(this.label11);
            tabOversikt.Controls.Add(this.label5);
            tabOversikt.Controls.Add(this.label4);
            tabOversikt.Controls.Add(this.textBoxFlokkID);
            tabOversikt.Controls.Add(this.textBoxSauID);
            tabOversikt.Controls.Add(this.buttonSoksau);
            tabOversikt.Controls.Add(this.labelSokSau);
            tabOversikt.Controls.Add(this.textSokSauInstillinger);
            tabOversikt.Location = new System.Drawing.Point(4, 22);
            tabOversikt.Name = "tabOversikt";
            tabOversikt.Padding = new System.Windows.Forms.Padding(3);
            tabOversikt.Size = new System.Drawing.Size(1175, 657);
            tabOversikt.TabIndex = 1;
            tabOversikt.Text = "Oversikt";
            tabOversikt.UseVisualStyleBackColor = true;
            tabOversikt.Click += new System.EventHandler(this.tabOversikt_Click);
            // 
            // lblDodeSauer
            // 
            this.lblDodeSauer.AutoSize = true;
            this.lblDodeSauer.Location = new System.Drawing.Point(896, 416);
            this.lblDodeSauer.Name = "lblDodeSauer";
            this.lblDodeSauer.Size = new System.Drawing.Size(93, 13);
            this.lblDodeSauer.TabIndex = 67;
            this.lblDodeSauer.Text = "Antall sauer i flokk";
            // 
            // lblAntallSauer
            // 
            this.lblAntallSauer.AutoSize = true;
            this.lblAntallSauer.Location = new System.Drawing.Point(896, 382);
            this.lblAntallSauer.Name = "lblAntallSauer";
            this.lblAntallSauer.Size = new System.Drawing.Size(93, 13);
            this.lblAntallSauer.TabIndex = 66;
            this.lblAntallSauer.Text = "Antall sauer i flokk";
            // 
            // label26
            // 
            this.label26.AutoSize = true;
            this.label26.Location = new System.Drawing.Point(797, 416);
            this.label26.Name = "label26";
            this.label26.Size = new System.Drawing.Size(89, 13);
            this.label26.TabIndex = 65;
            this.label26.Text = "Antall døde sauer";
            // 
            // label25
            // 
            this.label25.AutoSize = true;
            this.label25.Location = new System.Drawing.Point(797, 382);
            this.label25.Name = "label25";
            this.label25.Size = new System.Drawing.Size(93, 13);
            this.label25.TabIndex = 64;
            this.label25.Text = "Antall sauer i flokk";
            // 
            // lblTemperatur
            // 
            this.lblTemperatur.AutoSize = true;
            this.lblTemperatur.Location = new System.Drawing.Point(874, 126);
            this.lblTemperatur.Name = "lblTemperatur";
            this.lblTemperatur.Size = new System.Drawing.Size(0, 13);
            this.lblTemperatur.TabIndex = 63;
            // 
            // lblHjerteslag
            // 
            this.lblHjerteslag.AutoSize = true;
            this.lblHjerteslag.Location = new System.Drawing.Point(874, 92);
            this.lblHjerteslag.Name = "lblHjerteslag";
            this.lblHjerteslag.Size = new System.Drawing.Size(0, 13);
            this.lblHjerteslag.TabIndex = 62;
            // 
            // label24
            // 
            this.label24.AutoSize = true;
            this.label24.Location = new System.Drawing.Point(797, 126);
            this.label24.Name = "label24";
            this.label24.Size = new System.Drawing.Size(61, 13);
            this.label24.TabIndex = 61;
            this.label24.Text = "Temperatur";
            // 
            // label23
            // 
            this.label23.AutoSize = true;
            this.label23.Location = new System.Drawing.Point(797, 92);
            this.label23.Name = "label23";
            this.label23.Size = new System.Drawing.Size(54, 13);
            this.label23.TabIndex = 60;
            this.label23.Text = "Hjerteslag";
            // 
            // label9
            // 
            this.label9.AutoSize = true;
            this.label9.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label9.Location = new System.Drawing.Point(796, 334);
            this.label9.Name = "label9";
            this.label9.Size = new System.Drawing.Size(69, 20);
            this.label9.TabIndex = 59;
            this.label9.Text = "Statisikk";
            // 
            // label7
            // 
            this.label7.AutoSize = true;
            this.label7.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label7.Location = new System.Drawing.Point(796, 41);
            this.label7.Name = "label7";
            this.label7.Size = new System.Drawing.Size(132, 20);
            this.label7.TabIndex = 58;
            this.label7.Text = "Helseinformasjon";
            // 
            // label8
            // 
            this.label8.AutoSize = true;
            this.label8.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label8.Location = new System.Drawing.Point(543, 41);
            this.label8.Name = "label8";
            this.label8.Size = new System.Drawing.Size(65, 20);
            this.label8.TabIndex = 57;
            this.label8.Text = "Rediger";
            // 
            // button2
            // 
            this.button2.Location = new System.Drawing.Point(611, 251);
            this.button2.Name = "button2";
            this.button2.Size = new System.Drawing.Size(72, 42);
            this.button2.TabIndex = 55;
            this.button2.Text = "Slett sau";
            this.button2.UseVisualStyleBackColor = true;
            this.button2.Click += new System.EventHandler(this.button2_Click);
            // 
            // dgwSearchSheep
            // 
            this.dgwSearchSheep.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.dgwSearchSheep.Location = new System.Drawing.Point(7, 84);
            this.dgwSearchSheep.Name = "dgwSearchSheep";
            this.dgwSearchSheep.Size = new System.Drawing.Size(482, 498);
            this.dgwSearchSheep.TabIndex = 54;
            this.dgwSearchSheep.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgwSearchSheep_CellContentClick);
            // 
            // button3
            // 
            this.button3.Location = new System.Drawing.Point(622, 512);
            this.button3.Name = "button3";
            this.button3.Size = new System.Drawing.Size(61, 42);
            this.button3.TabIndex = 53;
            this.button3.Text = "Tøm";
            this.button3.UseVisualStyleBackColor = true;
            // 
            // btnEmptyAlterSheepFields
            // 
            this.btnEmptyAlterSheepFields.Location = new System.Drawing.Point(550, 251);
            this.btnEmptyAlterSheepFields.Name = "btnEmptyAlterSheepFields";
            this.btnEmptyAlterSheepFields.Size = new System.Drawing.Size(58, 42);
            this.btnEmptyAlterSheepFields.TabIndex = 52;
            this.btnEmptyAlterSheepFields.Text = "Tøm";
            this.btnEmptyAlterSheepFields.UseVisualStyleBackColor = true;
            this.btnEmptyAlterSheepFields.Click += new System.EventHandler(this.button1_Click);
            // 
            // btnAlterSheep
            // 
            this.btnAlterSheep.Location = new System.Drawing.Point(686, 251);
            this.btnAlterSheep.Name = "btnAlterSheep";
            this.btnAlterSheep.Size = new System.Drawing.Size(72, 42);
            this.btnAlterSheep.TabIndex = 51;
            this.btnAlterSheep.Text = "Endre sau";
            this.btnAlterSheep.UseVisualStyleBackColor = true;
            this.btnAlterSheep.Click += new System.EventHandler(this.btnAlterSheep_Click);
            // 
            // label20
            // 
            this.label20.AutoSize = true;
            this.label20.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label20.Location = new System.Drawing.Point(549, 334);
            this.label20.Name = "label20";
            this.label20.Size = new System.Drawing.Size(110, 20);
            this.label20.TabIndex = 49;
            this.label20.Text = "Legg til ny sau";
            // 
            // textBoxNyNotat
            // 
            this.textBoxNyNotat.Location = new System.Drawing.Point(622, 476);
            this.textBoxNyNotat.Name = "textBoxNyNotat";
            this.textBoxNyNotat.Size = new System.Drawing.Size(136, 20);
            this.textBoxNyNotat.TabIndex = 47;
            // 
            // textBoxNyFdato
            // 
            this.textBoxNyFdato.Location = new System.Drawing.Point(622, 446);
            this.textBoxNyFdato.Name = "textBoxNyFdato";
            this.textBoxNyFdato.Size = new System.Drawing.Size(136, 20);
            this.textBoxNyFdato.TabIndex = 46;
            // 
            // textBoxNyNavn
            // 
            this.textBoxNyNavn.Location = new System.Drawing.Point(622, 413);
            this.textBoxNyNavn.Name = "textBoxNyNavn";
            this.textBoxNyNavn.Size = new System.Drawing.Size(136, 20);
            this.textBoxNyNavn.TabIndex = 45;
            // 
            // label13
            // 
            this.label13.AutoSize = true;
            this.label13.Location = new System.Drawing.Point(550, 483);
            this.label13.Name = "label13";
            this.label13.Size = new System.Drawing.Size(33, 13);
            this.label13.TabIndex = 44;
            this.label13.Text = "Notat";
            // 
            // label15
            // 
            this.label15.AutoSize = true;
            this.label15.Location = new System.Drawing.Point(550, 449);
            this.label15.Name = "label15";
            this.label15.Size = new System.Drawing.Size(64, 13);
            this.label15.TabIndex = 43;
            this.label15.Text = "Fødselsdato";
            // 
            // label16
            // 
            this.label16.AutoSize = true;
            this.label16.Location = new System.Drawing.Point(550, 416);
            this.label16.Name = "label16";
            this.label16.Size = new System.Drawing.Size(33, 13);
            this.label16.TabIndex = 42;
            this.label16.Text = "Navn";
            // 
            // label17
            // 
            this.label17.AutoSize = true;
            this.label17.Location = new System.Drawing.Point(550, 382);
            this.label17.Name = "label17";
            this.label17.Size = new System.Drawing.Size(44, 13);
            this.label17.TabIndex = 41;
            this.label17.Text = "FlokkID";
            // 
            // textBoxNyFlokkID
            // 
            this.textBoxNyFlokkID.Enabled = false;
            this.textBoxNyFlokkID.Location = new System.Drawing.Point(622, 379);
            this.textBoxNyFlokkID.Name = "textBoxNyFlokkID";
            this.textBoxNyFlokkID.Size = new System.Drawing.Size(136, 20);
            this.textBoxNyFlokkID.TabIndex = 39;
            // 
            // buttonLeggTilNySau
            // 
            this.buttonLeggTilNySau.Location = new System.Drawing.Point(686, 512);
            this.buttonLeggTilNySau.Name = "buttonLeggTilNySau";
            this.buttonLeggTilNySau.Size = new System.Drawing.Size(72, 42);
            this.buttonLeggTilNySau.TabIndex = 36;
            this.buttonLeggTilNySau.Text = "Legg til sau";
            this.buttonLeggTilNySau.UseVisualStyleBackColor = true;
            this.buttonLeggTilNySau.Click += new System.EventHandler(this.buttonLeggTilNySau_Click);
            // 
            // textBoxNotat
            // 
            this.textBoxNotat.Location = new System.Drawing.Point(622, 216);
            this.textBoxNotat.Name = "textBoxNotat";
            this.textBoxNotat.Size = new System.Drawing.Size(136, 20);
            this.textBoxNotat.TabIndex = 35;
            // 
            // textBoxFdato
            // 
            this.textBoxFdato.Location = new System.Drawing.Point(622, 186);
            this.textBoxFdato.Name = "textBoxFdato";
            this.textBoxFdato.ReadOnly = true;
            this.textBoxFdato.Size = new System.Drawing.Size(136, 20);
            this.textBoxFdato.TabIndex = 34;
            // 
            // textBoxNavn
            // 
            this.textBoxNavn.Location = new System.Drawing.Point(622, 152);
            this.textBoxNavn.Name = "textBoxNavn";
            this.textBoxNavn.Size = new System.Drawing.Size(136, 20);
            this.textBoxNavn.TabIndex = 33;
            // 
            // label14
            // 
            this.label14.AutoSize = true;
            this.label14.Location = new System.Drawing.Point(544, 223);
            this.label14.Name = "label14";
            this.label14.Size = new System.Drawing.Size(33, 13);
            this.label14.TabIndex = 31;
            this.label14.Text = "Notat";
            // 
            // label10
            // 
            this.label10.AutoSize = true;
            this.label10.Location = new System.Drawing.Point(544, 193);
            this.label10.Name = "label10";
            this.label10.Size = new System.Drawing.Size(64, 13);
            this.label10.TabIndex = 30;
            this.label10.Text = "Fødselsdato";
            this.label10.Click += new System.EventHandler(this.label10_Click);
            // 
            // label11
            // 
            this.label11.AutoSize = true;
            this.label11.Location = new System.Drawing.Point(544, 159);
            this.label11.Name = "label11";
            this.label11.Size = new System.Drawing.Size(33, 13);
            this.label11.TabIndex = 29;
            this.label11.Text = "Navn";
            // 
            // label5
            // 
            this.label5.AutoSize = true;
            this.label5.Location = new System.Drawing.Point(544, 126);
            this.label5.Name = "label5";
            this.label5.Size = new System.Drawing.Size(44, 13);
            this.label5.TabIndex = 28;
            this.label5.Text = "FlokkID";
            // 
            // label4
            // 
            this.label4.AutoSize = true;
            this.label4.Location = new System.Drawing.Point(544, 92);
            this.label4.Name = "label4";
            this.label4.Size = new System.Drawing.Size(37, 13);
            this.label4.TabIndex = 27;
            this.label4.Text = "SauID";
            // 
            // textBoxFlokkID
            // 
            this.textBoxFlokkID.Location = new System.Drawing.Point(622, 119);
            this.textBoxFlokkID.Name = "textBoxFlokkID";
            this.textBoxFlokkID.Size = new System.Drawing.Size(136, 20);
            this.textBoxFlokkID.TabIndex = 26;
            // 
            // textBoxSauID
            // 
            this.textBoxSauID.Location = new System.Drawing.Point(622, 85);
            this.textBoxSauID.Name = "textBoxSauID";
            this.textBoxSauID.ReadOnly = true;
            this.textBoxSauID.Size = new System.Drawing.Size(136, 20);
            this.textBoxSauID.TabIndex = 24;
            // 
            // buttonSoksau
            // 
            this.buttonSoksau.Location = new System.Drawing.Point(424, 54);
            this.buttonSoksau.Name = "buttonSoksau";
            this.buttonSoksau.Size = new System.Drawing.Size(65, 24);
            this.buttonSoksau.TabIndex = 23;
            this.buttonSoksau.Text = "Søk";
            this.buttonSoksau.UseVisualStyleBackColor = true;
            this.buttonSoksau.Click += new System.EventHandler(this.buttonSoksau_Click);
            // 
            // labelSokSau
            // 
            this.labelSokSau.AutoSize = true;
            this.labelSokSau.Location = new System.Drawing.Point(3, 41);
            this.labelSokSau.Name = "labelSokSau";
            this.labelSokSau.Size = new System.Drawing.Size(70, 13);
            this.labelSokSau.TabIndex = 20;
            this.labelSokSau.Text = "Søk etter sau";
            // 
            // textSokSauInstillinger
            // 
            this.textSokSauInstillinger.Location = new System.Drawing.Point(6, 57);
            this.textSokSauInstillinger.Name = "textSokSauInstillinger";
            this.textSokSauInstillinger.Size = new System.Drawing.Size(412, 20);
            this.textSokSauInstillinger.TabIndex = 19;
            // 
            // menuStrip1
            // 
            this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.fileToolStripMenuItem,
            this.sdlfkjdsfToolStripMenuItem,
            this.viewToolStripMenuItem,
            this.helpToolStripMenuItem});
            this.menuStrip1.Location = new System.Drawing.Point(0, 0);
            this.menuStrip1.Name = "menuStrip1";
            this.menuStrip1.Size = new System.Drawing.Size(1207, 24);
            this.menuStrip1.TabIndex = 1;
            this.menuStrip1.Text = "menuStrip1";
            // 
            // fileToolStripMenuItem
            // 
            this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.logOutToolStripMenuItem,
            this.exitToolStripMenuItem});
            this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
            this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
            this.fileToolStripMenuItem.Text = "File";
            // 
            // logOutToolStripMenuItem
            // 
            this.logOutToolStripMenuItem.Name = "logOutToolStripMenuItem";
            this.logOutToolStripMenuItem.Size = new System.Drawing.Size(115, 22);
            this.logOutToolStripMenuItem.Text = "Logg ut";
            this.logOutToolStripMenuItem.Click += new System.EventHandler(this.logOutToolStripMenuItem_Click);
            // 
            // exitToolStripMenuItem
            // 
            this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
            this.exitToolStripMenuItem.Size = new System.Drawing.Size(115, 22);
            this.exitToolStripMenuItem.Text = "Avslutt";
            this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
            // 
            // sdlfkjdsfToolStripMenuItem
            // 
            this.sdlfkjdsfToolStripMenuItem.Name = "sdlfkjdsfToolStripMenuItem";
            this.sdlfkjdsfToolStripMenuItem.Size = new System.Drawing.Size(39, 20);
            this.sdlfkjdsfToolStripMenuItem.Text = "Edit";
            // 
            // viewToolStripMenuItem
            // 
            this.viewToolStripMenuItem.Name = "viewToolStripMenuItem";
            this.viewToolStripMenuItem.Size = new System.Drawing.Size(44, 20);
            this.viewToolStripMenuItem.Text = "View";
            // 
            // helpToolStripMenuItem
            // 
            this.helpToolStripMenuItem.Name = "helpToolStripMenuItem";
            this.helpToolStripMenuItem.Size = new System.Drawing.Size(44, 20);
            this.helpToolStripMenuItem.Text = "Help";
            // 
            // dgvSauer
            // 
            this.dgvSauer.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.dgvSauer.Location = new System.Drawing.Point(6, 48);
            this.dgvSauer.Name = "dgvSauer";
            this.dgvSauer.Size = new System.Drawing.Size(448, 536);
            this.dgvSauer.TabIndex = 2;
            this.dgvSauer.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvSauer_CellContentClick);
            // 
            // webBrowser1
            // 
            this.webBrowser1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.webBrowser1.Location = new System.Drawing.Point(460, 6);
            this.webBrowser1.MinimumSize = new System.Drawing.Size(20, 20);
            this.webBrowser1.Name = "webBrowser1";
            this.webBrowser1.ScrollBarsEnabled = false;
            this.webBrowser1.Size = new System.Drawing.Size(731, 629);
            this.webBrowser1.TabIndex = 3;
            this.webBrowser1.Url = new System.Uri("", System.UriKind.Relative);
            this.webBrowser1.DocumentCompleted += new System.Windows.Forms.WebBrowserDocumentCompletedEventHandler(this.webBrowser1_DocumentCompleted);
            // 
            // textSokSauKart
            // 
            this.textSokSauKart.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.textSokSauKart.Location = new System.Drawing.Point(6, 22);
            this.textSokSauKart.Name = "textSokSauKart";
            this.textSokSauKart.Size = new System.Drawing.Size(448, 20);
            this.textSokSauKart.TabIndex = 4;
            this.textSokSauKart.TextChanged += new System.EventHandler(this.textSokSauKart_TextChanged);
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(3, 6);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(70, 13);
            this.label1.TabIndex = 5;
            this.label1.Text = "Søk etter sau";
            this.label1.Click += new System.EventHandler(this.label1_Click);
            // 
            // tabControl1
            // 
            this.tabControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.tabControl1.Controls.Add(this.tabKart);
            this.tabControl1.Controls.Add(tabOversikt);
            this.tabControl1.Controls.Add(this.tabInstillinger);
            this.tabControl1.Location = new System.Drawing.Point(12, 27);
            this.tabControl1.Name = "tabControl1";
            this.tabControl1.SelectedIndex = 0;
            this.tabControl1.Size = new System.Drawing.Size(1183, 683);
            this.tabControl1.TabIndex = 6;
            // 
            // tabKart
            // 
            this.tabKart.Controls.Add(this.button6);
            this.tabKart.Controls.Add(this.dataGridView1);
            this.tabKart.Controls.Add(this.button5);
            this.tabKart.Controls.Add(this.button4);
            this.tabKart.Controls.Add(this.button1);
            this.tabKart.Controls.Add(this.btnShowSheepPos);
            this.tabKart.Controls.Add(this.webBrowser1);
            this.tabKart.Controls.Add(this.label1);
            this.tabKart.Controls.Add(this.dgvSauer);
            this.tabKart.Controls.Add(this.textSokSauKart);
            this.tabKart.Location = new System.Drawing.Point(4, 22);
            this.tabKart.Name = "tabKart";
            this.tabKart.Padding = new System.Windows.Forms.Padding(3);
            this.tabKart.Size = new System.Drawing.Size(1175, 657);
            this.tabKart.TabIndex = 0;
            this.tabKart.Text = " Kart";
            this.tabKart.UseVisualStyleBackColor = true;
            this.tabKart.Click += new System.EventHandler(this.tabKart_Click);
            // 
            // button6
            // 
            this.button6.Location = new System.Drawing.Point(208, 590);
            this.button6.Name = "button6";
            this.button6.Size = new System.Drawing.Size(78, 43);
            this.button6.TabIndex = 17;
            this.button6.Text = "Vis i liste";
            this.button6.UseVisualStyleBackColor = true;
            this.button6.Click += new System.EventHandler(this.button6_Click);
            // 
            // dataGridView1
            // 
            this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.dataGridView1.Location = new System.Drawing.Point(6, 48);
            this.dataGridView1.Name = "dataGridView1";
            this.dataGridView1.Size = new System.Drawing.Size(448, 536);
            this.dataGridView1.TabIndex = 16;
            this.dataGridView1.Visible = false;
            this.dataGridView1.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView1_CellContentClick);
            // 
            // button5
            // 
            this.button5.Location = new System.Drawing.Point(90, 590);
            this.button5.Name = "button5";
            this.button5.Size = new System.Drawing.Size(78, 43);
            this.button5.TabIndex = 15;
            this.button5.Text = "Vis alle døde sauer";
            this.button5.UseVisualStyleBackColor = true;
            this.button5.Click += new System.EventHandler(this.button5_Click);
            // 
            // button4
            // 
            this.button4.Location = new System.Drawing.Point(6, 590);
            this.button4.Name = "button4";
            this.button4.Size = new System.Drawing.Size(78, 43);
            this.button4.TabIndex = 14;
            this.button4.Text = "Vis døde sauer";
            this.button4.UseVisualStyleBackColor = true;
            this.button4.Click += new System.EventHandler(this.button4_Click);
            // 
            // button1
            // 
            this.button1.Location = new System.Drawing.Point(376, 590);
            this.button1.Name = "button1";
            this.button1.Size = new System.Drawing.Size(78, 43);
            this.button1.TabIndex = 13;
            this.button1.Text = "Vis alle sauer";
            this.button1.UseVisualStyleBackColor = true;
            this.button1.Click += new System.EventHandler(this.button1_Click_1);
            // 
            // btnShowSheepPos
            // 
            this.btnShowSheepPos.Location = new System.Drawing.Point(292, 590);
            this.btnShowSheepPos.Name = "btnShowSheepPos";
            this.btnShowSheepPos.Size = new System.Drawing.Size(78, 43);
            this.btnShowSheepPos.TabIndex = 6;
            this.btnShowSheepPos.Text = "Vis ruten til sauene";
            this.btnShowSheepPos.UseVisualStyleBackColor = true;
            this.btnShowSheepPos.Click += new System.EventHandler(this.btnShowSheepPos_Click);
            // 
            // tabInstillinger
            // 
            this.tabInstillinger.Controls.Add(this.label6);
            this.tabInstillinger.Controls.Add(this.comboBoxTextsize);
            this.tabInstillinger.Controls.Add(this.label21);
            this.tabInstillinger.Controls.Add(this.textBoxID);
            this.tabInstillinger.Controls.Add(this.buttonLagreEndringer);
            this.tabInstillinger.Controls.Add(this.textBoxAdresse);
            this.tabInstillinger.Controls.Add(this.labelAdresse);
            this.tabInstillinger.Controls.Add(this.textBoxTelefon);
            this.tabInstillinger.Controls.Add(this.textBoxNyPassord);
            this.tabInstillinger.Controls.Add(this.labelNyPassord);
            this.tabInstillinger.Controls.Add(this.textBoxGammelPassord);
            this.tabInstillinger.Controls.Add(this.textBoxEpost);
            this.tabInstillinger.Controls.Add(this.labelGammelPassord);
            this.tabInstillinger.Controls.Add(this.labelEpost);
            this.tabInstillinger.Controls.Add(this.label12);
            this.tabInstillinger.Controls.Add(this.label2);
            this.tabInstillinger.Location = new System.Drawing.Point(4, 22);
            this.tabInstillinger.Name = "tabInstillinger";
            this.tabInstillinger.Padding = new System.Windows.Forms.Padding(3);
            this.tabInstillinger.Size = new System.Drawing.Size(1175, 657);
            this.tabInstillinger.TabIndex = 2;
            this.tabInstillinger.Text = "Innstillinger";
            this.tabInstillinger.UseVisualStyleBackColor = true;
            this.tabInstillinger.Click += new System.EventHandler(this.tabPage3_Click);
            // 
            // label6
            // 
            this.label6.AutoSize = true;
            this.label6.Location = new System.Drawing.Point(287, 59);
            this.label6.Name = "label6";
            this.label6.Size = new System.Drawing.Size(59, 13);
            this.label6.TabIndex = 37;
            this.label6.Text = "Innstillinger";
            // 
            // comboBoxTextsize
            // 
            this.comboBoxTextsize.FormattingEnabled = true;
            this.comboBoxTextsize.Items.AddRange(new object[] {
            "5",
            "6",
            "7",
            "8",
            "9",
            "10",
            "11",
            "12",
            "13",
            "14",
            "15"});
            this.comboBoxTextsize.Location = new System.Drawing.Point(290, 107);
            this.comboBoxTextsize.Margin = new System.Windows.Forms.Padding(2);
            this.comboBoxTextsize.MaxDropDownItems = 11;
            this.comboBoxTextsize.MaxLength = 2;
            this.comboBoxTextsize.Name = "comboBoxTextsize";
            this.comboBoxTextsize.Size = new System.Drawing.Size(180, 21);
            this.comboBoxTextsize.TabIndex = 35;
            this.comboBoxTextsize.SelectedIndexChanged += new System.EventHandler(this.comboBoxTextsize_SelectedIndexChanged);
            // 
            // label21
            // 
            this.label21.AutoSize = true;
            this.label21.Location = new System.Drawing.Point(287, 90);
            this.label21.Name = "label21";
            this.label21.Size = new System.Drawing.Size(70, 13);
            this.label21.TabIndex = 32;
            this.label21.Text = "Skriftstørrelse";
            // 
            // textBoxID
            // 
            this.textBoxID.Location = new System.Drawing.Point(816, 30);
            this.textBoxID.Name = "textBoxID";
            this.textBoxID.Size = new System.Drawing.Size(33, 20);
            this.textBoxID.TabIndex = 27;
            this.textBoxID.Visible = false;
            // 
            // buttonLagreEndringer
            // 
            this.buttonLagreEndringer.Location = new System.Drawing.Point(32, 323);
            this.buttonLagreEndringer.Margin = new System.Windows.Forms.Padding(2);
            this.buttonLagreEndringer.Name = "buttonLagreEndringer";
            this.buttonLagreEndringer.Size = new System.Drawing.Size(97, 23);
            this.buttonLagreEndringer.TabIndex = 26;
            this.buttonLagreEndringer.Text = "Lagre Instillinger";
            this.buttonLagreEndringer.UseVisualStyleBackColor = true;
            this.buttonLagreEndringer.Click += new System.EventHandler(this.buttonLagreEndringer_Click);
            // 
            // textBoxAdresse
            // 
            this.textBoxAdresse.Location = new System.Drawing.Point(32, 289);
            this.textBoxAdresse.Name = "textBoxAdresse";
            this.textBoxAdresse.Size = new System.Drawing.Size(180, 20);
            this.textBoxAdresse.TabIndex = 25;
            // 
            // labelAdresse
            // 
            this.labelAdresse.AutoSize = true;
            this.labelAdresse.Location = new System.Drawing.Point(30, 272);
            this.labelAdresse.Name = "labelAdresse";
            this.labelAdresse.Size = new System.Drawing.Size(45, 13);
            this.labelAdresse.TabIndex = 24;
            this.labelAdresse.Text = "Adresse";
            // 
            // textBoxTelefon
            // 
            this.textBoxTelefon.Location = new System.Drawing.Point(32, 243);
            this.textBoxTelefon.Name = "textBoxTelefon";
            this.textBoxTelefon.Size = new System.Drawing.Size(180, 20);
            this.textBoxTelefon.TabIndex = 23;
            // 
            // textBoxNyPassord
            // 
            this.textBoxNyPassord.Location = new System.Drawing.Point(32, 197);
            this.textBoxNyPassord.Name = "textBoxNyPassord";
            this.textBoxNyPassord.Size = new System.Drawing.Size(180, 20);
            this.textBoxNyPassord.TabIndex = 22;
            // 
            // labelNyPassord
            // 
            this.labelNyPassord.AutoSize = true;
            this.labelNyPassord.Location = new System.Drawing.Point(30, 180);
            this.labelNyPassord.Name = "labelNyPassord";
            this.labelNyPassord.Size = new System.Drawing.Size(67, 13);
            this.labelNyPassord.TabIndex = 21;
            this.labelNyPassord.Text = "Nytt Passord";
            this.labelNyPassord.Click += new System.EventHandler(this.labelNyPassord_Click);
            // 
            // textBoxGammelPassord
            // 
            this.textBoxGammelPassord.Location = new System.Drawing.Point(32, 152);
            this.textBoxGammelPassord.Name = "textBoxGammelPassord";
            this.textBoxGammelPassord.Size = new System.Drawing.Size(180, 20);
            this.textBoxGammelPassord.TabIndex = 20;
            // 
            // textBoxEpost
            // 
            this.textBoxEpost.Location = new System.Drawing.Point(32, 107);
            this.textBoxEpost.Name = "textBoxEpost";
            this.textBoxEpost.Size = new System.Drawing.Size(180, 20);
            this.textBoxEpost.TabIndex = 19;
            this.textBoxEpost.TextChanged += new System.EventHandler(this.textEpost_TextChanged);
            // 
            // labelGammelPassord
            // 
            this.labelGammelPassord.AutoSize = true;
            this.labelGammelPassord.Location = new System.Drawing.Point(30, 136);
            this.labelGammelPassord.Name = "labelGammelPassord";
            this.labelGammelPassord.Size = new System.Drawing.Size(89, 13);
            this.labelGammelPassord.TabIndex = 18;
            this.labelGammelPassord.Text = "Gammelt Passord";
            // 
            // labelEpost
            // 
            this.labelEpost.AccessibleDescription = "v";
            this.labelEpost.AutoSize = true;
            this.labelEpost.Location = new System.Drawing.Point(30, 90);
            this.labelEpost.Name = "labelEpost";
            this.labelEpost.Size = new System.Drawing.Size(37, 13);
            this.labelEpost.TabIndex = 17;
            this.labelEpost.Text = "E-post";
            // 
            // label12
            // 
            this.label12.AutoSize = true;
            this.label12.Location = new System.Drawing.Point(30, 226);
            this.label12.Name = "label12";
            this.label12.Size = new System.Drawing.Size(52, 13);
            this.label12.TabIndex = 10;
            this.label12.Text = "Telefonnr";
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Location = new System.Drawing.Point(30, 59);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(77, 13);
            this.label2.TabIndex = 0;
            this.label2.Text = "Rediger bruker";
            this.label2.Click += new System.EventHandler(this.label2_Click);
            // 
            // label3
            // 
            this.label3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.label3.AutoSize = true;
            this.label3.Location = new System.Drawing.Point(1160, 5);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(35, 13);
            this.label3.TabIndex = 7;
            this.label3.Text = "label3";
            // 
            // Form1
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(1207, 722);
            this.Controls.Add(this.label3);
            this.Controls.Add(this.tabControl1);
            this.Controls.Add(this.menuStrip1);
            this.MainMenuStrip = this.menuStrip1;
            this.Name = "Form1";
            this.Text = "SheepTracker - <Brukernavn> innlogget";
            this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
            this.Load += new System.EventHandler(this.Form1_Load);
            tabOversikt.ResumeLayout(false);
            tabOversikt.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dgwSearchSheep)).EndInit();
            this.menuStrip1.ResumeLayout(false);
            this.menuStrip1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dgvSauer)).EndInit();
            this.tabControl1.ResumeLayout(false);
            this.tabKart.ResumeLayout(false);
            this.tabKart.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
            this.tabInstillinger.ResumeLayout(false);
            this.tabInstillinger.PerformLayout();
            this.ResumeLayout(false);
            this.PerformLayout();

        }