private void setupColorList(System.Windows.Forms.Panel pan, Color[] colors)
        {
            var gb = new System.Windows.Forms.FlowLayoutPanel();

            gb.SuspendLayout();

            gb.Margin   = new System.Windows.Forms.Padding(1, 1, 1, 1);
            gb.AutoSize = true;

            //gb.Dock = System.Windows.Forms.DockStyle.Left;
            var brush = new System.Drawing.SolidBrush(Color.Blue);

            System.Windows.Forms.RadioButton rb = null;
            foreach (Color c in colors)
            {
                rb            = new System.Windows.Forms.RadioButton();
                rb.Appearance = System.Windows.Forms.Appearance.Button;
                var im    = new Bitmap(20, 20);
                var graph = Graphics.FromImage(im);
                brush.Color = c;
                graph.FillRectangle(brush, 0, 0, 20, 20);
                rb.Image = im;
                var thiscol = c;                 // necessary for the Lambda below to work..
                rb.Click += ((s, e) => { cachedObj = null; selectedColor = thiscol; });
                rb.Size   = im.Size;
                gb.Controls.Add(rb);
            }
            rb.Checked    = true;
            selectedColor = colors[colors.Length - 1];
            gb.ResumeLayout(false);
            pan.Controls.Add(gb);
        }
        private void setupStyles(System.Windows.Forms.Panel pan, System.Drawing.Drawing2D.DashStyle[] styles)
        {
            var gb = new System.Windows.Forms.FlowLayoutPanel();

            gb.SuspendLayout();
            gb.Margin   = new System.Windows.Forms.Padding(1, 1, 1, 1);
            gb.AutoSize = true;

            // SOLID, DASHED, DOTTED
            for (int idx = 0; idx < styles.Length; ++idx)
            {
                var rb = new System.Windows.Forms.RadioButton();
                rb.Appearance = System.Windows.Forms.Appearance.Button;
                var im    = new Bitmap(30, 20);
                var graph = Graphics.FromImage(im);
                var impen = new Pen(ChartControl.AxisColor, 1.0f);
                impen.DashStyle = styles[idx];
                graph.DrawLine(impen, 0, 10, 30, 10);
                rb.Image = im;
                var thisst = styles[idx];
                rb.Click += ((s, e) => { cachedObj = null; selectedStyle = thisst; });
                rb.Size   = im.Size;
                gb.Controls.Add(rb);
                if (idx == 0)
                {
                    rb.Checked = true; selectedStyle = thisst;
                }
            }


            gb.ResumeLayout(false);
            pan.Controls.Add(gb);
        }
        private void setupSizes(System.Windows.Forms.Panel pan, int[] sizes)
        {
            var gb = new System.Windows.Forms.FlowLayoutPanel();

            gb.SuspendLayout();
            gb.Margin   = new System.Windows.Forms.Padding(1, 1, 1, 1);
            gb.AutoSize = true;
            System.Windows.Forms.RadioButton rb = null;
            var dpen = new Pen(ChartControl.AxisColor);

            for (int idx = 0; idx < sizes.Length; ++idx)
            {
                rb            = new System.Windows.Forms.RadioButton();
                rb.Appearance = System.Windows.Forms.Appearance.Button;
                var   im    = new Bitmap(20, 20);
                var   graph = Graphics.FromImage(im);
                float wid   = 10.0f * sizes[idx] / sizes[sizes.Length - 1];
                float pad   = (20.0f - wid) / 2.0f;
                graph.DrawRectangle(dpen, pad, pad, wid, wid);
                rb.Image = im;
                var thissz = sizes[idx];                 // necessary for the Lambda below to work..
                rb.Click += ((s, e) => { cachedObj = null; selectedSize = thissz; });
                rb.Size   = im.Size;
                gb.Controls.Add(rb);
                if (idx == 0)
                {
                    rb.Checked = true; selectedSize = thissz;
                }
            }
            gb.ResumeLayout(false);
            pan.Controls.Add(gb);
        }
        private void setupFontStyles(System.Windows.Forms.Panel pan, System.Drawing.FontStyle[] styles)
        {
            var gb = new System.Windows.Forms.FlowLayoutPanel();

            gb.SuspendLayout();
            gb.Margin   = new System.Windows.Forms.Padding(1, 1, 1, 1);
            gb.AutoSize = true;
            var fmt = new StringFormat();

            fmt.Alignment     = StringAlignment.Center;
            fmt.LineAlignment = StringAlignment.Center;

            for (int idx = 0; idx < styles.Length; ++idx)
            {
                var rb = new System.Windows.Forms.RadioButton();
                rb.Appearance = System.Windows.Forms.Appearance.Button;
                var im    = new Bitmap(50, 20);
                var graph = Graphics.FromImage(im);
                graph.TextRenderingHint = System.Drawing.Text.TextRenderingHint.AntiAlias;
                var impen   = new SolidBrush(ChartControl.AxisColor);
                var thefont = new Font("Georgia", 10.0f, styles[idx], GraphicsUnit.Point);
                graph.DrawString("text", thefont, impen, new RectangleF(new Point(0, 0), new SizeF(50, 20)), fmt);
                rb.Image = im;
                var thisst = styles[idx];
                rb.Click += ((s, e) => { cachedObj = null; selectedFontStyle = thisst; });
                rb.Size   = im.Size;
                gb.Controls.Add(rb);
                if (idx == 0)
                {
                    rb.Checked = true; selectedFontStyle = thisst;
                }
            }

            gb.ResumeLayout(false);
            pan.Controls.Add(gb);
        }
        /// <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.TableLayoutPanel tableLayoutPanel1;
            System.Windows.Forms.GroupBox groupBox1;
            System.Windows.Forms.FlowLayoutPanel flowLayoutPanel1;
            System.Windows.Forms.Label label1;
            System.Windows.Forms.Label label2;
            System.Windows.Forms.FlowLayoutPanel flowLayoutPanel2;
            System.Windows.Forms.FlowLayoutPanel flowLayoutPanel3;
            System.Windows.Forms.Label label3;
            System.Windows.Forms.Label label4;
            System.Windows.Forms.Label label5;
            System.Windows.Forms.FlowLayoutPanel flowLayoutPanel6;
            System.Windows.Forms.FlowLayoutPanel flowLayoutPanel4;
            System.Windows.Forms.FlowLayoutPanel flowLayoutPanel5;
            System.Windows.Forms.GroupBox groupBox2;
            System.Windows.Forms.Button browse;
            this.fileFormat = new System.Windows.Forms.ComboBox();
            this.jpegCompression = new System.Windows.Forms.NumericUpDown();
            this.ok = new System.Windows.Forms.Button();
            this.cancel = new System.Windows.Forms.Button();
            this.alphaLDRGroup = new System.Windows.Forms.GroupBox();
            this.alphaMap = new System.Windows.Forms.ComboBox();
            this.alphaCol = new System.Windows.Forms.Button();
            this.blackPoint = new System.Windows.Forms.TextBox();
            this.whitePoint = new System.Windows.Forms.TextBox();
            this.sliceGroup = new System.Windows.Forms.GroupBox();
            this.exportAllSlices = new System.Windows.Forms.CheckBox();
            this.oneSlice = new System.Windows.Forms.CheckBox();
            this.sliceSelect = new System.Windows.Forms.ComboBox();
            this.mapSlicesToGrid = new System.Windows.Forms.CheckBox();
            this.gridWidth = new System.Windows.Forms.NumericUpDown();
            this.cubeCruciform = new System.Windows.Forms.CheckBox();
            this.mipGroup = new System.Windows.Forms.GroupBox();
            this.exportAllMips = new System.Windows.Forms.CheckBox();
            this.oneMip = new System.Windows.Forms.CheckBox();
            this.mipSelect = new System.Windows.Forms.ComboBox();
            this.sampleGroup = new System.Windows.Forms.GroupBox();
            this.oneSample = new System.Windows.Forms.CheckBox();
            this.sampleSelect = new System.Windows.Forms.ComboBox();
            this.mapSampleArray = new System.Windows.Forms.CheckBox();
            this.colorDialog = new System.Windows.Forms.ColorDialog();
            this.resolveSamples = new System.Windows.Forms.CheckBox();
            this.filename = new System.Windows.Forms.TextBox();
            this.saveTexDialog = new System.Windows.Forms.SaveFileDialog();
            tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
            groupBox1 = new System.Windows.Forms.GroupBox();
            flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
            label1 = new System.Windows.Forms.Label();
            label2 = new System.Windows.Forms.Label();
            flowLayoutPanel2 = new System.Windows.Forms.FlowLayoutPanel();
            flowLayoutPanel3 = new System.Windows.Forms.FlowLayoutPanel();
            label3 = new System.Windows.Forms.Label();
            label4 = new System.Windows.Forms.Label();
            label5 = new System.Windows.Forms.Label();
            flowLayoutPanel6 = new System.Windows.Forms.FlowLayoutPanel();
            flowLayoutPanel4 = new System.Windows.Forms.FlowLayoutPanel();
            flowLayoutPanel5 = new System.Windows.Forms.FlowLayoutPanel();
            groupBox2 = new System.Windows.Forms.GroupBox();
            browse = new System.Windows.Forms.Button();
            tableLayoutPanel1.SuspendLayout();
            groupBox1.SuspendLayout();
            flowLayoutPanel1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.jpegCompression)).BeginInit();
            flowLayoutPanel2.SuspendLayout();
            this.alphaLDRGroup.SuspendLayout();
            flowLayoutPanel3.SuspendLayout();
            this.sliceGroup.SuspendLayout();
            flowLayoutPanel6.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gridWidth)).BeginInit();
            this.mipGroup.SuspendLayout();
            flowLayoutPanel4.SuspendLayout();
            this.sampleGroup.SuspendLayout();
            flowLayoutPanel5.SuspendLayout();
            groupBox2.SuspendLayout();
            this.SuspendLayout();
            // 
            // tableLayoutPanel1
            // 
            tableLayoutPanel1.AutoSize = true;
            tableLayoutPanel1.ColumnCount = 1;
            tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
            tableLayoutPanel1.Controls.Add(groupBox1, 0, 1);
            tableLayoutPanel1.Controls.Add(flowLayoutPanel2, 0, 6);
            tableLayoutPanel1.Controls.Add(this.alphaLDRGroup, 0, 5);
            tableLayoutPanel1.Controls.Add(this.sliceGroup, 0, 4);
            tableLayoutPanel1.Controls.Add(this.mipGroup, 0, 2);
            tableLayoutPanel1.Controls.Add(this.sampleGroup, 0, 3);
            tableLayoutPanel1.Controls.Add(groupBox2, 0, 0);
            tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
            tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
            tableLayoutPanel1.Name = "tableLayoutPanel1";
            tableLayoutPanel1.RowCount = 7;
            tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 50F));
            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.RowStyles.Add(new System.Windows.Forms.RowStyle());
            tableLayoutPanel1.Size = new System.Drawing.Size(375, 521);
            tableLayoutPanel1.TabIndex = 0;
            // 
            // groupBox1
            // 
            groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            groupBox1.AutoSize = true;
            groupBox1.Controls.Add(flowLayoutPanel1);
            groupBox1.Location = new System.Drawing.Point(3, 53);
            groupBox1.Name = "groupBox1";
            groupBox1.Size = new System.Drawing.Size(369, 72);
            groupBox1.TabIndex = 0;
            groupBox1.TabStop = false;
            groupBox1.Text = "File Format";
            // 
            // flowLayoutPanel1
            // 
            flowLayoutPanel1.AutoSize = true;
            flowLayoutPanel1.Controls.Add(label1);
            flowLayoutPanel1.Controls.Add(this.fileFormat);
            flowLayoutPanel1.Controls.Add(label2);
            flowLayoutPanel1.Controls.Add(this.jpegCompression);
            flowLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
            flowLayoutPanel1.Location = new System.Drawing.Point(3, 16);
            flowLayoutPanel1.Name = "flowLayoutPanel1";
            flowLayoutPanel1.Size = new System.Drawing.Size(363, 53);
            flowLayoutPanel1.TabIndex = 0;
            // 
            // label1
            // 
            label1.Anchor = System.Windows.Forms.AnchorStyles.Right;
            label1.AutoSize = true;
            label1.Location = new System.Drawing.Point(3, 7);
            label1.MinimumSize = new System.Drawing.Size(150, 0);
            label1.Name = "label1";
            label1.Size = new System.Drawing.Size(150, 13);
            label1.TabIndex = 1;
            label1.Text = "File Format:";
            label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // fileFormat
            // 
            this.fileFormat.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            flowLayoutPanel1.SetFlowBreak(this.fileFormat, true);
            this.fileFormat.FormattingEnabled = true;
            this.fileFormat.Location = new System.Drawing.Point(159, 3);
            this.fileFormat.Name = "fileFormat";
            this.fileFormat.Size = new System.Drawing.Size(121, 21);
            this.fileFormat.TabIndex = 0;
            this.fileFormat.SelectedIndexChanged += new System.EventHandler(this.fileFormat_SelectedIndexChanged);
            // 
            // label2
            // 
            label2.Anchor = System.Windows.Forms.AnchorStyles.Right;
            label2.AutoSize = true;
            label2.Location = new System.Drawing.Point(3, 33);
            label2.MinimumSize = new System.Drawing.Size(150, 0);
            label2.Name = "label2";
            label2.Size = new System.Drawing.Size(150, 13);
            label2.TabIndex = 2;
            label2.Text = "JPEG Compression:";
            label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // jpegCompression
            // 
            this.jpegCompression.Location = new System.Drawing.Point(159, 30);
            this.jpegCompression.Name = "jpegCompression";
            this.jpegCompression.Size = new System.Drawing.Size(120, 20);
            this.jpegCompression.TabIndex = 3;
            this.jpegCompression.ValueChanged += new System.EventHandler(this.jpegCompression_ValueChanged);
            // 
            // flowLayoutPanel2
            // 
            flowLayoutPanel2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            flowLayoutPanel2.AutoSize = true;
            flowLayoutPanel2.Controls.Add(this.ok);
            flowLayoutPanel2.Controls.Add(this.cancel);
            flowLayoutPanel2.Location = new System.Drawing.Point(210, 513);
            flowLayoutPanel2.Name = "flowLayoutPanel2";
            flowLayoutPanel2.Size = new System.Drawing.Size(162, 29);
            flowLayoutPanel2.TabIndex = 1;
            // 
            // ok
            // 
            this.ok.DialogResult = System.Windows.Forms.DialogResult.OK;
            this.ok.Location = new System.Drawing.Point(3, 3);
            this.ok.Name = "ok";
            this.ok.Size = new System.Drawing.Size(75, 23);
            this.ok.TabIndex = 1;
            this.ok.Text = "Save";
            this.ok.UseVisualStyleBackColor = true;
            this.ok.Click += new System.EventHandler(this.ok_Click);
            // 
            // cancel
            // 
            this.cancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
            this.cancel.Location = new System.Drawing.Point(84, 3);
            this.cancel.Name = "cancel";
            this.cancel.Size = new System.Drawing.Size(75, 23);
            this.cancel.TabIndex = 0;
            this.cancel.Text = "Cancel";
            this.cancel.UseVisualStyleBackColor = true;
            // 
            // alphaLDRGroup
            // 
            this.alphaLDRGroup.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.alphaLDRGroup.AutoSize = true;
            this.alphaLDRGroup.Controls.Add(flowLayoutPanel3);
            this.alphaLDRGroup.Location = new System.Drawing.Point(3, 428);
            this.alphaLDRGroup.Name = "alphaLDRGroup";
            this.alphaLDRGroup.Size = new System.Drawing.Size(369, 79);
            this.alphaLDRGroup.TabIndex = 2;
            this.alphaLDRGroup.TabStop = false;
            this.alphaLDRGroup.Text = "Alpha Handling";
            // 
            // flowLayoutPanel3
            // 
            flowLayoutPanel3.AutoSize = true;
            flowLayoutPanel3.Controls.Add(label3);
            flowLayoutPanel3.Controls.Add(this.alphaMap);
            flowLayoutPanel3.Controls.Add(this.alphaCol);
            flowLayoutPanel3.Controls.Add(label4);
            flowLayoutPanel3.Controls.Add(this.blackPoint);
            flowLayoutPanel3.Controls.Add(label5);
            flowLayoutPanel3.Controls.Add(this.whitePoint);
            flowLayoutPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
            flowLayoutPanel3.Location = new System.Drawing.Point(3, 16);
            flowLayoutPanel3.Name = "flowLayoutPanel3";
            flowLayoutPanel3.Size = new System.Drawing.Size(363, 60);
            flowLayoutPanel3.TabIndex = 0;
            // 
            // label3
            // 
            label3.Anchor = System.Windows.Forms.AnchorStyles.Right;
            label3.AutoSize = true;
            label3.Location = new System.Drawing.Point(3, 7);
            label3.Name = "label3";
            label3.Size = new System.Drawing.Size(80, 13);
            label3.TabIndex = 1;
            label3.Text = "Alpha mapping:";
            label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // alphaMap
            // 
            this.alphaMap.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.alphaMap.FormattingEnabled = true;
            this.alphaMap.Items.AddRange(new object[] {
            "Discard",
            "Blend to Colour",
            "Blend to Checkerboard"});
            this.alphaMap.Location = new System.Drawing.Point(89, 3);
            this.alphaMap.Name = "alphaMap";
            this.alphaMap.Size = new System.Drawing.Size(148, 21);
            this.alphaMap.TabIndex = 0;
            this.alphaMap.SelectedIndexChanged += new System.EventHandler(this.alphaMap_SelectedIndexChanged);
            // 
            // alphaCol
            // 
            flowLayoutPanel3.SetFlowBreak(this.alphaCol, true);
            this.alphaCol.Location = new System.Drawing.Point(243, 3);
            this.alphaCol.Name = "alphaCol";
            this.alphaCol.Size = new System.Drawing.Size(110, 21);
            this.alphaCol.TabIndex = 2;
            this.alphaCol.Text = "Background Colour";
            this.alphaCol.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
            this.alphaCol.UseVisualStyleBackColor = true;
            this.alphaCol.Click += new System.EventHandler(this.alphaCol_Click);
            // 
            // label4
            // 
            label4.Anchor = System.Windows.Forms.AnchorStyles.Right;
            label4.AutoSize = true;
            label4.Location = new System.Drawing.Point(3, 40);
            label4.Margin = new System.Windows.Forms.Padding(3, 7, 3, 0);
            label4.Name = "label4";
            label4.Size = new System.Drawing.Size(64, 13);
            label4.TabIndex = 3;
            label4.Text = "Black Point:";
            label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // blackPoint
            // 
            this.blackPoint.Location = new System.Drawing.Point(73, 37);
            this.blackPoint.Margin = new System.Windows.Forms.Padding(3, 10, 3, 3);
            this.blackPoint.Name = "blackPoint";
            this.blackPoint.Size = new System.Drawing.Size(100, 20);
            this.blackPoint.TabIndex = 5;
            this.blackPoint.TextChanged += new System.EventHandler(this.blackPoint_TextChanged);
            // 
            // label5
            // 
            label5.Anchor = System.Windows.Forms.AnchorStyles.Right;
            label5.AutoSize = true;
            label5.Location = new System.Drawing.Point(179, 40);
            label5.Margin = new System.Windows.Forms.Padding(3, 7, 3, 0);
            label5.Name = "label5";
            label5.Size = new System.Drawing.Size(65, 13);
            label5.TabIndex = 4;
            label5.Text = "White Point:";
            label5.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // whitePoint
            // 
            this.whitePoint.Location = new System.Drawing.Point(250, 37);
            this.whitePoint.Margin = new System.Windows.Forms.Padding(3, 10, 3, 3);
            this.whitePoint.Name = "whitePoint";
            this.whitePoint.Size = new System.Drawing.Size(100, 20);
            this.whitePoint.TabIndex = 6;
            this.whitePoint.TextChanged += new System.EventHandler(this.whitePoint_TextChanged);
            // 
            // sliceGroup
            // 
            this.sliceGroup.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.sliceGroup.AutoSize = true;
            this.sliceGroup.Controls.Add(flowLayoutPanel6);
            this.sliceGroup.Location = new System.Drawing.Point(3, 304);
            this.sliceGroup.Name = "sliceGroup";
            this.sliceGroup.Size = new System.Drawing.Size(369, 118);
            this.sliceGroup.TabIndex = 5;
            this.sliceGroup.TabStop = false;
            this.sliceGroup.Text = "Array/Depth Slices";
            // 
            // flowLayoutPanel6
            // 
            flowLayoutPanel6.AutoSize = true;
            flowLayoutPanel6.Controls.Add(this.exportAllSlices);
            flowLayoutPanel6.Controls.Add(this.oneSlice);
            flowLayoutPanel6.Controls.Add(this.sliceSelect);
            flowLayoutPanel6.Controls.Add(this.mapSlicesToGrid);
            flowLayoutPanel6.Controls.Add(this.gridWidth);
            flowLayoutPanel6.Controls.Add(this.cubeCruciform);
            flowLayoutPanel6.Dock = System.Windows.Forms.DockStyle.Fill;
            flowLayoutPanel6.Location = new System.Drawing.Point(3, 16);
            flowLayoutPanel6.Name = "flowLayoutPanel6";
            flowLayoutPanel6.Size = new System.Drawing.Size(363, 99);
            flowLayoutPanel6.TabIndex = 0;
            // 
            // exportAllSlices
            // 
            this.exportAllSlices.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
            flowLayoutPanel6.SetFlowBreak(this.exportAllSlices, true);
            this.exportAllSlices.Location = new System.Drawing.Point(3, 3);
            this.exportAllSlices.MinimumSize = new System.Drawing.Size(120, 0);
            this.exportAllSlices.Name = "exportAllSlices";
            this.exportAllSlices.Size = new System.Drawing.Size(120, 17);
            this.exportAllSlices.TabIndex = 0;
            this.exportAllSlices.Text = "Export All Slices";
            this.exportAllSlices.UseVisualStyleBackColor = true;
            this.exportAllSlices.CheckedChanged += new System.EventHandler(this.exportAllSlices_CheckedChanged);
            // 
            // oneSlice
            // 
            this.oneSlice.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
            this.oneSlice.AutoSize = true;
            this.oneSlice.Location = new System.Drawing.Point(3, 28);
            this.oneSlice.MinimumSize = new System.Drawing.Size(120, 0);
            this.oneSlice.Name = "oneSlice";
            this.oneSlice.Size = new System.Drawing.Size(120, 17);
            this.oneSlice.TabIndex = 4;
            this.oneSlice.Text = "Select Slice:";
            this.oneSlice.UseVisualStyleBackColor = true;
            this.oneSlice.CheckedChanged += new System.EventHandler(this.oneSlice_CheckedChanged);
            // 
            // sliceSelect
            // 
            this.sliceSelect.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            flowLayoutPanel6.SetFlowBreak(this.sliceSelect, true);
            this.sliceSelect.FormattingEnabled = true;
            this.sliceSelect.Location = new System.Drawing.Point(129, 26);
            this.sliceSelect.Name = "sliceSelect";
            this.sliceSelect.Size = new System.Drawing.Size(121, 21);
            this.sliceSelect.TabIndex = 5;
            this.sliceSelect.SelectedIndexChanged += new System.EventHandler(this.sliceSelect_SelectedIndexChanged);
            // 
            // mapSlicesToGrid
            // 
            this.mapSlicesToGrid.AutoSize = true;
            this.mapSlicesToGrid.Location = new System.Drawing.Point(3, 53);
            this.mapSlicesToGrid.Name = "mapSlicesToGrid";
            this.mapSlicesToGrid.Size = new System.Drawing.Size(179, 17);
            this.mapSlicesToGrid.TabIndex = 1;
            this.mapSlicesToGrid.Text = "Show Slices as Grid. Grid Width:";
            this.mapSlicesToGrid.UseVisualStyleBackColor = true;
            this.mapSlicesToGrid.CheckedChanged += new System.EventHandler(this.mapSlicesToGrid_CheckedChanged);
            // 
            // gridWidth
            // 
            this.gridWidth.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
            flowLayoutPanel6.SetFlowBreak(this.gridWidth, true);
            this.gridWidth.Location = new System.Drawing.Point(188, 53);
            this.gridWidth.Minimum = new decimal(new int[] {
            1,
            0,
            0,
            0});
            this.gridWidth.Name = "gridWidth";
            this.gridWidth.Size = new System.Drawing.Size(49, 20);
            this.gridWidth.TabIndex = 3;
            this.gridWidth.Value = new decimal(new int[] {
            1,
            0,
            0,
            0});
            this.gridWidth.ValueChanged += new System.EventHandler(this.gridWidth_ValueChanged);
            // 
            // cubeCruciform
            // 
            this.cubeCruciform.AutoSize = true;
            this.cubeCruciform.Location = new System.Drawing.Point(3, 79);
            this.cubeCruciform.Name = "cubeCruciform";
            this.cubeCruciform.Size = new System.Drawing.Size(144, 17);
            this.cubeCruciform.TabIndex = 2;
            this.cubeCruciform.Text = "Show Cubemap as Cross";
            this.cubeCruciform.UseVisualStyleBackColor = true;
            this.cubeCruciform.CheckedChanged += new System.EventHandler(this.cubeCruciform_CheckedChanged);
            // 
            // mipGroup
            // 
            this.mipGroup.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.mipGroup.AutoSize = true;
            this.mipGroup.Controls.Add(flowLayoutPanel4);
            this.mipGroup.Location = new System.Drawing.Point(3, 131);
            this.mipGroup.Name = "mipGroup";
            this.mipGroup.Size = new System.Drawing.Size(369, 69);
            this.mipGroup.TabIndex = 3;
            this.mipGroup.TabStop = false;
            this.mipGroup.Text = "Mips";
            // 
            // flowLayoutPanel4
            // 
            flowLayoutPanel4.AutoSize = true;
            flowLayoutPanel4.Controls.Add(this.exportAllMips);
            flowLayoutPanel4.Controls.Add(this.oneMip);
            flowLayoutPanel4.Controls.Add(this.mipSelect);
            flowLayoutPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
            flowLayoutPanel4.Location = new System.Drawing.Point(3, 16);
            flowLayoutPanel4.Name = "flowLayoutPanel4";
            flowLayoutPanel4.Size = new System.Drawing.Size(363, 50);
            flowLayoutPanel4.TabIndex = 0;
            // 
            // exportAllMips
            // 
            this.exportAllMips.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
            this.exportAllMips.AutoSize = true;
            flowLayoutPanel4.SetFlowBreak(this.exportAllMips, true);
            this.exportAllMips.Location = new System.Drawing.Point(3, 3);
            this.exportAllMips.MinimumSize = new System.Drawing.Size(120, 0);
            this.exportAllMips.Name = "exportAllMips";
            this.exportAllMips.Size = new System.Drawing.Size(120, 17);
            this.exportAllMips.TabIndex = 0;
            this.exportAllMips.Text = "Export All Mips";
            this.exportAllMips.UseVisualStyleBackColor = true;
            this.exportAllMips.CheckedChanged += new System.EventHandler(this.exportAllMips_CheckedChanged);
            // 
            // oneMip
            // 
            this.oneMip.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
            this.oneMip.AutoSize = true;
            this.oneMip.Location = new System.Drawing.Point(3, 28);
            this.oneMip.MinimumSize = new System.Drawing.Size(120, 0);
            this.oneMip.Name = "oneMip";
            this.oneMip.Size = new System.Drawing.Size(120, 17);
            this.oneMip.TabIndex = 2;
            this.oneMip.Text = "Select Mip:";
            this.oneMip.UseVisualStyleBackColor = true;
            this.oneMip.CheckedChanged += new System.EventHandler(this.oneMip_CheckedChanged);
            // 
            // mipSelect
            // 
            this.mipSelect.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            flowLayoutPanel4.SetFlowBreak(this.mipSelect, true);
            this.mipSelect.FormattingEnabled = true;
            this.mipSelect.Location = new System.Drawing.Point(129, 26);
            this.mipSelect.Name = "mipSelect";
            this.mipSelect.Size = new System.Drawing.Size(121, 21);
            this.mipSelect.TabIndex = 1;
            this.mipSelect.SelectedIndexChanged += new System.EventHandler(this.mipSelect_SelectedIndexChanged);
            // 
            // sampleGroup
            // 
            this.sampleGroup.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.sampleGroup.AutoSize = true;
            this.sampleGroup.Controls.Add(flowLayoutPanel5);
            this.sampleGroup.Location = new System.Drawing.Point(3, 206);
            this.sampleGroup.Name = "sampleGroup";
            this.sampleGroup.Size = new System.Drawing.Size(369, 92);
            this.sampleGroup.TabIndex = 6;
            this.sampleGroup.TabStop = false;
            this.sampleGroup.Text = "MSAA Samples";
            // 
            // flowLayoutPanel5
            // 
            flowLayoutPanel5.AutoSize = true;
            flowLayoutPanel5.Controls.Add(this.mapSampleArray);
            flowLayoutPanel5.Controls.Add(this.resolveSamples);
            flowLayoutPanel5.Controls.Add(this.oneSample);
            flowLayoutPanel5.Controls.Add(this.sampleSelect);
            flowLayoutPanel5.Dock = System.Windows.Forms.DockStyle.Fill;
            flowLayoutPanel5.Location = new System.Drawing.Point(3, 16);
            flowLayoutPanel5.Name = "flowLayoutPanel5";
            flowLayoutPanel5.Size = new System.Drawing.Size(363, 73);
            flowLayoutPanel5.TabIndex = 0;
            // 
            // oneSample
            // 
            this.oneSample.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
            this.oneSample.AutoSize = true;
            this.oneSample.Location = new System.Drawing.Point(3, 51);
            this.oneSample.MinimumSize = new System.Drawing.Size(120, 0);
            this.oneSample.Name = "oneSample";
            this.oneSample.Size = new System.Drawing.Size(120, 17);
            this.oneSample.TabIndex = 3;
            this.oneSample.Text = "Select Sample:";
            this.oneSample.UseVisualStyleBackColor = true;
            this.oneSample.CheckedChanged += new System.EventHandler(this.oneSample_CheckedChanged);
            // 
            // sampleSelect
            // 
            this.sampleSelect.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            flowLayoutPanel5.SetFlowBreak(this.sampleSelect, true);
            this.sampleSelect.FormattingEnabled = true;
            this.sampleSelect.Location = new System.Drawing.Point(129, 49);
            this.sampleSelect.Name = "sampleSelect";
            this.sampleSelect.Size = new System.Drawing.Size(121, 21);
            this.sampleSelect.TabIndex = 2;
            this.sampleSelect.SelectedIndexChanged += new System.EventHandler(this.sampleSelect_SelectedIndexChanged);
            // 
            // mapSampleArray
            // 
            this.mapSampleArray.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
            this.mapSampleArray.AutoSize = true;
            flowLayoutPanel5.SetFlowBreak(this.mapSampleArray, true);
            this.mapSampleArray.Location = new System.Drawing.Point(3, 3);
            this.mapSampleArray.Name = "mapSampleArray";
            this.mapSampleArray.Size = new System.Drawing.Size(162, 17);
            this.mapSampleArray.TabIndex = 1;
            this.mapSampleArray.Text = "Map Samples as Array Slices";
            this.mapSampleArray.UseVisualStyleBackColor = true;
            this.mapSampleArray.CheckedChanged += new System.EventHandler(this.mapSampleArray_CheckedChanged);
            // 
            // colorDialog
            // 
            this.colorDialog.AnyColor = true;
            // 
            // resolveSamples
            // 
            this.resolveSamples.AutoSize = true;
            flowLayoutPanel5.SetFlowBreak(this.resolveSamples, true);
            this.resolveSamples.Location = new System.Drawing.Point(3, 26);
            this.resolveSamples.Name = "resolveSamples";
            this.resolveSamples.Size = new System.Drawing.Size(108, 17);
            this.resolveSamples.TabIndex = 4;
            this.resolveSamples.Text = "Resolve Samples";
            this.resolveSamples.UseVisualStyleBackColor = true;
            this.resolveSamples.CheckedChanged += new System.EventHandler(this.resolveSamples_CheckedChanged);
            // 
            // groupBox2
            // 
            groupBox2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            groupBox2.Controls.Add(this.filename);
            groupBox2.Controls.Add(browse);
            groupBox2.Location = new System.Drawing.Point(3, 3);
            groupBox2.Name = "groupBox2";
            groupBox2.Size = new System.Drawing.Size(369, 44);
            groupBox2.TabIndex = 7;
            groupBox2.TabStop = false;
            groupBox2.Text = "Path";
            // 
            // browse
            // 
            browse.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            browse.Location = new System.Drawing.Point(334, 15);
            browse.Name = "browse";
            browse.Size = new System.Drawing.Size(26, 23);
            browse.TabIndex = 0;
            browse.Text = "...";
            browse.UseVisualStyleBackColor = true;
            browse.Click += new System.EventHandler(this.browse_Click);
            // 
            // filename
            // 
            this.filename.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.filename.Location = new System.Drawing.Point(9, 15);
            this.filename.Name = "filename";
            this.filename.Size = new System.Drawing.Size(319, 20);
            this.filename.TabIndex = 1;
            // 
            // saveTexDialog
            // 
            this.saveTexDialog.DefaultExt = "dds";
            this.saveTexDialog.Title = "Save Texture As";
            // 
            // TextureSaveDialog
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.AutoSize = true;
            this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            this.ClientSize = new System.Drawing.Size(375, 521);
            this.Controls.Add(tableLayoutPanel1);
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.Name = "TextureSaveDialog";
            this.ShowIcon = false;
            this.ShowInTaskbar = false;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
            this.Text = "Save Texture";
            this.Shown += new System.EventHandler(this.TextureSaveDialog_Shown);
            tableLayoutPanel1.ResumeLayout(false);
            tableLayoutPanel1.PerformLayout();
            groupBox1.ResumeLayout(false);
            groupBox1.PerformLayout();
            flowLayoutPanel1.ResumeLayout(false);
            flowLayoutPanel1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.jpegCompression)).EndInit();
            flowLayoutPanel2.ResumeLayout(false);
            this.alphaLDRGroup.ResumeLayout(false);
            this.alphaLDRGroup.PerformLayout();
            flowLayoutPanel3.ResumeLayout(false);
            flowLayoutPanel3.PerformLayout();
            this.sliceGroup.ResumeLayout(false);
            this.sliceGroup.PerformLayout();
            flowLayoutPanel6.ResumeLayout(false);
            flowLayoutPanel6.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gridWidth)).EndInit();
            this.mipGroup.ResumeLayout(false);
            this.mipGroup.PerformLayout();
            flowLayoutPanel4.ResumeLayout(false);
            flowLayoutPanel4.PerformLayout();
            this.sampleGroup.ResumeLayout(false);
            this.sampleGroup.PerformLayout();
            flowLayoutPanel5.ResumeLayout(false);
            flowLayoutPanel5.PerformLayout();
            groupBox2.ResumeLayout(false);
            groupBox2.PerformLayout();
            this.ResumeLayout(false);
            this.PerformLayout();

        }
Example #6
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.FlowLayoutPanel           _lytButtons;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SubscribeForm));
     this._applyButton             = new System.Windows.Forms.Button();
     this._cancelButton            = new System.Windows.Forms.Button();
     this._okButton                = new System.Windows.Forms.Button();
     this._forumListView           = new System.Windows.Forms.ListView();
     this._typeColumnHeader        = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this._forumColumnHeader       = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this._descriptionColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this._formImages              = new System.Windows.Forms.ImageList(this.components);
     this._messageLabel            = new System.Windows.Forms.Label();
     this._syncForumsButton        = new System.Windows.Forms.Button();
     this._priority                = new System.Windows.Forms.NumericUpDown();
     _lytButtons = new System.Windows.Forms.FlowLayoutPanel();
     _lytButtons.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this._priority)).BeginInit();
     this.SuspendLayout();
     //
     // _lytButtons
     //
     resources.ApplyResources(_lytButtons, "_lytButtons");
     _lytButtons.Controls.Add(this._applyButton);
     _lytButtons.Controls.Add(this._cancelButton);
     _lytButtons.Controls.Add(this._okButton);
     _lytButtons.Name = "_lytButtons";
     //
     // _applyButton
     //
     resources.ApplyResources(this._applyButton, "_applyButton");
     this._applyButton.Name   = "_applyButton";
     this._applyButton.Click += new System.EventHandler(this.BtnApplyClick);
     //
     // _cancelButton
     //
     resources.ApplyResources(this._cancelButton, "_cancelButton");
     this._cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this._cancelButton.Name         = "_cancelButton";
     //
     // _okButton
     //
     resources.ApplyResources(this._okButton, "_okButton");
     this._okButton.DialogResult = System.Windows.Forms.DialogResult.OK;
     this._okButton.Name         = "_okButton";
     this._okButton.Click       += new System.EventHandler(this.BtnOkClick);
     //
     // _forumListView
     //
     resources.ApplyResources(this._forumListView, "_forumListView");
     this._forumListView.CheckBoxes = true;
     this._forumListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this._typeColumnHeader,
         this._forumColumnHeader,
         this._descriptionColumnHeader
     });
     this._forumListView.FullRowSelect  = true;
     this._forumListView.GridLines      = true;
     this._forumListView.HideSelection  = false;
     this._forumListView.Name           = "_forumListView";
     this._forumListView.SmallImageList = this._formImages;
     this._forumListView.UseCompatibleStateImageBehavior = false;
     this._forumListView.View                  = System.Windows.Forms.View.Details;
     this._forumListView.ColumnClick          += new System.Windows.Forms.ColumnClickEventHandler(this.ForumListViewColumnClick);
     this._forumListView.SelectedIndexChanged += new System.EventHandler(this.ForumListViewSelectedIndexChanged);
     //
     // _typeColumnHeader
     //
     resources.ApplyResources(this._typeColumnHeader, "_typeColumnHeader");
     //
     // _forumColumnHeader
     //
     resources.ApplyResources(this._forumColumnHeader, "_forumColumnHeader");
     //
     // _descriptionColumnHeader
     //
     resources.ApplyResources(this._descriptionColumnHeader, "_descriptionColumnHeader");
     //
     // _formImages
     //
     this._formImages.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("_formImages.ImageStream")));
     this._formImages.TransparentColor = System.Drawing.Color.Transparent;
     this._formImages.Images.SetKeyName(0, "");
     this._formImages.Images.SetKeyName(1, "");
     //
     // _messageLabel
     //
     resources.ApplyResources(this._messageLabel, "_messageLabel");
     this._messageLabel.Name = "_messageLabel";
     //
     // _syncForumsButton
     //
     resources.ApplyResources(this._syncForumsButton, "_syncForumsButton");
     this._syncForumsButton.Name   = "_syncForumsButton";
     this._syncForumsButton.Click += new System.EventHandler(this.BtnSyncForumsClick);
     //
     // _priority
     //
     resources.ApplyResources(this._priority, "_priority");
     this._priority.Maximum = new decimal(new int[] {
         9,
         0,
         0,
         0
     });
     this._priority.Name          = "_priority";
     this._priority.ValueChanged += new System.EventHandler(this.PriorityValueChanged);
     //
     // SubscribeForm
     //
     this.AcceptButton = this._okButton;
     resources.ApplyResources(this, "$this");
     this.CancelButton = this._cancelButton;
     this.Controls.Add(_lytButtons);
     this.Controls.Add(this._priority);
     this.Controls.Add(this._syncForumsButton);
     this.Controls.Add(this._messageLabel);
     this.Controls.Add(this._forumListView);
     this.MaximizeBox   = false;
     this.MinimizeBox   = false;
     this.Name          = "SubscribeForm";
     this.ShowInTaskbar = false;
     _lytButtons.ResumeLayout(false);
     _lytButtons.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this._priority)).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.Windows.Forms.TableLayoutPanel tlpMainLayout;
     System.Windows.Forms.Label            lblName;
     System.Windows.Forms.Label            lblImage;
     System.Windows.Forms.Button           btnBrowseImage;
     System.Windows.Forms.Label            lblImagePreview;
     System.Windows.Forms.FlowLayoutPanel  flpDialogButtons;
     System.Windows.Forms.Button           btnCancel;
     this.txtName      = new System.Windows.Forms.TextBox();
     this.txtImagePath = new System.Windows.Forms.TextBox();
     this.imgImage     = new System.Windows.Forms.PictureBox();
     this.btnOk        = new System.Windows.Forms.Button();
     tlpMainLayout     = new System.Windows.Forms.TableLayoutPanel();
     lblName           = new System.Windows.Forms.Label();
     lblImage          = new System.Windows.Forms.Label();
     btnBrowseImage    = new System.Windows.Forms.Button();
     lblImagePreview   = new System.Windows.Forms.Label();
     flpDialogButtons  = new System.Windows.Forms.FlowLayoutPanel();
     btnCancel         = new System.Windows.Forms.Button();
     tlpMainLayout.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.imgImage)).BeginInit();
     flpDialogButtons.SuspendLayout();
     this.SuspendLayout();
     //
     // tlpMainLayout
     //
     tlpMainLayout.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)));
     tlpMainLayout.ColumnCount = 2;
     tlpMainLayout.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     tlpMainLayout.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
     tlpMainLayout.Controls.Add(lblName, 0, 0);
     tlpMainLayout.Controls.Add(this.txtName, 0, 1);
     tlpMainLayout.Controls.Add(lblImage, 0, 2);
     tlpMainLayout.Controls.Add(this.txtImagePath, 0, 3);
     tlpMainLayout.Controls.Add(btnBrowseImage, 1, 3);
     tlpMainLayout.Controls.Add(lblImagePreview, 0, 4);
     tlpMainLayout.Controls.Add(this.imgImage, 0, 5);
     tlpMainLayout.Controls.Add(flpDialogButtons, 0, 6);
     tlpMainLayout.Location = new System.Drawing.Point(12, 12);
     tlpMainLayout.Name     = "tlpMainLayout";
     tlpMainLayout.RowCount = 7;
     tlpMainLayout.RowStyles.Add(new System.Windows.Forms.RowStyle());
     tlpMainLayout.RowStyles.Add(new System.Windows.Forms.RowStyle());
     tlpMainLayout.RowStyles.Add(new System.Windows.Forms.RowStyle());
     tlpMainLayout.RowStyles.Add(new System.Windows.Forms.RowStyle());
     tlpMainLayout.RowStyles.Add(new System.Windows.Forms.RowStyle());
     tlpMainLayout.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
     tlpMainLayout.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 29F));
     tlpMainLayout.Size     = new System.Drawing.Size(364, 237);
     tlpMainLayout.TabIndex = 0;
     //
     // lblName
     //
     lblName.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
     lblName.AutoSize = true;
     tlpMainLayout.SetColumnSpan(lblName, 2);
     lblName.Location  = new System.Drawing.Point(3, 0);
     lblName.Name      = "lblName";
     lblName.Size      = new System.Drawing.Size(358, 13);
     lblName.TabIndex  = 0;
     lblName.Text      = "Image Name:";
     lblName.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // txtName
     //
     this.txtName.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
     tlpMainLayout.SetColumnSpan(this.txtName, 2);
     this.txtName.Location = new System.Drawing.Point(3, 16);
     this.txtName.Name     = "txtName";
     this.txtName.Size     = new System.Drawing.Size(358, 20);
     this.txtName.TabIndex = 1;
     //
     // lblImage
     //
     lblImage.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
     lblImage.AutoSize = true;
     tlpMainLayout.SetColumnSpan(lblImage, 2);
     lblImage.Location  = new System.Drawing.Point(3, 39);
     lblImage.Name      = "lblImage";
     lblImage.Size      = new System.Drawing.Size(358, 13);
     lblImage.TabIndex  = 2;
     lblImage.Text      = "Image to Load:";
     lblImage.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // txtImagePath
     //
     this.txtImagePath.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
     this.txtImagePath.Location = new System.Drawing.Point(3, 56);
     this.txtImagePath.Name     = "txtImagePath";
     this.txtImagePath.Size     = new System.Drawing.Size(329, 20);
     this.txtImagePath.TabIndex = 3;
     this.txtImagePath.Leave   += new System.EventHandler(this.TxtImagePath_Leave);
     //
     // btnBrowseImage
     //
     btnBrowseImage.Anchor   = System.Windows.Forms.AnchorStyles.None;
     btnBrowseImage.Image    = global::JAL.AquariaRecipes.Properties.Resources.Open_6529;
     btnBrowseImage.Location = new System.Drawing.Point(338, 55);
     btnBrowseImage.Name     = "btnBrowseImage";
     btnBrowseImage.Size     = new System.Drawing.Size(23, 23);
     btnBrowseImage.TabIndex = 4;
     btnBrowseImage.UseVisualStyleBackColor = true;
     btnBrowseImage.Click += new System.EventHandler(this.BtnBrowseImage_Click);
     //
     // lblImagePreview
     //
     lblImagePreview.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
     lblImagePreview.AutoSize = true;
     tlpMainLayout.SetColumnSpan(lblImagePreview, 2);
     lblImagePreview.Location  = new System.Drawing.Point(3, 81);
     lblImagePreview.Name      = "lblImagePreview";
     lblImagePreview.Size      = new System.Drawing.Size(358, 13);
     lblImagePreview.TabIndex  = 6;
     lblImagePreview.Text      = "Preview:";
     lblImagePreview.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // imgImage
     //
     this.imgImage.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.imgImage.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
     tlpMainLayout.SetColumnSpan(this.imgImage, 2);
     this.imgImage.Location = new System.Drawing.Point(3, 97);
     this.imgImage.Name     = "imgImage";
     this.imgImage.Size     = new System.Drawing.Size(358, 108);
     this.imgImage.TabIndex = 5;
     this.imgImage.TabStop  = false;
     //
     // flpDialogButtons
     //
     flpDialogButtons.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
     flpDialogButtons.AutoSize = true;
     tlpMainLayout.SetColumnSpan(flpDialogButtons, 2);
     flpDialogButtons.Controls.Add(this.btnOk);
     flpDialogButtons.Controls.Add(btnCancel);
     flpDialogButtons.FlowDirection = System.Windows.Forms.FlowDirection.RightToLeft;
     flpDialogButtons.Location      = new System.Drawing.Point(0, 208);
     flpDialogButtons.Margin        = new System.Windows.Forms.Padding(0);
     flpDialogButtons.Name          = "flpDialogButtons";
     flpDialogButtons.Size          = new System.Drawing.Size(364, 29);
     flpDialogButtons.TabIndex      = 7;
     //
     // btnOk
     //
     this.btnOk.DialogResult            = System.Windows.Forms.DialogResult.OK;
     this.btnOk.Location                = new System.Drawing.Point(286, 3);
     this.btnOk.Name                    = "btnOk";
     this.btnOk.Size                    = new System.Drawing.Size(75, 23);
     this.btnOk.TabIndex                = 0;
     this.btnOk.Text                    = "&Ok";
     this.btnOk.UseVisualStyleBackColor = true;
     //
     // btnCancel
     //
     btnCancel.DialogResult            = System.Windows.Forms.DialogResult.Cancel;
     btnCancel.Location                = new System.Drawing.Point(205, 3);
     btnCancel.Name                    = "btnCancel";
     btnCancel.Size                    = new System.Drawing.Size(75, 23);
     btnCancel.TabIndex                = 1;
     btnCancel.Text                    = "&Cancel";
     btnCancel.UseVisualStyleBackColor = true;
     //
     // NewImage
     //
     this.AcceptButton        = this.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(388, 261);
     this.ControlBox          = false;
     this.Controls.Add(tlpMainLayout);
     this.MaximizeBox   = false;
     this.MinimizeBox   = false;
     this.Name          = "NewImage";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text          = "Browse Image";
     tlpMainLayout.ResumeLayout(false);
     tlpMainLayout.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.imgImage)).EndInit();
     flpDialogButtons.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.StatusStrip ssBottom;
      System.Windows.Forms.GroupBox gbSourceImage;
      System.Windows.Forms.GroupBox gbTargetImage;
      System.Windows.Forms.FlowLayoutPanel flpActions;
      System.Windows.Forms.GroupBox gbAdvanced;
      System.Windows.Forms.GroupBox gbBorderPixelHandling;
      System.Windows.Forms.Label label7;
      System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
      System.Windows.Forms.Label label6;
      System.Windows.Forms.Label label5;
      System.Windows.Forms.Label label4;
      System.Windows.Forms.GroupBox gbTargetResolution;
      System.Windows.Forms.Label label9;
      System.Windows.Forms.Label label8;
      System.Windows.Forms.Label label2;
      System.Windows.Forms.Label label1;
      System.Windows.Forms.GroupBox gbMethod;
      System.Windows.Forms.GroupBox gbDescription;
      System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
      System.Windows.Forms.DataVisualization.Charting.Series series1 = new System.Windows.Forms.DataVisualization.Charting.Series();
      this.tssBusy = new System.Windows.Forms.ToolStripStatusLabel();
      this.tssBenchmark = new System.Windows.Forms.ToolStripStatusLabel();
      this.iwhSourceImage = new ImageResizer.UserControls.ImageWithDetails();
      this.iwhTargetImage = new ImageResizer.UserControls.ImageWithDetails();
      this.butResize = new System.Windows.Forms.Button();
      this.butSwitch = new System.Windows.Forms.Button();
      this.butRepeat = new System.Windows.Forms.Button();
      this.nudRadius = new System.Windows.Forms.NumericUpDown();
      this.lblRadius = new System.Windows.Forms.Label();
      this.lblRepititionCount = new System.Windows.Forms.Label();
      this.nudRepetitionCount = new System.Windows.Forms.NumericUpDown();
      this.chkUseCenteredGrid = new System.Windows.Forms.CheckBox();
      this.chkUseThresholds = new System.Windows.Forms.CheckBox();
      this.cmbVerticalBPH = new System.Windows.Forms.ComboBox();
      this.cmbHorizontalBPH = new System.Windows.Forms.ComboBox();
      this.chkKeepAspect = new System.Windows.Forms.CheckBox();
      this.nudWidth = new System.Windows.Forms.NumericUpDown();
      this.nudHeight = new System.Windows.Forms.NumericUpDown();
      this.cmbResizeMethod = new System.Windows.Forms.ComboBox();
      this.txtDescription = new System.Windows.Forms.TextBox();
      this.msMain = new System.Windows.Forms.MenuStrip();
      this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.openToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.saveToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.saveAsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.closeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
      this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.viewToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.sourceImageToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.stretchToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.centerToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.zoomToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.targetImageToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.stretchToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
      this.centerToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
      this.zoomToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
      this.scriptToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.clearToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.loadToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.saveToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
      this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
      this.showToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.executeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.wikiToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
      this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.tlpMainLayout = new System.Windows.Forms.TableLayoutPanel();
      this.pnMiddle = new System.Windows.Forms.Panel();
      this.gbKernelFunction = new System.Windows.Forms.GroupBox();
      this.chtKernel = new System.Windows.Forms.DataVisualization.Charting.Chart();
      this.gbActions = new System.Windows.Forms.GroupBox();
      this.ofdOpenFile = new System.Windows.Forms.OpenFileDialog();
      this.sfdSave = new System.Windows.Forms.SaveFileDialog();
      this.ofdOpenScript = new System.Windows.Forms.OpenFileDialog();
      this.sfdSaveScript = new System.Windows.Forms.SaveFileDialog();
      ssBottom = new System.Windows.Forms.StatusStrip();
      gbSourceImage = new System.Windows.Forms.GroupBox();
      gbTargetImage = new System.Windows.Forms.GroupBox();
      flpActions = new System.Windows.Forms.FlowLayoutPanel();
      gbAdvanced = new System.Windows.Forms.GroupBox();
      gbBorderPixelHandling = new System.Windows.Forms.GroupBox();
      label7 = new System.Windows.Forms.Label();
      label6 = new System.Windows.Forms.Label();
      label5 = new System.Windows.Forms.Label();
      label4 = new System.Windows.Forms.Label();
      gbTargetResolution = new System.Windows.Forms.GroupBox();
      label9 = new System.Windows.Forms.Label();
      label8 = new System.Windows.Forms.Label();
      label2 = new System.Windows.Forms.Label();
      label1 = new System.Windows.Forms.Label();
      gbMethod = new System.Windows.Forms.GroupBox();
      gbDescription = new System.Windows.Forms.GroupBox();
      ssBottom.SuspendLayout();
      gbSourceImage.SuspendLayout();
      gbTargetImage.SuspendLayout();
      flpActions.SuspendLayout();
      gbAdvanced.SuspendLayout();
      ((System.ComponentModel.ISupportInitialize)(this.nudRadius)).BeginInit();
      ((System.ComponentModel.ISupportInitialize)(this.nudRepetitionCount)).BeginInit();
      gbBorderPixelHandling.SuspendLayout();
      gbTargetResolution.SuspendLayout();
      ((System.ComponentModel.ISupportInitialize)(this.nudWidth)).BeginInit();
      ((System.ComponentModel.ISupportInitialize)(this.nudHeight)).BeginInit();
      gbMethod.SuspendLayout();
      gbDescription.SuspendLayout();
      this.msMain.SuspendLayout();
      this.tlpMainLayout.SuspendLayout();
      this.pnMiddle.SuspendLayout();
      this.gbKernelFunction.SuspendLayout();
      ((System.ComponentModel.ISupportInitialize)(this.chtKernel)).BeginInit();
      this.gbActions.SuspendLayout();
      this.SuspendLayout();
      // 
      // ssBottom
      // 
      ssBottom.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.tssBusy,
            this.tssBenchmark});
      ssBottom.Location = new System.Drawing.Point(0, 580);
      ssBottom.Name = "ssBottom";
      ssBottom.Size = new System.Drawing.Size(889, 22);
      ssBottom.TabIndex = 1;
      ssBottom.Text = "statusStrip1";
      // 
      // tssBusy
      // 
      this.tssBusy.Image = global::ImageResizer.Properties.Resources.ProgressCircularBlue;
      this.tssBusy.Name = "tssBusy";
      this.tssBusy.Size = new System.Drawing.Size(75, 17);
      this.tssBusy.Text = "Resizing...";
      this.tssBusy.Visible = false;
      // 
      // tssBenchmark
      // 
      this.tssBenchmark.Name = "tssBenchmark";
      this.tssBenchmark.Size = new System.Drawing.Size(0, 17);
      // 
      // gbSourceImage
      // 
      gbSourceImage.Controls.Add(this.iwhSourceImage);
      gbSourceImage.Dock = System.Windows.Forms.DockStyle.Fill;
      gbSourceImage.Location = new System.Drawing.Point(3, 3);
      gbSourceImage.Name = "gbSourceImage";
      gbSourceImage.Size = new System.Drawing.Size(288, 550);
      gbSourceImage.TabIndex = 0;
      gbSourceImage.TabStop = false;
      gbSourceImage.Text = "Source Image";
      // 
      // iwhSourceImage
      // 
      this.iwhSourceImage.AllowDrop = true;
      this.iwhSourceImage.Dock = System.Windows.Forms.DockStyle.Fill;
      this.iwhSourceImage.Location = new System.Drawing.Point(3, 16);
      this.iwhSourceImage.Name = "iwhSourceImage";
      this.iwhSourceImage.Size = new System.Drawing.Size(282, 531);
      this.iwhSourceImage.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
      this.iwhSourceImage.TabIndex = 0;
      this.iwhSourceImage.Click += new System.EventHandler(this.iwhSourceImage_Click);
      this.iwhSourceImage.DragDrop += new System.Windows.Forms.DragEventHandler(this.iwhSourceImage_DragDrop);
      this.iwhSourceImage.DragEnter += new System.Windows.Forms.DragEventHandler(this.iwhSourceImage_DragEnter);
      // 
      // gbTargetImage
      // 
      gbTargetImage.Controls.Add(this.iwhTargetImage);
      gbTargetImage.Dock = System.Windows.Forms.DockStyle.Fill;
      gbTargetImage.Location = new System.Drawing.Point(597, 3);
      gbTargetImage.Name = "gbTargetImage";
      gbTargetImage.Size = new System.Drawing.Size(289, 550);
      gbTargetImage.TabIndex = 1;
      gbTargetImage.TabStop = false;
      gbTargetImage.Text = "Target Image";
      // 
      // iwhTargetImage
      // 
      this.iwhTargetImage.Dock = System.Windows.Forms.DockStyle.Fill;
      this.iwhTargetImage.Location = new System.Drawing.Point(3, 16);
      this.iwhTargetImage.Name = "iwhTargetImage";
      this.iwhTargetImage.Size = new System.Drawing.Size(283, 531);
      this.iwhTargetImage.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
      this.iwhTargetImage.TabIndex = 0;
      this.iwhTargetImage.Click += new System.EventHandler(this.iwhTargetImage_Click);
      // 
      // flpActions
      // 
      flpActions.AutoSize = true;
      flpActions.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
      flpActions.Controls.Add(this.butResize);
      flpActions.Controls.Add(this.butSwitch);
      flpActions.Controls.Add(this.butRepeat);
      flpActions.Dock = System.Windows.Forms.DockStyle.Top;
      flpActions.Location = new System.Drawing.Point(3, 16);
      flpActions.Name = "flpActions";
      flpActions.Size = new System.Drawing.Size(288, 29);
      flpActions.TabIndex = 0;
      // 
      // butResize
      // 
      this.butResize.Image = global::ImageResizer.Properties.Resources.Resize;
      this.butResize.Location = new System.Drawing.Point(3, 3);
      this.butResize.Name = "butResize";
      this.butResize.Size = new System.Drawing.Size(75, 23);
      this.butResize.TabIndex = 0;
      this.butResize.Text = "Resize";
      this.butResize.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
      this.butResize.UseVisualStyleBackColor = true;
      this.butResize.Click += new System.EventHandler(this.btResize_Click);
      // 
      // butSwitch
      // 
      this.butSwitch.Image = global::ImageResizer.Properties.Resources.Switch;
      this.butSwitch.Location = new System.Drawing.Point(84, 3);
      this.butSwitch.Name = "butSwitch";
      this.butSwitch.Size = new System.Drawing.Size(75, 23);
      this.butSwitch.TabIndex = 0;
      this.butSwitch.Text = "Switch";
      this.butSwitch.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
      this.butSwitch.UseVisualStyleBackColor = true;
      this.butSwitch.Click += new System.EventHandler(this.btSwitch_Click);
      // 
      // butRepeat
      // 
      this.butRepeat.Image = global::ImageResizer.Properties.Resources.Repeat;
      this.butRepeat.Location = new System.Drawing.Point(165, 3);
      this.butRepeat.Name = "butRepeat";
      this.butRepeat.Size = new System.Drawing.Size(75, 23);
      this.butRepeat.TabIndex = 0;
      this.butRepeat.Text = "Repeat";
      this.butRepeat.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
      this.butRepeat.UseVisualStyleBackColor = true;
      this.butRepeat.Click += new System.EventHandler(this.btRepeat_Click);
      // 
      // gbAdvanced
      // 
      gbAdvanced.AutoSize = true;
      gbAdvanced.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
      gbAdvanced.Controls.Add(this.nudRadius);
      gbAdvanced.Controls.Add(this.lblRadius);
      gbAdvanced.Controls.Add(this.lblRepititionCount);
      gbAdvanced.Controls.Add(this.nudRepetitionCount);
      gbAdvanced.Controls.Add(this.chkUseCenteredGrid);
      gbAdvanced.Controls.Add(this.chkUseThresholds);
      gbAdvanced.Dock = System.Windows.Forms.DockStyle.Top;
      gbAdvanced.Location = new System.Drawing.Point(0, 285);
      gbAdvanced.Name = "gbAdvanced";
      gbAdvanced.Size = new System.Drawing.Size(294, 130);
      gbAdvanced.TabIndex = 3;
      gbAdvanced.TabStop = false;
      gbAdvanced.Text = "Advanced";
      // 
      // nudRadius
      // 
      this.nudRadius.DecimalPlaces = 2;
      this.nudRadius.Increment = new decimal(new int[] {
            1,
            0,
            0,
            65536});
      this.nudRadius.Location = new System.Drawing.Point(57, 91);
      this.nudRadius.Minimum = new decimal(new int[] {
            5,
            0,
            0,
            65536});
      this.nudRadius.Name = "nudRadius";
      this.nudRadius.Size = new System.Drawing.Size(49, 20);
      this.nudRadius.TabIndex = 3;
      this.nudRadius.Value = new decimal(new int[] {
            1,
            0,
            0,
            0});
      this.nudRadius.ValueChanged += new System.EventHandler(this.nudRadius_ValueChanged);
      // 
      // lblRadius
      // 
      this.lblRadius.AutoSize = true;
      this.lblRadius.Location = new System.Drawing.Point(6, 93);
      this.lblRadius.Name = "lblRadius";
      this.lblRadius.Size = new System.Drawing.Size(40, 13);
      this.lblRadius.TabIndex = 2;
      this.lblRadius.Text = "Radius";
      // 
      // lblRepititionCount
      // 
      this.lblRepititionCount.AutoSize = true;
      this.lblRepititionCount.Location = new System.Drawing.Point(6, 44);
      this.lblRepititionCount.Name = "lblRepititionCount";
      this.lblRepititionCount.Size = new System.Drawing.Size(42, 13);
      this.lblRepititionCount.TabIndex = 2;
      this.lblRepititionCount.Text = "Repeat";
      // 
      // nudRepetitionCount
      // 
      this.nudRepetitionCount.Location = new System.Drawing.Point(57, 42);
      this.nudRepetitionCount.Maximum = new decimal(new int[] {
            10,
            0,
            0,
            0});
      this.nudRepetitionCount.Minimum = new decimal(new int[] {
            1,
            0,
            0,
            0});
      this.nudRepetitionCount.Name = "nudRepetitionCount";
      this.nudRepetitionCount.Size = new System.Drawing.Size(49, 20);
      this.nudRepetitionCount.TabIndex = 1;
      this.nudRepetitionCount.Value = new decimal(new int[] {
            1,
            0,
            0,
            0});
      // 
      // chkUseCenteredGrid
      // 
      this.chkUseCenteredGrid.AutoSize = true;
      this.chkUseCenteredGrid.Location = new System.Drawing.Point(6, 68);
      this.chkUseCenteredGrid.Name = "chkUseCenteredGrid";
      this.chkUseCenteredGrid.Size = new System.Drawing.Size(113, 17);
      this.chkUseCenteredGrid.TabIndex = 0;
      this.chkUseCenteredGrid.Text = "Use Centered Grid";
      this.chkUseCenteredGrid.UseVisualStyleBackColor = true;
      // 
      // chkUseThresholds
      // 
      this.chkUseThresholds.AutoSize = true;
      this.chkUseThresholds.Location = new System.Drawing.Point(6, 19);
      this.chkUseThresholds.Name = "chkUseThresholds";
      this.chkUseThresholds.Size = new System.Drawing.Size(100, 17);
      this.chkUseThresholds.TabIndex = 0;
      this.chkUseThresholds.Text = "Use Thresholds";
      this.chkUseThresholds.UseVisualStyleBackColor = true;
      // 
      // gbBorderPixelHandling
      // 
      gbBorderPixelHandling.AutoSize = true;
      gbBorderPixelHandling.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
      gbBorderPixelHandling.Controls.Add(label7);
      gbBorderPixelHandling.Controls.Add(label6);
      gbBorderPixelHandling.Controls.Add(this.cmbVerticalBPH);
      gbBorderPixelHandling.Controls.Add(this.cmbHorizontalBPH);
      gbBorderPixelHandling.Controls.Add(label5);
      gbBorderPixelHandling.Controls.Add(label4);
      gbBorderPixelHandling.Dock = System.Windows.Forms.DockStyle.Top;
      gbBorderPixelHandling.Location = new System.Drawing.Point(0, 199);
      gbBorderPixelHandling.Name = "gbBorderPixelHandling";
      gbBorderPixelHandling.Size = new System.Drawing.Size(294, 86);
      gbBorderPixelHandling.TabIndex = 3;
      gbBorderPixelHandling.TabStop = false;
      gbBorderPixelHandling.Text = "Border pixel handling";
      // 
      // label7
      // 
      label7.Image = ((System.Drawing.Image)(resources.GetObject("label7.Image")));
      label7.Location = new System.Drawing.Point(259, 51);
      label7.Name = "label7";
      label7.Size = new System.Drawing.Size(16, 16);
      label7.TabIndex = 2;
      // 
      // label6
      // 
      label6.Image = ((System.Drawing.Image)(resources.GetObject("label6.Image")));
      label6.Location = new System.Drawing.Point(259, 22);
      label6.Name = "label6";
      label6.Size = new System.Drawing.Size(16, 16);
      label6.TabIndex = 2;
      // 
      // cmbVerticalBPH
      // 
      this.cmbVerticalBPH.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
      this.cmbVerticalBPH.FormattingEnabled = true;
      this.cmbVerticalBPH.Location = new System.Drawing.Point(90, 46);
      this.cmbVerticalBPH.Name = "cmbVerticalBPH";
      this.cmbVerticalBPH.Size = new System.Drawing.Size(161, 21);
      this.cmbVerticalBPH.TabIndex = 1;
      // 
      // cmbHorizontalBPH
      // 
      this.cmbHorizontalBPH.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
      this.cmbHorizontalBPH.FormattingEnabled = true;
      this.cmbHorizontalBPH.Location = new System.Drawing.Point(90, 19);
      this.cmbHorizontalBPH.Name = "cmbHorizontalBPH";
      this.cmbHorizontalBPH.Size = new System.Drawing.Size(161, 21);
      this.cmbHorizontalBPH.TabIndex = 1;
      // 
      // label5
      // 
      label5.AutoSize = true;
      label5.Location = new System.Drawing.Point(6, 49);
      label5.Name = "label5";
      label5.Size = new System.Drawing.Size(49, 13);
      label5.TabIndex = 0;
      label5.Text = "Vertically";
      // 
      // label4
      // 
      label4.AutoSize = true;
      label4.Location = new System.Drawing.Point(6, 22);
      label4.Name = "label4";
      label4.Size = new System.Drawing.Size(61, 13);
      label4.TabIndex = 0;
      label4.Text = "Horizontally";
      // 
      // gbTargetResolution
      // 
      gbTargetResolution.AutoSize = true;
      gbTargetResolution.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
      gbTargetResolution.Controls.Add(this.chkKeepAspect);
      gbTargetResolution.Controls.Add(label9);
      gbTargetResolution.Controls.Add(label8);
      gbTargetResolution.Controls.Add(this.nudWidth);
      gbTargetResolution.Controls.Add(this.nudHeight);
      gbTargetResolution.Controls.Add(label2);
      gbTargetResolution.Controls.Add(label1);
      gbTargetResolution.Dock = System.Windows.Forms.DockStyle.Top;
      gbTargetResolution.Location = new System.Drawing.Point(0, 115);
      gbTargetResolution.Name = "gbTargetResolution";
      gbTargetResolution.Size = new System.Drawing.Size(294, 84);
      gbTargetResolution.TabIndex = 3;
      gbTargetResolution.TabStop = false;
      gbTargetResolution.Text = "Target Resolution";
      // 
      // chkKeepAspect
      // 
      this.chkKeepAspect.AutoSize = true;
      this.chkKeepAspect.Location = new System.Drawing.Point(201, 32);
      this.chkKeepAspect.Name = "chkKeepAspect";
      this.chkKeepAspect.Size = new System.Drawing.Size(87, 17);
      this.chkKeepAspect.TabIndex = 3;
      this.chkKeepAspect.Text = "Keep Aspect";
      this.chkKeepAspect.UseVisualStyleBackColor = true;
      this.chkKeepAspect.CheckedChanged += new System.EventHandler(this.chkKeepAspect_CheckedChanged);
      // 
      // label9
      // 
      label9.Image = ((System.Drawing.Image)(resources.GetObject("label9.Image")));
      label9.Location = new System.Drawing.Point(132, 21);
      label9.Name = "label9";
      label9.Size = new System.Drawing.Size(16, 16);
      label9.TabIndex = 2;
      // 
      // label8
      // 
      label8.Image = ((System.Drawing.Image)(resources.GetObject("label8.Image")));
      label8.Location = new System.Drawing.Point(132, 47);
      label8.Name = "label8";
      label8.Size = new System.Drawing.Size(16, 16);
      label8.TabIndex = 2;
      // 
      // nudWidth
      // 
      this.nudWidth.Increment = new decimal(new int[] {
            16,
            0,
            0,
            0});
      this.nudWidth.Location = new System.Drawing.Point(57, 19);
      this.nudWidth.Maximum = new decimal(new int[] {
            32768,
            0,
            0,
            0});
      this.nudWidth.Name = "nudWidth";
      this.nudWidth.Size = new System.Drawing.Size(68, 20);
      this.nudWidth.TabIndex = 1;
      this.nudWidth.ValueChanged += new System.EventHandler(this.nudWidth_ValueChanged);
      // 
      // nudHeight
      // 
      this.nudHeight.Increment = new decimal(new int[] {
            16,
            0,
            0,
            0});
      this.nudHeight.Location = new System.Drawing.Point(57, 45);
      this.nudHeight.Maximum = new decimal(new int[] {
            32768,
            0,
            0,
            0});
      this.nudHeight.Name = "nudHeight";
      this.nudHeight.Size = new System.Drawing.Size(68, 20);
      this.nudHeight.TabIndex = 1;
      this.nudHeight.ValueChanged += new System.EventHandler(this.nudHeight_ValueChanged);
      // 
      // label2
      // 
      label2.AutoSize = true;
      label2.Location = new System.Drawing.Point(6, 47);
      label2.Name = "label2";
      label2.Size = new System.Drawing.Size(38, 13);
      label2.TabIndex = 0;
      label2.Text = "Height";
      // 
      // label1
      // 
      label1.AutoSize = true;
      label1.Location = new System.Drawing.Point(6, 21);
      label1.Name = "label1";
      label1.Size = new System.Drawing.Size(35, 13);
      label1.TabIndex = 0;
      label1.Text = "Width";
      // 
      // gbMethod
      // 
      gbMethod.AutoSize = true;
      gbMethod.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
      gbMethod.Controls.Add(this.cmbResizeMethod);
      gbMethod.Dock = System.Windows.Forms.DockStyle.Top;
      gbMethod.Location = new System.Drawing.Point(0, 0);
      gbMethod.Name = "gbMethod";
      gbMethod.Size = new System.Drawing.Size(294, 59);
      gbMethod.TabIndex = 3;
      gbMethod.TabStop = false;
      gbMethod.Text = "Method";
      // 
      // cmbResizeMethod
      // 
      this.cmbResizeMethod.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
      this.cmbResizeMethod.FormattingEnabled = true;
      this.cmbResizeMethod.Location = new System.Drawing.Point(6, 19);
      this.cmbResizeMethod.Name = "cmbResizeMethod";
      this.cmbResizeMethod.Size = new System.Drawing.Size(282, 21);
      this.cmbResizeMethod.TabIndex = 0;
      this.cmbResizeMethod.SelectedValueChanged += new System.EventHandler(this.cbResizeMethod_SelectedValueChanged);
      // 
      // gbDescription
      // 
      gbDescription.AutoSize = true;
      gbDescription.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
      gbDescription.Controls.Add(this.txtDescription);
      gbDescription.Dock = System.Windows.Forms.DockStyle.Top;
      gbDescription.Location = new System.Drawing.Point(0, 59);
      gbDescription.Name = "gbDescription";
      gbDescription.Size = new System.Drawing.Size(294, 56);
      gbDescription.TabIndex = 5;
      gbDescription.TabStop = false;
      gbDescription.Text = "Description";
      // 
      // txtDescription
      // 
      this.txtDescription.Dock = System.Windows.Forms.DockStyle.Top;
      this.txtDescription.Location = new System.Drawing.Point(3, 16);
      this.txtDescription.Multiline = true;
      this.txtDescription.Name = "txtDescription";
      this.txtDescription.ReadOnly = true;
      this.txtDescription.Size = new System.Drawing.Size(288, 37);
      this.txtDescription.TabIndex = 0;
      // 
      // msMain
      // 
      this.msMain.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.fileToolStripMenuItem,
            this.viewToolStripMenuItem,
            this.scriptToolStripMenuItem,
            this.helpToolStripMenuItem});
      this.msMain.Location = new System.Drawing.Point(0, 0);
      this.msMain.Name = "msMain";
      this.msMain.Size = new System.Drawing.Size(889, 24);
      this.msMain.TabIndex = 0;
      this.msMain.Text = "menuStrip1";
      // 
      // fileToolStripMenuItem
      // 
      this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.openToolStripMenuItem,
            this.saveToolStripMenuItem,
            this.saveAsToolStripMenuItem,
            this.closeToolStripMenuItem,
            this.toolStripSeparator1,
            this.exitToolStripMenuItem});
      this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
      this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
      this.fileToolStripMenuItem.Text = "File";
      // 
      // openToolStripMenuItem
      // 
      this.openToolStripMenuItem.Name = "openToolStripMenuItem";
      this.openToolStripMenuItem.Size = new System.Drawing.Size(114, 22);
      this.openToolStripMenuItem.Text = "Open";
      this.openToolStripMenuItem.Click += new System.EventHandler(this.openToolStripMenuItem_Click);
      // 
      // saveToolStripMenuItem
      // 
      this.saveToolStripMenuItem.Name = "saveToolStripMenuItem";
      this.saveToolStripMenuItem.Size = new System.Drawing.Size(114, 22);
      this.saveToolStripMenuItem.Text = "Save";
      this.saveToolStripMenuItem.Click += new System.EventHandler(this.saveToolStripMenuItem_Click);
      // 
      // saveAsToolStripMenuItem
      // 
      this.saveAsToolStripMenuItem.Name = "saveAsToolStripMenuItem";
      this.saveAsToolStripMenuItem.Size = new System.Drawing.Size(114, 22);
      this.saveAsToolStripMenuItem.Text = "Save As";
      this.saveAsToolStripMenuItem.Click += new System.EventHandler(this.saveAsToolStripMenuItem_Click);
      // 
      // closeToolStripMenuItem
      // 
      this.closeToolStripMenuItem.Name = "closeToolStripMenuItem";
      this.closeToolStripMenuItem.Size = new System.Drawing.Size(114, 22);
      this.closeToolStripMenuItem.Text = "Close";
      this.closeToolStripMenuItem.Click += new System.EventHandler(this.closeToolStripMenuItem_Click);
      // 
      // toolStripSeparator1
      // 
      this.toolStripSeparator1.Name = "toolStripSeparator1";
      this.toolStripSeparator1.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";
      this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
      // 
      // viewToolStripMenuItem
      // 
      this.viewToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.sourceImageToolStripMenuItem,
            this.targetImageToolStripMenuItem});
      this.viewToolStripMenuItem.Name = "viewToolStripMenuItem";
      this.viewToolStripMenuItem.Size = new System.Drawing.Size(44, 20);
      this.viewToolStripMenuItem.Text = "View";
      // 
      // sourceImageToolStripMenuItem
      // 
      this.sourceImageToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.stretchToolStripMenuItem,
            this.centerToolStripMenuItem,
            this.zoomToolStripMenuItem});
      this.sourceImageToolStripMenuItem.Name = "sourceImageToolStripMenuItem";
      this.sourceImageToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
      this.sourceImageToolStripMenuItem.Text = "Source Image";
      // 
      // stretchToolStripMenuItem
      // 
      this.stretchToolStripMenuItem.Name = "stretchToolStripMenuItem";
      this.stretchToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
      this.stretchToolStripMenuItem.Text = "Stretch";
      this.stretchToolStripMenuItem.Click += new System.EventHandler(this.stretchToolStripMenuItem_Click);
      // 
      // centerToolStripMenuItem
      // 
      this.centerToolStripMenuItem.Name = "centerToolStripMenuItem";
      this.centerToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
      this.centerToolStripMenuItem.Text = "Actual";
      this.centerToolStripMenuItem.Click += new System.EventHandler(this.centerToolStripMenuItem_Click);
      // 
      // zoomToolStripMenuItem
      // 
      this.zoomToolStripMenuItem.Name = "zoomToolStripMenuItem";
      this.zoomToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
      this.zoomToolStripMenuItem.Text = "Fit";
      this.zoomToolStripMenuItem.Click += new System.EventHandler(this.zoomToolStripMenuItem_Click);
      // 
      // targetImageToolStripMenuItem
      // 
      this.targetImageToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.stretchToolStripMenuItem1,
            this.centerToolStripMenuItem1,
            this.zoomToolStripMenuItem1});
      this.targetImageToolStripMenuItem.Name = "targetImageToolStripMenuItem";
      this.targetImageToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
      this.targetImageToolStripMenuItem.Text = "Target Image";
      // 
      // stretchToolStripMenuItem1
      // 
      this.stretchToolStripMenuItem1.Name = "stretchToolStripMenuItem1";
      this.stretchToolStripMenuItem1.Size = new System.Drawing.Size(111, 22);
      this.stretchToolStripMenuItem1.Text = "Stretch";
      this.stretchToolStripMenuItem1.Click += new System.EventHandler(this.stretchToolStripMenuItem1_Click);
      // 
      // centerToolStripMenuItem1
      // 
      this.centerToolStripMenuItem1.Name = "centerToolStripMenuItem1";
      this.centerToolStripMenuItem1.Size = new System.Drawing.Size(111, 22);
      this.centerToolStripMenuItem1.Text = "Actual";
      this.centerToolStripMenuItem1.Click += new System.EventHandler(this.centerToolStripMenuItem1_Click);
      // 
      // zoomToolStripMenuItem1
      // 
      this.zoomToolStripMenuItem1.Name = "zoomToolStripMenuItem1";
      this.zoomToolStripMenuItem1.Size = new System.Drawing.Size(111, 22);
      this.zoomToolStripMenuItem1.Text = "Fit";
      this.zoomToolStripMenuItem1.Click += new System.EventHandler(this.zoomToolStripMenuItem1_Click);
      // 
      // scriptToolStripMenuItem
      // 
      this.scriptToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.clearToolStripMenuItem,
            this.loadToolStripMenuItem,
            this.saveToolStripMenuItem1,
            this.toolStripSeparator3,
            this.showToolStripMenuItem,
            this.executeToolStripMenuItem});
      this.scriptToolStripMenuItem.Name = "scriptToolStripMenuItem";
      this.scriptToolStripMenuItem.Size = new System.Drawing.Size(49, 20);
      this.scriptToolStripMenuItem.Text = "Script";
      // 
      // clearToolStripMenuItem
      // 
      this.clearToolStripMenuItem.Name = "clearToolStripMenuItem";
      this.clearToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
      this.clearToolStripMenuItem.Text = "Clear";
      this.clearToolStripMenuItem.Click += new System.EventHandler(this.clearToolStripMenuItem_Click);
      // 
      // loadToolStripMenuItem
      // 
      this.loadToolStripMenuItem.Name = "loadToolStripMenuItem";
      this.loadToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
      this.loadToolStripMenuItem.Text = "Load";
      this.loadToolStripMenuItem.Click += new System.EventHandler(this.loadToolStripMenuItem_Click);
      // 
      // saveToolStripMenuItem1
      // 
      this.saveToolStripMenuItem1.Name = "saveToolStripMenuItem1";
      this.saveToolStripMenuItem1.Size = new System.Drawing.Size(152, 22);
      this.saveToolStripMenuItem1.Text = "Save";
      this.saveToolStripMenuItem1.Click += new System.EventHandler(this.saveToolStripMenuItem1_Click);
      // 
      // toolStripSeparator3
      // 
      this.toolStripSeparator3.Name = "toolStripSeparator3";
      this.toolStripSeparator3.Size = new System.Drawing.Size(149, 6);
      // 
      // showToolStripMenuItem
      // 
      this.showToolStripMenuItem.Name = "showToolStripMenuItem";
      this.showToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
      this.showToolStripMenuItem.Text = "Show";
      this.showToolStripMenuItem.Click += new System.EventHandler(this.showToolStripMenuItem_Click);
      // 
      // executeToolStripMenuItem
      // 
      this.executeToolStripMenuItem.Name = "executeToolStripMenuItem";
      this.executeToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
      this.executeToolStripMenuItem.Text = "Execute";
      this.executeToolStripMenuItem.Click += new System.EventHandler(this.executeToolStripMenuItem_Click);
      // 
      // helpToolStripMenuItem
      // 
      this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.wikiToolStripMenuItem,
            this.toolStripSeparator2,
            this.aboutToolStripMenuItem});
      this.helpToolStripMenuItem.Name = "helpToolStripMenuItem";
      this.helpToolStripMenuItem.Size = new System.Drawing.Size(44, 20);
      this.helpToolStripMenuItem.Text = "Help";
      // 
      // wikiToolStripMenuItem
      // 
      this.wikiToolStripMenuItem.Name = "wikiToolStripMenuItem";
      this.wikiToolStripMenuItem.Size = new System.Drawing.Size(107, 22);
      this.wikiToolStripMenuItem.Text = "Wiki";
      this.wikiToolStripMenuItem.Click += new System.EventHandler(this.wikiToolStripMenuItem_Click);
      // 
      // toolStripSeparator2
      // 
      this.toolStripSeparator2.Name = "toolStripSeparator2";
      this.toolStripSeparator2.Size = new System.Drawing.Size(104, 6);
      // 
      // aboutToolStripMenuItem
      // 
      this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem";
      this.aboutToolStripMenuItem.Size = new System.Drawing.Size(107, 22);
      this.aboutToolStripMenuItem.Text = "About";
      this.aboutToolStripMenuItem.Click += new System.EventHandler(this.aboutToolStripMenuItem_Click);
      // 
      // tlpMainLayout
      // 
      this.tlpMainLayout.ColumnCount = 3;
      this.tlpMainLayout.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
      this.tlpMainLayout.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
      this.tlpMainLayout.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
      this.tlpMainLayout.Controls.Add(gbSourceImage, 0, 0);
      this.tlpMainLayout.Controls.Add(gbTargetImage, 2, 0);
      this.tlpMainLayout.Controls.Add(this.pnMiddle, 1, 0);
      this.tlpMainLayout.Dock = System.Windows.Forms.DockStyle.Fill;
      this.tlpMainLayout.Location = new System.Drawing.Point(0, 24);
      this.tlpMainLayout.Name = "tlpMainLayout";
      this.tlpMainLayout.RowCount = 1;
      this.tlpMainLayout.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
      this.tlpMainLayout.Size = new System.Drawing.Size(889, 556);
      this.tlpMainLayout.TabIndex = 2;
      // 
      // pnMiddle
      // 
      this.pnMiddle.Controls.Add(this.gbKernelFunction);
      this.pnMiddle.Controls.Add(this.gbActions);
      this.pnMiddle.Controls.Add(gbAdvanced);
      this.pnMiddle.Controls.Add(gbBorderPixelHandling);
      this.pnMiddle.Controls.Add(gbTargetResolution);
      this.pnMiddle.Controls.Add(gbDescription);
      this.pnMiddle.Controls.Add(gbMethod);
      this.pnMiddle.Dock = System.Windows.Forms.DockStyle.Fill;
      this.pnMiddle.Location = new System.Drawing.Point(297, 3);
      this.pnMiddle.Name = "pnMiddle";
      this.pnMiddle.Size = new System.Drawing.Size(294, 550);
      this.pnMiddle.TabIndex = 2;
      // 
      // gbKernelFunction
      // 
      this.gbKernelFunction.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
      this.gbKernelFunction.Controls.Add(this.chtKernel);
      this.gbKernelFunction.Dock = System.Windows.Forms.DockStyle.Fill;
      this.gbKernelFunction.Location = new System.Drawing.Point(0, 463);
      this.gbKernelFunction.Name = "gbKernelFunction";
      this.gbKernelFunction.Size = new System.Drawing.Size(294, 87);
      this.gbKernelFunction.TabIndex = 6;
      this.gbKernelFunction.TabStop = false;
      this.gbKernelFunction.Text = "Kernel";
      // 
      // chtKernel
      // 
      this.chtKernel.BackColor = System.Drawing.SystemColors.Control;
      chartArea1.Name = "chaChart";
      this.chtKernel.ChartAreas.Add(chartArea1);
      this.chtKernel.Dock = System.Windows.Forms.DockStyle.Fill;
      this.chtKernel.Location = new System.Drawing.Point(3, 16);
      this.chtKernel.Name = "chtKernel";
      series1.ChartArea = "chaChart";
      series1.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Area;
      series1.Name = "dsKernelData";
      this.chtKernel.Series.Add(series1);
      this.chtKernel.Size = new System.Drawing.Size(288, 68);
      this.chtKernel.TabIndex = 0;
      this.chtKernel.Text = "chart1";
      // 
      // gbActions
      // 
      this.gbActions.AutoSize = true;
      this.gbActions.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
      this.gbActions.Controls.Add(flpActions);
      this.gbActions.Dock = System.Windows.Forms.DockStyle.Top;
      this.gbActions.Location = new System.Drawing.Point(0, 415);
      this.gbActions.Name = "gbActions";
      this.gbActions.Size = new System.Drawing.Size(294, 48);
      this.gbActions.TabIndex = 4;
      this.gbActions.TabStop = false;
      this.gbActions.Text = "Actions";
      // 
      // ofdOpenFile
      // 
      this.ofdOpenFile.FileName = "InputImage";
      this.ofdOpenFile.Filter = "Image Files|*.bmp;*.jpg;*.jpeg;*.png;*.gif";
      this.ofdOpenFile.RestoreDirectory = true;
      this.ofdOpenFile.Title = "Select Image to resize";
      // 
      // sfdSave
      // 
      this.sfdSave.DefaultExt = "png";
      this.sfdSave.FileName = "OutputImage";
      this.sfdSave.Filter = "Portable Network Graphics|*.png|JPEG Files|*.jpg;*.jpeg|Windows Bitmap|*.bmp|Grap" +
    "hics Interchange Format|*.gif|Image Files|*.bmp;*.jpg;*.jpeg;*.png;*.gif";
      this.sfdSave.RestoreDirectory = true;
      this.sfdSave.Title = "Enter filename";
      // 
      // ofdOpenScript
      // 
      this.ofdOpenScript.DefaultExt = "irs";
      this.ofdOpenScript.FileName = "InputScript";
      this.ofdOpenScript.Filter = "Image Resizer Script Files|*.irs|All files|*.*";
      this.ofdOpenScript.RestoreDirectory = true;
      this.ofdOpenScript.Title = "Select script to load";
      // 
      // sfdSaveScript
      // 
      this.sfdSaveScript.DefaultExt = "irs";
      this.sfdSaveScript.FileName = "OutputScript";
      this.sfdSaveScript.Filter = "Image Resizer Script Files|*.irs|All files|*.*";
      this.sfdSaveScript.RestoreDirectory = true;
      this.sfdSaveScript.Title = "Enter filename";
      // 
      // MainForm
      // 
      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
      this.ClientSize = new System.Drawing.Size(889, 602);
      this.Controls.Add(this.tlpMainLayout);
      this.Controls.Add(ssBottom);
      this.Controls.Add(this.msMain);
      this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
      this.MainMenuStrip = this.msMain;
      this.MinimumSize = new System.Drawing.Size(600, 600);
      this.Name = "MainForm";
      this.Text = "ImageResizer";
      ssBottom.ResumeLayout(false);
      ssBottom.PerformLayout();
      gbSourceImage.ResumeLayout(false);
      gbTargetImage.ResumeLayout(false);
      flpActions.ResumeLayout(false);
      gbAdvanced.ResumeLayout(false);
      gbAdvanced.PerformLayout();
      ((System.ComponentModel.ISupportInitialize)(this.nudRadius)).EndInit();
      ((System.ComponentModel.ISupportInitialize)(this.nudRepetitionCount)).EndInit();
      gbBorderPixelHandling.ResumeLayout(false);
      gbBorderPixelHandling.PerformLayout();
      gbTargetResolution.ResumeLayout(false);
      gbTargetResolution.PerformLayout();
      ((System.ComponentModel.ISupportInitialize)(this.nudWidth)).EndInit();
      ((System.ComponentModel.ISupportInitialize)(this.nudHeight)).EndInit();
      gbMethod.ResumeLayout(false);
      gbDescription.ResumeLayout(false);
      gbDescription.PerformLayout();
      this.msMain.ResumeLayout(false);
      this.msMain.PerformLayout();
      this.tlpMainLayout.ResumeLayout(false);
      this.pnMiddle.ResumeLayout(false);
      this.pnMiddle.PerformLayout();
      this.gbKernelFunction.ResumeLayout(false);
      ((System.ComponentModel.ISupportInitialize)(this.chtKernel)).EndInit();
      this.gbActions.ResumeLayout(false);
      this.gbActions.PerformLayout();
      this.ResumeLayout(false);
      this.PerformLayout();

    }
Example #9
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.FlowLayoutPanel flowLayoutPanel1;
     System.Windows.Forms.GroupBox        groupBox1;
     System.Windows.Forms.GroupBox        groupBox2;
     System.Windows.Forms.FlowLayoutPanel flowLayoutPanel2;
     this.messageLabel      = new System.Windows.Forms.Label();
     this.stackTraceLabel   = new System.Windows.Forms.Label();
     this.continueButton    = new System.Windows.Forms.Button();
     this.exceptionListView = new System.Windows.Forms.ListView();
     this.columnHeader3     = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.splitContainer1   = new System.Windows.Forms.SplitContainer();
     flowLayoutPanel1       = new System.Windows.Forms.FlowLayoutPanel();
     groupBox1        = new System.Windows.Forms.GroupBox();
     groupBox2        = new System.Windows.Forms.GroupBox();
     flowLayoutPanel2 = new System.Windows.Forms.FlowLayoutPanel();
     flowLayoutPanel1.SuspendLayout();
     groupBox1.SuspendLayout();
     groupBox2.SuspendLayout();
     flowLayoutPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     this.SuspendLayout();
     //
     // flowLayoutPanel1
     //
     flowLayoutPanel1.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)));
     flowLayoutPanel1.Controls.Add(this.messageLabel);
     flowLayoutPanel1.Location = new System.Drawing.Point(12, 37);
     flowLayoutPanel1.Margin   = new System.Windows.Forms.Padding(6, 6, 6, 6);
     flowLayoutPanel1.Name     = "flowLayoutPanel1";
     flowLayoutPanel1.Size     = new System.Drawing.Size(888, 79);
     flowLayoutPanel1.TabIndex = 2;
     //
     // messageLabel
     //
     this.messageLabel.AutoSize = true;
     this.messageLabel.Location = new System.Drawing.Point(6, 0);
     this.messageLabel.Margin   = new System.Windows.Forms.Padding(6, 0, 6, 0);
     this.messageLabel.Name     = "messageLabel";
     this.messageLabel.Size     = new System.Drawing.Size(70, 25);
     this.messageLabel.TabIndex = 0;
     this.messageLabel.Text     = "label1";
     //
     // groupBox1
     //
     groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                              | System.Windows.Forms.AnchorStyles.Right)));
     groupBox1.Controls.Add(flowLayoutPanel1);
     groupBox1.Location = new System.Drawing.Point(6, 6);
     groupBox1.Margin   = new System.Windows.Forms.Padding(6, 6, 6, 6);
     groupBox1.Name     = "groupBox1";
     groupBox1.Padding  = new System.Windows.Forms.Padding(6, 6, 6, 6);
     groupBox1.Size     = new System.Drawing.Size(912, 127);
     groupBox1.TabIndex = 5;
     groupBox1.TabStop  = false;
     groupBox1.Text     = "Message";
     //
     // groupBox2
     //
     groupBox2.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)));
     groupBox2.Controls.Add(flowLayoutPanel2);
     groupBox2.Location = new System.Drawing.Point(6, 145);
     groupBox2.Margin   = new System.Windows.Forms.Padding(6, 6, 6, 6);
     groupBox2.Name     = "groupBox2";
     groupBox2.Padding  = new System.Windows.Forms.Padding(6, 6, 6, 6);
     groupBox2.Size     = new System.Drawing.Size(912, 726);
     groupBox2.TabIndex = 6;
     groupBox2.TabStop  = false;
     groupBox2.Text     = "Stack Trace";
     //
     // flowLayoutPanel2
     //
     flowLayoutPanel2.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)));
     flowLayoutPanel2.Controls.Add(this.stackTraceLabel);
     flowLayoutPanel2.Location = new System.Drawing.Point(12, 37);
     flowLayoutPanel2.Margin   = new System.Windows.Forms.Padding(6, 6, 6, 6);
     flowLayoutPanel2.Name     = "flowLayoutPanel2";
     flowLayoutPanel2.Size     = new System.Drawing.Size(888, 677);
     flowLayoutPanel2.TabIndex = 2;
     //
     // stackTraceLabel
     //
     this.stackTraceLabel.AutoSize = true;
     this.stackTraceLabel.Location = new System.Drawing.Point(6, 0);
     this.stackTraceLabel.Margin   = new System.Windows.Forms.Padding(6, 0, 6, 0);
     this.stackTraceLabel.Name     = "stackTraceLabel";
     this.stackTraceLabel.Size     = new System.Drawing.Size(70, 25);
     this.stackTraceLabel.TabIndex = 0;
     this.stackTraceLabel.Text     = "label1";
     //
     // continueButton
     //
     this.continueButton.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.continueButton.Location = new System.Drawing.Point(12, 898);
     this.continueButton.Margin   = new System.Windows.Forms.Padding(6, 6, 6, 6);
     this.continueButton.Name     = "continueButton";
     this.continueButton.Size     = new System.Drawing.Size(217, 44);
     this.continueButton.TabIndex = 1;
     this.continueButton.Text     = "Weiter";
     this.continueButton.UseVisualStyleBackColor = true;
     this.continueButton.Click += new System.EventHandler(this.ContinueButton_Click);
     //
     // exceptionListView
     //
     this.exceptionListView.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.exceptionListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.columnHeader3
     });
     this.exceptionListView.FullRowSelect = true;
     this.exceptionListView.HideSelection = false;
     this.exceptionListView.Location      = new System.Drawing.Point(6, 6);
     this.exceptionListView.Margin        = new System.Windows.Forms.Padding(6, 6, 6, 6);
     this.exceptionListView.MultiSelect   = false;
     this.exceptionListView.Name          = "exceptionListView";
     this.exceptionListView.Size          = new System.Drawing.Size(455, 865);
     this.exceptionListView.TabIndex      = 4;
     this.exceptionListView.UseCompatibleStateImageBehavior = false;
     this.exceptionListView.View = System.Windows.Forms.View.List;
     this.exceptionListView.SelectedIndexChanged += new System.EventHandler(this.ExceptionListView_SelectedIndexChanged);
     //
     // columnHeader3
     //
     this.columnHeader3.Text  = "Text";
     this.columnHeader3.Width = 162;
     //
     // splitContainer1
     //
     this.splitContainer1.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.splitContainer1.Location = new System.Drawing.Point(12, 12);
     this.splitContainer1.Name     = "splitContainer1";
     //
     // splitContainer1.Panel1
     //
     this.splitContainer1.Panel1.Controls.Add(this.exceptionListView);
     //
     // splitContainer1.Panel2
     //
     this.splitContainer1.Panel2.Controls.Add(groupBox1);
     this.splitContainer1.Panel2.Controls.Add(groupBox2);
     this.splitContainer1.Size             = new System.Drawing.Size(1401, 877);
     this.splitContainer1.SplitterDistance = 467;
     this.splitContainer1.TabIndex         = 7;
     //
     // ExceptionForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(12F, 25F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(1437, 957);
     this.Controls.Add(this.splitContainer1);
     this.Controls.Add(this.continueButton);
     this.Margin = new System.Windows.Forms.Padding(6, 6, 6, 6);
     this.Name   = "ExceptionForm";
     this.Text   = "ExceptionForm";
     flowLayoutPanel1.ResumeLayout(false);
     flowLayoutPanel1.PerformLayout();
     groupBox1.ResumeLayout(false);
     groupBox2.ResumeLayout(false);
     flowLayoutPanel2.ResumeLayout(false);
     flowLayoutPanel2.PerformLayout();
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
     this.splitContainer1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Example #10
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.FlowLayoutPanel           panel1;
     System.Windows.Forms.FlowLayoutPanel           flowLayoutPanel2;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormGitIgnore));
     this.lnkGitIgnoreGenerate = new System.Windows.Forms.LinkLabel();
     this.lnkGitIgnorePatterns = new System.Windows.Forms.LinkLabel();
     this.AddDefault           = new System.Windows.Forms.Button();
     this.AddPattern           = new System.Windows.Forms.Button();
     this.Save                        = new System.Windows.Forms.Button();
     this.splitContainer1             = new System.Windows.Forms.SplitContainer();
     this._NO_TRANSLATE_GitIgnoreEdit = new GitUI.Editor.FileViewer();
     this.label1                      = new System.Windows.Forms.TextBox();
     this.flowLayoutPanel1            = new System.Windows.Forms.FlowLayoutPanel();
     this.btnCancel                   = new System.Windows.Forms.Button();
     panel1           = new System.Windows.Forms.FlowLayoutPanel();
     flowLayoutPanel2 = new System.Windows.Forms.FlowLayoutPanel();
     panel1.SuspendLayout();
     flowLayoutPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     this.flowLayoutPanel1.SuspendLayout();
     this.SuspendLayout();
     //
     // panel1
     //
     panel1.AutoSize     = true;
     panel1.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     panel1.Controls.Add(this.lnkGitIgnoreGenerate);
     panel1.Controls.Add(this.lnkGitIgnorePatterns);
     panel1.Dock          = System.Windows.Forms.DockStyle.Bottom;
     panel1.FlowDirection = System.Windows.Forms.FlowDirection.RightToLeft;
     panel1.Location      = new System.Drawing.Point(0, 383);
     panel1.Name          = "panel1";
     panel1.Padding       = new System.Windows.Forms.Padding(0, 0, 8, 4);
     panel1.Size          = new System.Drawing.Size(270, 38);
     panel1.TabIndex      = 5;
     //
     // lnkGitIgnoreGenerate
     //
     this.lnkGitIgnoreGenerate.AutoSize     = true;
     this.lnkGitIgnoreGenerate.Dock         = System.Windows.Forms.DockStyle.Right;
     this.lnkGitIgnoreGenerate.LinkColor    = System.Drawing.SystemColors.HotTrack;
     this.lnkGitIgnoreGenerate.Location     = new System.Drawing.Point(79, 2);
     this.lnkGitIgnoreGenerate.Margin       = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.lnkGitIgnoreGenerate.Name         = "lnkGitIgnoreGenerate";
     this.lnkGitIgnoreGenerate.RightToLeft  = System.Windows.Forms.RightToLeft.Yes;
     this.lnkGitIgnoreGenerate.Size         = new System.Drawing.Size(180, 13);
     this.lnkGitIgnoreGenerate.TabIndex     = 7;
     this.lnkGitIgnoreGenerate.TabStop      = true;
     this.lnkGitIgnoreGenerate.Text         = "Generate a custom ignore file for git";
     this.lnkGitIgnoreGenerate.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lnkGitIgnoreGenerate_LinkClicked);
     //
     // lnkGitIgnorePatterns
     //
     this.lnkGitIgnorePatterns.AutoSize     = true;
     this.lnkGitIgnorePatterns.Dock         = System.Windows.Forms.DockStyle.Right;
     this.lnkGitIgnorePatterns.LinkColor    = System.Drawing.SystemColors.HotTrack;
     this.lnkGitIgnorePatterns.Location     = new System.Drawing.Point(135, 19);
     this.lnkGitIgnorePatterns.Margin       = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.lnkGitIgnorePatterns.Name         = "lnkGitIgnorePatterns";
     this.lnkGitIgnorePatterns.RightToLeft  = System.Windows.Forms.RightToLeft.Yes;
     this.lnkGitIgnorePatterns.Size         = new System.Drawing.Size(124, 13);
     this.lnkGitIgnorePatterns.TabIndex     = 6;
     this.lnkGitIgnorePatterns.TabStop      = true;
     this.lnkGitIgnorePatterns.Text         = "Example ignore patterns";
     this.lnkGitIgnorePatterns.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lnkGitIgnorePatterns_LinkClicked);
     //
     // flowLayoutPanel2
     //
     flowLayoutPanel2.AutoSize = true;
     flowLayoutPanel2.Controls.Add(this.AddDefault);
     flowLayoutPanel2.Controls.Add(this.AddPattern);
     flowLayoutPanel2.Dock         = System.Windows.Forms.DockStyle.Bottom;
     flowLayoutPanel2.Location     = new System.Drawing.Point(0, 388);
     flowLayoutPanel2.Name         = "flowLayoutPanel2";
     flowLayoutPanel2.Size         = new System.Drawing.Size(352, 33);
     flowLayoutPanel2.TabIndex     = 6;
     flowLayoutPanel2.WrapContents = false;
     //
     // AddDefault
     //
     this.AddDefault.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.AddDefault.AutoSize = true;
     this.AddDefault.Location = new System.Drawing.Point(3, 3);
     this.AddDefault.Name     = "AddDefault";
     this.AddDefault.Size     = new System.Drawing.Size(160, 27);
     this.AddDefault.TabIndex = 2;
     this.AddDefault.Text     = "Add default ignores";
     this.AddDefault.UseVisualStyleBackColor = true;
     this.AddDefault.Click += new System.EventHandler(this.AddDefaultClick);
     //
     // AddPattern
     //
     this.AddPattern.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.AddPattern.AutoSize = true;
     this.AddPattern.Location = new System.Drawing.Point(169, 3);
     this.AddPattern.Name     = "AddPattern";
     this.AddPattern.Size     = new System.Drawing.Size(160, 27);
     this.AddPattern.TabIndex = 3;
     this.AddPattern.Text     = "Add pattern";
     this.AddPattern.UseVisualStyleBackColor = true;
     this.AddPattern.Click += new System.EventHandler(this.AddPattern_Click);
     //
     // Save
     //
     this.Save.AutoSize                = true;
     this.Save.DialogResult            = System.Windows.Forms.DialogResult.OK;
     this.Save.Image                   = global::GitUI.Properties.Images.Save;
     this.Save.ImageAlign              = System.Drawing.ContentAlignment.MiddleRight;
     this.Save.Location                = new System.Drawing.Point(463, 3);
     this.Save.Name                    = "Save";
     this.Save.Size                    = new System.Drawing.Size(160, 27);
     this.Save.TabIndex                = 1;
     this.Save.Text                    = "Save";
     this.Save.TextImageRelation       = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.Save.UseVisualStyleBackColor = true;
     this.Save.Click                  += new System.EventHandler(this.SaveClick);
     //
     // splitContainer1
     //
     this.splitContainer1.Dock       = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer1.FixedPanel = System.Windows.Forms.FixedPanel.Panel2;
     this.splitContainer1.Location   = new System.Drawing.Point(4, 4);
     this.splitContainer1.Name       = "splitContainer1";
     //
     // splitContainer1.Panel1
     //
     this.splitContainer1.Panel1.Controls.Add(this._NO_TRANSLATE_GitIgnoreEdit);
     this.splitContainer1.Panel1.Controls.Add(flowLayoutPanel2);
     this.splitContainer1.Panel1MinSize = 250;
     //
     // splitContainer1.Panel2
     //
     this.splitContainer1.Panel2.Controls.Add(this.label1);
     this.splitContainer1.Panel2.Controls.Add(panel1);
     this.splitContainer1.Panel2MinSize    = 250;
     this.splitContainer1.Size             = new System.Drawing.Size(626, 421);
     this.splitContainer1.SplitterDistance = 352;
     this.splitContainer1.TabIndex         = 0;
     //
     // _NO_TRANSLATE_GitIgnoreEdit
     //
     this._NO_TRANSLATE_GitIgnoreEdit.AutoScroll  = true;
     this._NO_TRANSLATE_GitIgnoreEdit.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this._NO_TRANSLATE_GitIgnoreEdit.Dock        = System.Windows.Forms.DockStyle.Fill;
     this._NO_TRANSLATE_GitIgnoreEdit.IsReadOnly  = false;
     this._NO_TRANSLATE_GitIgnoreEdit.Location    = new System.Drawing.Point(0, 0);
     this._NO_TRANSLATE_GitIgnoreEdit.Margin      = new System.Windows.Forms.Padding(0, 0, 3, 2);
     this._NO_TRANSLATE_GitIgnoreEdit.Name        = "_NO_TRANSLATE_GitIgnoreEdit";
     this._NO_TRANSLATE_GitIgnoreEdit.Size        = new System.Drawing.Size(352, 388);
     this._NO_TRANSLATE_GitIgnoreEdit.TabIndex    = 0;
     //
     // label1
     //
     this.label1.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.label1.Dock        = System.Windows.Forms.DockStyle.Fill;
     this.label1.Location    = new System.Drawing.Point(0, 0);
     this.label1.Margin      = new System.Windows.Forms.Padding(3, 0, 3, 3);
     this.label1.Multiline   = true;
     this.label1.Name        = "label1";
     this.label1.ReadOnly    = true;
     this.label1.Size        = new System.Drawing.Size(270, 383);
     this.label1.TabIndex    = 4;
     this.label1.Text        = resources.GetString("label1.Text");
     this.label1.WordWrap    = false;
     //
     // flowLayoutPanel1
     //
     this.flowLayoutPanel1.AutoSize = true;
     this.flowLayoutPanel1.Controls.Add(this.Save);
     this.flowLayoutPanel1.Controls.Add(this.btnCancel);
     this.flowLayoutPanel1.Dock          = System.Windows.Forms.DockStyle.Bottom;
     this.flowLayoutPanel1.FlowDirection = System.Windows.Forms.FlowDirection.RightToLeft;
     this.flowLayoutPanel1.Location      = new System.Drawing.Point(4, 425);
     this.flowLayoutPanel1.Name          = "flowLayoutPanel1";
     this.flowLayoutPanel1.Size          = new System.Drawing.Size(626, 33);
     this.flowLayoutPanel1.TabIndex      = 1;
     //
     // btnCancel
     //
     this.btnCancel.AutoSize                = true;
     this.btnCancel.DialogResult            = System.Windows.Forms.DialogResult.Cancel;
     this.btnCancel.Location                = new System.Drawing.Point(382, 3);
     this.btnCancel.Name                    = "btnCancel";
     this.btnCancel.Size                    = new System.Drawing.Size(75, 27);
     this.btnCancel.TabIndex                = 2;
     this.btnCancel.Text                    = "Cancel";
     this.btnCancel.UseVisualStyleBackColor = true;
     this.btnCancel.Click                  += new System.EventHandler(this.btnCancel_Click);
     //
     // FormGitIgnore
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Dpi;
     this.CancelButton        = this.btnCancel;
     this.ClientSize          = new System.Drawing.Size(634, 462);
     this.Controls.Add(this.splitContainer1);
     this.Controls.Add(this.flowLayoutPanel1);
     this.MinimumSize   = new System.Drawing.Size(650, 498);
     this.Name          = "FormGitIgnore";
     this.Padding       = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text          = "Edit .gitignore";
     this.FormClosing  += new System.Windows.Forms.FormClosingEventHandler(this.FormGitIgnoreFormClosing);
     this.Load         += new System.EventHandler(this.FormGitIgnoreLoad);
     panel1.ResumeLayout(false);
     panel1.PerformLayout();
     flowLayoutPanel2.ResumeLayout(false);
     flowLayoutPanel2.PerformLayout();
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel1.PerformLayout();
     this.splitContainer1.Panel2.ResumeLayout(false);
     this.splitContainer1.Panel2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
     this.splitContainer1.ResumeLayout(false);
     this.flowLayoutPanel1.ResumeLayout(false);
     this.flowLayoutPanel1.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.FlowLayoutPanel flowLayoutPanel1;
     this.unitSummaryTree1 = new StarCraftBot9KClient.Controls.UnitSummaryTree();
     this.ssBotStatus = new System.Windows.Forms.StatusStrip();
     this.statusLabel = new System.Windows.Forms.ToolStripStatusLabel();
     this.splitContainer1 = new System.Windows.Forms.SplitContainer();
     this.gameStateControl = new StarCraftBot9KClient.Controls.GameState();
     this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
     this.btnIssueCommand = new System.Windows.Forms.Button();
     this.cbEnableEconomyAI = new System.Windows.Forms.CheckBox();
     flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
     this.ssBotStatus.SuspendLayout();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     this.tableLayoutPanel1.SuspendLayout();
     flowLayoutPanel1.SuspendLayout();
     this.SuspendLayout();
     //
     // unitSummaryTree1
     //
     this.unitSummaryTree1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.unitSummaryTree1.Location = new System.Drawing.Point(3, 3);
     this.unitSummaryTree1.Name = "unitSummaryTree1";
     this.unitSummaryTree1.Size = new System.Drawing.Size(232, 353);
     this.unitSummaryTree1.TabIndex = 0;
     //
     // ssBotStatus
     //
     this.ssBotStatus.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.statusLabel});
     this.ssBotStatus.Location = new System.Drawing.Point(0, 439);
     this.ssBotStatus.Name = "ssBotStatus";
     this.ssBotStatus.Padding = new System.Windows.Forms.Padding(1, 0, 10, 0);
     this.ssBotStatus.Size = new System.Drawing.Size(714, 22);
     this.ssBotStatus.TabIndex = 0;
     //
     // statusLabel
     //
     this.statusLabel.Name = "statusLabel";
     this.statusLabel.Size = new System.Drawing.Size(135, 17);
     this.statusLabel.Text = "<StarCraftBot9K Status>";
     //
     // splitContainer1
     //
     this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer1.Location = new System.Drawing.Point(0, 0);
     this.splitContainer1.Name = "splitContainer1";
     //
     // splitContainer1.Panel1
     //
     this.splitContainer1.Panel1.Controls.Add(this.tableLayoutPanel1);
     //
     // splitContainer1.Panel2
     //
     this.splitContainer1.Panel2.Controls.Add(this.gameStateControl);
     this.splitContainer1.Size = new System.Drawing.Size(714, 439);
     this.splitContainer1.SplitterDistance = 238;
     this.splitContainer1.TabIndex = 7;
     //
     // gameStateControl
     //
     this.gameStateControl.BackColor = System.Drawing.SystemColors.ControlDarkDark;
     this.gameStateControl.Dock = System.Windows.Forms.DockStyle.Top;
     this.gameStateControl.Location = new System.Drawing.Point(0, 0);
     this.gameStateControl.Name = "gameStateControl";
     this.gameStateControl.Size = new System.Drawing.Size(472, 439);
     this.gameStateControl.TabIndex = 0;
     //
     // tableLayoutPanel1
     //
     this.tableLayoutPanel1.ColumnCount = 1;
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
     this.tableLayoutPanel1.Controls.Add(this.unitSummaryTree1, 0, 0);
     this.tableLayoutPanel1.Controls.Add(this.cbEnableEconomyAI, 0, 2);
     this.tableLayoutPanel1.Controls.Add(flowLayoutPanel1, 0, 1);
     this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
     this.tableLayoutPanel1.Name = "tableLayoutPanel1";
     this.tableLayoutPanel1.RowCount = 3;
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 55F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
     this.tableLayoutPanel1.Size = new System.Drawing.Size(238, 439);
     this.tableLayoutPanel1.TabIndex = 1;
     //
     // btnIssueCommand
     //
     this.btnIssueCommand.Location = new System.Drawing.Point(3, 3);
     this.btnIssueCommand.Name = "btnIssueCommand";
     this.btnIssueCommand.Size = new System.Drawing.Size(75, 23);
     this.btnIssueCommand.TabIndex = 0;
     this.btnIssueCommand.Text = "Send Cmd";
     this.btnIssueCommand.UseVisualStyleBackColor = true;
     this.btnIssueCommand.Click += new System.EventHandler(this.btnIssueCommand_Click);
     //
     // flowLayoutPanel1
     //
     flowLayoutPanel1.Controls.Add(this.btnIssueCommand);
     flowLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     flowLayoutPanel1.Location = new System.Drawing.Point(3, 362);
     flowLayoutPanel1.Name = "flowLayoutPanel1";
     flowLayoutPanel1.Size = new System.Drawing.Size(232, 49);
     flowLayoutPanel1.TabIndex = 0;
     //
     // cbEnableEconomyAI
     //
     this.cbEnableEconomyAI.AutoSize = true;
     this.cbEnableEconomyAI.Location = new System.Drawing.Point(3, 417);
     this.cbEnableEconomyAI.Name = "cbEnableEconomyAI";
     this.cbEnableEconomyAI.Size = new System.Drawing.Size(121, 17);
     this.cbEnableEconomyAI.TabIndex = 1;
     this.cbEnableEconomyAI.Text = "Economy AI Module";
     this.cbEnableEconomyAI.UseVisualStyleBackColor = true;
     this.cbEnableEconomyAI.CheckedChanged += new System.EventHandler(this.cbEnableEconomyAI_CheckedChanged);
     //
     // MainForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(714, 461);
     this.Controls.Add(this.splitContainer1);
     this.Controls.Add(this.ssBotStatus);
     this.Margin = new System.Windows.Forms.Padding(2);
     this.Name = "MainForm";
     this.Text = "StarCraft Bot 9K";
     this.Load += new System.EventHandler(this.Form1_Load);
     this.ssBotStatus.ResumeLayout(false);
     this.ssBotStatus.PerformLayout();
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel2.ResumeLayout(false);
     this.splitContainer1.ResumeLayout(false);
     this.tableLayoutPanel1.ResumeLayout(false);
     this.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.FlowLayoutPanel flowLayoutPanel1;
            System.Windows.Forms.Label label1;
            System.Windows.Forms.Label label2;
            System.Windows.Forms.Label label4;
            System.Windows.Forms.Label label5;
            System.Windows.Forms.Label label7;
            System.Windows.Forms.Label label8;
            System.Windows.Forms.Label label3;
            System.Windows.Forms.Label label6;
            System.Windows.Forms.Label label9;
            System.Windows.Forms.Label label10;
            System.Windows.Forms.Label label11;
            System.Windows.Forms.Label label12;
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ImportWizardDialog));
            this.cancelButton = new System.Windows.Forms.Button();
            this.okButton = new System.Windows.Forms.Button();
            this.nextButton = new System.Windows.Forms.Button();
            this.backButton = new System.Windows.Forms.Button();
            this.step1Panel = new System.Windows.Forms.TableLayoutPanel();
            this.sourcePathTextBox = new System.Windows.Forms.TextBox();
            this.browsePathButton = new System.Windows.Forms.Button();
            this.browseSearchPathButton = new System.Windows.Forms.Button();
            this.searchPathTextBox = new System.Windows.Forms.TextBox();
            this.filterTextBox = new System.Windows.Forms.TextBox();
            this.iconPanel = new System.Windows.Forms.Panel();
            this.jImage = new System.Windows.Forms.PictureBox();
            this.step2Panel = new System.Windows.Forms.TableLayoutPanel();
            this.interpreterCombo = new System.Windows.Forms.ComboBox();
            this.startupFileList = new System.Windows.Forms.ListView();
            this.imageList1 = new System.Windows.Forms.ImageList(this.components);
            flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
            label1 = new System.Windows.Forms.Label();
            label2 = new System.Windows.Forms.Label();
            label4 = new System.Windows.Forms.Label();
            label5 = new System.Windows.Forms.Label();
            label7 = new System.Windows.Forms.Label();
            label8 = new System.Windows.Forms.Label();
            label3 = new System.Windows.Forms.Label();
            label6 = new System.Windows.Forms.Label();
            label9 = new System.Windows.Forms.Label();
            label10 = new System.Windows.Forms.Label();
            label11 = new System.Windows.Forms.Label();
            label12 = new System.Windows.Forms.Label();
            flowLayoutPanel1.SuspendLayout();
            this.step1Panel.SuspendLayout();
            this.iconPanel.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.jImage)).BeginInit();
            this.step2Panel.SuspendLayout();
            this.SuspendLayout();
            // 
            // flowLayoutPanel1
            // 
            flowLayoutPanel1.AutoSize = true;
            flowLayoutPanel1.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            flowLayoutPanel1.Controls.Add(this.cancelButton);
            flowLayoutPanel1.Controls.Add(this.okButton);
            flowLayoutPanel1.Controls.Add(this.nextButton);
            flowLayoutPanel1.Controls.Add(this.backButton);
            flowLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Bottom;
            flowLayoutPanel1.FlowDirection = System.Windows.Forms.FlowDirection.RightToLeft;
            flowLayoutPanel1.Location = new System.Drawing.Point(125, 385);
            flowLayoutPanel1.Name = "flowLayoutPanel1";
            flowLayoutPanel1.Padding = new System.Windows.Forms.Padding(3, 3, 6, 3);
            flowLayoutPanel1.Size = new System.Drawing.Size(504, 41);
            flowLayoutPanel1.TabIndex = 3;
            // 
            // cancelButton
            // 
            this.cancelButton.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
            this.cancelButton.Location = new System.Drawing.Point(422, 6);
            this.cancelButton.Name = "cancelButton";
            this.cancelButton.Size = new System.Drawing.Size(70, 29);
            this.cancelButton.TabIndex = 3;
            this.cancelButton.Text = "&Cancel";
            this.cancelButton.UseVisualStyleBackColor = true;
            // 
            // okButton
            // 
            this.okButton.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            this.okButton.DialogResult = System.Windows.Forms.DialogResult.OK;
            this.okButton.Location = new System.Drawing.Point(346, 6);
            this.okButton.Name = "okButton";
            this.okButton.Size = new System.Drawing.Size(70, 29);
            this.okButton.TabIndex = 2;
            this.okButton.Text = "&Finish";
            this.okButton.UseVisualStyleBackColor = true;
            this.okButton.Visible = false;
            // 
            // nextButton
            // 
            this.nextButton.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            this.nextButton.Location = new System.Drawing.Point(270, 6);
            this.nextButton.Name = "nextButton";
            this.nextButton.Size = new System.Drawing.Size(70, 29);
            this.nextButton.TabIndex = 1;
            this.nextButton.Text = "&Next";
            this.nextButton.UseVisualStyleBackColor = true;
            this.nextButton.Click += new System.EventHandler(this.nextButton_Click);
            // 
            // backButton
            // 
            this.backButton.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            this.backButton.Location = new System.Drawing.Point(194, 6);
            this.backButton.Name = "backButton";
            this.backButton.Size = new System.Drawing.Size(70, 29);
            this.backButton.TabIndex = 0;
            this.backButton.Text = "&Back";
            this.backButton.UseVisualStyleBackColor = true;
            this.backButton.Visible = false;
            this.backButton.Click += new System.EventHandler(this.backButton_Click);
            // 
            // label1
            // 
            label1.AutoSize = true;
            label1.Font = new System.Drawing.Font("Segoe UI", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            label1.Location = new System.Drawing.Point(9, 6);
            label1.Margin = new System.Windows.Forms.Padding(3, 0, 3, 12);
            label1.Name = "label1";
            label1.Size = new System.Drawing.Size(330, 50);
            label1.TabIndex = 0;
            label1.Text = "Welcome to the Create New Project from Existing J Code Wizard";
            // 
            // label2
            // 
            label2.AutoSize = true;
            label2.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            label2.ForeColor = System.Drawing.SystemColors.GrayText;
            label2.Location = new System.Drawing.Point(21, 83);
            label2.Margin = new System.Windows.Forms.Padding(15, 0, 3, 6);
            label2.Name = "label2";
            label2.Size = new System.Drawing.Size(270, 15);
            label2.TabIndex = 2;
            label2.Text = "We won\'t move any files from where they are now.";
            // 
            // label4
            // 
            label4.AutoSize = true;
            label4.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            label4.ForeColor = System.Drawing.SystemColors.GrayText;
            label4.Location = new System.Drawing.Point(21, 237);
            label4.Margin = new System.Windows.Forms.Padding(15, 0, 3, 6);
            label4.Name = "label4";
            label4.Size = new System.Drawing.Size(327, 30);
            label4.TabIndex = 8;
            label4.Text = "One on each line, and we\'ll make them relative to the project files for you.";
            // 
            // label5
            // 
            label5.AutoSize = true;
            label5.Location = new System.Drawing.Point(9, 68);
            label5.Name = "label5";
            label5.Size = new System.Drawing.Size(317, 15);
            label5.TabIndex = 1;
            label5.Text = "Enter or browse to the folder containing your J code.";
            // 
            // label7
            // 
            label7.AutoSize = true;
            label7.Location = new System.Drawing.Point(9, 222);
            label7.Name = "label7";
            label7.Size = new System.Drawing.Size(245, 15);
            label7.TabIndex = 7;
            label7.Text = "Enter any search paths your project will need.";
            // 
            // label8
            // 
            label8.AutoSize = true;
            label8.Location = new System.Drawing.Point(9, 145);
            label8.Name = "label8";
            label8.Size = new System.Drawing.Size(182, 15);
            label8.TabIndex = 5;
            label8.Text = "Enter the filter for files to include.";
            // 
            // label3
            // 
            label3.AutoSize = true;
            label3.Font = new System.Drawing.Font("Segoe UI", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            label3.Location = new System.Drawing.Point(9, 6);
            label3.Margin = new System.Windows.Forms.Padding(3, 0, 3, 12);
            label3.Name = "label3";
            label3.Size = new System.Drawing.Size(330, 50);
            label3.TabIndex = 0;
            label3.Text = "Welcome to the Create New Project from Existing J Code Wizard";
            // 
            // label6
            // 
            label6.AutoSize = true;
            label6.Location = new System.Drawing.Point(9, 68);
            label6.Name = "label6";
            label6.Size = new System.Drawing.Size(256, 15);
            label6.TabIndex = 1;
            label6.Text = "Select the J interpreter and version to use";
            // 
            // label9
            // 
            label9.AutoSize = true;
            label9.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            label9.ForeColor = System.Drawing.SystemColors.GrayText;
            label9.Location = new System.Drawing.Point(21, 83);
            label9.Margin = new System.Windows.Forms.Padding(15, 0, 3, 6);
            label9.Name = "label9";
            label9.Size = new System.Drawing.Size(287, 15);
            label9.TabIndex = 2;
            label9.Text = "This setting can be changed later in Project Properties";
            // 
            // label10
            // 
            label10.AutoSize = true;
            label10.Location = new System.Drawing.Point(9, 145);
            label10.Name = "label10";
            label10.Size = new System.Drawing.Size(222, 15);
            label10.TabIndex = 4;
            label10.Text = "Choose the file to run when F5 is pressed";
            // 
            // label11
            // 
            label11.AutoSize = true;
            label11.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            label11.ForeColor = System.Drawing.SystemColors.GrayText;
            label11.Location = new System.Drawing.Point(21, 165);
            label11.Margin = new System.Windows.Forms.Padding(15, 0, 3, 6);
            label11.Name = "label11";
            label11.Size = new System.Drawing.Size(356, 30);
            label11.TabIndex = 5;
            label11.Text = "If it is not in this list, you can right-click any file in your project and choos" +
    "e \"Set as startup file\"";
            // 
            // label12
            // 
            label12.AutoSize = true;
            label12.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            label12.ForeColor = System.Drawing.SystemColors.GrayText;
            label12.Location = new System.Drawing.Point(21, 160);
            label12.Margin = new System.Windows.Forms.Padding(15, 0, 3, 6);
            label12.Name = "label12";
            label12.Size = new System.Drawing.Size(258, 15);
            label12.TabIndex = 8;
            label12.Text = "Files with the .py extension are always included.";
            // 
            // step1Panel
            // 
            this.step1Panel.ColumnCount = 2;
            this.step1Panel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
            this.step1Panel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
            this.step1Panel.Controls.Add(label1, 0, 0);
            this.step1Panel.Controls.Add(label2, 0, 2);
            this.step1Panel.Controls.Add(this.sourcePathTextBox, 0, 3);
            this.step1Panel.Controls.Add(this.browsePathButton, 1, 3);
            this.step1Panel.Controls.Add(label4, 0, 8);
            this.step1Panel.Controls.Add(label5, 0, 1);
            this.step1Panel.Controls.Add(label7, 0, 7);
            this.step1Panel.Controls.Add(this.browseSearchPathButton, 1, 9);
            this.step1Panel.Controls.Add(this.searchPathTextBox, 0, 9);
            this.step1Panel.Controls.Add(label8, 0, 4);
            this.step1Panel.Controls.Add(this.filterTextBox, 0, 6);
            this.step1Panel.Controls.Add(label12, 0, 5);
            this.step1Panel.Location = new System.Drawing.Point(125, 0);
            this.step1Panel.Name = "step1Panel";
            this.step1Panel.Padding = new System.Windows.Forms.Padding(6);
            this.step1Panel.RowCount = 10;
            this.step1Panel.RowStyles.Add(new System.Windows.Forms.RowStyle());
            this.step1Panel.RowStyles.Add(new System.Windows.Forms.RowStyle());
            this.step1Panel.RowStyles.Add(new System.Windows.Forms.RowStyle());
            this.step1Panel.RowStyles.Add(new System.Windows.Forms.RowStyle());
            this.step1Panel.RowStyles.Add(new System.Windows.Forms.RowStyle());
            this.step1Panel.RowStyles.Add(new System.Windows.Forms.RowStyle());
            this.step1Panel.RowStyles.Add(new System.Windows.Forms.RowStyle());
            this.step1Panel.RowStyles.Add(new System.Windows.Forms.RowStyle());
            this.step1Panel.RowStyles.Add(new System.Windows.Forms.RowStyle());
            this.step1Panel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
            this.step1Panel.Size = new System.Drawing.Size(403, 285);
            this.step1Panel.TabIndex = 1;
            // 
            // sourcePathTextBox
            // 
            this.sourcePathTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.sourcePathTextBox.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
            this.sourcePathTextBox.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.FileSystemDirectories;
            this.sourcePathTextBox.Location = new System.Drawing.Point(9, 107);
            this.sourcePathTextBox.Margin = new System.Windows.Forms.Padding(3, 3, 3, 15);
            this.sourcePathTextBox.Name = "sourcePathTextBox";
            this.sourcePathTextBox.Size = new System.Drawing.Size(353, 23);
            this.sourcePathTextBox.TabIndex = 3;
            // 
            // browsePathButton
            // 
            this.browsePathButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.browsePathButton.AutoSize = true;
            this.browsePathButton.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            this.browsePathButton.Location = new System.Drawing.Point(368, 107);
            this.browsePathButton.Name = "browsePathButton";
            this.browsePathButton.Size = new System.Drawing.Size(26, 25);
            this.browsePathButton.TabIndex = 4;
            this.browsePathButton.Text = "...";
            this.browsePathButton.UseVisualStyleBackColor = true;
            this.browsePathButton.Click += new System.EventHandler(this.browsePathButton_Click);
            // 
            // browseSearchPathButton
            // 
            this.browseSearchPathButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.browseSearchPathButton.AutoSize = true;
            this.browseSearchPathButton.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            this.browseSearchPathButton.Location = new System.Drawing.Point(368, 276);
            this.browseSearchPathButton.Name = "browseSearchPathButton";
            this.browseSearchPathButton.Size = new System.Drawing.Size(26, 14);
            this.browseSearchPathButton.TabIndex = 10;
            this.browseSearchPathButton.Text = "...";
            this.browseSearchPathButton.UseVisualStyleBackColor = true;
            this.browseSearchPathButton.Click += new System.EventHandler(this.browseSearchPathButton_Click);
            // 
            // searchPathTextBox
            // 
            this.searchPathTextBox.AcceptsReturn = true;
            this.searchPathTextBox.Dock = System.Windows.Forms.DockStyle.Fill;
            this.searchPathTextBox.Location = new System.Drawing.Point(9, 276);
            this.searchPathTextBox.Multiline = true;
            this.searchPathTextBox.Name = "searchPathTextBox";
            this.searchPathTextBox.Size = new System.Drawing.Size(353, 14);
            this.searchPathTextBox.TabIndex = 9;
            // 
            // filterTextBox
            // 
            this.filterTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.filterTextBox.Location = new System.Drawing.Point(9, 184);
            this.filterTextBox.Margin = new System.Windows.Forms.Padding(3, 3, 3, 15);
            this.filterTextBox.Name = "filterTextBox";
            this.filterTextBox.Size = new System.Drawing.Size(353, 23);
            this.filterTextBox.TabIndex = 6;
            this.filterTextBox.Text = "*.pyw;*.txt;*.htm;*.html;*.css;*.png;*.jpg;*.gif;*.bmp;*.ico;*.svg";
            // 
            // iconPanel
            // 
            this.iconPanel.BackColor = System.Drawing.SystemColors.Control;
            this.iconPanel.Controls.Add(this.jImage);
            this.iconPanel.Dock = System.Windows.Forms.DockStyle.Left;
            this.iconPanel.Location = new System.Drawing.Point(0, 0);
            this.iconPanel.Margin = new System.Windows.Forms.Padding(0);
            this.iconPanel.Name = "iconPanel";
            this.iconPanel.Size = new System.Drawing.Size(125, 426);
            this.iconPanel.TabIndex = 0;
            // 
            // jImage
            // 
            this.jImage.Dock = System.Windows.Forms.DockStyle.Top;
            this.jImage.Image = ((System.Drawing.Image)(resources.GetObject("jImage.Image")));
            this.jImage.Location = new System.Drawing.Point(0, 0);
            this.jImage.Name = "jImage";
            this.jImage.Size = new System.Drawing.Size(125, 127);
            this.jImage.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
            this.jImage.TabIndex = 0;
            this.jImage.TabStop = false;
            // 
            // step2Panel
            // 
            this.step2Panel.ColumnCount = 1;
            this.step2Panel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
            this.step2Panel.Controls.Add(label3, 0, 0);
            this.step2Panel.Controls.Add(label9, 0, 2);
            this.step2Panel.Controls.Add(label6, 0, 1);
            this.step2Panel.Controls.Add(label11, 0, 5);
            this.step2Panel.Controls.Add(label10, 0, 4);
            this.step2Panel.Controls.Add(this.interpreterCombo, 0, 3);
            this.step2Panel.Controls.Add(this.startupFileList, 0, 6);
            this.step2Panel.Location = new System.Drawing.Point(189, 53);
            this.step2Panel.Name = "step2Panel";
            this.step2Panel.Padding = new System.Windows.Forms.Padding(6);
            this.step2Panel.RowCount = 7;
            this.step2Panel.RowStyles.Add(new System.Windows.Forms.RowStyle());
            this.step2Panel.RowStyles.Add(new System.Windows.Forms.RowStyle());
            this.step2Panel.RowStyles.Add(new System.Windows.Forms.RowStyle());
            this.step2Panel.RowStyles.Add(new System.Windows.Forms.RowStyle());
            this.step2Panel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
            this.step2Panel.RowStyles.Add(new System.Windows.Forms.RowStyle());
            this.step2Panel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
            this.step2Panel.Size = new System.Drawing.Size(391, 303);
            this.step2Panel.TabIndex = 2;
            // 
            // interpreterCombo
            // 
            this.interpreterCombo.Dock = System.Windows.Forms.DockStyle.Fill;
            this.interpreterCombo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.interpreterCombo.FormattingEnabled = true;
            this.interpreterCombo.Location = new System.Drawing.Point(9, 107);
            this.interpreterCombo.Margin = new System.Windows.Forms.Padding(3, 3, 3, 15);
            this.interpreterCombo.Name = "interpreterCombo";
            this.interpreterCombo.Size = new System.Drawing.Size(373, 23);
            this.interpreterCombo.TabIndex = 3;
            // 
            // startupFileList
            // 
            this.startupFileList.Dock = System.Windows.Forms.DockStyle.Fill;
            this.startupFileList.FullRowSelect = true;
            this.startupFileList.HideSelection = false;
            this.startupFileList.Location = new System.Drawing.Point(9, 204);
            this.startupFileList.Name = "startupFileList";
            this.startupFileList.Size = new System.Drawing.Size(373, 90);
            this.startupFileList.SmallImageList = this.imageList1;
            this.startupFileList.Sorting = System.Windows.Forms.SortOrder.Ascending;
            this.startupFileList.TabIndex = 6;
            this.startupFileList.UseCompatibleStateImageBehavior = false;
            this.startupFileList.View = System.Windows.Forms.View.List;
            this.startupFileList.ItemSelectionChanged += new System.Windows.Forms.ListViewItemSelectionChangedEventHandler(this.startupFileList_ItemSelectionChanged);
            // 
            // imageList1
            // 
            this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
            this.imageList1.TransparentColor = System.Drawing.Color.Magenta;
            this.imageList1.Images.SetKeyName(0, "JFile");
            this.imageList1.Images.SetKeyName(1, "JStartupFile");
            // 
            // ImportWizardDialog
            // 
            this.AcceptButton = this.okButton;
            this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.BackColor = System.Drawing.SystemColors.Window;
            this.CancelButton = this.cancelButton;
            this.ClientSize = new System.Drawing.Size(629, 426);
            this.ControlBox = false;
            this.Controls.Add(this.step2Panel);
            this.Controls.Add(this.step1Panel);
            this.Controls.Add(flowLayoutPanel1);
            this.Controls.Add(this.iconPanel);
            this.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Name = "ImportWizardDialog";
            this.ShowInTaskbar = false;
            this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Show;
            this.Text = "Create New Project from Existing J Code";
            flowLayoutPanel1.ResumeLayout(false);
            this.step1Panel.ResumeLayout(false);
            this.step1Panel.PerformLayout();
            this.iconPanel.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.jImage)).EndInit();
            this.step2Panel.ResumeLayout(false);
            this.step2Panel.PerformLayout();
            this.ResumeLayout(false);
            this.PerformLayout();

        }
Example #13
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.FlowLayoutPanel _lytMessage;
			System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(RateForm));
			System.Windows.Forms.FlowLayoutPanel _lytButtons;
			System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
			this._pbxRateImage = new System.Windows.Forms.PictureBox();
			this._lblInfo = new System.Windows.Forms.Label();
			this._btnYes = new System.Windows.Forms.Button();
			this._btnCancel = new System.Windows.Forms.Button();
			_lytMessage = new System.Windows.Forms.FlowLayoutPanel();
			_lytButtons = new System.Windows.Forms.FlowLayoutPanel();
			tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
			_lytMessage.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this._pbxRateImage)).BeginInit();
			_lytButtons.SuspendLayout();
			tableLayoutPanel1.SuspendLayout();
			this.SuspendLayout();
			// 
			// _lytMessage
			// 
			resources.ApplyResources(_lytMessage, "_lytMessage");
			_lytMessage.Controls.Add(this._pbxRateImage);
			_lytMessage.Controls.Add(this._lblInfo);
			_lytMessage.Name = "_lytMessage";
			// 
			// _pbxRateImage
			// 
			resources.ApplyResources(this._pbxRateImage, "_pbxRateImage");
			this._pbxRateImage.Name = "_pbxRateImage";
			this._pbxRateImage.TabStop = false;
			// 
			// _lblInfo
			// 
			resources.ApplyResources(this._lblInfo, "_lblInfo");
			_lytMessage.SetFlowBreak(this._lblInfo, true);
			this._lblInfo.Name = "_lblInfo";
			// 
			// _lytButtons
			// 
			resources.ApplyResources(_lytButtons, "_lytButtons");
			_lytButtons.Controls.Add(this._btnYes);
			_lytButtons.Controls.Add(this._btnCancel);
			_lytButtons.Name = "_lytButtons";
			// 
			// _btnYes
			// 
			resources.ApplyResources(this._btnYes, "_btnYes");
			this._btnYes.DialogResult = System.Windows.Forms.DialogResult.Yes;
			this._btnYes.Name = "_btnYes";
			// 
			// _btnCancel
			// 
			resources.ApplyResources(this._btnCancel, "_btnCancel");
			this._btnCancel.DialogResult = System.Windows.Forms.DialogResult.No;
			this._btnCancel.Name = "_btnCancel";
			// 
			// tableLayoutPanel1
			// 
			resources.ApplyResources(tableLayoutPanel1, "tableLayoutPanel1");
			tableLayoutPanel1.Controls.Add(_lytMessage, 0, 0);
			tableLayoutPanel1.Controls.Add(_lytButtons, 0, 1);
			tableLayoutPanel1.Name = "tableLayoutPanel1";
			// 
			// RateForm
			// 
			this.AcceptButton = this._btnYes;
			resources.ApplyResources(this, "$this");
			this.BackColor = System.Drawing.SystemColors.ControlLight;
			this.CancelButton = this._btnCancel;
			this.ControlBox = false;
			this.Controls.Add(tableLayoutPanel1);
			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
			this.MaximizeBox = false;
			this.MinimizeBox = false;
			this.Name = "RateForm";
			this.ShowInTaskbar = false;
			_lytMessage.ResumeLayout(false);
			_lytMessage.PerformLayout();
			((System.ComponentModel.ISupportInitialize)(this._pbxRateImage)).EndInit();
			_lytButtons.ResumeLayout(false);
			_lytButtons.PerformLayout();
			tableLayoutPanel1.ResumeLayout(false);
			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() {
			this.components = new System.ComponentModel.Container();
			System.Windows.Forms.Panel _pnlContent;
			System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ExternalsConfigurationComponentControl));
			System.Windows.Forms.FlowLayoutPanel _pnlButtons;
			this._listExternals = new System.Windows.Forms.ListView();
			this.colLabel = new System.Windows.Forms.ColumnHeader();
			this.colDescription = new System.Windows.Forms.ColumnHeader();
			this._btnAdd = new System.Windows.Forms.Button();
			this._btnRemove = new System.Windows.Forms.Button();
			this._btnEdit = new System.Windows.Forms.Button();
			this._mnuExternalTypes = new System.Windows.Forms.ContextMenuStrip(this.components);
			_pnlContent = new System.Windows.Forms.Panel();
			_pnlButtons = new System.Windows.Forms.FlowLayoutPanel();
			_pnlContent.SuspendLayout();
			_pnlButtons.SuspendLayout();
			this.SuspendLayout();
			// 
			// _pnlContent
			// 
			_pnlContent.Controls.Add(this._listExternals);
			_pnlContent.Controls.Add(_pnlButtons);
			resources.ApplyResources(_pnlContent, "_pnlContent");
			_pnlContent.Name = "_pnlContent";
			// 
			// _listExternals
			// 
			this._listExternals.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            this.colLabel,
            this.colDescription});
			resources.ApplyResources(this._listExternals, "_listExternals");
			this._listExternals.FullRowSelect = true;
			this._listExternals.GridLines = true;
			this._listExternals.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
			this._listExternals.HideSelection = false;
			this._listExternals.LabelEdit = true;
			this._listExternals.MultiSelect = false;
			this._listExternals.Name = "_listExternals";
			this._listExternals.UseCompatibleStateImageBehavior = false;
			this._listExternals.View = System.Windows.Forms.View.Details;
			this._listExternals.AfterLabelEdit += new System.Windows.Forms.LabelEditEventHandler(this._listExternals_AfterLabelEdit);
			this._listExternals.SelectedIndexChanged += new System.EventHandler(this._listExternals_SelectedIndexChanged);
			this._listExternals.DoubleClick += new System.EventHandler(this._listExternals_DoubleClick);
			// 
			// colLabel
			// 
			resources.ApplyResources(this.colLabel, "colLabel");
			// 
			// colDescription
			// 
			resources.ApplyResources(this.colDescription, "colDescription");
			// 
			// _pnlButtons
			// 
			_pnlButtons.Controls.Add(this._btnAdd);
			_pnlButtons.Controls.Add(this._btnRemove);
			_pnlButtons.Controls.Add(this._btnEdit);
			resources.ApplyResources(_pnlButtons, "_pnlButtons");
			_pnlButtons.Name = "_pnlButtons";
			// 
			// _btnAdd
			// 
			resources.ApplyResources(this._btnAdd, "_btnAdd");
			this._btnAdd.Name = "_btnAdd";
			this._btnAdd.UseVisualStyleBackColor = true;
			this._btnAdd.Click += new System.EventHandler(this._btnAdd_Click);
			// 
			// _btnRemove
			// 
			resources.ApplyResources(this._btnRemove, "_btnRemove");
			this._btnRemove.Name = "_btnRemove";
			this._btnRemove.UseVisualStyleBackColor = true;
			this._btnRemove.Click += new System.EventHandler(this._btnRemove_Click);
			// 
			// _btnEdit
			// 
			resources.ApplyResources(this._btnEdit, "_btnEdit");
			this._btnEdit.Name = "_btnEdit";
			this._btnEdit.UseVisualStyleBackColor = true;
			this._btnEdit.Click += new System.EventHandler(this._btnEdit_Click);
			// 
			// _mnuExternalTypes
			// 
			this._mnuExternalTypes.Name = "_mnuExternalTypes";
			resources.ApplyResources(this._mnuExternalTypes, "_mnuExternalTypes");
			// 
			// ExternalsConfigurationComponentControl
			// 
			resources.ApplyResources(this, "$this");
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.Controls.Add(_pnlContent);
			this.Name = "ExternalsConfigurationComponentControl";
			_pnlContent.ResumeLayout(false);
			_pnlButtons.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() {
			this.components = new System.ComponentModel.Container();
			System.Windows.Forms.FlowLayoutPanel _flowSynchroTools;
			System.Windows.Forms.Label _lblToleranceAngle;
			System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SynchronizationToolConfigurationComponentControl));
			System.Windows.Forms.Label _lblToleranceUnits;
			this._pnlToleranceAngleControl = new System.Windows.Forms.Panel();
			this._txtToleranceAngle = new System.Windows.Forms.TextBox();
			this._errorProvider = new System.Windows.Forms.ErrorProvider(this.components);
			_flowSynchroTools = new System.Windows.Forms.FlowLayoutPanel();
			_lblToleranceAngle = new System.Windows.Forms.Label();
			_lblToleranceUnits = new System.Windows.Forms.Label();
			_flowSynchroTools.SuspendLayout();
			this._pnlToleranceAngleControl.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this._errorProvider)).BeginInit();
			this.SuspendLayout();
			// 
			// _flowSynchroTools
			// 
			_flowSynchroTools.Controls.Add(_lblToleranceAngle);
			_flowSynchroTools.Controls.Add(this._pnlToleranceAngleControl);
			resources.ApplyResources(_flowSynchroTools, "_flowSynchroTools");
			_flowSynchroTools.Name = "_flowSynchroTools";
			// 
			// _lblToleranceAngle
			// 
			resources.ApplyResources(_lblToleranceAngle, "_lblToleranceAngle");
			_lblToleranceAngle.Name = "_lblToleranceAngle";
			// 
			// _pnlToleranceAngleControl
			// 
			this._pnlToleranceAngleControl.Controls.Add(this._txtToleranceAngle);
			this._pnlToleranceAngleControl.Controls.Add(_lblToleranceUnits);
			resources.ApplyResources(this._pnlToleranceAngleControl, "_pnlToleranceAngleControl");
			this._pnlToleranceAngleControl.Name = "_pnlToleranceAngleControl";
			// 
			// _txtToleranceAngle
			// 
			resources.ApplyResources(this._txtToleranceAngle, "_txtToleranceAngle");
			this._txtToleranceAngle.Name = "_txtToleranceAngle";
			// 
			// _lblToleranceUnits
			// 
			resources.ApplyResources(_lblToleranceUnits, "_lblToleranceUnits");
			_lblToleranceUnits.Name = "_lblToleranceUnits";
			// 
			// _errorProvider
			// 
			this._errorProvider.ContainerControl = this;
			// 
			// SynchronizationToolConfigurationComponentControl
			// 
			resources.ApplyResources(this, "$this");
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.Controls.Add(_flowSynchroTools);
			this.Name = "SynchronizationToolConfigurationComponentControl";
			_flowSynchroTools.ResumeLayout(false);
			_flowSynchroTools.PerformLayout();
			this._pnlToleranceAngleControl.ResumeLayout(false);
			this._pnlToleranceAngleControl.PerformLayout();
			((System.ComponentModel.ISupportInitialize)(this._errorProvider)).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.TableLayoutPanel tableMain;
            System.Windows.Forms.FlowLayoutPanel flowButtons;
            System.Windows.Forms.Label formatLabel;
            System.Windows.Forms.Label exampleLabel;
            System.Windows.Forms.Panel panel;
            System.Windows.Forms.GroupBox groupNumbers;
            System.Windows.Forms.GroupBox otherGroup;
            System.Windows.Forms.GroupBox namesGroup;
            System.Windows.Forms.GroupBox dateGroup;
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormatBuilder));
            this.okButton = new System.Windows.Forms.Button();
            this.cancelButton = new System.Windows.Forms.Button();
            this.textExample = new System.Windows.Forms.TextBox();
            this.textFormat = new System.Windows.Forms.TextBox();
            this.digitalSelector = new System.Windows.Forms.NumericUpDown();
            this.episodeNumberButton = new System.Windows.Forms.Button();
            this.seasonNumberButton = new System.Windows.Forms.Button();
            this.directoryButton = new System.Windows.Forms.Button();
            this.fileExtensionButton = new System.Windows.Forms.Button();
            this.folderNameButton = new System.Windows.Forms.Button();
            this.wordSeparator = new System.Windows.Forms.ComboBox();
            this.episodeNameButton = new System.Windows.Forms.Button();
            this.showNameButton = new System.Windows.Forms.Button();
            this.dateFormat = new System.Windows.Forms.TextBox();
            this.dateExample = new System.Windows.Forms.TextBox();
            this.dateButton = new System.Windows.Forms.Button();
            tableMain = new System.Windows.Forms.TableLayoutPanel();
            flowButtons = new System.Windows.Forms.FlowLayoutPanel();
            formatLabel = new System.Windows.Forms.Label();
            exampleLabel = new System.Windows.Forms.Label();
            panel = new System.Windows.Forms.Panel();
            groupNumbers = new System.Windows.Forms.GroupBox();
            otherGroup = new System.Windows.Forms.GroupBox();
            namesGroup = new System.Windows.Forms.GroupBox();
            dateGroup = new System.Windows.Forms.GroupBox();
            tableMain.SuspendLayout();
            flowButtons.SuspendLayout();
            panel.SuspendLayout();
            groupNumbers.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.digitalSelector)).BeginInit();
            otherGroup.SuspendLayout();
            namesGroup.SuspendLayout();
            dateGroup.SuspendLayout();
            this.SuspendLayout();
            // 
            // tableMain
            // 
            tableMain.ColumnCount = 2;
            tableMain.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 104F));
            tableMain.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 25.00062F));
            tableMain.Controls.Add(flowButtons, 0, 3);
            tableMain.Controls.Add(this.textExample, 1, 2);
            tableMain.Controls.Add(this.textFormat, 1, 1);
            tableMain.Controls.Add(formatLabel, 0, 1);
            tableMain.Controls.Add(exampleLabel, 0, 2);
            tableMain.Controls.Add(panel, 0, 0);
            tableMain.Dock = System.Windows.Forms.DockStyle.Fill;
            tableMain.Location = new System.Drawing.Point(0, 0);
            tableMain.Name = "tableMain";
            tableMain.RowCount = 4;
            tableMain.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
            tableMain.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
            tableMain.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
            tableMain.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F));
            tableMain.Size = new System.Drawing.Size(371, 221);
            tableMain.TabIndex = 0;
            // 
            // flowButtons
            // 
            tableMain.SetColumnSpan(flowButtons, 2);
            flowButtons.Controls.Add(this.okButton);
            flowButtons.Controls.Add(this.cancelButton);
            flowButtons.Dock = System.Windows.Forms.DockStyle.Fill;
            flowButtons.FlowDirection = System.Windows.Forms.FlowDirection.RightToLeft;
            flowButtons.Location = new System.Drawing.Point(0, 191);
            flowButtons.Margin = new System.Windows.Forms.Padding(0);
            flowButtons.Name = "flowButtons";
            flowButtons.Size = new System.Drawing.Size(371, 30);
            flowButtons.TabIndex = 0;
            // 
            // okButton
            // 
            this.okButton.Location = new System.Drawing.Point(293, 3);
            this.okButton.Name = "okButton";
            this.okButton.Size = new System.Drawing.Size(75, 23);
            this.okButton.TabIndex = 0;
            this.okButton.Text = "OK";
            this.okButton.UseVisualStyleBackColor = true;
            this.okButton.Click += new System.EventHandler(this.OkButtonClick);
            // 
            // cancelButton
            // 
            this.cancelButton.Location = new System.Drawing.Point(212, 3);
            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;
            this.cancelButton.Click += new System.EventHandler(this.CancelButtonClick);
            // 
            // textExample
            // 
            this.textExample.Dock = System.Windows.Forms.DockStyle.Fill;
            this.textExample.Location = new System.Drawing.Point(107, 169);
            this.textExample.Name = "textExample";
            this.textExample.ReadOnly = true;
            this.textExample.Size = new System.Drawing.Size(261, 20);
            this.textExample.TabIndex = 1;
            // 
            // textFormat
            // 
            this.textFormat.Dock = System.Windows.Forms.DockStyle.Fill;
            this.textFormat.Location = new System.Drawing.Point(107, 144);
            this.textFormat.Name = "textFormat";
            this.textFormat.Size = new System.Drawing.Size(261, 20);
            this.textFormat.TabIndex = 2;
            this.textFormat.TextChanged += new System.EventHandler(this.TextFormatTextChanged);
            // 
            // formatLabel
            // 
            formatLabel.Anchor = System.Windows.Forms.AnchorStyles.Right;
            formatLabel.AutoSize = true;
            formatLabel.Location = new System.Drawing.Point(29, 147);
            formatLabel.Name = "formatLabel";
            formatLabel.Size = new System.Drawing.Size(72, 13);
            formatLabel.TabIndex = 3;
            formatLabel.Text = "Format String:";
            // 
            // exampleLabel
            // 
            exampleLabel.Anchor = System.Windows.Forms.AnchorStyles.Right;
            exampleLabel.AutoSize = true;
            exampleLabel.Location = new System.Drawing.Point(16, 172);
            exampleLabel.Name = "exampleLabel";
            exampleLabel.Size = new System.Drawing.Size(85, 13);
            exampleLabel.TabIndex = 4;
            exampleLabel.Text = "Example Output:";
            // 
            // panel
            // 
            tableMain.SetColumnSpan(panel, 2);
            panel.Controls.Add(groupNumbers);
            panel.Controls.Add(otherGroup);
            panel.Controls.Add(namesGroup);
            panel.Controls.Add(dateGroup);
            panel.Dock = System.Windows.Forms.DockStyle.Fill;
            panel.Location = new System.Drawing.Point(3, 3);
            panel.Name = "panel";
            panel.Size = new System.Drawing.Size(365, 135);
            panel.TabIndex = 10;
            // 
            // groupNumbers
            // 
            groupNumbers.AutoSize = true;
            groupNumbers.Controls.Add(this.digitalSelector);
            groupNumbers.Controls.Add(this.episodeNumberButton);
            groupNumbers.Controls.Add(this.seasonNumberButton);
            groupNumbers.Location = new System.Drawing.Point(3, 9);
            groupNumbers.Name = "groupNumbers";
            groupNumbers.Size = new System.Drawing.Size(82, 119);
            groupNumbers.TabIndex = 6;
            groupNumbers.TabStop = false;
            groupNumbers.Text = "Numbers";
            // 
            // digitalSelector
            // 
            this.digitalSelector.Location = new System.Drawing.Point(6, 77);
            this.digitalSelector.Maximum = new decimal(new int[] {
            10,
            0,
            0,
            0});
            this.digitalSelector.Minimum = new decimal(new int[] {
            1,
            0,
            0,
            0});
            this.digitalSelector.Name = "digitalSelector";
            this.digitalSelector.Size = new System.Drawing.Size(65, 20);
            this.digitalSelector.TabIndex = 2;
            this.digitalSelector.Value = new decimal(new int[] {
            1,
            0,
            0,
            0});
            // 
            // episodeNumberButton
            // 
            this.episodeNumberButton.Location = new System.Drawing.Point(6, 48);
            this.episodeNumberButton.Name = "episodeNumberButton";
            this.episodeNumberButton.Size = new System.Drawing.Size(65, 23);
            this.episodeNumberButton.TabIndex = 1;
            this.episodeNumberButton.Text = "Episode";
            this.episodeNumberButton.UseVisualStyleBackColor = true;
            this.episodeNumberButton.Click += new System.EventHandler(this.EpisodeNumberButtonClick);
            // 
            // seasonNumberButton
            // 
            this.seasonNumberButton.Location = new System.Drawing.Point(6, 19);
            this.seasonNumberButton.Name = "seasonNumberButton";
            this.seasonNumberButton.Size = new System.Drawing.Size(65, 23);
            this.seasonNumberButton.TabIndex = 0;
            this.seasonNumberButton.Text = "Season";
            this.seasonNumberButton.UseVisualStyleBackColor = true;
            this.seasonNumberButton.Click += new System.EventHandler(this.SeasonNumberButtonClick);
            // 
            // otherGroup
            // 
            otherGroup.AutoSize = true;
            otherGroup.Controls.Add(this.directoryButton);
            otherGroup.Controls.Add(this.fileExtensionButton);
            otherGroup.Controls.Add(this.folderNameButton);
            otherGroup.Location = new System.Drawing.Point(257, 9);
            otherGroup.Name = "otherGroup";
            otherGroup.Size = new System.Drawing.Size(96, 119);
            otherGroup.TabIndex = 9;
            otherGroup.TabStop = false;
            otherGroup.Text = "Other";
            // 
            // directoryButton
            // 
            this.directoryButton.Location = new System.Drawing.Point(6, 77);
            this.directoryButton.Name = "directoryButton";
            this.directoryButton.Size = new System.Drawing.Size(84, 23);
            this.directoryButton.TabIndex = 12;
            this.directoryButton.Text = "Directory";
            this.directoryButton.UseVisualStyleBackColor = true;
            this.directoryButton.Click += new System.EventHandler(this.DirectoryButtonClick);
            // 
            // fileExtensionButton
            // 
            this.fileExtensionButton.Location = new System.Drawing.Point(6, 48);
            this.fileExtensionButton.Name = "fileExtensionButton";
            this.fileExtensionButton.Size = new System.Drawing.Size(84, 23);
            this.fileExtensionButton.TabIndex = 11;
            this.fileExtensionButton.Text = "File Extension";
            this.fileExtensionButton.UseVisualStyleBackColor = true;
            this.fileExtensionButton.Click += new System.EventHandler(this.FileExtensionButtonClick);
            // 
            // folderNameButton
            // 
            this.folderNameButton.Location = new System.Drawing.Point(6, 19);
            this.folderNameButton.Name = "folderNameButton";
            this.folderNameButton.Size = new System.Drawing.Size(84, 23);
            this.folderNameButton.TabIndex = 10;
            this.folderNameButton.Text = "Folder Name";
            this.folderNameButton.UseVisualStyleBackColor = true;
            this.folderNameButton.Click += new System.EventHandler(this.FolderNameButtonClick);
            // 
            // namesGroup
            // 
            namesGroup.AutoSize = true;
            namesGroup.Controls.Add(this.wordSeparator);
            namesGroup.Controls.Add(this.episodeNameButton);
            namesGroup.Controls.Add(this.showNameButton);
            namesGroup.Location = new System.Drawing.Point(91, 9);
            namesGroup.Name = "namesGroup";
            namesGroup.Size = new System.Drawing.Size(77, 119);
            namesGroup.TabIndex = 7;
            namesGroup.TabStop = false;
            namesGroup.Text = "Names";
            // 
            // wordSeparator
            // 
            this.wordSeparator.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.wordSeparator.FormattingEnabled = true;
            this.wordSeparator.Items.AddRange(new object[] {
            "[space]",
            ".",
            "-",
            "_"});
            this.wordSeparator.Location = new System.Drawing.Point(6, 76);
            this.wordSeparator.Name = "wordSeparator";
            this.wordSeparator.Size = new System.Drawing.Size(65, 21);
            this.wordSeparator.TabIndex = 2;
            // 
            // episodeNameButton
            // 
            this.episodeNameButton.Location = new System.Drawing.Point(6, 48);
            this.episodeNameButton.Name = "episodeNameButton";
            this.episodeNameButton.Size = new System.Drawing.Size(65, 23);
            this.episodeNameButton.TabIndex = 1;
            this.episodeNameButton.Text = "Episode";
            this.episodeNameButton.UseVisualStyleBackColor = true;
            this.episodeNameButton.Click += new System.EventHandler(this.EpisodeNameButtonClick);
            // 
            // showNameButton
            // 
            this.showNameButton.Location = new System.Drawing.Point(6, 19);
            this.showNameButton.Name = "showNameButton";
            this.showNameButton.Size = new System.Drawing.Size(65, 23);
            this.showNameButton.TabIndex = 0;
            this.showNameButton.Text = "Show";
            this.showNameButton.UseVisualStyleBackColor = true;
            this.showNameButton.Click += new System.EventHandler(this.ShowNameButtonClick);
            // 
            // dateGroup
            // 
            dateGroup.AutoSize = true;
            dateGroup.Controls.Add(this.dateFormat);
            dateGroup.Controls.Add(this.dateExample);
            dateGroup.Controls.Add(this.dateButton);
            dateGroup.Location = new System.Drawing.Point(174, 9);
            dateGroup.Name = "dateGroup";
            dateGroup.Size = new System.Drawing.Size(77, 119);
            dateGroup.TabIndex = 8;
            dateGroup.TabStop = false;
            dateGroup.Text = "Date";
            // 
            // dateFormat
            // 
            this.dateFormat.Location = new System.Drawing.Point(6, 51);
            this.dateFormat.Name = "dateFormat";
            this.dateFormat.Size = new System.Drawing.Size(65, 20);
            this.dateFormat.TabIndex = 1;
            this.dateFormat.TextChanged += new System.EventHandler(this.DateFormatTextChanged);
            // 
            // dateExample
            // 
            this.dateExample.Location = new System.Drawing.Point(6, 77);
            this.dateExample.Name = "dateExample";
            this.dateExample.ReadOnly = true;
            this.dateExample.Size = new System.Drawing.Size(65, 20);
            this.dateExample.TabIndex = 2;
            // 
            // dateButton
            // 
            this.dateButton.Location = new System.Drawing.Point(6, 19);
            this.dateButton.Name = "dateButton";
            this.dateButton.Size = new System.Drawing.Size(65, 23);
            this.dateButton.TabIndex = 0;
            this.dateButton.Text = "Date";
            this.dateButton.UseVisualStyleBackColor = true;
            this.dateButton.Click += new System.EventHandler(this.DateButtonClick);
            // 
            // FormatBuilder
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(371, 221);
            this.Controls.Add(tableMain);
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.MinimumSize = new System.Drawing.Size(387, 259);
            this.Name = "FormatBuilder";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
            this.Text = "Format Builder";
            this.Load += new System.EventHandler(this.FormatBuilderLoad);
            tableMain.ResumeLayout(false);
            tableMain.PerformLayout();
            flowButtons.ResumeLayout(false);
            panel.ResumeLayout(false);
            panel.PerformLayout();
            groupNumbers.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.digitalSelector)).EndInit();
            otherGroup.ResumeLayout(false);
            namesGroup.ResumeLayout(false);
            dateGroup.ResumeLayout(false);
            dateGroup.PerformLayout();
            this.ResumeLayout(false);

        }
Example #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.FlowLayoutPanel flpnlControls;
     this.btnOk             = new System.Windows.Forms.Button();
     this.btnCancel         = new System.Windows.Forms.Button();
     this.lblCategoryName   = new System.Windows.Forms.Label();
     this.txtCategoryName   = new System.Windows.Forms.TextBox();
     this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
     flpnlControls          = new System.Windows.Forms.FlowLayoutPanel();
     flpnlControls.SuspendLayout();
     this.tableLayoutPanel1.SuspendLayout();
     this.SuspendLayout();
     //
     // flpnlControls
     //
     flpnlControls.Controls.Add(this.btnOk);
     flpnlControls.Controls.Add(this.btnCancel);
     flpnlControls.Dock          = System.Windows.Forms.DockStyle.Bottom;
     flpnlControls.FlowDirection = System.Windows.Forms.FlowDirection.RightToLeft;
     flpnlControls.Location      = new System.Drawing.Point(0, 26);
     flpnlControls.Name          = "flpnlControls";
     flpnlControls.Size          = new System.Drawing.Size(384, 34);
     flpnlControls.TabIndex      = 4;
     flpnlControls.WrapContents  = false;
     //
     // btnOk
     //
     this.btnOk.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
     this.btnOk.AutoSize     = true;
     this.btnOk.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.btnOk.Location     = new System.Drawing.Point(257, 3);
     this.btnOk.Name         = "btnOk";
     this.btnOk.Size         = new System.Drawing.Size(124, 25);
     this.btnOk.TabIndex     = 0;
     this.btnOk.Text         = "OK";
     this.btnOk.UseCompatibleTextRendering = true;
     this.btnOk.UseVisualStyleBackColor    = true;
     this.btnOk.Click += new System.EventHandler(this.OkButton_Click);
     //
     // btnCancel
     //
     this.btnCancel.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
     this.btnCancel.AutoSize     = true;
     this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnCancel.Location     = new System.Drawing.Point(176, 3);
     this.btnCancel.Name         = "btnCancel";
     this.btnCancel.Size         = new System.Drawing.Size(75, 25);
     this.btnCancel.TabIndex     = 1;
     this.btnCancel.Text         = "Cancel";
     this.btnCancel.UseCompatibleTextRendering = true;
     this.btnCancel.UseVisualStyleBackColor    = true;
     this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
     //
     // lblCategoryName
     //
     this.lblCategoryName.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
     this.lblCategoryName.AutoSize  = true;
     this.lblCategoryName.Location  = new System.Drawing.Point(3, 4);
     this.lblCategoryName.Name      = "lblCategoryName";
     this.lblCategoryName.Size      = new System.Drawing.Size(80, 18);
     this.lblCategoryName.TabIndex  = 0;
     this.lblCategoryName.Text      = "Category name";
     this.lblCategoryName.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.lblCategoryName.UseCompatibleTextRendering = true;
     //
     // txtCategoryName
     //
     this.txtCategoryName.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
     this.txtCategoryName.Location = new System.Drawing.Point(89, 3);
     this.txtCategoryName.Name     = "txtCategoryName";
     this.txtCategoryName.Size     = new System.Drawing.Size(292, 21);
     this.txtCategoryName.TabIndex = 1;
     //
     // tableLayoutPanel1
     //
     this.tableLayoutPanel1.AutoSize    = true;
     this.tableLayoutPanel1.ColumnCount = 3;
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
     this.tableLayoutPanel1.Controls.Add(this.lblCategoryName, 0, 0);
     this.tableLayoutPanel1.Controls.Add(this.txtCategoryName, 1, 0);
     this.tableLayoutPanel1.Dock     = System.Windows.Forms.DockStyle.Top;
     this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
     this.tableLayoutPanel1.Name     = "tableLayoutPanel1";
     this.tableLayoutPanel1.RowCount = 1;
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel1.Size     = new System.Drawing.Size(384, 27);
     this.tableLayoutPanel1.TabIndex = 3;
     //
     // FormDashboardCategoryTitle
     //
     this.AcceptButton        = this.btnOk;
     this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Dpi;
     this.AutoSizeMode        = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.CancelButton        = this.btnCancel;
     this.ClientSize          = new System.Drawing.Size(384, 60);
     this.Controls.Add(flpnlControls);
     this.Controls.Add(this.tableLayoutPanel1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.MinimumSize     = new System.Drawing.Size(400, 80);
     this.Name            = "FormDashboardCategoryTitle";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text            = "Enter Caption";
     flpnlControls.ResumeLayout(false);
     flpnlControls.PerformLayout();
     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()
        {
            this.components = new System.ComponentModel.Container();
            System.Windows.Forms.Panel FormatNamePanel;
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(OutputFormatForm));
            System.Windows.Forms.Panel ButtonPanel;
            System.Windows.Forms.FlowLayoutPanel OkCancelButtonPanel;
            System.Windows.Forms.TableLayoutPanel FormatLayout;
            System.Windows.Forms.GroupBox HeaderGroup;
            System.Windows.Forms.GroupBox EachItemGroup;
            System.Windows.Forms.GroupBox EachItemOddGroup;
            System.Windows.Forms.GroupBox FooterGroup;
            this.ComboFormatName = new System.Windows.Forms.ComboBox();
            this.BtnRemove = new System.Windows.Forms.Button();
            this.BtnSave = new System.Windows.Forms.Button();
            this.BtnOK = new System.Windows.Forms.Button();
            this.BtnCancel = new System.Windows.Forms.Button();
            this.TextHeader = new System.Windows.Forms.TextBox();
            this.TextEachItem = new System.Windows.Forms.TextBox();
            this.TextEachItemAlternate = new System.Windows.Forms.TextBox();
            this.TextFooter = new System.Windows.Forms.TextBox();
            this.panel1 = new System.Windows.Forms.Panel();
            this.ContantSplitPane = new System.Windows.Forms.SplitContainer();
            this.VariableItemList = new System.Windows.Forms.ListBox();
            this.BtnInsertVariable = new System.Windows.Forms.Button();
            this.outputFormatBindingSource = new System.Windows.Forms.BindingSource(this.components);
            FormatNamePanel = new System.Windows.Forms.Panel();
            ButtonPanel = new System.Windows.Forms.Panel();
            OkCancelButtonPanel = new System.Windows.Forms.FlowLayoutPanel();
            FormatLayout = new System.Windows.Forms.TableLayoutPanel();
            HeaderGroup = new System.Windows.Forms.GroupBox();
            EachItemGroup = new System.Windows.Forms.GroupBox();
            EachItemOddGroup = new System.Windows.Forms.GroupBox();
            FooterGroup = new System.Windows.Forms.GroupBox();
            FormatNamePanel.SuspendLayout();
            ButtonPanel.SuspendLayout();
            OkCancelButtonPanel.SuspendLayout();
            FormatLayout.SuspendLayout();
            HeaderGroup.SuspendLayout();
            EachItemGroup.SuspendLayout();
            EachItemOddGroup.SuspendLayout();
            FooterGroup.SuspendLayout();
            this.panel1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.ContantSplitPane)).BeginInit();
            this.ContantSplitPane.Panel1.SuspendLayout();
            this.ContantSplitPane.Panel2.SuspendLayout();
            this.ContantSplitPane.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.outputFormatBindingSource)).BeginInit();
            this.SuspendLayout();
            // 
            // FormatNamePanel
            // 
            FormatNamePanel.Controls.Add(this.ComboFormatName);
            FormatNamePanel.Controls.Add(ButtonPanel);
            resources.ApplyResources(FormatNamePanel, "FormatNamePanel");
            FormatNamePanel.Name = "FormatNamePanel";
            // 
            // ComboFormatName
            // 
            resources.ApplyResources(this.ComboFormatName, "ComboFormatName");
            this.ComboFormatName.FormattingEnabled = true;
            this.ComboFormatName.Name = "ComboFormatName";
            this.ComboFormatName.SelectedIndexChanged += new System.EventHandler(this.ComboFormatName_SelectedIndexChanged);
            // 
            // ButtonPanel
            // 
            resources.ApplyResources(ButtonPanel, "ButtonPanel");
            ButtonPanel.Controls.Add(this.BtnRemove);
            ButtonPanel.Controls.Add(this.BtnSave);
            ButtonPanel.Name = "ButtonPanel";
            // 
            // BtnRemove
            // 
            resources.ApplyResources(this.BtnRemove, "BtnRemove");
            this.BtnRemove.Name = "BtnRemove";
            this.BtnRemove.UseVisualStyleBackColor = true;
            this.BtnRemove.Click += new System.EventHandler(this.BtnRemove_Click);
            // 
            // BtnSave
            // 
            this.BtnSave.Cursor = System.Windows.Forms.Cursors.Arrow;
            resources.ApplyResources(this.BtnSave, "BtnSave");
            this.BtnSave.Name = "BtnSave";
            this.BtnSave.UseVisualStyleBackColor = true;
            this.BtnSave.Click += new System.EventHandler(this.BtnSave_Click);
            // 
            // OkCancelButtonPanel
            // 
            OkCancelButtonPanel.Controls.Add(this.BtnOK);
            OkCancelButtonPanel.Controls.Add(this.BtnCancel);
            resources.ApplyResources(OkCancelButtonPanel, "OkCancelButtonPanel");
            OkCancelButtonPanel.Name = "OkCancelButtonPanel";
            // 
            // BtnOK
            // 
            resources.ApplyResources(this.BtnOK, "BtnOK");
            this.BtnOK.DialogResult = System.Windows.Forms.DialogResult.OK;
            this.BtnOK.Name = "BtnOK";
            this.BtnOK.UseVisualStyleBackColor = true;
            this.BtnOK.Click += new System.EventHandler(this.BtnOK_Click);
            // 
            // BtnCancel
            // 
            resources.ApplyResources(this.BtnCancel, "BtnCancel");
            this.BtnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
            this.BtnCancel.Name = "BtnCancel";
            this.BtnCancel.UseVisualStyleBackColor = true;
            this.BtnCancel.Click += new System.EventHandler(this.BtnCancel_Click);
            // 
            // FormatLayout
            // 
            resources.ApplyResources(FormatLayout, "FormatLayout");
            FormatLayout.Controls.Add(HeaderGroup, 0, 0);
            FormatLayout.Controls.Add(EachItemGroup, 0, 1);
            FormatLayout.Controls.Add(EachItemOddGroup, 0, 2);
            FormatLayout.Controls.Add(FooterGroup, 0, 3);
            FormatLayout.Name = "FormatLayout";
            // 
            // HeaderGroup
            // 
            HeaderGroup.Controls.Add(this.TextHeader);
            resources.ApplyResources(HeaderGroup, "HeaderGroup");
            HeaderGroup.Name = "HeaderGroup";
            HeaderGroup.TabStop = false;
            // 
            // TextHeader
            // 
            this.TextHeader.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.outputFormatBindingSource, "Header", true));
            resources.ApplyResources(this.TextHeader, "TextHeader");
            this.TextHeader.Name = "TextHeader";
            // 
            // EachItemGroup
            // 
            EachItemGroup.Controls.Add(this.TextEachItem);
            resources.ApplyResources(EachItemGroup, "EachItemGroup");
            EachItemGroup.Name = "EachItemGroup";
            EachItemGroup.TabStop = false;
            // 
            // TextEachItem
            // 
            this.TextEachItem.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.outputFormatBindingSource, "EachItem", true));
            resources.ApplyResources(this.TextEachItem, "TextEachItem");
            this.TextEachItem.Name = "TextEachItem";
            // 
            // EachItemOddGroup
            // 
            EachItemOddGroup.Controls.Add(this.TextEachItemAlternate);
            resources.ApplyResources(EachItemOddGroup, "EachItemOddGroup");
            EachItemOddGroup.Name = "EachItemOddGroup";
            EachItemOddGroup.TabStop = false;
            // 
            // TextEachItemAlternate
            // 
            this.TextEachItemAlternate.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.outputFormatBindingSource, "EachItemAlternate", true));
            resources.ApplyResources(this.TextEachItemAlternate, "TextEachItemAlternate");
            this.TextEachItemAlternate.Name = "TextEachItemAlternate";
            // 
            // FooterGroup
            // 
            FooterGroup.Controls.Add(this.TextFooter);
            resources.ApplyResources(FooterGroup, "FooterGroup");
            FooterGroup.Name = "FooterGroup";
            FooterGroup.TabStop = false;
            // 
            // TextFooter
            // 
            this.TextFooter.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.outputFormatBindingSource, "Footer", true));
            resources.ApplyResources(this.TextFooter, "TextFooter");
            this.TextFooter.Name = "TextFooter";
            // 
            // panel1
            // 
            this.panel1.Controls.Add(OkCancelButtonPanel);
            resources.ApplyResources(this.panel1, "panel1");
            this.panel1.Name = "panel1";
            // 
            // ContantSplitPane
            // 
            resources.ApplyResources(this.ContantSplitPane, "ContantSplitPane");
            this.ContantSplitPane.Name = "ContantSplitPane";
            // 
            // ContantSplitPane.Panel1
            // 
            this.ContantSplitPane.Panel1.Controls.Add(FormatLayout);
            // 
            // ContantSplitPane.Panel2
            // 
            this.ContantSplitPane.Panel2.Controls.Add(this.VariableItemList);
            this.ContantSplitPane.Panel2.Controls.Add(this.BtnInsertVariable);
            // 
            // VariableItemList
            // 
            resources.ApplyResources(this.VariableItemList, "VariableItemList");
            this.VariableItemList.FormattingEnabled = true;
            this.VariableItemList.Name = "VariableItemList";
            // 
            // BtnInsertVariable
            // 
            resources.ApplyResources(this.BtnInsertVariable, "BtnInsertVariable");
            this.BtnInsertVariable.Name = "BtnInsertVariable";
            this.BtnInsertVariable.UseVisualStyleBackColor = true;
            // 
            // outputFormatBindingSource
            // 
            this.outputFormatBindingSource.DataSource = typeof(EnumFiles.Model.OutputFormat);
            // 
            // OutputFormatForm
            // 
            this.AcceptButton = this.BtnOK;
            resources.ApplyResources(this, "$this");
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.CancelButton = this.BtnCancel;
            this.ControlBox = false;
            this.Controls.Add(this.ContantSplitPane);
            this.Controls.Add(this.panel1);
            this.Controls.Add(FormatNamePanel);
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.Name = "OutputFormatForm";
            this.Load += new System.EventHandler(this.OutputFormatForm_Load);
            FormatNamePanel.ResumeLayout(false);
            FormatNamePanel.PerformLayout();
            ButtonPanel.ResumeLayout(false);
            OkCancelButtonPanel.ResumeLayout(false);
            OkCancelButtonPanel.PerformLayout();
            FormatLayout.ResumeLayout(false);
            HeaderGroup.ResumeLayout(false);
            HeaderGroup.PerformLayout();
            EachItemGroup.ResumeLayout(false);
            EachItemGroup.PerformLayout();
            EachItemOddGroup.ResumeLayout(false);
            EachItemOddGroup.PerformLayout();
            FooterGroup.ResumeLayout(false);
            FooterGroup.PerformLayout();
            this.panel1.ResumeLayout(false);
            this.ContantSplitPane.Panel1.ResumeLayout(false);
            this.ContantSplitPane.Panel2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.ContantSplitPane)).EndInit();
            this.ContantSplitPane.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.outputFormatBindingSource)).EndInit();
            this.ResumeLayout(false);

        }
Example #19
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.FlowLayoutPanel           _lytMessage;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(RateForm));
     System.Windows.Forms.FlowLayoutPanel           _lytButtons;
     System.Windows.Forms.TableLayoutPanel          tableLayoutPanel1;
     this._pbxRateImage = new System.Windows.Forms.PictureBox();
     this._lblInfo      = new System.Windows.Forms.Label();
     this._btnYes       = new System.Windows.Forms.Button();
     this._btnCancel    = new System.Windows.Forms.Button();
     _lytMessage        = new System.Windows.Forms.FlowLayoutPanel();
     _lytButtons        = new System.Windows.Forms.FlowLayoutPanel();
     tableLayoutPanel1  = new System.Windows.Forms.TableLayoutPanel();
     _lytMessage.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this._pbxRateImage)).BeginInit();
     _lytButtons.SuspendLayout();
     tableLayoutPanel1.SuspendLayout();
     this.SuspendLayout();
     //
     // _lytMessage
     //
     resources.ApplyResources(_lytMessage, "_lytMessage");
     _lytMessage.Controls.Add(this._pbxRateImage);
     _lytMessage.Controls.Add(this._lblInfo);
     _lytMessage.Name = "_lytMessage";
     //
     // _pbxRateImage
     //
     resources.ApplyResources(this._pbxRateImage, "_pbxRateImage");
     this._pbxRateImage.Name    = "_pbxRateImage";
     this._pbxRateImage.TabStop = false;
     //
     // _lblInfo
     //
     resources.ApplyResources(this._lblInfo, "_lblInfo");
     _lytMessage.SetFlowBreak(this._lblInfo, true);
     this._lblInfo.Name = "_lblInfo";
     //
     // _lytButtons
     //
     resources.ApplyResources(_lytButtons, "_lytButtons");
     _lytButtons.Controls.Add(this._btnYes);
     _lytButtons.Controls.Add(this._btnCancel);
     _lytButtons.Name = "_lytButtons";
     //
     // _btnYes
     //
     resources.ApplyResources(this._btnYes, "_btnYes");
     this._btnYes.DialogResult = System.Windows.Forms.DialogResult.Yes;
     this._btnYes.Name         = "_btnYes";
     //
     // _btnCancel
     //
     resources.ApplyResources(this._btnCancel, "_btnCancel");
     this._btnCancel.DialogResult = System.Windows.Forms.DialogResult.No;
     this._btnCancel.Name         = "_btnCancel";
     //
     // tableLayoutPanel1
     //
     resources.ApplyResources(tableLayoutPanel1, "tableLayoutPanel1");
     tableLayoutPanel1.Controls.Add(_lytMessage, 0, 0);
     tableLayoutPanel1.Controls.Add(_lytButtons, 0, 1);
     tableLayoutPanel1.Name = "tableLayoutPanel1";
     //
     // RateForm
     //
     this.AcceptButton = this._btnYes;
     resources.ApplyResources(this, "$this");
     this.BackColor    = System.Drawing.SystemColors.ControlLight;
     this.CancelButton = this._btnCancel;
     this.ControlBox   = false;
     this.Controls.Add(tableLayoutPanel1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "RateForm";
     this.ShowInTaskbar   = false;
     _lytMessage.ResumeLayout(false);
     _lytMessage.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this._pbxRateImage)).EndInit();
     _lytButtons.ResumeLayout(false);
     _lytButtons.PerformLayout();
     tableLayoutPanel1.ResumeLayout(false);
     tableLayoutPanel1.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Example #20
0
		private void InitializeComponent()
		{
			System.Windows.Forms.FlowLayoutPanel flowLayoutPanel1;
			System.Windows.Forms.Label label5;
			System.Windows.Forms.Label label1;
			System.Windows.Forms.ColumnHeader columnHeader2;
			System.Windows.Forms.ColumnHeader columnHeader1;
			System.Windows.Forms.ColumnHeader columnHeader3;
			System.Windows.Forms.ColumnHeader columnHeader4;
			System.Windows.Forms.ColumnHeader columnHeader5;
			System.Windows.Forms.Label label2;
			System.Windows.Forms.Button button2;
			System.Windows.Forms.FlowLayoutPanel flowLayoutPanel2;
			System.Windows.Forms.ColumnHeader columnHeader6;
			this.button1 = new System.Windows.Forms.Button();
			this.button6 = new System.Windows.Forms.Button();
			this.ErrorsLabel = new System.Windows.Forms.Label();
			this.ErrorsButton = new System.Windows.Forms.Button();
			this.listView1 = new System.Windows.Forms.ListView();
			flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
			label5 = new System.Windows.Forms.Label();
			label1 = new System.Windows.Forms.Label();
			columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
			columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
			columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
			columnHeader4 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
			columnHeader5 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
			label2 = new System.Windows.Forms.Label();
			button2 = new System.Windows.Forms.Button();
			flowLayoutPanel2 = new System.Windows.Forms.FlowLayoutPanel();
			columnHeader6 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
			flowLayoutPanel2.SuspendLayout();
			this.SuspendLayout();
			// 
			// flowLayoutPanel1
			// 
			flowLayoutPanel1.AutoSize = true;
			flowLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Top;
			flowLayoutPanel1.Location = new System.Drawing.Point(0, 0);
			flowLayoutPanel1.Name = "flowLayoutPanel1";
			flowLayoutPanel1.Size = new System.Drawing.Size(786, 0);
			flowLayoutPanel1.TabIndex = 1;
			// 
			// label5
			// 
			label5.AutoSize = true;
			label5.Location = new System.Drawing.Point(3, 67);
			label5.Margin = new System.Windows.Forms.Padding(3, 12, 3, 0);
			label5.Name = "label5";
			label5.Size = new System.Drawing.Size(140, 26);
			label5.TabIndex = 6;
			label5.Text = "Deletes files according to the selected categories.";
			// 
			// label1
			// 
			label1.AutoSize = true;
			label1.Location = new System.Drawing.Point(3, 134);
			label1.Margin = new System.Windows.Forms.Padding(3, 12, 3, 0);
			label1.Name = "label1";
			label1.Size = new System.Drawing.Size(143, 39);
			label1.TabIndex = 10;
			label1.Text = "Tells Steam to redownload deleted files for the highlighted game.";
			// 
			// columnHeader2
			// 
			columnHeader2.Text = "AppId";
			// 
			// columnHeader1
			// 
			columnHeader1.Text = "Game name";
			columnHeader1.Width = 200;
			// 
			// columnHeader3
			// 
			columnHeader3.Text = "Size";
			// 
			// columnHeader4
			// 
			columnHeader4.Text = "Deletable";
			columnHeader4.Width = 95;
			// 
			// columnHeader5
			// 
			columnHeader5.Text = "Not selected";
			columnHeader5.Width = 85;
			// 
			// label2
			// 
			label2.AutoSize = true;
			label2.Location = new System.Drawing.Point(3, 0);
			label2.Name = "label2";
			label2.Size = new System.Drawing.Size(144, 26);
			label2.TabIndex = 13;
			label2.Text = "Select which categories of files to delete.";
			// 
			// button2
			// 
			flowLayoutPanel2.SetFlowBreak(button2, true);
			button2.Location = new System.Drawing.Point(3, 29);
			button2.Name = "button2";
			button2.Size = new System.Drawing.Size(142, 23);
			button2.TabIndex = 12;
			button2.Text = "Category selection";
			button2.UseVisualStyleBackColor = true;
			button2.Click += new System.EventHandler(this.button2_Click);
			// 
			// flowLayoutPanel2
			// 
			flowLayoutPanel2.Controls.Add(label2);
			flowLayoutPanel2.Controls.Add(button2);
			flowLayoutPanel2.Controls.Add(label5);
			flowLayoutPanel2.Controls.Add(this.button1);
			flowLayoutPanel2.Controls.Add(label1);
			flowLayoutPanel2.Controls.Add(this.button6);
			flowLayoutPanel2.Controls.Add(this.ErrorsLabel);
			flowLayoutPanel2.Controls.Add(this.ErrorsButton);
			flowLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Right;
			flowLayoutPanel2.Location = new System.Drawing.Point(636, 0);
			flowLayoutPanel2.Name = "flowLayoutPanel2";
			flowLayoutPanel2.Size = new System.Drawing.Size(150, 566);
			flowLayoutPanel2.TabIndex = 5;
			// 
			// button1
			// 
			this.button1.Enabled = false;
			flowLayoutPanel2.SetFlowBreak(this.button1, true);
			this.button1.Location = new System.Drawing.Point(3, 96);
			this.button1.Name = "button1";
			this.button1.Size = new System.Drawing.Size(142, 23);
			this.button1.TabIndex = 0;
			this.button1.Text = "Delete!";
			this.button1.UseVisualStyleBackColor = true;
			this.button1.Click += new System.EventHandler(this.DeleteFilesClicked);
			// 
			// button6
			// 
			this.button6.Enabled = false;
			flowLayoutPanel2.SetFlowBreak(this.button6, true);
			this.button6.Location = new System.Drawing.Point(3, 176);
			this.button6.Name = "button6";
			this.button6.Size = new System.Drawing.Size(142, 23);
			this.button6.TabIndex = 11;
			this.button6.Text = "Restore deleted files";
			this.button6.UseVisualStyleBackColor = true;
			this.button6.Click += new System.EventHandler(this.ValidateClicked);
			// 
			// ErrorsLabel
			// 
			this.ErrorsLabel.AutoSize = true;
			this.ErrorsLabel.Location = new System.Drawing.Point(3, 202);
			this.ErrorsLabel.Name = "ErrorsLabel";
			this.ErrorsLabel.Size = new System.Drawing.Size(143, 39);
			this.ErrorsLabel.TabIndex = 14;
			this.ErrorsLabel.Text = "Errors were encountered when loading information for some games.";
			this.ErrorsLabel.Visible = false;
			// 
			// ErrorsButton
			// 
			flowLayoutPanel2.SetFlowBreak(this.ErrorsButton, true);
			this.ErrorsButton.Location = new System.Drawing.Point(3, 244);
			this.ErrorsButton.Name = "ErrorsButton";
			this.ErrorsButton.Size = new System.Drawing.Size(142, 23);
			this.ErrorsButton.TabIndex = 16;
			this.ErrorsButton.Text = "Show errors";
			this.ErrorsButton.UseVisualStyleBackColor = true;
			this.ErrorsButton.Visible = false;
			this.ErrorsButton.Click += new System.EventHandler(this.ErrorsButton_Click);
			// 
			// columnHeader6
			// 
			columnHeader6.Text = "Saved";
			columnHeader6.Width = 85;
			// 
			// listView1
			// 
			this.listView1.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            columnHeader1,
            columnHeader2,
            columnHeader3,
            columnHeader4,
            columnHeader5,
            columnHeader6});
			this.listView1.Dock = System.Windows.Forms.DockStyle.Fill;
			this.listView1.FullRowSelect = true;
			this.listView1.HideSelection = false;
			this.listView1.Location = new System.Drawing.Point(0, 0);
			this.listView1.MultiSelect = false;
			this.listView1.Name = "listView1";
			this.listView1.Size = new System.Drawing.Size(636, 566);
			this.listView1.Sorting = System.Windows.Forms.SortOrder.Descending;
			this.listView1.TabIndex = 4;
			this.listView1.UseCompatibleStateImageBehavior = false;
			this.listView1.View = System.Windows.Forms.View.Details;
			this.listView1.ColumnClick += new System.Windows.Forms.ColumnClickEventHandler(this.HeaderClicked);
			this.listView1.SelectedIndexChanged += new System.EventHandler(this.ItemSelected);
			// 
			// MainForm
			// 
			this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.ClientSize = new System.Drawing.Size(786, 566);
			this.Controls.Add(this.listView1);
			this.Controls.Add(flowLayoutPanel2);
			this.Controls.Add(flowLayoutPanel1);
			this.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
			this.MaximizeBox = false;
			this.Name = "MainForm";
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
			this.Text = "Steam Disk Saver";
			this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.MainForm_FormClosed);
			this.Load += new System.EventHandler(this.MainForm_Load);
			flowLayoutPanel2.ResumeLayout(false);
			flowLayoutPanel2.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.FlowLayoutPanel flowLayoutPanel1;
            System.Windows.Forms.PictureBox pictureBox1;
            System.Windows.Forms.Panel panel1;
            System.Windows.Forms.Label label2;
            System.Windows.Forms.Label label1;
            System.Windows.Forms.Panel panel2;
            System.Windows.Forms.Panel panel3;
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Launcher));
            this.password = new System.Windows.Forms.TextBox();
            this.username = new System.Windows.Forms.TextBox();
            this.register = new System.Windows.Forms.Button();
            this.login = new System.Windows.Forms.Button();
            this.info = new System.Windows.Forms.Label();
            this.timer = new System.Windows.Forms.Timer(this.components);
            flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
            pictureBox1 = new System.Windows.Forms.PictureBox();
            panel1 = new System.Windows.Forms.Panel();
            label2 = new System.Windows.Forms.Label();
            label1 = new System.Windows.Forms.Label();
            panel2 = new System.Windows.Forms.Panel();
            panel3 = new System.Windows.Forms.Panel();
            flowLayoutPanel1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(pictureBox1)).BeginInit();
            panel1.SuspendLayout();
            panel2.SuspendLayout();
            panel3.SuspendLayout();
            this.SuspendLayout();
            // 
            // flowLayoutPanel1
            // 
            flowLayoutPanel1.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            flowLayoutPanel1.Controls.Add(pictureBox1);
            flowLayoutPanel1.Controls.Add(panel1);
            flowLayoutPanel1.Controls.Add(panel2);
            flowLayoutPanel1.Controls.Add(panel3);
            flowLayoutPanel1.Location = new System.Drawing.Point(12, 12);
            flowLayoutPanel1.Name = "flowLayoutPanel1";
            flowLayoutPanel1.Size = new System.Drawing.Size(760, 527);
            flowLayoutPanel1.TabIndex = 0;
            // 
            // pictureBox1
            // 
            flowLayoutPanel1.SetFlowBreak(pictureBox1, true);
            pictureBox1.Image = global::Launcher.Properties.Resources.banner;
            pictureBox1.InitialImage = null;
            pictureBox1.Location = new System.Drawing.Point(3, 3);
            pictureBox1.Name = "pictureBox1";
            pictureBox1.Size = new System.Drawing.Size(750, 444);
            pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
            pictureBox1.TabIndex = 0;
            pictureBox1.TabStop = false;
            // 
            // panel1
            // 
            panel1.Controls.Add(this.password);
            panel1.Controls.Add(this.username);
            panel1.Controls.Add(label2);
            panel1.Controls.Add(label1);
            panel1.Location = new System.Drawing.Point(3, 453);
            panel1.Name = "panel1";
            panel1.Size = new System.Drawing.Size(174, 71);
            panel1.TabIndex = 3;
            // 
            // password
            // 
            this.password.Location = new System.Drawing.Point(67, 38);
            this.password.MaxLength = 255;
            this.password.Name = "password";
            this.password.Size = new System.Drawing.Size(100, 20);
            this.password.TabIndex = 5;
            this.password.UseSystemPasswordChar = true;
            // 
            // username
            // 
            this.username.Location = new System.Drawing.Point(67, 10);
            this.username.MaxLength = 255;
            this.username.Name = "username";
            this.username.Size = new System.Drawing.Size(100, 20);
            this.username.TabIndex = 4;
            // 
            // label2
            // 
            label2.AutoSize = true;
            label2.Location = new System.Drawing.Point(3, 41);
            label2.Name = "label2";
            label2.Size = new System.Drawing.Size(56, 13);
            label2.TabIndex = 3;
            label2.Text = "Password:"******"label1";
            label1.Size = new System.Drawing.Size(58, 13);
            label1.TabIndex = 1;
            label1.Text = "Username:"******"panel2";
            panel2.Size = new System.Drawing.Size(99, 71);
            panel2.TabIndex = 4;
            // 
            // register
            // 
            this.register.Location = new System.Drawing.Point(12, 38);
            this.register.Name = "register";
            this.register.Size = new System.Drawing.Size(75, 23);
            this.register.TabIndex = 1;
            this.register.Text = "Website";
            this.register.UseVisualStyleBackColor = true;
            this.register.Click += new System.EventHandler(this.register_Click);
            // 
            // login
            // 
            this.login.Location = new System.Drawing.Point(12, 10);
            this.login.Name = "login";
            this.login.Size = new System.Drawing.Size(75, 23);
            this.login.TabIndex = 0;
            this.login.Text = "Login";
            this.login.UseVisualStyleBackColor = true;
            this.login.Click += new System.EventHandler(this.login_Click);
            // 
            // panel3
            // 
            panel3.Controls.Add(this.info);
            panel3.Location = new System.Drawing.Point(288, 453);
            panel3.Name = "panel3";
            panel3.Size = new System.Drawing.Size(465, 71);
            panel3.TabIndex = 5;
            // 
            // info
            // 
            this.info.Location = new System.Drawing.Point(9, 12);
            this.info.Name = "info";
            this.info.Size = new System.Drawing.Size(451, 13);
            this.info.TabIndex = 0;
            this.info.Text = "__________________________________________________________________________";
            this.info.Visible = false;
            // 
            // timer
            // 
            this.timer.Interval = 1000;
            this.timer.Tick += new System.EventHandler(this.timer_Tick);
            // 
            // Launcher
            // 
            this.AcceptButton = this.login;
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(794, 559);
            this.Controls.Add(flowLayoutPanel1);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.MaximizeBox = false;
            this.MaximumSize = new System.Drawing.Size(800, 588);
            this.MinimumSize = new System.Drawing.Size(800, 588);
            this.Name = "Launcher";
            this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
            this.Text = "Accelerated Delivery";
            flowLayoutPanel1.ResumeLayout(false);
            flowLayoutPanel1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(pictureBox1)).EndInit();
            panel1.ResumeLayout(false);
            panel1.PerformLayout();
            panel2.ResumeLayout(false);
            panel3.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();

        }
Example #23
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.FlowLayoutPanel flowLayoutPanel1;
     this.btnOK                    = new System.Windows.Forms.Button();
     this.btnCancel                = new System.Windows.Forms.Button();
     this.btnRegisterAll           = new System.Windows.Forms.Button();
     this.tableLayoutPanel1        = new System.Windows.Forms.TableLayoutPanel();
     this.SwitchSystemProxyLabel   = new System.Windows.Forms.Label();
     this.ChangeToPacLabel         = new System.Windows.Forms.Label();
     this.ChangeToGlobalLabel      = new System.Windows.Forms.Label();
     this.SwitchAllowLanLabel      = new System.Windows.Forms.Label();
     this.ShowLogsLabel            = new System.Windows.Forms.Label();
     this.ServerMoveUpLabel        = new System.Windows.Forms.Label();
     this.ServerMoveDownLabel      = new System.Windows.Forms.Label();
     this.SwitchSystemProxyTextBox = new System.Windows.Forms.TextBox();
     this.ChangeToPacTextBox       = new System.Windows.Forms.TextBox();
     this.ChangeToGlobalTextBox    = new System.Windows.Forms.TextBox();
     this.SwitchAllowLanTextBox    = new System.Windows.Forms.TextBox();
     this.ShowLogsTextBox          = new System.Windows.Forms.TextBox();
     this.ServerMoveUpTextBox      = new System.Windows.Forms.TextBox();
     this.ServerMoveDownTextBox    = new System.Windows.Forms.TextBox();
     flowLayoutPanel1              = new System.Windows.Forms.FlowLayoutPanel();
     flowLayoutPanel1.SuspendLayout();
     this.tableLayoutPanel1.SuspendLayout();
     this.SuspendLayout();
     //
     // flowLayoutPanel1
     //
     this.tableLayoutPanel1.SetColumnSpan(flowLayoutPanel1, 2);
     flowLayoutPanel1.Controls.Add(this.btnOK);
     flowLayoutPanel1.Controls.Add(this.btnCancel);
     flowLayoutPanel1.Controls.Add(this.btnRegisterAll);
     flowLayoutPanel1.FlowDirection = System.Windows.Forms.FlowDirection.BottomUp;
     flowLayoutPanel1.Location      = new System.Drawing.Point(0, 227);
     flowLayoutPanel1.Margin        = new System.Windows.Forms.Padding(0);
     flowLayoutPanel1.Name          = "flowLayoutPanel1";
     flowLayoutPanel1.Padding       = new System.Windows.Forms.Padding(0, 0, 16, 0);
     flowLayoutPanel1.RightToLeft   = System.Windows.Forms.RightToLeft.Yes;
     flowLayoutPanel1.Size          = new System.Drawing.Size(475, 44);
     flowLayoutPanel1.TabIndex      = 6;
     //
     // btnOK
     //
     this.btnOK.DialogResult            = System.Windows.Forms.DialogResult.OK;
     this.btnOK.Location                = new System.Drawing.Point(333, 10);
     this.btnOK.Name                    = "btnOK";
     this.btnOK.Size                    = new System.Drawing.Size(123, 31);
     this.btnOK.TabIndex                = 0;
     this.btnOK.Text                    = "OK";
     this.btnOK.UseVisualStyleBackColor = true;
     this.btnOK.Click                  += new System.EventHandler(this.OKButton_Click);
     //
     // btnCancel
     //
     this.btnCancel.DialogResult            = System.Windows.Forms.DialogResult.Cancel;
     this.btnCancel.Location                = new System.Drawing.Point(204, 10);
     this.btnCancel.Name                    = "btnCancel";
     this.btnCancel.Size                    = new System.Drawing.Size(123, 31);
     this.btnCancel.TabIndex                = 1;
     this.btnCancel.Text                    = "Cancel";
     this.btnCancel.UseVisualStyleBackColor = true;
     this.btnCancel.Click                  += new System.EventHandler(this.CancelButton_Click);
     //
     // btnRegisterAll
     //
     this.btnRegisterAll.DialogResult            = System.Windows.Forms.DialogResult.Cancel;
     this.btnRegisterAll.Location                = new System.Drawing.Point(75, 10);
     this.btnRegisterAll.Name                    = "btnRegisterAll";
     this.btnRegisterAll.Size                    = new System.Drawing.Size(123, 31);
     this.btnRegisterAll.TabIndex                = 2;
     this.btnRegisterAll.Text                    = "Reg All";
     this.btnRegisterAll.UseVisualStyleBackColor = true;
     this.btnRegisterAll.Click                  += new System.EventHandler(this.RegisterAllButton_Click);
     //
     // tableLayoutPanel1
     //
     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(this.SwitchSystemProxyLabel, 0, 0);
     this.tableLayoutPanel1.Controls.Add(this.ChangeToPacLabel, 0, 1);
     this.tableLayoutPanel1.Controls.Add(this.ChangeToGlobalLabel, 0, 2);
     this.tableLayoutPanel1.Controls.Add(this.SwitchAllowLanLabel, 0, 3);
     this.tableLayoutPanel1.Controls.Add(this.ShowLogsLabel, 0, 4);
     this.tableLayoutPanel1.Controls.Add(this.ServerMoveUpLabel, 0, 5);
     this.tableLayoutPanel1.Controls.Add(this.ServerMoveDownLabel, 0, 6);
     this.tableLayoutPanel1.Controls.Add(flowLayoutPanel1, 0, 7);
     this.tableLayoutPanel1.Controls.Add(this.SwitchSystemProxyTextBox, 1, 0);
     this.tableLayoutPanel1.Controls.Add(this.ChangeToPacTextBox, 1, 1);
     this.tableLayoutPanel1.Controls.Add(this.ChangeToGlobalTextBox, 1, 2);
     this.tableLayoutPanel1.Controls.Add(this.SwitchAllowLanTextBox, 1, 3);
     this.tableLayoutPanel1.Controls.Add(this.ShowLogsTextBox, 1, 4);
     this.tableLayoutPanel1.Controls.Add(this.ServerMoveUpTextBox, 1, 5);
     this.tableLayoutPanel1.Controls.Add(this.ServerMoveDownTextBox, 1, 6);
     this.tableLayoutPanel1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
     this.tableLayoutPanel1.Name     = "tableLayoutPanel1";
     this.tableLayoutPanel1.RowCount = 8;
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 14.16667F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 14.16667F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 14.16667F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 14.16667F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 14.16667F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 14.77778F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 14.38889F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 40F));
     this.tableLayoutPanel1.Size     = new System.Drawing.Size(475, 271);
     this.tableLayoutPanel1.TabIndex = 0;
     //
     // SwitchSystemProxyLabel
     //
     this.SwitchSystemProxyLabel.AutoSize  = true;
     this.SwitchSystemProxyLabel.Dock      = System.Windows.Forms.DockStyle.Right;
     this.SwitchSystemProxyLabel.Location  = new System.Drawing.Point(25, 0);
     this.SwitchSystemProxyLabel.Margin    = new System.Windows.Forms.Padding(8, 0, 8, 0);
     this.SwitchSystemProxyLabel.Name      = "SwitchSystemProxyLabel";
     this.SwitchSystemProxyLabel.Size      = new System.Drawing.Size(147, 32);
     this.SwitchSystemProxyLabel.TabIndex  = 0;
     this.SwitchSystemProxyLabel.Text      = "Enable System Proxy";
     this.SwitchSystemProxyLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // ChangeToPacLabel
     //
     this.ChangeToPacLabel.AutoSize  = true;
     this.ChangeToPacLabel.Dock      = System.Windows.Forms.DockStyle.Right;
     this.ChangeToPacLabel.Location  = new System.Drawing.Point(135, 32);
     this.ChangeToPacLabel.Margin    = new System.Windows.Forms.Padding(8, 0, 8, 0);
     this.ChangeToPacLabel.Name      = "ChangeToPacLabel";
     this.ChangeToPacLabel.Size      = new System.Drawing.Size(37, 32);
     this.ChangeToPacLabel.TabIndex  = 1;
     this.ChangeToPacLabel.Text      = "PAC";
     this.ChangeToPacLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // ChangeToGlobalLabel
     //
     this.ChangeToGlobalLabel.AutoSize  = true;
     this.ChangeToGlobalLabel.Dock      = System.Windows.Forms.DockStyle.Right;
     this.ChangeToGlobalLabel.Location  = new System.Drawing.Point(119, 64);
     this.ChangeToGlobalLabel.Margin    = new System.Windows.Forms.Padding(8, 0, 8, 0);
     this.ChangeToGlobalLabel.Name      = "ChangeToGlobalLabel";
     this.ChangeToGlobalLabel.Size      = new System.Drawing.Size(53, 32);
     this.ChangeToGlobalLabel.TabIndex  = 2;
     this.ChangeToGlobalLabel.Text      = "Global";
     this.ChangeToGlobalLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // SwitchAllowLanLabel
     //
     this.SwitchAllowLanLabel.AutoSize  = true;
     this.SwitchAllowLanLabel.Dock      = System.Windows.Forms.DockStyle.Right;
     this.SwitchAllowLanLabel.Location  = new System.Drawing.Point(8, 96);
     this.SwitchAllowLanLabel.Margin    = new System.Windows.Forms.Padding(8, 0, 8, 0);
     this.SwitchAllowLanLabel.Name      = "SwitchAllowLanLabel";
     this.SwitchAllowLanLabel.Size      = new System.Drawing.Size(164, 32);
     this.SwitchAllowLanLabel.TabIndex  = 3;
     this.SwitchAllowLanLabel.Text      = "Allow Clients from LAN";
     this.SwitchAllowLanLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // ShowLogsLabel
     //
     this.ShowLogsLabel.AutoSize  = true;
     this.ShowLogsLabel.Dock      = System.Windows.Forms.DockStyle.Right;
     this.ShowLogsLabel.Location  = new System.Drawing.Point(82, 128);
     this.ShowLogsLabel.Margin    = new System.Windows.Forms.Padding(8, 0, 8, 0);
     this.ShowLogsLabel.Name      = "ShowLogsLabel";
     this.ShowLogsLabel.Size      = new System.Drawing.Size(90, 32);
     this.ShowLogsLabel.TabIndex  = 4;
     this.ShowLogsLabel.Text      = "Show Logs...";
     this.ShowLogsLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // ServerMoveUpLabel
     //
     this.ServerMoveUpLabel.AutoSize  = true;
     this.ServerMoveUpLabel.Dock      = System.Windows.Forms.DockStyle.Right;
     this.ServerMoveUpLabel.Location  = new System.Drawing.Point(103, 160);
     this.ServerMoveUpLabel.Margin    = new System.Windows.Forms.Padding(8, 0, 8, 0);
     this.ServerMoveUpLabel.Name      = "ServerMoveUpLabel";
     this.ServerMoveUpLabel.Size      = new System.Drawing.Size(69, 34);
     this.ServerMoveUpLabel.TabIndex  = 4;
     this.ServerMoveUpLabel.Text      = "Move up";
     this.ServerMoveUpLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // ServerMoveDownLabel
     //
     this.ServerMoveDownLabel.AutoSize  = true;
     this.ServerMoveDownLabel.Dock      = System.Windows.Forms.DockStyle.Right;
     this.ServerMoveDownLabel.Location  = new System.Drawing.Point(81, 194);
     this.ServerMoveDownLabel.Margin    = new System.Windows.Forms.Padding(8, 0, 8, 0);
     this.ServerMoveDownLabel.Name      = "ServerMoveDownLabel";
     this.ServerMoveDownLabel.Size      = new System.Drawing.Size(91, 33);
     this.ServerMoveDownLabel.TabIndex  = 4;
     this.ServerMoveDownLabel.Text      = "Move Down";
     this.ServerMoveDownLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // SwitchSystemProxyTextBox
     //
     this.SwitchSystemProxyTextBox.Dock         = System.Windows.Forms.DockStyle.Fill;
     this.SwitchSystemProxyTextBox.Location     = new System.Drawing.Point(183, 3);
     this.SwitchSystemProxyTextBox.Margin       = new System.Windows.Forms.Padding(3, 3, 16, 3);
     this.SwitchSystemProxyTextBox.Name         = "SwitchSystemProxyTextBox";
     this.SwitchSystemProxyTextBox.ReadOnly     = true;
     this.SwitchSystemProxyTextBox.Size         = new System.Drawing.Size(276, 25);
     this.SwitchSystemProxyTextBox.TabIndex     = 7;
     this.SwitchSystemProxyTextBox.TextChanged += new System.EventHandler(this.TextBox_TextChanged);
     this.SwitchSystemProxyTextBox.KeyDown     += new System.Windows.Forms.KeyEventHandler(this.HotkeyDown);
     this.SwitchSystemProxyTextBox.KeyUp       += new System.Windows.Forms.KeyEventHandler(this.HotkeyUp);
     //
     // ChangeToPacTextBox
     //
     this.ChangeToPacTextBox.Dock         = System.Windows.Forms.DockStyle.Fill;
     this.ChangeToPacTextBox.Location     = new System.Drawing.Point(183, 35);
     this.ChangeToPacTextBox.Margin       = new System.Windows.Forms.Padding(3, 3, 16, 3);
     this.ChangeToPacTextBox.Name         = "ChangeToPacTextBox";
     this.ChangeToPacTextBox.ReadOnly     = true;
     this.ChangeToPacTextBox.Size         = new System.Drawing.Size(276, 25);
     this.ChangeToPacTextBox.TabIndex     = 8;
     this.ChangeToPacTextBox.TextChanged += new System.EventHandler(this.TextBox_TextChanged);
     this.ChangeToPacTextBox.KeyDown     += new System.Windows.Forms.KeyEventHandler(this.HotkeyDown);
     this.ChangeToPacTextBox.KeyUp       += new System.Windows.Forms.KeyEventHandler(this.HotkeyUp);
     //
     // ChangeToGlobalTextBox
     //
     this.ChangeToGlobalTextBox.Dock         = System.Windows.Forms.DockStyle.Fill;
     this.ChangeToGlobalTextBox.Location     = new System.Drawing.Point(183, 67);
     this.ChangeToGlobalTextBox.Margin       = new System.Windows.Forms.Padding(3, 3, 16, 3);
     this.ChangeToGlobalTextBox.Name         = "ChangeToGlobalTextBox";
     this.ChangeToGlobalTextBox.ReadOnly     = true;
     this.ChangeToGlobalTextBox.Size         = new System.Drawing.Size(276, 25);
     this.ChangeToGlobalTextBox.TabIndex     = 9;
     this.ChangeToGlobalTextBox.TextChanged += new System.EventHandler(this.TextBox_TextChanged);
     this.ChangeToGlobalTextBox.KeyDown     += new System.Windows.Forms.KeyEventHandler(this.HotkeyDown);
     this.ChangeToGlobalTextBox.KeyUp       += new System.Windows.Forms.KeyEventHandler(this.HotkeyUp);
     //
     // SwitchAllowLanTextBox
     //
     this.SwitchAllowLanTextBox.Dock         = System.Windows.Forms.DockStyle.Fill;
     this.SwitchAllowLanTextBox.Location     = new System.Drawing.Point(183, 99);
     this.SwitchAllowLanTextBox.Margin       = new System.Windows.Forms.Padding(3, 3, 16, 3);
     this.SwitchAllowLanTextBox.Name         = "SwitchAllowLanTextBox";
     this.SwitchAllowLanTextBox.ReadOnly     = true;
     this.SwitchAllowLanTextBox.Size         = new System.Drawing.Size(276, 25);
     this.SwitchAllowLanTextBox.TabIndex     = 10;
     this.SwitchAllowLanTextBox.TextChanged += new System.EventHandler(this.TextBox_TextChanged);
     this.SwitchAllowLanTextBox.KeyDown     += new System.Windows.Forms.KeyEventHandler(this.HotkeyDown);
     this.SwitchAllowLanTextBox.KeyUp       += new System.Windows.Forms.KeyEventHandler(this.HotkeyUp);
     //
     // ShowLogsTextBox
     //
     this.ShowLogsTextBox.Dock         = System.Windows.Forms.DockStyle.Fill;
     this.ShowLogsTextBox.Location     = new System.Drawing.Point(183, 131);
     this.ShowLogsTextBox.Margin       = new System.Windows.Forms.Padding(3, 3, 16, 3);
     this.ShowLogsTextBox.Name         = "ShowLogsTextBox";
     this.ShowLogsTextBox.ReadOnly     = true;
     this.ShowLogsTextBox.Size         = new System.Drawing.Size(276, 25);
     this.ShowLogsTextBox.TabIndex     = 11;
     this.ShowLogsTextBox.TextChanged += new System.EventHandler(this.TextBox_TextChanged);
     this.ShowLogsTextBox.KeyDown     += new System.Windows.Forms.KeyEventHandler(this.HotkeyDown);
     this.ShowLogsTextBox.KeyUp       += new System.Windows.Forms.KeyEventHandler(this.HotkeyUp);
     //
     // ServerMoveUpTextBox
     //
     this.ServerMoveUpTextBox.Dock         = System.Windows.Forms.DockStyle.Fill;
     this.ServerMoveUpTextBox.Location     = new System.Drawing.Point(183, 163);
     this.ServerMoveUpTextBox.Margin       = new System.Windows.Forms.Padding(3, 3, 16, 3);
     this.ServerMoveUpTextBox.Name         = "ServerMoveUpTextBox";
     this.ServerMoveUpTextBox.ReadOnly     = true;
     this.ServerMoveUpTextBox.Size         = new System.Drawing.Size(276, 25);
     this.ServerMoveUpTextBox.TabIndex     = 12;
     this.ServerMoveUpTextBox.TextChanged += new System.EventHandler(this.TextBox_TextChanged);
     this.ServerMoveUpTextBox.KeyDown     += new System.Windows.Forms.KeyEventHandler(this.HotkeyDown);
     this.ServerMoveUpTextBox.KeyUp       += new System.Windows.Forms.KeyEventHandler(this.HotkeyUp);
     //
     // ServerMoveDownTextBox
     //
     this.ServerMoveDownTextBox.Dock         = System.Windows.Forms.DockStyle.Fill;
     this.ServerMoveDownTextBox.Location     = new System.Drawing.Point(183, 197);
     this.ServerMoveDownTextBox.Margin       = new System.Windows.Forms.Padding(3, 3, 16, 3);
     this.ServerMoveDownTextBox.Name         = "ServerMoveDownTextBox";
     this.ServerMoveDownTextBox.ReadOnly     = true;
     this.ServerMoveDownTextBox.Size         = new System.Drawing.Size(276, 25);
     this.ServerMoveDownTextBox.TabIndex     = 13;
     this.ServerMoveDownTextBox.TextChanged += new System.EventHandler(this.TextBox_TextChanged);
     this.ServerMoveDownTextBox.KeyDown     += new System.Windows.Forms.KeyEventHandler(this.HotkeyDown);
     this.ServerMoveDownTextBox.KeyUp       += new System.Windows.Forms.KeyEventHandler(this.HotkeyUp);
     //
     // HotkeySettingsForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Dpi;
     this.ClientSize          = new System.Drawing.Size(475, 271);
     this.Controls.Add(this.tableLayoutPanel1);
     this.Font          = new System.Drawing.Font("Microsoft YaHei", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.Margin        = new System.Windows.Forms.Padding(4, 5, 4, 5);
     this.MaximizeBox   = false;
     this.MinimizeBox   = false;
     this.Name          = "HotkeySettingsForm";
     this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "Edit Hotkeys...";
     flowLayoutPanel1.ResumeLayout(false);
     this.tableLayoutPanel1.ResumeLayout(false);
     this.tableLayoutPanel1.PerformLayout();
     this.ResumeLayout(false);
 }
Example #24
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.TableLayoutPanel table;
			System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(LogViewer));
			System.Windows.Forms.FlowLayoutPanel checkboxes;
			System.Windows.Forms.ColumnHeader columnHeader1;
			System.Windows.Forms.ColumnHeader columnHeader2;
			System.Windows.Forms.ColumnHeader columnHeader3;
			this.metrics = new System.Windows.Forms.CheckBox();
			this.debug = new System.Windows.Forms.CheckBox();
			this.warning = new System.Windows.Forms.CheckBox();
			this.error = new System.Windows.Forms.CheckBox();
			this.list = new Szotar.WindowsForms.Controls.ListViewNF();
			table = new System.Windows.Forms.TableLayoutPanel();
			checkboxes = new System.Windows.Forms.FlowLayoutPanel();
			columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
			columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
			columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
			table.SuspendLayout();
			checkboxes.SuspendLayout();
			this.SuspendLayout();
			// 
			// table
			// 
			resources.ApplyResources(table, "table");
			table.Controls.Add(checkboxes, 0, 0);
			table.Controls.Add(this.list, 0, 1);
			table.Name = "table";
			// 
			// checkboxes
			// 
			resources.ApplyResources(checkboxes, "checkboxes");
			checkboxes.Controls.Add(this.metrics);
			checkboxes.Controls.Add(this.debug);
			checkboxes.Controls.Add(this.warning);
			checkboxes.Controls.Add(this.error);
			checkboxes.Name = "checkboxes";
			// 
			// metrics
			// 
			resources.ApplyResources(this.metrics, "metrics");
			this.metrics.Name = "metrics";
			this.metrics.UseVisualStyleBackColor = true;
			// 
			// debug
			// 
			resources.ApplyResources(this.debug, "debug");
			this.debug.Name = "debug";
			this.debug.UseVisualStyleBackColor = true;
			// 
			// warning
			// 
			resources.ApplyResources(this.warning, "warning");
			this.warning.Name = "warning";
			this.warning.UseVisualStyleBackColor = true;
			// 
			// error
			// 
			resources.ApplyResources(this.error, "error");
			this.error.Name = "error";
			this.error.UseVisualStyleBackColor = true;
			// 
			// list
			// 
			resources.ApplyResources(this.list, "list");
			this.list.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
			columnHeader1,
			columnHeader2,
			columnHeader3});
			this.list.Name = "list";
			this.list.UseCompatibleStateImageBehavior = false;
			this.list.View = System.Windows.Forms.View.Details;
			// 
			// columnHeader1
			// 
			resources.ApplyResources(columnHeader1, "columnHeader1");
			// 
			// columnHeader2
			// 
			resources.ApplyResources(columnHeader2, "columnHeader2");
			// 
			// columnHeader3
			// 
			resources.ApplyResources(columnHeader3, "columnHeader3");
			// 
			// LogViewer
			// 
			resources.ApplyResources(this, "$this");
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.Controls.Add(table);
			this.Name = "LogViewer";
			table.ResumeLayout(false);
			table.PerformLayout();
			checkboxes.ResumeLayout(false);
			checkboxes.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.Panel _upperPannel;
            System.Windows.Forms.FlowLayoutPanel flowLayoutPanel1;
            System.Windows.Forms.Label _tallyField_LBL;
            System.Windows.Forms.Label _title_LBL;
            this._tallyField_CmbB = new System.Windows.Forms.ComboBox();
            this._BS_TallyClass = new System.Windows.Forms.BindingSource(this.components);
            this._lowerPanel = new System.Windows.Forms.FlowLayoutPanel();
            _upperPannel = new System.Windows.Forms.Panel();
            flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
            _tallyField_LBL = new System.Windows.Forms.Label();
            _title_LBL = new System.Windows.Forms.Label();
            _upperPannel.SuspendLayout();
            flowLayoutPanel1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this._BS_TallyClass)).BeginInit();
            this.SuspendLayout();
            // 
            // _upperPannel
            // 
            _upperPannel.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            _upperPannel.Controls.Add(flowLayoutPanel1);
            _upperPannel.Controls.Add(_title_LBL);
            _upperPannel.Dock = System.Windows.Forms.DockStyle.Top;
            _upperPannel.Location = new System.Drawing.Point(0, 0);
            _upperPannel.Name = "_upperPannel";
            _upperPannel.Size = new System.Drawing.Size(313, 71);
            _upperPannel.TabIndex = 0;
            // 
            // flowLayoutPanel1
            // 
            flowLayoutPanel1.AutoSize = true;
            flowLayoutPanel1.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            flowLayoutPanel1.Controls.Add(_tallyField_LBL);
            flowLayoutPanel1.Controls.Add(this._tallyField_CmbB);
            flowLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Top;
            flowLayoutPanel1.Location = new System.Drawing.Point(0, 25);
            flowLayoutPanel1.Name = "flowLayoutPanel1";
            flowLayoutPanel1.Size = new System.Drawing.Size(313, 27);
            flowLayoutPanel1.TabIndex = 0;
            // 
            // _tallyField_LBL
            // 
            _tallyField_LBL.AutoSize = true;
            _tallyField_LBL.Dock = System.Windows.Forms.DockStyle.Left;
            _tallyField_LBL.Location = new System.Drawing.Point(3, 0);
            _tallyField_LBL.Name = "_tallyField_LBL";
            _tallyField_LBL.Size = new System.Drawing.Size(54, 27);
            _tallyField_LBL.TabIndex = 1;
            _tallyField_LBL.Text = "Tally Field";
            _tallyField_LBL.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // _tallyField_CmbB
            // 
            this._tallyField_CmbB.DataBindings.Add(new System.Windows.Forms.Binding("SelectedItem", this._BS_TallyClass, "Field", true));
            this._tallyField_CmbB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this._tallyField_CmbB.FormattingEnabled = true;
            this._tallyField_CmbB.Location = new System.Drawing.Point(63, 3);
            this._tallyField_CmbB.Name = "_tallyField_CmbB";
            this._tallyField_CmbB.Size = new System.Drawing.Size(121, 21);
            this._tallyField_CmbB.TabIndex = 2;
            // 
            // _BS_TallyClass
            // 
            this._BS_TallyClass.DataSource = typeof(CruiseManager.Core.CruiseCustomize.FixCNTTallyClass);
            // 
            // _title_LBL
            // 
            _title_LBL.AutoSize = true;
            _title_LBL.Dock = System.Windows.Forms.DockStyle.Top;
            _title_LBL.Font = new System.Drawing.Font("Segoe UI", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            _title_LBL.Location = new System.Drawing.Point(0, 0);
            _title_LBL.Name = "_title_LBL";
            _title_LBL.Size = new System.Drawing.Size(168, 25);
            _title_LBL.TabIndex = 0;
            _title_LBL.Text = "FixCNT Tally Setup";
            // 
            // _lowerPanel
            // 
            this._lowerPanel.Dock = System.Windows.Forms.DockStyle.Fill;
            this._lowerPanel.FlowDirection = System.Windows.Forms.FlowDirection.TopDown;
            this._lowerPanel.Location = new System.Drawing.Point(0, 71);
            this._lowerPanel.Name = "_lowerPanel";
            this._lowerPanel.Size = new System.Drawing.Size(313, 216);
            this._lowerPanel.TabIndex = 1;
            // 
            // FixCNTTallyEditPanel
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this._lowerPanel);
            this.Controls.Add(_upperPannel);
            this.Name = "FixCNTTallyEditPanel";
            this.Size = new System.Drawing.Size(313, 287);
            _upperPannel.ResumeLayout(false);
            _upperPannel.PerformLayout();
            flowLayoutPanel1.ResumeLayout(false);
            flowLayoutPanel1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this._BS_TallyClass)).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()
		{
			this.components = new System.ComponentModel.Container();
			System.Windows.Forms.GroupBox groupBox1;
			System.Windows.Forms.GroupBox gpRegex;
			System.Windows.Forms.TableLayoutPanel tableLayoutPanel4;
			System.Windows.Forms.GroupBox gbCasing;
			System.Windows.Forms.FlowLayoutPanel flowLayoutPanel1;
			System.Windows.Forms.GroupBox groupBox6;
			System.Windows.Forms.TableLayoutPanel tableLayoutPanel9;
			System.Windows.Forms.Label label10;
			System.Windows.Forms.Label label9;
			System.Windows.Forms.Label label5;
			System.Windows.Forms.Label label4;
			System.Windows.Forms.Label label3;
			System.Windows.Forms.Label lbFieldLabel;
			System.Windows.Forms.Label lbExample;
			System.Windows.Forms.Label lbResultHeading;
			this.flexingPanel = new System.Windows.Forms.FlowLayoutPanel();
			this.rdBeSmart = new System.Windows.Forms.RadioButton();
			this.rdPluralize = new System.Windows.Forms.RadioButton();
			this.rdSingularize = new System.Windows.Forms.RadioButton();
			this.rdLeaveItAlone = new System.Windows.Forms.RadioButton();
			this.cbRegex = new System.Windows.Forms.ComboBox();
			this.label7 = new System.Windows.Forms.Label();
			this.label8 = new System.Windows.Forms.Label();
			this.tbRegexMatch = new System.Windows.Forms.TextBox();
			this.bsContextOptions = new System.Windows.Forms.BindingSource(this.components);
			this.tbRegexReplace = new System.Windows.Forms.TextBox();
			this.rdCamelCase = new System.Windows.Forms.RadioButton();
			this.rdLowerCamelCase = new System.Windows.Forms.RadioButton();
			this.rdLowerUnderscore = new System.Windows.Forms.RadioButton();
			this.tbAddSuffix = new System.Windows.Forms.TextBox();
			this.tbAddPrefix = new System.Windows.Forms.TextBox();
			this.tbRemoveSuffix = new System.Windows.Forms.TextBox();
			this.tbRemovePrefix = new System.Windows.Forms.TextBox();
			this.tableLayoutPanel3 = new System.Windows.Forms.TableLayoutPanel();
			this.groupBox5 = new System.Windows.Forms.GroupBox();
			this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
			this.lbFormattedName = new System.Windows.Forms.Label();
			this.ddExamples = new System.Windows.Forms.ComboBox();
			groupBox1 = new System.Windows.Forms.GroupBox();
			gpRegex = new System.Windows.Forms.GroupBox();
			tableLayoutPanel4 = new System.Windows.Forms.TableLayoutPanel();
			gbCasing = new System.Windows.Forms.GroupBox();
			flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
			groupBox6 = new System.Windows.Forms.GroupBox();
			tableLayoutPanel9 = new System.Windows.Forms.TableLayoutPanel();
			label10 = new System.Windows.Forms.Label();
			label9 = new System.Windows.Forms.Label();
			label5 = new System.Windows.Forms.Label();
			label4 = new System.Windows.Forms.Label();
			label3 = new System.Windows.Forms.Label();
			lbFieldLabel = new System.Windows.Forms.Label();
			lbExample = new System.Windows.Forms.Label();
			lbResultHeading = new System.Windows.Forms.Label();
			groupBox1.SuspendLayout();
			this.flexingPanel.SuspendLayout();
			gpRegex.SuspendLayout();
			tableLayoutPanel4.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.bsContextOptions)).BeginInit();
			gbCasing.SuspendLayout();
			flowLayoutPanel1.SuspendLayout();
			groupBox6.SuspendLayout();
			tableLayoutPanel9.SuspendLayout();
			this.tableLayoutPanel3.SuspendLayout();
			this.groupBox5.SuspendLayout();
			this.tableLayoutPanel2.SuspendLayout();
			this.SuspendLayout();
			// 
			// groupBox1
			// 
			groupBox1.Controls.Add(this.flexingPanel);
			groupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
			groupBox1.Location = new System.Drawing.Point(3, 3);
			groupBox1.Name = "groupBox1";
			groupBox1.Size = new System.Drawing.Size(380, 47);
			groupBox1.TabIndex = 6;
			groupBox1.TabStop = false;
			groupBox1.Text = "Pluralization";
			// 
			// flexingPanel
			// 
			this.flexingPanel.Controls.Add(this.rdBeSmart);
			this.flexingPanel.Controls.Add(this.rdPluralize);
			this.flexingPanel.Controls.Add(this.rdSingularize);
			this.flexingPanel.Controls.Add(this.rdLeaveItAlone);
			this.flexingPanel.Dock = System.Windows.Forms.DockStyle.Fill;
			this.flexingPanel.Location = new System.Drawing.Point(3, 16);
			this.flexingPanel.Name = "flexingPanel";
			this.flexingPanel.Padding = new System.Windows.Forms.Padding(20, 0, 0, 0);
			this.flexingPanel.Size = new System.Drawing.Size(374, 28);
			this.flexingPanel.TabIndex = 0;
			// 
			// rdBeSmart
			// 
			this.rdBeSmart.AutoSize = true;
			this.rdBeSmart.Checked = true;
			this.rdBeSmart.Location = new System.Drawing.Point(23, 5);
			this.rdBeSmart.Margin = new System.Windows.Forms.Padding(3, 5, 3, 3);
			this.rdBeSmart.Name = "rdBeSmart";
			this.rdBeSmart.Size = new System.Drawing.Size(69, 17);
			this.rdBeSmart.TabIndex = 2;
			this.rdBeSmart.TabStop = true;
			this.rdBeSmart.Text = "Be smart!";
			this.rdBeSmart.UseVisualStyleBackColor = true;
			// 
			// rdPluralize
			// 
			this.rdPluralize.Anchor = System.Windows.Forms.AnchorStyles.Left;
			this.rdPluralize.AutoSize = true;
			this.rdPluralize.Location = new System.Drawing.Point(98, 5);
			this.rdPluralize.Margin = new System.Windows.Forms.Padding(3, 5, 3, 3);
			this.rdPluralize.Name = "rdPluralize";
			this.rdPluralize.Size = new System.Drawing.Size(64, 17);
			this.rdPluralize.TabIndex = 0;
			this.rdPluralize.Text = "Pluralize";
			this.rdPluralize.UseVisualStyleBackColor = true;
			// 
			// rdSingularize
			// 
			this.rdSingularize.AutoSize = true;
			this.rdSingularize.Location = new System.Drawing.Point(168, 5);
			this.rdSingularize.Margin = new System.Windows.Forms.Padding(3, 5, 3, 3);
			this.rdSingularize.Name = "rdSingularize";
			this.rdSingularize.Size = new System.Drawing.Size(76, 17);
			this.rdSingularize.TabIndex = 1;
			this.rdSingularize.Text = "Singularize";
			this.rdSingularize.UseVisualStyleBackColor = true;
			// 
			// rdLeaveItAlone
			// 
			this.rdLeaveItAlone.AutoSize = true;
			this.rdLeaveItAlone.Location = new System.Drawing.Point(250, 5);
			this.rdLeaveItAlone.Margin = new System.Windows.Forms.Padding(3, 5, 3, 3);
			this.rdLeaveItAlone.Name = "rdLeaveItAlone";
			this.rdLeaveItAlone.Size = new System.Drawing.Size(92, 17);
			this.rdLeaveItAlone.TabIndex = 2;
			this.rdLeaveItAlone.Text = "Leave it alone";
			this.rdLeaveItAlone.UseVisualStyleBackColor = true;
			// 
			// gpRegex
			// 
			gpRegex.Controls.Add(tableLayoutPanel4);
			gpRegex.Dock = System.Windows.Forms.DockStyle.Fill;
			gpRegex.Location = new System.Drawing.Point(389, 56);
			gpRegex.Name = "gpRegex";
			gpRegex.Size = new System.Drawing.Size(353, 138);
			gpRegex.TabIndex = 2;
			gpRegex.TabStop = false;
			gpRegex.Text = "Apply a Regular Expression";
			// 
			// tableLayoutPanel4
			// 
			tableLayoutPanel4.ColumnCount = 2;
			tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 21.23288F));
			tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 78.76712F));
			tableLayoutPanel4.Controls.Add(this.cbRegex, 0, 0);
			tableLayoutPanel4.Controls.Add(this.label7, 0, 1);
			tableLayoutPanel4.Controls.Add(this.label8, 0, 2);
			tableLayoutPanel4.Controls.Add(this.tbRegexMatch, 1, 1);
			tableLayoutPanel4.Controls.Add(this.tbRegexReplace, 1, 2);
			tableLayoutPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
			tableLayoutPanel4.Location = new System.Drawing.Point(3, 16);
			tableLayoutPanel4.Name = "tableLayoutPanel4";
			tableLayoutPanel4.RowCount = 3;
			tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 30F));
			tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 35F));
			tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 35F));
			tableLayoutPanel4.Size = new System.Drawing.Size(347, 119);
			tableLayoutPanel4.TabIndex = 0;
			// 
			// cbRegex
			// 
			this.cbRegex.Anchor = System.Windows.Forms.AnchorStyles.Left;
			tableLayoutPanel4.SetColumnSpan(this.cbRegex, 2);
			this.cbRegex.DisplayMember = "Label";
			this.cbRegex.FormattingEnabled = true;
			this.cbRegex.Location = new System.Drawing.Point(20, 7);
			this.cbRegex.Margin = new System.Windows.Forms.Padding(20, 3, 3, 3);
			this.cbRegex.Name = "cbRegex";
			this.cbRegex.Size = new System.Drawing.Size(187, 21);
			this.cbRegex.TabIndex = 0;
			this.cbRegex.ValueMember = "Value";
			// 
			// label7
			// 
			this.label7.Anchor = System.Windows.Forms.AnchorStyles.Right;
			this.label7.AutoSize = true;
			this.label7.Location = new System.Drawing.Point(30, 49);
			this.label7.Name = "label7";
			this.label7.Size = new System.Drawing.Size(40, 13);
			this.label7.TabIndex = 1;
			this.label7.Text = "Match:";
			// 
			// label8
			// 
			this.label8.Anchor = System.Windows.Forms.AnchorStyles.Right;
			this.label8.AutoSize = true;
			this.label8.Location = new System.Drawing.Point(20, 91);
			this.label8.Name = "label8";
			this.label8.Size = new System.Drawing.Size(50, 13);
			this.label8.TabIndex = 1;
			this.label8.Text = "Replace:";
			// 
			// tbRegexMatch
			// 
			this.tbRegexMatch.Anchor = System.Windows.Forms.AnchorStyles.Left;
			this.tbRegexMatch.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bsContextOptions, "RegexMatch", true));
			this.tbRegexMatch.Location = new System.Drawing.Point(76, 45);
			this.tbRegexMatch.Name = "tbRegexMatch";
			this.tbRegexMatch.Size = new System.Drawing.Size(268, 20);
			this.tbRegexMatch.TabIndex = 2;
			// 
			// bsContextOptions
			// 
			this.bsContextOptions.DataSource = typeof(EdmxTypist.Options.ContextOptions);
			// 
			// tbRegexReplace
			// 
			this.tbRegexReplace.Anchor = System.Windows.Forms.AnchorStyles.Left;
			this.tbRegexReplace.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bsContextOptions, "RegexReplace", true));
			this.tbRegexReplace.Location = new System.Drawing.Point(76, 87);
			this.tbRegexReplace.Name = "tbRegexReplace";
			this.tbRegexReplace.Size = new System.Drawing.Size(268, 20);
			this.tbRegexReplace.TabIndex = 2;
			// 
			// gbCasing
			// 
			gbCasing.Controls.Add(flowLayoutPanel1);
			gbCasing.Dock = System.Windows.Forms.DockStyle.Fill;
			gbCasing.Location = new System.Drawing.Point(389, 3);
			gbCasing.Name = "gbCasing";
			gbCasing.Size = new System.Drawing.Size(353, 47);
			gbCasing.TabIndex = 0;
			gbCasing.TabStop = false;
			gbCasing.Text = "Casing";
			// 
			// flowLayoutPanel1
			// 
			flowLayoutPanel1.Controls.Add(this.rdCamelCase);
			flowLayoutPanel1.Controls.Add(this.rdLowerCamelCase);
			flowLayoutPanel1.Controls.Add(this.rdLowerUnderscore);
			flowLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
			flowLayoutPanel1.Location = new System.Drawing.Point(3, 16);
			flowLayoutPanel1.Name = "flowLayoutPanel1";
			flowLayoutPanel1.Size = new System.Drawing.Size(347, 28);
			flowLayoutPanel1.TabIndex = 0;
			// 
			// rdCamelCase
			// 
			this.rdCamelCase.Anchor = System.Windows.Forms.AnchorStyles.Left;
			this.rdCamelCase.AutoSize = true;
			this.rdCamelCase.Checked = true;
			this.rdCamelCase.Location = new System.Drawing.Point(20, 5);
			this.rdCamelCase.Margin = new System.Windows.Forms.Padding(20, 5, 3, 3);
			this.rdCamelCase.Name = "rdCamelCase";
			this.rdCamelCase.Size = new System.Drawing.Size(78, 17);
			this.rdCamelCase.TabIndex = 0;
			this.rdCamelCase.TabStop = true;
			this.rdCamelCase.Text = "CamelCase";
			this.rdCamelCase.UseVisualStyleBackColor = true;
			// 
			// rdLowerCamelCase
			// 
			this.rdLowerCamelCase.AutoSize = true;
			this.rdLowerCamelCase.Location = new System.Drawing.Point(104, 5);
			this.rdLowerCamelCase.Margin = new System.Windows.Forms.Padding(3, 5, 3, 3);
			this.rdLowerCamelCase.Name = "rdLowerCamelCase";
			this.rdLowerCamelCase.Size = new System.Drawing.Size(103, 17);
			this.rdLowerCamelCase.TabIndex = 1;
			this.rdLowerCamelCase.Text = "lowerCamelCase";
			this.rdLowerCamelCase.UseVisualStyleBackColor = true;
			// 
			// rdLowerUnderscore
			// 
			this.rdLowerUnderscore.AutoSize = true;
			this.rdLowerUnderscore.Location = new System.Drawing.Point(213, 5);
			this.rdLowerUnderscore.Margin = new System.Windows.Forms.Padding(3, 5, 3, 3);
			this.rdLowerUnderscore.Name = "rdLowerUnderscore";
			this.rdLowerUnderscore.Size = new System.Drawing.Size(114, 17);
			this.rdLowerUnderscore.TabIndex = 2;
			this.rdLowerUnderscore.Text = "lower_underscores";
			this.rdLowerUnderscore.UseVisualStyleBackColor = true;
			// 
			// groupBox6
			// 
			groupBox6.Controls.Add(tableLayoutPanel9);
			groupBox6.Dock = System.Windows.Forms.DockStyle.Fill;
			groupBox6.Location = new System.Drawing.Point(3, 56);
			groupBox6.Name = "groupBox6";
			groupBox6.Size = new System.Drawing.Size(380, 138);
			groupBox6.TabIndex = 5;
			groupBox6.TabStop = false;
			groupBox6.Text = "Prefix and Suffix";
			// 
			// tableLayoutPanel9
			// 
			tableLayoutPanel9.ColumnCount = 3;
			tableLayoutPanel9.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 37.30769F));
			tableLayoutPanel9.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 62.69231F));
			tableLayoutPanel9.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 113F));
			tableLayoutPanel9.Controls.Add(label10, 2, 1);
			tableLayoutPanel9.Controls.Add(label9, 2, 0);
			tableLayoutPanel9.Controls.Add(this.tbAddSuffix, 1, 3);
			tableLayoutPanel9.Controls.Add(this.tbAddPrefix, 1, 2);
			tableLayoutPanel9.Controls.Add(this.tbRemoveSuffix, 1, 1);
			tableLayoutPanel9.Controls.Add(this.tbRemovePrefix, 1, 0);
			tableLayoutPanel9.Controls.Add(label5, 0, 3);
			tableLayoutPanel9.Controls.Add(label4, 0, 2);
			tableLayoutPanel9.Controls.Add(label3, 0, 1);
			tableLayoutPanel9.Controls.Add(lbFieldLabel, 0, 0);
			tableLayoutPanel9.Dock = System.Windows.Forms.DockStyle.Fill;
			tableLayoutPanel9.Location = new System.Drawing.Point(3, 16);
			tableLayoutPanel9.Name = "tableLayoutPanel9";
			tableLayoutPanel9.RowCount = 4;
			tableLayoutPanel9.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
			tableLayoutPanel9.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
			tableLayoutPanel9.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
			tableLayoutPanel9.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
			tableLayoutPanel9.Size = new System.Drawing.Size(374, 119);
			tableLayoutPanel9.TabIndex = 6;
			// 
			// label10
			// 
			label10.Anchor = System.Windows.Forms.AnchorStyles.Left;
			label10.Location = new System.Drawing.Point(263, 37);
			label10.Name = "label10";
			label10.Size = new System.Drawing.Size(107, 13);
			label10.TabIndex = 5;
			label10.Text = "Separated by spaces";
			// 
			// label9
			// 
			label9.Anchor = System.Windows.Forms.AnchorStyles.Left;
			label9.Location = new System.Drawing.Point(263, 8);
			label9.Name = "label9";
			label9.Size = new System.Drawing.Size(107, 13);
			label9.TabIndex = 6;
			label9.Text = "Separated by spaces";
			// 
			// tbAddSuffix
			// 
			this.tbAddSuffix.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
			this.tbAddSuffix.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bsContextOptions, "AddSuffix", true));
			this.tbAddSuffix.Location = new System.Drawing.Point(100, 93);
			this.tbAddSuffix.Name = "tbAddSuffix";
			this.tbAddSuffix.Size = new System.Drawing.Size(157, 20);
			this.tbAddSuffix.TabIndex = 11;
			// 
			// tbAddPrefix
			// 
			this.tbAddPrefix.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
			this.tbAddPrefix.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bsContextOptions, "AddPrefix", true));
			this.tbAddPrefix.Location = new System.Drawing.Point(100, 62);
			this.tbAddPrefix.Name = "tbAddPrefix";
			this.tbAddPrefix.Size = new System.Drawing.Size(157, 20);
			this.tbAddPrefix.TabIndex = 13;
			// 
			// tbRemoveSuffix
			// 
			this.tbRemoveSuffix.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
			this.tbRemoveSuffix.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bsContextOptions, "RemoveSuffixes", true));
			this.tbRemoveSuffix.Location = new System.Drawing.Point(100, 33);
			this.tbRemoveSuffix.Name = "tbRemoveSuffix";
			this.tbRemoveSuffix.Size = new System.Drawing.Size(157, 20);
			this.tbRemoveSuffix.TabIndex = 12;
			// 
			// tbRemovePrefix
			// 
			this.tbRemovePrefix.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
			this.tbRemovePrefix.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bsContextOptions, "RemovePrefixes", true));
			this.tbRemovePrefix.Location = new System.Drawing.Point(100, 4);
			this.tbRemovePrefix.Name = "tbRemovePrefix";
			this.tbRemovePrefix.Size = new System.Drawing.Size(157, 20);
			this.tbRemovePrefix.TabIndex = 10;
			// 
			// label5
			// 
			label5.Anchor = System.Windows.Forms.AnchorStyles.Right;
			label5.AutoSize = true;
			label5.Location = new System.Drawing.Point(38, 96);
			label5.Name = "label5";
			label5.Size = new System.Drawing.Size(56, 13);
			label5.TabIndex = 4;
			label5.Text = "Add suffix:";
			// 
			// label4
			// 
			label4.Anchor = System.Windows.Forms.AnchorStyles.Right;
			label4.AutoSize = true;
			label4.Location = new System.Drawing.Point(37, 66);
			label4.Name = "label4";
			label4.Size = new System.Drawing.Size(57, 13);
			label4.TabIndex = 9;
			label4.Text = "Add prefix:";
			// 
			// label3
			// 
			label3.Anchor = System.Windows.Forms.AnchorStyles.Right;
			label3.Location = new System.Drawing.Point(3, 30);
			label3.Name = "label3";
			label3.Size = new System.Drawing.Size(91, 26);
			label3.TabIndex = 8;
			label3.Text = "Remove Suffixes:";
			label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// lbFieldLabel
			// 
			lbFieldLabel.Anchor = System.Windows.Forms.AnchorStyles.Right;
			lbFieldLabel.Location = new System.Drawing.Point(3, 1);
			lbFieldLabel.Name = "lbFieldLabel";
			lbFieldLabel.Size = new System.Drawing.Size(91, 26);
			lbFieldLabel.TabIndex = 7;
			lbFieldLabel.Text = "Remove Prefixes:";
			lbFieldLabel.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// lbExample
			// 
			lbExample.Anchor = System.Windows.Forms.AnchorStyles.Right;
			lbExample.AutoSize = true;
			lbExample.Location = new System.Drawing.Point(12, 7);
			lbExample.Name = "lbExample";
			lbExample.Size = new System.Drawing.Size(50, 13);
			lbExample.TabIndex = 1;
			lbExample.Text = "Example:";
			// 
			// lbResultHeading
			// 
			lbResultHeading.Anchor = System.Windows.Forms.AnchorStyles.Right;
			lbResultHeading.AutoSize = true;
			lbResultHeading.Location = new System.Drawing.Point(308, 7);
			lbResultHeading.Name = "lbResultHeading";
			lbResultHeading.Size = new System.Drawing.Size(40, 13);
			lbResultHeading.TabIndex = 6;
			lbResultHeading.Text = "Result:";
			// 
			// tableLayoutPanel3
			// 
			this.tableLayoutPanel3.ColumnCount = 2;
			this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 51.91122F));
			this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 48.08878F));
			this.tableLayoutPanel3.Controls.Add(this.groupBox5, 0, 2);
			this.tableLayoutPanel3.Controls.Add(groupBox1, 0, 0);
			this.tableLayoutPanel3.Controls.Add(gpRegex, 1, 1);
			this.tableLayoutPanel3.Controls.Add(gbCasing, 1, 0);
			this.tableLayoutPanel3.Controls.Add(groupBox6, 0, 1);
			this.tableLayoutPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
			this.tableLayoutPanel3.Location = new System.Drawing.Point(0, 0);
			this.tableLayoutPanel3.Name = "tableLayoutPanel3";
			this.tableLayoutPanel3.RowCount = 3;
			this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 53F));
			this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 144F));
			this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 50F));
			this.tableLayoutPanel3.Size = new System.Drawing.Size(745, 250);
			this.tableLayoutPanel3.TabIndex = 2;
			// 
			// groupBox5
			// 
			this.tableLayoutPanel3.SetColumnSpan(this.groupBox5, 2);
			this.groupBox5.Controls.Add(this.tableLayoutPanel2);
			this.groupBox5.Dock = System.Windows.Forms.DockStyle.Fill;
			this.groupBox5.Location = new System.Drawing.Point(3, 200);
			this.groupBox5.Name = "groupBox5";
			this.groupBox5.Size = new System.Drawing.Size(739, 47);
			this.groupBox5.TabIndex = 11;
			this.groupBox5.TabStop = false;
			this.groupBox5.Text = "Preview";
			// 
			// tableLayoutPanel2
			// 
			this.tableLayoutPanel2.ColumnCount = 4;
			this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 9.003601F));
			this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 29.29172F));
			this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 9.963985F));
			this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 51.98079F));
			this.tableLayoutPanel2.Controls.Add(this.lbFormattedName, 3, 0);
			this.tableLayoutPanel2.Controls.Add(this.ddExamples, 1, 0);
			this.tableLayoutPanel2.Controls.Add(lbExample, 0, 0);
			this.tableLayoutPanel2.Controls.Add(lbResultHeading, 2, 0);
			this.tableLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
			this.tableLayoutPanel2.Location = new System.Drawing.Point(3, 16);
			this.tableLayoutPanel2.Name = "tableLayoutPanel2";
			this.tableLayoutPanel2.RowCount = 1;
			this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle());
			this.tableLayoutPanel2.Size = new System.Drawing.Size(733, 28);
			this.tableLayoutPanel2.TabIndex = 13;
			// 
			// lbFormattedName
			// 
			this.lbFormattedName.Anchor = System.Windows.Forms.AnchorStyles.Left;
			this.lbFormattedName.AutoSize = true;
			this.lbFormattedName.Location = new System.Drawing.Point(354, 7);
			this.lbFormattedName.Name = "lbFormattedName";
			this.lbFormattedName.Size = new System.Drawing.Size(108, 13);
			this.lbFormattedName.TabIndex = 4;
			this.lbFormattedName.Text = "Transformed example";
			// 
			// ddExamples
			// 
			this.ddExamples.Anchor = System.Windows.Forms.AnchorStyles.Left;
			this.ddExamples.FormattingEnabled = true;
			this.ddExamples.Location = new System.Drawing.Point(68, 3);
			this.ddExamples.Name = "ddExamples";
			this.ddExamples.Size = new System.Drawing.Size(198, 21);
			this.ddExamples.TabIndex = 5;
			this.ddExamples.TextUpdate += new System.EventHandler(this.UpdateResult);
			// 
			// EdmxConfigGroup
			// 
			this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.AutoSize = true;
			this.Controls.Add(this.tableLayoutPanel3);
			this.Name = "EdmxConfigGroup";
			this.Size = new System.Drawing.Size(745, 250);
			groupBox1.ResumeLayout(false);
			this.flexingPanel.ResumeLayout(false);
			this.flexingPanel.PerformLayout();
			gpRegex.ResumeLayout(false);
			tableLayoutPanel4.ResumeLayout(false);
			tableLayoutPanel4.PerformLayout();
			((System.ComponentModel.ISupportInitialize)(this.bsContextOptions)).EndInit();
			gbCasing.ResumeLayout(false);
			flowLayoutPanel1.ResumeLayout(false);
			flowLayoutPanel1.PerformLayout();
			groupBox6.ResumeLayout(false);
			tableLayoutPanel9.ResumeLayout(false);
			tableLayoutPanel9.PerformLayout();
			this.tableLayoutPanel3.ResumeLayout(false);
			this.groupBox5.ResumeLayout(false);
			this.tableLayoutPanel2.ResumeLayout(false);
			this.tableLayoutPanel2.PerformLayout();
			this.ResumeLayout(false);

		}
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 protected override void InitializeComponent()
 {
     _buttomControlLayoutpanel = new System.Windows.Forms.FlowLayoutPanel();
     _addButton    = new System.Windows.Forms.Button();
     _cancelButton = new System.Windows.Forms.Button();
     _divider      = new DialogDivider();
     _userInputTableLayoutPanel   = new System.Windows.Forms.TableLayoutPanel();
     _dateTimePicker              = new System.Windows.Forms.DateTimePicker();
     _requestedLocationTextBox    = new System.Windows.Forms.TextBox();
     _signatureAppliedByDateLabel = new System.Windows.Forms.Label();
     _requestSignerNameLabel      = new System.Windows.Forms.Label();
     _requestLocationLabel        = new System.Windows.Forms.Label();
     _requestedSignerNameTextBox  = new System.Windows.Forms.TextBox();
     _intentLabel                = new System.Windows.Forms.Label();
     _intentComboBox             = new System.Windows.Forms.ComboBox();
     _mainDialogTableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
     _buttomControlLayoutpanel.SuspendLayout();
     _userInputTableLayoutPanel.SuspendLayout();
     _mainDialogTableLayoutPanel.SuspendLayout();
     SuspendLayout();
     //
     // _buttomControlLayoutpanel
     //
     _buttomControlLayoutpanel.Anchor       = System.Windows.Forms.AnchorStyles.Right;
     _buttomControlLayoutpanel.AutoSize     = true;
     _buttomControlLayoutpanel.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     _buttomControlLayoutpanel.Controls.Add(_cancelButton);
     _buttomControlLayoutpanel.Controls.Add(_addButton);
     _buttomControlLayoutpanel.FlowDirection = System.Windows.Forms.FlowDirection.RightToLeft;
     _buttomControlLayoutpanel.Location      = new System.Drawing.Point(374, 246);
     _buttomControlLayoutpanel.Margin        = new System.Windows.Forms.Padding(10, 2, 0, 0);
     _buttomControlLayoutpanel.Name          = "_buttomControlLayoutpanel";
     _buttomControlLayoutpanel.Size          = new System.Drawing.Size(56, 24);
     //
     // _addButton
     //
     _addButton.AutoSize     = true;
     _addButton.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     _addButton.Name         = "_addButton";
     _addButton.Padding      = new System.Windows.Forms.Padding(20, 0, 20, 0);
     _addButton.Size         = new System.Drawing.Size(65, 6);
     _addButton.TabIndex     = 4;
     _addButton.Click       += new System.EventHandler(_addButton_Click);
     //
     // _cancelButton
     //
     _cancelButton.AutoSize     = true;
     _cancelButton.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     _cancelButton.Name         = "_cancelButton";
     _cancelButton.Padding      = new System.Windows.Forms.Padding(20, 0, 20, 0);
     _cancelButton.Size         = new System.Drawing.Size(65, 6);
     _cancelButton.TabIndex     = 5;
     //
     // _divider
     //
     _divider.Anchor = System.Windows.Forms.AnchorStyles.Left;
     _divider.Margin = new System.Windows.Forms.Padding(0, 20, 0, 5);
     _divider.Name   = "_divider";
     //
     // _userInputTableLayoutPanel
     //
     _userInputTableLayoutPanel.AutoSize     = true;
     _userInputTableLayoutPanel.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     _userInputTableLayoutPanel.ColumnCount  = 1;
     _userInputTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
     _userInputTableLayoutPanel.Controls.Add(_dateTimePicker, 0, 7);
     _userInputTableLayoutPanel.Controls.Add(_requestedLocationTextBox, 0, 5);
     _userInputTableLayoutPanel.Controls.Add(_signatureAppliedByDateLabel, 0, 6);
     _userInputTableLayoutPanel.Controls.Add(_requestSignerNameLabel, 0, 0);
     _userInputTableLayoutPanel.Controls.Add(_requestLocationLabel, 0, 4);
     _userInputTableLayoutPanel.Controls.Add(_requestedSignerNameTextBox, 0, 1);
     _userInputTableLayoutPanel.Controls.Add(_intentLabel, 0, 2);
     _userInputTableLayoutPanel.Controls.Add(_intentComboBox, 0, 3);
     _userInputTableLayoutPanel.Location = new System.Drawing.Point(10, 23);
     _userInputTableLayoutPanel.Margin   = new System.Windows.Forms.Padding(0);
     _userInputTableLayoutPanel.Name     = "_userInputTableLayoutPanel";
     _userInputTableLayoutPanel.RowCount = 8;
     _userInputTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle());
     _userInputTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle());
     _userInputTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle());
     _userInputTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle());
     _userInputTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle());
     _userInputTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle());
     _userInputTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle());
     _userInputTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle());
     _userInputTableLayoutPanel.Size = new System.Drawing.Size(407, 197);
     //
     // _dateTimePicker
     //
     _dateTimePicker.Anchor   = System.Windows.Forms.AnchorStyles.Left;
     _dateTimePicker.Location = new System.Drawing.Point(3, 174);
     _dateTimePicker.Name     = "_dateTimePicker";
     _dateTimePicker.Size     = new System.Drawing.Size(245, 20);
     _dateTimePicker.TabIndex = 3;
     // This mirrors the control if and only if the RightToLeft property (which is
     // retrieved from the parent control) is also set to Yes.
     _dateTimePicker.RightToLeftLayout = true;
     //
     // _requestedLocationTextBox
     //
     _requestedLocationTextBox.Anchor    = System.Windows.Forms.AnchorStyles.Left;
     _requestedLocationTextBox.Location  = new System.Drawing.Point(3, 125);
     _requestedLocationTextBox.MaxLength = _maxLocationLength;
     _requestedLocationTextBox.Name      = "_requestedLocationTextBox";
     _requestedLocationTextBox.Size      = new System.Drawing.Size(401, 20);
     _requestedLocationTextBox.TabIndex  = 2;
     //
     // _signatureAppliedByDateLabel
     //
     _signatureAppliedByDateLabel.Anchor   = System.Windows.Forms.AnchorStyles.Left;
     _signatureAppliedByDateLabel.AutoSize = true;
     _signatureAppliedByDateLabel.Location = new System.Drawing.Point(3, 158);
     _signatureAppliedByDateLabel.Margin   = new System.Windows.Forms.Padding(3, 10, 3, 0);
     _signatureAppliedByDateLabel.Name     = "_signatureAppliedByDateLabel";
     _signatureAppliedByDateLabel.Size     = new System.Drawing.Size(17, 13);
     //
     // _requestSignerNameLabel
     //
     _requestSignerNameLabel.Anchor   = System.Windows.Forms.AnchorStyles.Left;
     _requestSignerNameLabel.AutoSize = true;
     _requestSignerNameLabel.Location = new System.Drawing.Point(3, 10);
     _requestSignerNameLabel.Margin   = new System.Windows.Forms.Padding(3, 10, 3, 0);
     _requestSignerNameLabel.Name     = "_requestSignerNameLabel";
     _requestSignerNameLabel.Size     = new System.Drawing.Size(17, 13);
     //
     // _requestLocationLabel
     //
     _requestLocationLabel.Anchor   = System.Windows.Forms.AnchorStyles.Left;
     _requestLocationLabel.AutoSize = true;
     _requestLocationLabel.Location = new System.Drawing.Point(3, 109);
     _requestLocationLabel.Margin   = new System.Windows.Forms.Padding(3, 10, 3, 0);
     _requestLocationLabel.Name     = "_requestLocationLabel";
     _requestLocationLabel.Size     = new System.Drawing.Size(17, 13);
     //
     // _requestedSignerNameTextBox
     //
     _requestedSignerNameTextBox.Anchor    = System.Windows.Forms.AnchorStyles.Left;
     _requestedSignerNameTextBox.Location  = new System.Drawing.Point(3, 26);
     _requestedSignerNameTextBox.MaxLength = _maxNameLength;
     _requestedSignerNameTextBox.Name      = "_requestedSignerNameTextBox";
     _requestedSignerNameTextBox.Size      = new System.Drawing.Size(401, 20);
     _requestedSignerNameTextBox.TabIndex  = 0;
     //
     // _intentLabel
     //
     _intentLabel.Anchor   = System.Windows.Forms.AnchorStyles.Left;
     _intentLabel.AutoSize = true;
     _intentLabel.Location = new System.Drawing.Point(3, 59);
     _intentLabel.Margin   = new System.Windows.Forms.Padding(3, 10, 3, 0);
     _intentLabel.Name     = "_intentLabel";
     _intentLabel.Size     = new System.Drawing.Size(17, 13);
     //
     // _intentComboBox
     //
     _intentComboBox.Anchor            = System.Windows.Forms.AnchorStyles.Left;
     _intentComboBox.FormattingEnabled = true;
     _intentComboBox.Location          = new System.Drawing.Point(3, 75);
     _intentComboBox.MaxLength         = _maxIntentLength;
     _intentComboBox.Name     = "_intentComboBox";
     _intentComboBox.Size     = new System.Drawing.Size(401, 21);
     _intentComboBox.TabIndex = 1;
     //
     // _mainDialogTableLayoutPanel
     //
     _mainDialogTableLayoutPanel.AutoSize     = true;
     _mainDialogTableLayoutPanel.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     _mainDialogTableLayoutPanel.ColumnCount  = 1;
     _mainDialogTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
     _mainDialogTableLayoutPanel.Controls.Add(_userInputTableLayoutPanel, 0, 0);
     _mainDialogTableLayoutPanel.Controls.Add(_divider, 0, 1);
     _mainDialogTableLayoutPanel.Controls.Add(_buttomControlLayoutpanel, 0, 2);
     _mainDialogTableLayoutPanel.Location = new System.Drawing.Point(9, 9);
     _mainDialogTableLayoutPanel.Margin   = new System.Windows.Forms.Padding(10);
     _mainDialogTableLayoutPanel.Name     = "_mainDialogTableLayoutPanel";
     _mainDialogTableLayoutPanel.RowCount = 2;
     _mainDialogTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle());
     _mainDialogTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle());
     _mainDialogTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle());
     _mainDialogTableLayoutPanel.Size = new System.Drawing.Size(433, 273);
     //
     // RequestedSignatureDialog
     //
     AcceptButton        = _addButton;
     AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     AutoSize            = true;
     AutoSizeMode        = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     ClientSize          = new System.Drawing.Size(451, 282);
     Controls.Add(_mainDialogTableLayoutPanel);
     FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     MaximizeBox     = false;
     MinimizeBox     = false;
     CancelButton    = _cancelButton;
     Name            = "RequestedSignatureDialog";
     StartPosition   = System.Windows.Forms.FormStartPosition.CenterParent;
     _buttomControlLayoutpanel.ResumeLayout(false);
     _buttomControlLayoutpanel.PerformLayout();
     _userInputTableLayoutPanel.ResumeLayout(false);
     _userInputTableLayoutPanel.PerformLayout();
     _mainDialogTableLayoutPanel.ResumeLayout(false);
     _mainDialogTableLayoutPanel.PerformLayout();
     ResumeLayout(false);
     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.TableLayoutPanel tableLayoutPanel;
            System.Windows.Forms.Label labelServerAddress;
            System.Windows.Forms.FlowLayoutPanel flowLayoutPanel;
            System.Windows.Forms.Label labelChatName;
            this.buttonConnect = new System.Windows.Forms.Button();
            this.buttonExit = new System.Windows.Forms.Button();
            this.textBoxServerAddress = new System.Windows.Forms.TextBox();
            this.textBoxChatName = new System.Windows.Forms.TextBox();
            tableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
            labelServerAddress = new System.Windows.Forms.Label();
            flowLayoutPanel = new System.Windows.Forms.FlowLayoutPanel();
            labelChatName = new System.Windows.Forms.Label();
            tableLayoutPanel.SuspendLayout();
            flowLayoutPanel.SuspendLayout();
            this.SuspendLayout();
            // 
            // tableLayoutPanel
            // 
            tableLayoutPanel.ColumnCount = 2;
            tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
            tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
            tableLayoutPanel.Controls.Add(labelServerAddress, 0, 0);
            tableLayoutPanel.Controls.Add(flowLayoutPanel, 0, 2);
            tableLayoutPanel.Controls.Add(this.textBoxServerAddress, 1, 0);
            tableLayoutPanel.Controls.Add(labelChatName, 0, 1);
            tableLayoutPanel.Controls.Add(this.textBoxChatName, 1, 1);
            tableLayoutPanel.Dock = System.Windows.Forms.DockStyle.Fill;
            tableLayoutPanel.Location = new System.Drawing.Point(5, 5);
            tableLayoutPanel.Margin = new System.Windows.Forms.Padding(0);
            tableLayoutPanel.Name = "tableLayoutPanel";
            tableLayoutPanel.RowCount = 3;
            tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
            tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
            tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle());
            tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
            tableLayoutPanel.Size = new System.Drawing.Size(309, 102);
            tableLayoutPanel.TabIndex = 0;
            // 
            // labelServerAddress
            // 
            labelServerAddress.AutoSize = true;
            labelServerAddress.Dock = System.Windows.Forms.DockStyle.Fill;
            labelServerAddress.Location = new System.Drawing.Point(3, 0);
            labelServerAddress.Name = "labelServerAddress";
            labelServerAddress.Size = new System.Drawing.Size(96, 31);
            labelServerAddress.TabIndex = 0;
            labelServerAddress.Text = "Server Address";
            labelServerAddress.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // flowLayoutPanel
            // 
            flowLayoutPanel.AutoSize = true;
            flowLayoutPanel.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            tableLayoutPanel.SetColumnSpan(flowLayoutPanel, 2);
            flowLayoutPanel.Controls.Add(this.buttonConnect);
            flowLayoutPanel.Controls.Add(this.buttonExit);
            flowLayoutPanel.Dock = System.Windows.Forms.DockStyle.Right;
            flowLayoutPanel.Location = new System.Drawing.Point(175, 62);
            flowLayoutPanel.Margin = new System.Windows.Forms.Padding(0);
            flowLayoutPanel.Name = "flowLayoutPanel";
            flowLayoutPanel.Size = new System.Drawing.Size(134, 40);
            flowLayoutPanel.TabIndex = 1;
            // 
            // buttonConnect
            // 
            this.buttonConnect.AutoSize = true;
            this.buttonConnect.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            this.buttonConnect.Location = new System.Drawing.Point(3, 3);
            this.buttonConnect.Name = "buttonConnect";
            this.buttonConnect.Padding = new System.Windows.Forms.Padding(5);
            this.buttonConnect.Size = new System.Drawing.Size(74, 33);
            this.buttonConnect.TabIndex = 1;
            this.buttonConnect.Text = "Connect";
            this.buttonConnect.UseVisualStyleBackColor = true;
            this.buttonConnect.Click += new System.EventHandler(this.buttonConnect_Click);
            // 
            // buttonExit
            // 
            this.buttonExit.AutoSize = true;
            this.buttonExit.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            this.buttonExit.DialogResult = System.Windows.Forms.DialogResult.Cancel;
            this.buttonExit.Location = new System.Drawing.Point(83, 3);
            this.buttonExit.Name = "buttonExit";
            this.buttonExit.Padding = new System.Windows.Forms.Padding(5);
            this.buttonExit.Size = new System.Drawing.Size(48, 33);
            this.buttonExit.TabIndex = 2;
            this.buttonExit.Text = "Exit";
            this.buttonExit.UseVisualStyleBackColor = true;
            this.buttonExit.Click += new System.EventHandler(this.buttonExit_Click);
            // 
            // textBoxServerAddress
            // 
            this.textBoxServerAddress.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
            this.textBoxServerAddress.Font = new System.Drawing.Font("Verdana", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
            this.textBoxServerAddress.Location = new System.Drawing.Point(105, 3);
            this.textBoxServerAddress.Name = "textBoxServerAddress";
            this.textBoxServerAddress.Size = new System.Drawing.Size(201, 26);
            this.textBoxServerAddress.TabIndex = 2;
            // 
            // labelChatName
            // 
            labelChatName.AutoSize = true;
            labelChatName.Dock = System.Windows.Forms.DockStyle.Fill;
            labelChatName.Location = new System.Drawing.Point(3, 31);
            labelChatName.Name = "labelChatName";
            labelChatName.Size = new System.Drawing.Size(96, 31);
            labelChatName.TabIndex = 3;
            labelChatName.Text = "Name in chat";
            labelChatName.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // textBoxChatName
            // 
            this.textBoxChatName.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
            this.textBoxChatName.Font = new System.Drawing.Font("Verdana", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
            this.textBoxChatName.Location = new System.Drawing.Point(105, 34);
            this.textBoxChatName.Name = "textBoxChatName";
            this.textBoxChatName.Size = new System.Drawing.Size(201, 26);
            this.textBoxChatName.TabIndex = 4;
            // 
            // ConnectionDialog
            // 
            this.AcceptButton = this.buttonConnect;
            this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.CancelButton = this.buttonExit;
            this.ClientSize = new System.Drawing.Size(319, 112);
            this.Controls.Add(tableLayoutPanel);
            this.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.Name = "ConnectionDialog";
            this.Padding = new System.Windows.Forms.Padding(5);
            this.ShowIcon = false;
            this.ShowInTaskbar = false;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
            this.Text = "Connect...";
            tableLayoutPanel.ResumeLayout(false);
            tableLayoutPanel.PerformLayout();
            flowLayoutPanel.ResumeLayout(false);
            flowLayoutPanel.PerformLayout();
            this.ResumeLayout(false);

        }
Example #29
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.FlowLayoutPanel flowLayoutPanel1;
     this.btnOK                       = new System.Windows.Forms.Button();
     this.btnCancel                   = new System.Windows.Forms.Button();
     this.btnRegisterAll              = new System.Windows.Forms.Button();
     this.tableLayoutPanel1           = new System.Windows.Forms.TableLayoutPanel();
     this.RegHotkeysAtStartupLabel    = new System.Windows.Forms.Label();
     this.SwitchSystemProxyLabel      = new System.Windows.Forms.Label();
     this.SwitchProxyModeLabel        = new System.Windows.Forms.Label();
     this.SwitchAllowLanLabel         = new System.Windows.Forms.Label();
     this.ShowLogsLabel               = new System.Windows.Forms.Label();
     this.ServerMoveUpLabel           = new System.Windows.Forms.Label();
     this.ServerMoveDownLabel         = new System.Windows.Forms.Label();
     this.SwitchSystemProxyTextBox    = new System.Windows.Forms.TextBox();
     this.SwitchProxyModeTextBox      = new System.Windows.Forms.TextBox();
     this.SwitchAllowLanTextBox       = new System.Windows.Forms.TextBox();
     this.ShowLogsTextBox             = new System.Windows.Forms.TextBox();
     this.ServerMoveUpTextBox         = new System.Windows.Forms.TextBox();
     this.ServerMoveDownTextBox       = new System.Windows.Forms.TextBox();
     this.RegHotkeysAtStartupCheckBox = new System.Windows.Forms.CheckBox();
     flowLayoutPanel1                 = new System.Windows.Forms.FlowLayoutPanel();
     flowLayoutPanel1.SuspendLayout();
     this.tableLayoutPanel1.SuspendLayout();
     this.SuspendLayout();
     //
     // flowLayoutPanel1
     //
     this.tableLayoutPanel1.SetColumnSpan(flowLayoutPanel1, 2);
     flowLayoutPanel1.Controls.Add(this.btnOK);
     flowLayoutPanel1.Controls.Add(this.btnCancel);
     flowLayoutPanel1.Controls.Add(this.btnRegisterAll);
     flowLayoutPanel1.FlowDirection = System.Windows.Forms.FlowDirection.BottomUp;
     flowLayoutPanel1.Location      = new System.Drawing.Point(0, 274);
     flowLayoutPanel1.Margin        = new System.Windows.Forms.Padding(0);
     flowLayoutPanel1.Name          = "flowLayoutPanel1";
     flowLayoutPanel1.Padding       = new System.Windows.Forms.Padding(0, 0, 20, 0);
     flowLayoutPanel1.RightToLeft   = System.Windows.Forms.RightToLeft.Yes;
     flowLayoutPanel1.Size          = new System.Drawing.Size(594, 52);
     flowLayoutPanel1.TabIndex      = 6;
     //
     // btnOK
     //
     this.btnOK.DialogResult            = System.Windows.Forms.DialogResult.OK;
     this.btnOK.Location                = new System.Drawing.Point(416, 9);
     this.btnOK.Margin                  = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.btnOK.Name                    = "btnOK";
     this.btnOK.Size                    = new System.Drawing.Size(154, 39);
     this.btnOK.TabIndex                = 0;
     this.btnOK.Text                    = "OK";
     this.btnOK.UseVisualStyleBackColor = true;
     this.btnOK.Click                  += new System.EventHandler(this.OKButton_Click);
     //
     // btnCancel
     //
     this.btnCancel.DialogResult            = System.Windows.Forms.DialogResult.Cancel;
     this.btnCancel.Location                = new System.Drawing.Point(254, 9);
     this.btnCancel.Margin                  = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.btnCancel.Name                    = "btnCancel";
     this.btnCancel.Size                    = new System.Drawing.Size(154, 39);
     this.btnCancel.TabIndex                = 1;
     this.btnCancel.Text                    = "Cancel";
     this.btnCancel.UseVisualStyleBackColor = true;
     this.btnCancel.Click                  += new System.EventHandler(this.CancelButton_Click);
     //
     // btnRegisterAll
     //
     this.btnRegisterAll.DialogResult            = System.Windows.Forms.DialogResult.Cancel;
     this.btnRegisterAll.Location                = new System.Drawing.Point(92, 9);
     this.btnRegisterAll.Margin                  = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.btnRegisterAll.Name                    = "btnRegisterAll";
     this.btnRegisterAll.Size                    = new System.Drawing.Size(154, 39);
     this.btnRegisterAll.TabIndex                = 2;
     this.btnRegisterAll.Text                    = "Reg All";
     this.btnRegisterAll.UseVisualStyleBackColor = true;
     this.btnRegisterAll.Click                  += new System.EventHandler(this.RegisterAllButton_Click);
     //
     // tableLayoutPanel1
     //
     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(this.RegHotkeysAtStartupLabel, 0, 6);
     this.tableLayoutPanel1.Controls.Add(this.SwitchSystemProxyLabel, 0, 0);
     this.tableLayoutPanel1.Controls.Add(this.SwitchProxyModeLabel, 0, 1);
     this.tableLayoutPanel1.Controls.Add(this.SwitchAllowLanLabel, 0, 2);
     this.tableLayoutPanel1.Controls.Add(this.ShowLogsLabel, 0, 3);
     this.tableLayoutPanel1.Controls.Add(this.ServerMoveUpLabel, 0, 4);
     this.tableLayoutPanel1.Controls.Add(this.ServerMoveDownLabel, 0, 5);
     this.tableLayoutPanel1.Controls.Add(flowLayoutPanel1, 0, 7);
     this.tableLayoutPanel1.Controls.Add(this.SwitchSystemProxyTextBox, 1, 0);
     this.tableLayoutPanel1.Controls.Add(this.SwitchProxyModeTextBox, 1, 1);
     this.tableLayoutPanel1.Controls.Add(this.SwitchAllowLanTextBox, 1, 2);
     this.tableLayoutPanel1.Controls.Add(this.ShowLogsTextBox, 1, 3);
     this.tableLayoutPanel1.Controls.Add(this.ServerMoveUpTextBox, 1, 4);
     this.tableLayoutPanel1.Controls.Add(this.ServerMoveDownTextBox, 1, 5);
     this.tableLayoutPanel1.Controls.Add(this.RegHotkeysAtStartupCheckBox, 1, 6);
     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(4, 4, 4, 4);
     this.tableLayoutPanel1.Name     = "tableLayoutPanel1";
     this.tableLayoutPanel1.RowCount = 8;
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 14.16726F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 14.16726F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 14.16726F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 14.16726F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 14.7784F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 14.38949F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 14.16309F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 50F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
     this.tableLayoutPanel1.Size     = new System.Drawing.Size(614, 326);
     this.tableLayoutPanel1.TabIndex = 0;
     //
     // RegHotkeysAtStartupLabel
     //
     this.RegHotkeysAtStartupLabel.AutoSize  = true;
     this.RegHotkeysAtStartupLabel.Dock      = System.Windows.Forms.DockStyle.Right;
     this.RegHotkeysAtStartupLabel.Location  = new System.Drawing.Point(42, 235);
     this.RegHotkeysAtStartupLabel.Margin    = new System.Windows.Forms.Padding(10, 0, 10, 0);
     this.RegHotkeysAtStartupLabel.Name      = "RegHotkeysAtStartupLabel";
     this.RegHotkeysAtStartupLabel.Size      = new System.Drawing.Size(199, 39);
     this.RegHotkeysAtStartupLabel.TabIndex  = 16;
     this.RegHotkeysAtStartupLabel.Text      = "Reg Hotkeys At Startup";
     this.RegHotkeysAtStartupLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // SwitchSystemProxyLabel
     //
     this.SwitchSystemProxyLabel.AutoSize  = true;
     this.SwitchSystemProxyLabel.Dock      = System.Windows.Forms.DockStyle.Right;
     this.SwitchSystemProxyLabel.Location  = new System.Drawing.Point(63, 0);
     this.SwitchSystemProxyLabel.Margin    = new System.Windows.Forms.Padding(10, 0, 10, 0);
     this.SwitchSystemProxyLabel.Name      = "SwitchSystemProxyLabel";
     this.SwitchSystemProxyLabel.Size      = new System.Drawing.Size(178, 39);
     this.SwitchSystemProxyLabel.TabIndex  = 0;
     this.SwitchSystemProxyLabel.Text      = "Enable System Proxy";
     this.SwitchSystemProxyLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // SwitchProxyModeLabel
     //
     this.SwitchProxyModeLabel.AutoSize  = true;
     this.SwitchProxyModeLabel.Dock      = System.Windows.Forms.DockStyle.Right;
     this.SwitchProxyModeLabel.Location  = new System.Drawing.Point(10, 39);
     this.SwitchProxyModeLabel.Margin    = new System.Windows.Forms.Padding(10, 0, 10, 0);
     this.SwitchProxyModeLabel.Name      = "SwitchProxyModeLabel";
     this.SwitchProxyModeLabel.Size      = new System.Drawing.Size(231, 39);
     this.SwitchProxyModeLabel.TabIndex  = 1;
     this.SwitchProxyModeLabel.Text      = "Switch System Proxy Mode";
     this.SwitchProxyModeLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // SwitchAllowLanLabel
     //
     this.SwitchAllowLanLabel.AutoSize  = true;
     this.SwitchAllowLanLabel.Dock      = System.Windows.Forms.DockStyle.Right;
     this.SwitchAllowLanLabel.Location  = new System.Drawing.Point(41, 78);
     this.SwitchAllowLanLabel.Margin    = new System.Windows.Forms.Padding(10, 0, 10, 0);
     this.SwitchAllowLanLabel.Name      = "SwitchAllowLanLabel";
     this.SwitchAllowLanLabel.Size      = new System.Drawing.Size(200, 39);
     this.SwitchAllowLanLabel.TabIndex  = 3;
     this.SwitchAllowLanLabel.Text      = "Allow Clients from LAN";
     this.SwitchAllowLanLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // ShowLogsLabel
     //
     this.ShowLogsLabel.AutoSize  = true;
     this.ShowLogsLabel.Dock      = System.Windows.Forms.DockStyle.Right;
     this.ShowLogsLabel.Location  = new System.Drawing.Point(131, 117);
     this.ShowLogsLabel.Margin    = new System.Windows.Forms.Padding(10, 0, 10, 0);
     this.ShowLogsLabel.Name      = "ShowLogsLabel";
     this.ShowLogsLabel.Size      = new System.Drawing.Size(110, 39);
     this.ShowLogsLabel.TabIndex  = 4;
     this.ShowLogsLabel.Text      = "Show Logs...";
     this.ShowLogsLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // ServerMoveUpLabel
     //
     this.ServerMoveUpLabel.AutoSize  = true;
     this.ServerMoveUpLabel.Dock      = System.Windows.Forms.DockStyle.Right;
     this.ServerMoveUpLabel.Location  = new System.Drawing.Point(158, 156);
     this.ServerMoveUpLabel.Margin    = new System.Windows.Forms.Padding(10, 0, 10, 0);
     this.ServerMoveUpLabel.Name      = "ServerMoveUpLabel";
     this.ServerMoveUpLabel.Size      = new System.Drawing.Size(83, 40);
     this.ServerMoveUpLabel.TabIndex  = 4;
     this.ServerMoveUpLabel.Text      = "Move up";
     this.ServerMoveUpLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // ServerMoveDownLabel
     //
     this.ServerMoveDownLabel.AutoSize  = true;
     this.ServerMoveDownLabel.Dock      = System.Windows.Forms.DockStyle.Right;
     this.ServerMoveDownLabel.Location  = new System.Drawing.Point(132, 196);
     this.ServerMoveDownLabel.Margin    = new System.Windows.Forms.Padding(10, 0, 10, 0);
     this.ServerMoveDownLabel.Name      = "ServerMoveDownLabel";
     this.ServerMoveDownLabel.Size      = new System.Drawing.Size(109, 39);
     this.ServerMoveDownLabel.TabIndex  = 4;
     this.ServerMoveDownLabel.Text      = "Move Down";
     this.ServerMoveDownLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // SwitchSystemProxyTextBox
     //
     this.SwitchSystemProxyTextBox.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.SwitchSystemProxyTextBox.Location = new System.Drawing.Point(255, 4);
     this.SwitchSystemProxyTextBox.Margin   = new System.Windows.Forms.Padding(4, 4, 20, 4);
     this.SwitchSystemProxyTextBox.Name     = "SwitchSystemProxyTextBox";
     this.SwitchSystemProxyTextBox.ReadOnly = true;
     this.SwitchSystemProxyTextBox.Size     = new System.Drawing.Size(349, 29);
     this.SwitchSystemProxyTextBox.TabIndex = 7;
     this.SwitchSystemProxyTextBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.HotkeyDown);
     this.SwitchSystemProxyTextBox.KeyUp   += new System.Windows.Forms.KeyEventHandler(this.HotkeyUp);
     //
     // SwitchProxyModeTextBox
     //
     this.SwitchProxyModeTextBox.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.SwitchProxyModeTextBox.Location = new System.Drawing.Point(255, 43);
     this.SwitchProxyModeTextBox.Margin   = new System.Windows.Forms.Padding(4, 4, 20, 4);
     this.SwitchProxyModeTextBox.Name     = "SwitchProxyModeTextBox";
     this.SwitchProxyModeTextBox.ReadOnly = true;
     this.SwitchProxyModeTextBox.Size     = new System.Drawing.Size(349, 29);
     this.SwitchProxyModeTextBox.TabIndex = 8;
     this.SwitchProxyModeTextBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.HotkeyDown);
     this.SwitchProxyModeTextBox.KeyUp   += new System.Windows.Forms.KeyEventHandler(this.HotkeyUp);
     //
     // SwitchAllowLanTextBox
     //
     this.SwitchAllowLanTextBox.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.SwitchAllowLanTextBox.Location = new System.Drawing.Point(255, 82);
     this.SwitchAllowLanTextBox.Margin   = new System.Windows.Forms.Padding(4, 4, 20, 4);
     this.SwitchAllowLanTextBox.Name     = "SwitchAllowLanTextBox";
     this.SwitchAllowLanTextBox.ReadOnly = true;
     this.SwitchAllowLanTextBox.Size     = new System.Drawing.Size(349, 29);
     this.SwitchAllowLanTextBox.TabIndex = 10;
     this.SwitchAllowLanTextBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.HotkeyDown);
     this.SwitchAllowLanTextBox.KeyUp   += new System.Windows.Forms.KeyEventHandler(this.HotkeyUp);
     //
     // ShowLogsTextBox
     //
     this.ShowLogsTextBox.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.ShowLogsTextBox.Location = new System.Drawing.Point(255, 121);
     this.ShowLogsTextBox.Margin   = new System.Windows.Forms.Padding(4, 4, 20, 4);
     this.ShowLogsTextBox.Name     = "ShowLogsTextBox";
     this.ShowLogsTextBox.ReadOnly = true;
     this.ShowLogsTextBox.Size     = new System.Drawing.Size(349, 29);
     this.ShowLogsTextBox.TabIndex = 11;
     this.ShowLogsTextBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.HotkeyDown);
     this.ShowLogsTextBox.KeyUp   += new System.Windows.Forms.KeyEventHandler(this.HotkeyUp);
     //
     // ServerMoveUpTextBox
     //
     this.ServerMoveUpTextBox.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.ServerMoveUpTextBox.Location = new System.Drawing.Point(255, 160);
     this.ServerMoveUpTextBox.Margin   = new System.Windows.Forms.Padding(4, 4, 20, 4);
     this.ServerMoveUpTextBox.Name     = "ServerMoveUpTextBox";
     this.ServerMoveUpTextBox.ReadOnly = true;
     this.ServerMoveUpTextBox.Size     = new System.Drawing.Size(349, 29);
     this.ServerMoveUpTextBox.TabIndex = 12;
     this.ServerMoveUpTextBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.HotkeyDown);
     this.ServerMoveUpTextBox.KeyUp   += new System.Windows.Forms.KeyEventHandler(this.HotkeyUp);
     //
     // ServerMoveDownTextBox
     //
     this.ServerMoveDownTextBox.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.ServerMoveDownTextBox.Location = new System.Drawing.Point(255, 200);
     this.ServerMoveDownTextBox.Margin   = new System.Windows.Forms.Padding(4, 4, 20, 4);
     this.ServerMoveDownTextBox.Name     = "ServerMoveDownTextBox";
     this.ServerMoveDownTextBox.ReadOnly = true;
     this.ServerMoveDownTextBox.Size     = new System.Drawing.Size(349, 29);
     this.ServerMoveDownTextBox.TabIndex = 13;
     this.ServerMoveDownTextBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.HotkeyDown);
     this.ServerMoveDownTextBox.KeyUp   += new System.Windows.Forms.KeyEventHandler(this.HotkeyUp);
     //
     // RegHotkeysAtStartupCheckBox
     //
     this.RegHotkeysAtStartupCheckBox.AutoSize = true;
     this.RegHotkeysAtStartupCheckBox.Location = new System.Drawing.Point(255, 246);
     this.RegHotkeysAtStartupCheckBox.Margin   = new System.Windows.Forms.Padding(4, 11, 11, 11);
     this.RegHotkeysAtStartupCheckBox.Name     = "RegHotkeysAtStartupCheckBox";
     this.RegHotkeysAtStartupCheckBox.Size     = new System.Drawing.Size(18, 17);
     this.RegHotkeysAtStartupCheckBox.TabIndex = 17;
     this.RegHotkeysAtStartupCheckBox.UseVisualStyleBackColor = true;
     //
     // HotkeySettingsForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(120F, 120F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Dpi;
     this.ClientSize          = new System.Drawing.Size(614, 326);
     this.Controls.Add(this.tableLayoutPanel1);
     this.Font          = new System.Drawing.Font("Microsoft YaHei", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.Margin        = new System.Windows.Forms.Padding(5, 6, 5, 6);
     this.MaximizeBox   = false;
     this.MinimizeBox   = false;
     this.Name          = "HotkeySettingsForm";
     this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "Edit Hotkeys...";
     flowLayoutPanel1.ResumeLayout(false);
     this.tableLayoutPanel1.ResumeLayout(false);
     this.tableLayoutPanel1.PerformLayout();
     this.ResumeLayout(false);
 }
Example #30
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();

		}
        /// <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.FlowLayoutPanel flowLayoutPanel1;
            System.Windows.Forms.Label label3;
            System.Windows.Forms.Label label5;
            this.lblTitle = new System.Windows.Forms.Label();
            this.lblArtist = new System.Windows.Forms.Label();
            this.lblAlbum = new System.Windows.Forms.Label();
            this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components);
            this.pnlScroll = new System.Windows.Forms.Panel();
            this.lblLyrics = new System.Windows.Forms.Label();
            this.pbAlbumArt = new System.Windows.Forms.PictureBox();
            flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
            label3 = new System.Windows.Forms.Label();
            label5 = new System.Windows.Forms.Label();
            flowLayoutPanel1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
            this.pnlScroll.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pbAlbumArt)).BeginInit();
            this.SuspendLayout();
            // 
            // flowLayoutPanel1
            // 
            flowLayoutPanel1.AutoSize = true;
            flowLayoutPanel1.Controls.Add(this.lblTitle);
            flowLayoutPanel1.Controls.Add(label3);
            flowLayoutPanel1.Controls.Add(this.lblArtist);
            flowLayoutPanel1.Controls.Add(label5);
            flowLayoutPanel1.Controls.Add(this.lblAlbum);
            flowLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Top;
            flowLayoutPanel1.Location = new System.Drawing.Point(0, 0);
            flowLayoutPanel1.Name = "flowLayoutPanel1";
            flowLayoutPanel1.Size = new System.Drawing.Size(776, 13);
            flowLayoutPanel1.TabIndex = 2;
            // 
            // lblTitle
            // 
            this.lblTitle.AutoSize = true;
            this.lblTitle.Location = new System.Drawing.Point(3, 0);
            this.lblTitle.Name = "lblTitle";
            this.lblTitle.Size = new System.Drawing.Size(51, 13);
            this.lblTitle.TabIndex = 0;
            this.lblTitle.Text = "Song title";
            // 
            // label3
            // 
            label3.AutoSize = true;
            label3.Location = new System.Drawing.Point(60, 0);
            label3.Name = "label3";
            label3.Size = new System.Drawing.Size(18, 13);
            label3.TabIndex = 1;
            label3.Text = "by";
            // 
            // lblArtist
            // 
            this.lblArtist.AutoSize = true;
            this.lblArtist.Location = new System.Drawing.Point(84, 0);
            this.lblArtist.Name = "lblArtist";
            this.lblArtist.Size = new System.Drawing.Size(57, 13);
            this.lblArtist.TabIndex = 2;
            this.lblArtist.Text = "Song artist";
            // 
            // label5
            // 
            label5.AutoSize = true;
            label5.Location = new System.Drawing.Point(147, 0);
            label5.Name = "label5";
            label5.Size = new System.Drawing.Size(27, 13);
            label5.TabIndex = 3;
            label5.Text = "from";
            // 
            // lblAlbum
            // 
            this.lblAlbum.AutoSize = true;
            this.lblAlbum.Location = new System.Drawing.Point(180, 0);
            this.lblAlbum.Name = "lblAlbum";
            this.lblAlbum.Size = new System.Drawing.Size(63, 13);
            this.lblAlbum.TabIndex = 4;
            this.lblAlbum.Text = "Song album";
            // 
            // pnlScroll
            // 
            this.pnlScroll.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.pnlScroll.AutoScroll = true;
            this.pnlScroll.Controls.Add(this.lblLyrics);
            this.pnlScroll.Location = new System.Drawing.Point(0, 19);
            this.pnlScroll.Name = "pnlScroll";
            this.pnlScroll.Size = new System.Drawing.Size(375, 372);
            this.pnlScroll.TabIndex = 4;
            this.pnlScroll.MouseDown += new System.Windows.Forms.MouseEventHandler(this.lblLyrics_MouseDown);
            this.pnlScroll.MouseMove += new System.Windows.Forms.MouseEventHandler(this.lblLyrics_MouseMove);
            this.pnlScroll.MouseUp += new System.Windows.Forms.MouseEventHandler(this.lblLyrics_MouseUp);
            // 
            // lblLyrics
            // 
            this.lblLyrics.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.lblLyrics.AutoSize = true;
            this.lblLyrics.Location = new System.Drawing.Point(8, 8);
            this.lblLyrics.Name = "lblLyrics";
            this.lblLyrics.Size = new System.Drawing.Size(0, 13);
            this.lblLyrics.TabIndex = 5;
            this.lblLyrics.MouseDown += new System.Windows.Forms.MouseEventHandler(this.lblLyrics_MouseDown);
            this.lblLyrics.MouseMove += new System.Windows.Forms.MouseEventHandler(this.lblLyrics_MouseMove);
            this.lblLyrics.MouseUp += new System.Windows.Forms.MouseEventHandler(this.lblLyrics_MouseUp);
            // 
            // pbAlbumArt
            // 
            this.pbAlbumArt.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.pbAlbumArt.Location = new System.Drawing.Point(381, 19);
            this.pbAlbumArt.Name = "pbAlbumArt";
            this.pbAlbumArt.Size = new System.Drawing.Size(395, 372);
            this.pbAlbumArt.TabIndex = 5;
            this.pbAlbumArt.TabStop = false;
            // 
            // DisplayForm
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(776, 393);
            this.Controls.Add(this.pbAlbumArt);
            this.Controls.Add(this.pnlScroll);
            this.Controls.Add(flowLayoutPanel1);
            this.Name = "DisplayForm";
            this.Text = "DisplayForm";
            flowLayoutPanel1.ResumeLayout(false);
            flowLayoutPanel1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit();
            this.pnlScroll.ResumeLayout(false);
            this.pnlScroll.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pbAlbumArt)).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.Windows.Forms.Label label1;
            System.Windows.Forms.FlowLayoutPanel flowLayoutPanel1;
            System.Windows.Forms.Label label3;
            System.Windows.Forms.Label label4;
            System.Windows.Forms.Label label5;
            System.Windows.Forms.Panel panel1;
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ReportIssueWindow));
            this.lblErrorMessage = new System.Windows.Forms.Label();
            this.lblLogFilePath = new System.Windows.Forms.Label();
            this.btnClose = new System.Windows.Forms.Button();
            this.btnSeeLog = new System.Windows.Forms.Button();
            this.btnReport = new System.Windows.Forms.Button();
            label1 = new System.Windows.Forms.Label();
            flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
            label3 = new System.Windows.Forms.Label();
            label4 = new System.Windows.Forms.Label();
            label5 = new System.Windows.Forms.Label();
            panel1 = new System.Windows.Forms.Panel();
            flowLayoutPanel1.SuspendLayout();
            panel1.SuspendLayout();
            this.SuspendLayout();
            // 
            // label1
            // 
            label1.AutoSize = true;
            label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            label1.Location = new System.Drawing.Point(3, 0);
            label1.Name = "label1";
            label1.Size = new System.Drawing.Size(496, 13);
            label1.TabIndex = 0;
            label1.Text = "Sorry, things didn\'t work as expected. Please, consider taking a moment to report" +
    " this.";
            // 
            // flowLayoutPanel1
            // 
            flowLayoutPanel1.AutoSize = true;
            flowLayoutPanel1.Controls.Add(label1);
            flowLayoutPanel1.Controls.Add(label3);
            flowLayoutPanel1.Controls.Add(this.lblErrorMessage);
            flowLayoutPanel1.Controls.Add(label4);
            flowLayoutPanel1.Controls.Add(label5);
            flowLayoutPanel1.Controls.Add(this.lblLogFilePath);
            flowLayoutPanel1.Controls.Add(panel1);
            flowLayoutPanel1.FlowDirection = System.Windows.Forms.FlowDirection.TopDown;
            flowLayoutPanel1.Location = new System.Drawing.Point(12, 12);
            flowLayoutPanel1.MaximumSize = new System.Drawing.Size(502, 0);
            flowLayoutPanel1.Name = "flowLayoutPanel1";
            flowLayoutPanel1.Size = new System.Drawing.Size(502, 114);
            flowLayoutPanel1.TabIndex = 2;
            // 
            // label3
            // 
            label3.Location = new System.Drawing.Point(3, 13);
            label3.Name = "label3";
            label3.Size = new System.Drawing.Size(144, 10);
            label3.TabIndex = 3;
            // 
            // lblErrorMessage
            // 
            this.lblErrorMessage.AutoSize = true;
            this.lblErrorMessage.Location = new System.Drawing.Point(3, 23);
            this.lblErrorMessage.Name = "lblErrorMessage";
            this.lblErrorMessage.Size = new System.Drawing.Size(70, 13);
            this.lblErrorMessage.TabIndex = 1;
            this.lblErrorMessage.Text = "Message: {0}";
            // 
            // label4
            // 
            label4.Location = new System.Drawing.Point(3, 36);
            label4.Name = "label4";
            label4.Size = new System.Drawing.Size(144, 10);
            label4.TabIndex = 4;
            // 
            // label5
            // 
            label5.AutoSize = true;
            label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            label5.Location = new System.Drawing.Point(3, 46);
            label5.Name = "label5";
            label5.Size = new System.Drawing.Size(197, 13);
            label5.TabIndex = 5;
            label5.Text = "Please, attach the log located at:";
            // 
            // lblLogFilePath
            // 
            this.lblLogFilePath.AutoSize = true;
            this.lblLogFilePath.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblLogFilePath.Location = new System.Drawing.Point(3, 59);
            this.lblLogFilePath.Name = "lblLogFilePath";
            this.lblLogFilePath.Size = new System.Drawing.Size(71, 13);
            this.lblLogFilePath.TabIndex = 6;
            this.lblLogFilePath.Text = "{LogFilePath}";
            // 
            // panel1
            // 
            panel1.Controls.Add(this.btnClose);
            panel1.Controls.Add(this.btnSeeLog);
            panel1.Controls.Add(this.btnReport);
            panel1.Location = new System.Drawing.Point(3, 75);
            panel1.Name = "panel1";
            panel1.Size = new System.Drawing.Size(496, 36);
            panel1.TabIndex = 7;
            // 
            // btnClose
            // 
            this.btnClose.Location = new System.Drawing.Point(301, 8);
            this.btnClose.Name = "btnClose";
            this.btnClose.Size = new System.Drawing.Size(100, 23);
            this.btnClose.TabIndex = 2;
            this.btnClose.Text = "No thanks";
            this.btnClose.UseVisualStyleBackColor = true;
            this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
            // 
            // btnSeeLog
            // 
            this.btnSeeLog.Location = new System.Drawing.Point(195, 8);
            this.btnSeeLog.Name = "btnSeeLog";
            this.btnSeeLog.Size = new System.Drawing.Size(100, 23);
            this.btnSeeLog.TabIndex = 1;
            this.btnSeeLog.Text = "See log";
            this.btnSeeLog.UseVisualStyleBackColor = true;
            this.btnSeeLog.Click += new System.EventHandler(this.btnSeeLog_Click);
            // 
            // btnReport
            // 
            this.btnReport.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnReport.Location = new System.Drawing.Point(89, 8);
            this.btnReport.Name = "btnReport";
            this.btnReport.Size = new System.Drawing.Size(100, 23);
            this.btnReport.TabIndex = 0;
            this.btnReport.Text = "Report";
            this.btnReport.UseVisualStyleBackColor = true;
            this.btnReport.Click += new System.EventHandler(this.btnReport_Click);
            // 
            // ReportIssueWindow
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.AutoSize = true;
            this.ClientSize = new System.Drawing.Size(526, 130);
            this.Controls.Add(flowLayoutPanel1);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.Name = "ReportIssueWindow";
            this.ShowInTaskbar = false;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "{Window_Caption}";
            flowLayoutPanel1.ResumeLayout(false);
            flowLayoutPanel1.PerformLayout();
            panel1.ResumeLayout(false);
            this.ResumeLayout(false);
            this.PerformLayout();

        }
Example #33
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.FlowLayoutPanel  mainPanel;
     System.Windows.Forms.TableLayoutPanel tableLayoutPanel;
     System.Windows.Forms.Label            label1;
     System.Windows.Forms.Label            label2;
     System.Windows.Forms.Label            label3;
     System.Windows.Forms.Label            label4;
     this.bmclBox          = new CBComponents.BitMaskCheckedListBox();
     this.textBoxValue     = new System.Windows.Forms.TextBox();
     this.textBoxLongValue = new System.Windows.Forms.TextBox();
     this.textBoxValues    = new System.Windows.Forms.TextBox();
     mainPanel             = new System.Windows.Forms.FlowLayoutPanel();
     tableLayoutPanel      = new System.Windows.Forms.TableLayoutPanel();
     label1 = new System.Windows.Forms.Label();
     label2 = new System.Windows.Forms.Label();
     label3 = new System.Windows.Forms.Label();
     label4 = new System.Windows.Forms.Label();
     mainPanel.SuspendLayout();
     tableLayoutPanel.SuspendLayout();
     this.SuspendLayout();
     //
     // mainPanel
     //
     mainPanel.AutoScroll   = true;
     mainPanel.AutoSize     = true;
     mainPanel.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     mainPanel.Controls.Add(tableLayoutPanel);
     mainPanel.Dock     = System.Windows.Forms.DockStyle.Fill;
     mainPanel.Location = new System.Drawing.Point(0, 0);
     mainPanel.Name     = "mainPanel";
     mainPanel.Padding  = new System.Windows.Forms.Padding(6);
     mainPanel.Size     = new System.Drawing.Size(464, 362);
     mainPanel.TabIndex = 0;
     //
     // tableLayoutPanel
     //
     tableLayoutPanel.AutoSize     = true;
     tableLayoutPanel.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     tableLayoutPanel.ColumnCount  = 2;
     tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
     tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
     tableLayoutPanel.Controls.Add(label1, 0, 0);
     tableLayoutPanel.Controls.Add(label2, 0, 1);
     tableLayoutPanel.Controls.Add(label3, 0, 2);
     tableLayoutPanel.Controls.Add(label4, 0, 3);
     tableLayoutPanel.Controls.Add(this.bmclBox, 1, 0);
     tableLayoutPanel.Controls.Add(this.textBoxValue, 1, 1);
     tableLayoutPanel.Controls.Add(this.textBoxLongValue, 1, 2);
     tableLayoutPanel.Controls.Add(this.textBoxValues, 1, 3);
     tableLayoutPanel.Location = new System.Drawing.Point(9, 9);
     tableLayoutPanel.Name     = "tableLayoutPanel";
     tableLayoutPanel.RowCount = 4;
     tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle());
     tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle());
     tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle());
     tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle());
     tableLayoutPanel.Size     = new System.Drawing.Size(397, 318);
     tableLayoutPanel.TabIndex = 0;
     //
     // label1
     //
     label1.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     label1.AutoSize  = true;
     label1.Location  = new System.Drawing.Point(42, 6);
     label1.Margin    = new System.Windows.Forms.Padding(3, 6, 3, 0);
     label1.Name      = "label1";
     label1.Size      = new System.Drawing.Size(26, 13);
     label1.TabIndex  = 1;
     label1.Text      = "List:";
     label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label2
     //
     label2.Anchor    = System.Windows.Forms.AnchorStyles.Right;
     label2.AutoSize  = true;
     label2.Location  = new System.Drawing.Point(31, 166);
     label2.Name      = "label2";
     label2.Size      = new System.Drawing.Size(37, 13);
     label2.TabIndex  = 2;
     label2.Text      = "Value:";
     label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label3
     //
     label3.Anchor    = System.Windows.Forms.AnchorStyles.Right;
     label3.AutoSize  = true;
     label3.Location  = new System.Drawing.Point(7, 192);
     label3.Name      = "label3";
     label3.Size      = new System.Drawing.Size(61, 13);
     label3.TabIndex  = 3;
     label3.Text      = "LongValue:";
     label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label4
     //
     label4.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     label4.AutoSize  = true;
     label4.Location  = new System.Drawing.Point(3, 218);
     label4.Margin    = new System.Windows.Forms.Padding(3, 6, 3, 0);
     label4.Name      = "label4";
     label4.Size      = new System.Drawing.Size(65, 13);
     label4.TabIndex  = 5;
     label4.Text      = "GetValues():";
     label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // bmclBox
     //
     this.bmclBox.CheckOnClick = true;
     this.bmclBox.Location     = new System.Drawing.Point(74, 3);
     this.bmclBox.LongValue    = ((long)(0));
     this.bmclBox.MultiColumn  = true;
     this.bmclBox.Name         = "bmclBox";
     this.bmclBox.Size         = new System.Drawing.Size(320, 154);
     this.bmclBox.TabIndex     = 0;
     //
     // textBoxValue
     //
     this.textBoxValue.Location = new System.Drawing.Point(74, 163);
     this.textBoxValue.Name     = "textBoxValue";
     this.textBoxValue.Size     = new System.Drawing.Size(100, 20);
     this.textBoxValue.TabIndex = 1;
     //
     // textBoxLongValue
     //
     this.textBoxLongValue.Location = new System.Drawing.Point(74, 189);
     this.textBoxLongValue.Name     = "textBoxLongValue";
     this.textBoxLongValue.Size     = new System.Drawing.Size(200, 20);
     this.textBoxLongValue.TabIndex = 4;
     //
     // textBoxValues
     //
     this.textBoxValues.Location  = new System.Drawing.Point(74, 215);
     this.textBoxValues.Multiline = true;
     this.textBoxValues.Name      = "textBoxValues";
     this.textBoxValues.ReadOnly  = true;
     this.textBoxValues.Size      = new System.Drawing.Size(320, 100);
     this.textBoxValues.TabIndex  = 6;
     //
     // Example1Form
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoSize            = true;
     this.AutoSizeMode        = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.ClientSize          = new System.Drawing.Size(464, 362);
     this.Controls.Add(mainPanel);
     this.MinimumSize   = new System.Drawing.Size(200, 120);
     this.Name          = "Example1Form";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text          = "ExamplesForm";
     this.Load         += new System.EventHandler(this.ExamplesForm_Load);
     mainPanel.ResumeLayout(false);
     mainPanel.PerformLayout();
     tableLayoutPanel.ResumeLayout(false);
     tableLayoutPanel.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.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();

		}
Example #35
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.FlowLayoutPanel flowLayoutPanel1;
     this.btnOK                              = new System.Windows.Forms.Button();
     this.btnCancel                          = new System.Windows.Forms.Button();
     this.btnRegisterAll                     = new System.Windows.Forms.Button();
     this.tableLayoutPanel1                  = new System.Windows.Forms.TableLayoutPanel();
     this.SwitchSystemProxyLabel             = new System.Windows.Forms.Label();
     this.SwitchSystemProxyModeLabel         = new System.Windows.Forms.Label();
     this.SwitchAllowLanLabel                = new System.Windows.Forms.Label();
     this.ShowLogsLabel                      = new System.Windows.Forms.Label();
     this.ServerMoveUpLabel                  = new System.Windows.Forms.Label();
     this.ServerMoveDownLabel                = new System.Windows.Forms.Label();
     this.AddCurrentChromeURLtoPACLabel      = new System.Windows.Forms.Label();
     this.AddCurrentChromeDomaintoPACLabel   = new System.Windows.Forms.Label();
     this.ScanQRLabel                        = new System.Windows.Forms.Label();
     this.SwitchSystemProxyTextBox           = new System.Windows.Forms.TextBox();
     this.SwitchSystemProxyModeTextBox       = new System.Windows.Forms.TextBox();
     this.SwitchAllowLanTextBox              = new System.Windows.Forms.TextBox();
     this.ShowLogsTextBox                    = new System.Windows.Forms.TextBox();
     this.ServerMoveUpTextBox                = new System.Windows.Forms.TextBox();
     this.ServerMoveDownTextBox              = new System.Windows.Forms.TextBox();
     this.AddCurrentChromeURLtoPACTextBox    = new System.Windows.Forms.TextBox();
     this.AddCurrentChromeDomaintoPACTextBox = new System.Windows.Forms.TextBox();
     this.ScanQRTextBox                      = new System.Windows.Forms.TextBox();
     flowLayoutPanel1                        = new System.Windows.Forms.FlowLayoutPanel();
     flowLayoutPanel1.SuspendLayout();
     this.tableLayoutPanel1.SuspendLayout();
     this.SuspendLayout();
     //
     // flowLayoutPanel1
     //
     this.tableLayoutPanel1.SetColumnSpan(flowLayoutPanel1, 2);
     flowLayoutPanel1.Controls.Add(this.btnOK);
     flowLayoutPanel1.Controls.Add(this.btnCancel);
     flowLayoutPanel1.Controls.Add(this.btnRegisterAll);
     flowLayoutPanel1.FlowDirection = System.Windows.Forms.FlowDirection.BottomUp;
     flowLayoutPanel1.Location      = new System.Drawing.Point(0, 205);
     flowLayoutPanel1.Margin        = new System.Windows.Forms.Padding(0);
     flowLayoutPanel1.Name          = "flowLayoutPanel1";
     flowLayoutPanel1.Padding       = new System.Windows.Forms.Padding(0, 0, 16, 0);
     flowLayoutPanel1.RightToLeft   = System.Windows.Forms.RightToLeft.Yes;
     flowLayoutPanel1.Size          = new System.Drawing.Size(475, 43);
     flowLayoutPanel1.TabIndex      = 6;
     //
     // btnOK
     //
     this.btnOK.DialogResult            = System.Windows.Forms.DialogResult.OK;
     this.btnOK.Location                = new System.Drawing.Point(333, 9);
     this.btnOK.Name                    = "btnOK";
     this.btnOK.Size                    = new System.Drawing.Size(123, 31);
     this.btnOK.TabIndex                = 0;
     this.btnOK.Text                    = "OK";
     this.btnOK.UseVisualStyleBackColor = true;
     this.btnOK.Click                  += new System.EventHandler(this.OKButton_Click);
     //
     // btnCancel
     //
     this.btnCancel.DialogResult            = System.Windows.Forms.DialogResult.Cancel;
     this.btnCancel.Location                = new System.Drawing.Point(204, 9);
     this.btnCancel.Name                    = "btnCancel";
     this.btnCancel.Size                    = new System.Drawing.Size(123, 31);
     this.btnCancel.TabIndex                = 1;
     this.btnCancel.Text                    = "Cancel";
     this.btnCancel.UseVisualStyleBackColor = true;
     this.btnCancel.Click                  += new System.EventHandler(this.CancelButton_Click);
     //
     // btnRegisterAll
     //
     this.btnRegisterAll.DialogResult            = System.Windows.Forms.DialogResult.Cancel;
     this.btnRegisterAll.Location                = new System.Drawing.Point(75, 9);
     this.btnRegisterAll.Name                    = "btnRegisterAll";
     this.btnRegisterAll.Size                    = new System.Drawing.Size(123, 31);
     this.btnRegisterAll.TabIndex                = 2;
     this.btnRegisterAll.Text                    = "Reg All";
     this.btnRegisterAll.UseVisualStyleBackColor = true;
     this.btnRegisterAll.Click                  += new System.EventHandler(this.RegisterAllButton_Click);
     //
     // tableLayoutPanel1
     //
     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(this.SwitchSystemProxyLabel, 0, 0);
     this.tableLayoutPanel1.Controls.Add(this.SwitchSystemProxyModeLabel, 0, 1);
     this.tableLayoutPanel1.Controls.Add(this.SwitchAllowLanLabel, 0, 2);
     this.tableLayoutPanel1.Controls.Add(this.ShowLogsLabel, 0, 3);
     this.tableLayoutPanel1.Controls.Add(this.ServerMoveUpLabel, 0, 4);
     this.tableLayoutPanel1.Controls.Add(this.ServerMoveDownLabel, 0, 5);
     this.tableLayoutPanel1.Controls.Add(this.AddCurrentChromeDomaintoPACLabel, 0, 6);
     this.tableLayoutPanel1.Controls.Add(this.AddCurrentChromeURLtoPACLabel, 0, 7);
     this.tableLayoutPanel1.Controls.Add(this.ScanQRLabel, 0, 8);
     this.tableLayoutPanel1.Controls.Add(flowLayoutPanel1, 0, 9);
     this.tableLayoutPanel1.Controls.Add(this.SwitchSystemProxyTextBox, 1, 0);
     this.tableLayoutPanel1.Controls.Add(this.SwitchSystemProxyModeTextBox, 1, 1);
     this.tableLayoutPanel1.Controls.Add(this.SwitchAllowLanTextBox, 1, 2);
     this.tableLayoutPanel1.Controls.Add(this.ShowLogsTextBox, 1, 3);
     this.tableLayoutPanel1.Controls.Add(this.ServerMoveUpTextBox, 1, 4);
     this.tableLayoutPanel1.Controls.Add(this.ServerMoveDownTextBox, 1, 5);
     this.tableLayoutPanel1.Controls.Add(this.AddCurrentChromeDomaintoPACTextBox, 1, 6);
     this.tableLayoutPanel1.Controls.Add(this.AddCurrentChromeURLtoPACTextBox, 1, 7);
     this.tableLayoutPanel1.Controls.Add(this.ScanQRTextBox, 1, 8);
     this.tableLayoutPanel1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
     this.tableLayoutPanel1.Name     = "tableLayoutPanel1";
     this.tableLayoutPanel1.RowCount = 10;
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 11.50485F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 11.50485F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 11.50485F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 11.50485F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 11.50485F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 11.50485F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 11.50485F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 11.50485F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 11.50485F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 40F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     this.tableLayoutPanel1.Size     = new System.Drawing.Size(491, 248);
     this.tableLayoutPanel1.TabIndex = 0;
     //
     // SwitchSystemProxyLabel
     //
     this.SwitchSystemProxyLabel.AutoSize  = true;
     this.SwitchSystemProxyLabel.Dock      = System.Windows.Forms.DockStyle.Right;
     this.SwitchSystemProxyLabel.Location  = new System.Drawing.Point(50, 0);
     this.SwitchSystemProxyLabel.Margin    = new System.Windows.Forms.Padding(8, 0, 8, 0);
     this.SwitchSystemProxyLabel.Name      = "SwitchSystemProxyLabel";
     this.SwitchSystemProxyLabel.Size      = new System.Drawing.Size(147, 34);
     this.SwitchSystemProxyLabel.TabIndex  = 0;
     this.SwitchSystemProxyLabel.Text      = "Enable System Proxy";
     this.SwitchSystemProxyLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // SwitchSystemProxyModeLabel
     //
     this.SwitchSystemProxyModeLabel.AutoSize  = true;
     this.SwitchSystemProxyModeLabel.Dock      = System.Windows.Forms.DockStyle.Right;
     this.SwitchSystemProxyModeLabel.Location  = new System.Drawing.Point(8, 34);
     this.SwitchSystemProxyModeLabel.Margin    = new System.Windows.Forms.Padding(8, 0, 8, 0);
     this.SwitchSystemProxyModeLabel.Name      = "SwitchSystemProxyModeLabel";
     this.SwitchSystemProxyModeLabel.Size      = new System.Drawing.Size(189, 34);
     this.SwitchSystemProxyModeLabel.TabIndex  = 1;
     this.SwitchSystemProxyModeLabel.Text      = "Switch System Proxy Mode";
     this.SwitchSystemProxyModeLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // SwitchAllowLanLabel
     //
     this.SwitchAllowLanLabel.AutoSize  = true;
     this.SwitchAllowLanLabel.Dock      = System.Windows.Forms.DockStyle.Right;
     this.SwitchAllowLanLabel.Location  = new System.Drawing.Point(33, 68);
     this.SwitchAllowLanLabel.Margin    = new System.Windows.Forms.Padding(8, 0, 8, 0);
     this.SwitchAllowLanLabel.Name      = "SwitchAllowLanLabel";
     this.SwitchAllowLanLabel.Size      = new System.Drawing.Size(164, 34);
     this.SwitchAllowLanLabel.TabIndex  = 3;
     this.SwitchAllowLanLabel.Text      = "Allow Clients from LAN";
     this.SwitchAllowLanLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // ShowLogsLabel
     //
     this.ShowLogsLabel.AutoSize  = true;
     this.ShowLogsLabel.Dock      = System.Windows.Forms.DockStyle.Right;
     this.ShowLogsLabel.Location  = new System.Drawing.Point(107, 102);
     this.ShowLogsLabel.Margin    = new System.Windows.Forms.Padding(8, 0, 8, 0);
     this.ShowLogsLabel.Name      = "ShowLogsLabel";
     this.ShowLogsLabel.Size      = new System.Drawing.Size(90, 34);
     this.ShowLogsLabel.TabIndex  = 4;
     this.ShowLogsLabel.Text      = "Show Logs...";
     this.ShowLogsLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // ServerMoveUpLabel
     //
     this.ServerMoveUpLabel.AutoSize  = true;
     this.ServerMoveUpLabel.Dock      = System.Windows.Forms.DockStyle.Right;
     this.ServerMoveUpLabel.Location  = new System.Drawing.Point(128, 136);
     this.ServerMoveUpLabel.Margin    = new System.Windows.Forms.Padding(8, 0, 8, 0);
     this.ServerMoveUpLabel.Name      = "ServerMoveUpLabel";
     this.ServerMoveUpLabel.Size      = new System.Drawing.Size(69, 35);
     this.ServerMoveUpLabel.TabIndex  = 4;
     this.ServerMoveUpLabel.Text      = "Move up";
     this.ServerMoveUpLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // ServerMoveDownLabel
     //
     this.ServerMoveDownLabel.AutoSize  = true;
     this.ServerMoveDownLabel.Dock      = System.Windows.Forms.DockStyle.Right;
     this.ServerMoveDownLabel.Location  = new System.Drawing.Point(106, 171);
     this.ServerMoveDownLabel.Margin    = new System.Windows.Forms.Padding(8, 0, 8, 0);
     this.ServerMoveDownLabel.Name      = "ServerMoveDownLabel";
     this.ServerMoveDownLabel.Size      = new System.Drawing.Size(91, 34);
     this.ServerMoveDownLabel.TabIndex  = 4;
     this.ServerMoveDownLabel.Text      = "Move Down";
     this.ServerMoveDownLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // AddCurrentChromeURLtoPACLabel
     //
     this.AddCurrentChromeURLtoPACLabel.AutoSize  = true;
     this.AddCurrentChromeURLtoPACLabel.Dock      = System.Windows.Forms.DockStyle.Right;
     this.AddCurrentChromeURLtoPACLabel.Location  = new System.Drawing.Point(106, 171);
     this.AddCurrentChromeURLtoPACLabel.Margin    = new System.Windows.Forms.Padding(8, 0, 8, 0);
     this.AddCurrentChromeURLtoPACLabel.Name      = "AddCurrentChromeURLtoPACLabel";
     this.AddCurrentChromeURLtoPACLabel.Size      = new System.Drawing.Size(91, 34);
     this.AddCurrentChromeURLtoPACLabel.TabIndex  = 4;
     this.AddCurrentChromeURLtoPACLabel.Text      = "AddCurrentChromeURLtoPAC";
     this.AddCurrentChromeURLtoPACLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // AddCurrentChromeDomaintoPACLabel
     //
     this.AddCurrentChromeDomaintoPACLabel.AutoSize  = true;
     this.AddCurrentChromeDomaintoPACLabel.Dock      = System.Windows.Forms.DockStyle.Right;
     this.AddCurrentChromeDomaintoPACLabel.Location  = new System.Drawing.Point(106, 171);
     this.AddCurrentChromeDomaintoPACLabel.Margin    = new System.Windows.Forms.Padding(8, 0, 8, 0);
     this.AddCurrentChromeDomaintoPACLabel.Name      = "AddCurrentChromeDomaintoPACLabel";
     this.AddCurrentChromeDomaintoPACLabel.Size      = new System.Drawing.Size(91, 34);
     this.AddCurrentChromeDomaintoPACLabel.TabIndex  = 4;
     this.AddCurrentChromeDomaintoPACLabel.Text      = "AddCurrentChromeDomaintoPAC";
     this.AddCurrentChromeDomaintoPACLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // ScanQRLabel
     //
     this.ScanQRLabel.AutoSize  = true;
     this.ScanQRLabel.Dock      = System.Windows.Forms.DockStyle.Right;
     this.ScanQRLabel.Location  = new System.Drawing.Point(106, 171);
     this.ScanQRLabel.Margin    = new System.Windows.Forms.Padding(8, 0, 8, 0);
     this.ScanQRLabel.Name      = "ScanQRLabel";
     this.ScanQRLabel.Size      = new System.Drawing.Size(91, 34);
     this.ScanQRLabel.TabIndex  = 4;
     this.ScanQRLabel.Text      = "ScanQR";
     this.ScanQRLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // SwitchSystemProxyTextBox
     //
     this.SwitchSystemProxyTextBox.Dock         = System.Windows.Forms.DockStyle.Fill;
     this.SwitchSystemProxyTextBox.Location     = new System.Drawing.Point(208, 3);
     this.SwitchSystemProxyTextBox.Margin       = new System.Windows.Forms.Padding(3, 3, 16, 3);
     this.SwitchSystemProxyTextBox.Name         = "SwitchSystemProxyTextBox";
     this.SwitchSystemProxyTextBox.ReadOnly     = true;
     this.SwitchSystemProxyTextBox.Size         = new System.Drawing.Size(276, 25);
     this.SwitchSystemProxyTextBox.TabIndex     = 7;
     this.SwitchSystemProxyTextBox.TextChanged += new System.EventHandler(this.TextBox_TextChanged);
     this.SwitchSystemProxyTextBox.KeyDown     += new System.Windows.Forms.KeyEventHandler(this.HotkeyDown);
     this.SwitchSystemProxyTextBox.KeyUp       += new System.Windows.Forms.KeyEventHandler(this.HotkeyUp);
     //
     // SwitchSystemProxyModeTextBox
     //
     this.SwitchSystemProxyModeTextBox.Dock         = System.Windows.Forms.DockStyle.Fill;
     this.SwitchSystemProxyModeTextBox.Location     = new System.Drawing.Point(208, 37);
     this.SwitchSystemProxyModeTextBox.Margin       = new System.Windows.Forms.Padding(3, 3, 16, 3);
     this.SwitchSystemProxyModeTextBox.Name         = "SwitchSystemProxyModeTextBox";
     this.SwitchSystemProxyModeTextBox.ReadOnly     = true;
     this.SwitchSystemProxyModeTextBox.Size         = new System.Drawing.Size(276, 25);
     this.SwitchSystemProxyModeTextBox.TabIndex     = 8;
     this.SwitchSystemProxyModeTextBox.TextChanged += new System.EventHandler(this.TextBox_TextChanged);
     this.SwitchSystemProxyModeTextBox.KeyDown     += new System.Windows.Forms.KeyEventHandler(this.HotkeyDown);
     this.SwitchSystemProxyModeTextBox.KeyUp       += new System.Windows.Forms.KeyEventHandler(this.HotkeyUp);
     //
     // SwitchAllowLanTextBox
     //
     this.SwitchAllowLanTextBox.Dock         = System.Windows.Forms.DockStyle.Fill;
     this.SwitchAllowLanTextBox.Location     = new System.Drawing.Point(208, 71);
     this.SwitchAllowLanTextBox.Margin       = new System.Windows.Forms.Padding(3, 3, 16, 3);
     this.SwitchAllowLanTextBox.Name         = "SwitchAllowLanTextBox";
     this.SwitchAllowLanTextBox.ReadOnly     = true;
     this.SwitchAllowLanTextBox.Size         = new System.Drawing.Size(276, 25);
     this.SwitchAllowLanTextBox.TabIndex     = 10;
     this.SwitchAllowLanTextBox.TextChanged += new System.EventHandler(this.TextBox_TextChanged);
     this.SwitchAllowLanTextBox.KeyDown     += new System.Windows.Forms.KeyEventHandler(this.HotkeyDown);
     this.SwitchAllowLanTextBox.KeyUp       += new System.Windows.Forms.KeyEventHandler(this.HotkeyUp);
     //
     // ShowLogsTextBox
     //
     this.ShowLogsTextBox.Dock         = System.Windows.Forms.DockStyle.Fill;
     this.ShowLogsTextBox.Location     = new System.Drawing.Point(208, 105);
     this.ShowLogsTextBox.Margin       = new System.Windows.Forms.Padding(3, 3, 16, 3);
     this.ShowLogsTextBox.Name         = "ShowLogsTextBox";
     this.ShowLogsTextBox.ReadOnly     = true;
     this.ShowLogsTextBox.Size         = new System.Drawing.Size(276, 25);
     this.ShowLogsTextBox.TabIndex     = 11;
     this.ShowLogsTextBox.TextChanged += new System.EventHandler(this.TextBox_TextChanged);
     this.ShowLogsTextBox.KeyDown     += new System.Windows.Forms.KeyEventHandler(this.HotkeyDown);
     this.ShowLogsTextBox.KeyUp       += new System.Windows.Forms.KeyEventHandler(this.HotkeyUp);
     //
     // ServerMoveUpTextBox
     //
     this.ServerMoveUpTextBox.Dock         = System.Windows.Forms.DockStyle.Fill;
     this.ServerMoveUpTextBox.Location     = new System.Drawing.Point(208, 139);
     this.ServerMoveUpTextBox.Margin       = new System.Windows.Forms.Padding(3, 3, 16, 3);
     this.ServerMoveUpTextBox.Name         = "ServerMoveUpTextBox";
     this.ServerMoveUpTextBox.ReadOnly     = true;
     this.ServerMoveUpTextBox.Size         = new System.Drawing.Size(276, 25);
     this.ServerMoveUpTextBox.TabIndex     = 12;
     this.ServerMoveUpTextBox.TextChanged += new System.EventHandler(this.TextBox_TextChanged);
     this.ServerMoveUpTextBox.KeyDown     += new System.Windows.Forms.KeyEventHandler(this.HotkeyDown);
     this.ServerMoveUpTextBox.KeyUp       += new System.Windows.Forms.KeyEventHandler(this.HotkeyUp);
     //
     // ServerMoveDownTextBox
     //
     this.ServerMoveDownTextBox.Dock         = System.Windows.Forms.DockStyle.Fill;
     this.ServerMoveDownTextBox.Location     = new System.Drawing.Point(208, 174);
     this.ServerMoveDownTextBox.Margin       = new System.Windows.Forms.Padding(3, 3, 16, 3);
     this.ServerMoveDownTextBox.Name         = "ServerMoveDownTextBox";
     this.ServerMoveDownTextBox.ReadOnly     = true;
     this.ServerMoveDownTextBox.Size         = new System.Drawing.Size(276, 25);
     this.ServerMoveDownTextBox.TabIndex     = 13;
     this.ServerMoveDownTextBox.TextChanged += new System.EventHandler(this.TextBox_TextChanged);
     this.ServerMoveDownTextBox.KeyDown     += new System.Windows.Forms.KeyEventHandler(this.HotkeyDown);
     this.ServerMoveDownTextBox.KeyUp       += new System.Windows.Forms.KeyEventHandler(this.HotkeyUp);
     //
     // AddCurrentChromeURLtoPACTextBox
     //
     this.AddCurrentChromeURLtoPACTextBox.Dock         = System.Windows.Forms.DockStyle.Fill;
     this.AddCurrentChromeURLtoPACTextBox.Location     = new System.Drawing.Point(208, 174);
     this.AddCurrentChromeURLtoPACTextBox.Margin       = new System.Windows.Forms.Padding(3, 3, 16, 3);
     this.AddCurrentChromeURLtoPACTextBox.Name         = "AddCurrentChromeURLtoPACTextBox";
     this.AddCurrentChromeURLtoPACTextBox.ReadOnly     = true;
     this.AddCurrentChromeURLtoPACTextBox.Size         = new System.Drawing.Size(276, 25);
     this.AddCurrentChromeURLtoPACTextBox.TabIndex     = 14;
     this.AddCurrentChromeURLtoPACTextBox.TextChanged += new System.EventHandler(this.TextBox_TextChanged);
     this.AddCurrentChromeURLtoPACTextBox.KeyDown     += new System.Windows.Forms.KeyEventHandler(this.HotkeyDown);
     this.AddCurrentChromeURLtoPACTextBox.KeyUp       += new System.Windows.Forms.KeyEventHandler(this.HotkeyUp);
     //
     // AddCurrentChromeDomaintoPACTextBox
     //
     this.AddCurrentChromeDomaintoPACTextBox.Dock         = System.Windows.Forms.DockStyle.Fill;
     this.AddCurrentChromeDomaintoPACTextBox.Location     = new System.Drawing.Point(208, 174);
     this.AddCurrentChromeDomaintoPACTextBox.Margin       = new System.Windows.Forms.Padding(3, 3, 16, 3);
     this.AddCurrentChromeDomaintoPACTextBox.Name         = "AddCurrentChromeDomaintoPACTextBox";
     this.AddCurrentChromeDomaintoPACTextBox.ReadOnly     = true;
     this.AddCurrentChromeDomaintoPACTextBox.Size         = new System.Drawing.Size(276, 25);
     this.AddCurrentChromeDomaintoPACTextBox.TabIndex     = 15;
     this.AddCurrentChromeDomaintoPACTextBox.TextChanged += new System.EventHandler(this.TextBox_TextChanged);
     this.AddCurrentChromeDomaintoPACTextBox.KeyDown     += new System.Windows.Forms.KeyEventHandler(this.HotkeyDown);
     this.AddCurrentChromeDomaintoPACTextBox.KeyUp       += new System.Windows.Forms.KeyEventHandler(this.HotkeyUp);
     //
     // ScanQRTextBox
     //
     this.ScanQRTextBox.Dock         = System.Windows.Forms.DockStyle.Fill;
     this.ScanQRTextBox.Location     = new System.Drawing.Point(208, 174);
     this.ScanQRTextBox.Margin       = new System.Windows.Forms.Padding(3, 3, 16, 3);
     this.ScanQRTextBox.Name         = "ScanQRTextBox";
     this.ScanQRTextBox.ReadOnly     = true;
     this.ScanQRTextBox.Size         = new System.Drawing.Size(276, 25);
     this.ScanQRTextBox.TabIndex     = 16;
     this.ScanQRTextBox.TextChanged += new System.EventHandler(this.TextBox_TextChanged);
     this.ScanQRTextBox.KeyDown     += new System.Windows.Forms.KeyEventHandler(this.HotkeyDown);
     this.ScanQRTextBox.KeyUp       += new System.Windows.Forms.KeyEventHandler(this.HotkeyUp);
     //
     // HotkeySettingsForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Dpi;
     this.ClientSize          = new System.Drawing.Size(618, 382);
     this.Controls.Add(this.tableLayoutPanel1);
     this.Font          = new System.Drawing.Font("微软雅黑", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.Margin        = new System.Windows.Forms.Padding(4, 5, 4, 5);
     this.MaximizeBox   = false;
     this.MinimizeBox   = false;
     this.Name          = "HotkeySettingsForm";
     this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "Edit Hotkeys...";
     flowLayoutPanel1.ResumeLayout(false);
     this.tableLayoutPanel1.ResumeLayout(false);
     this.tableLayoutPanel1.PerformLayout();
     this.ResumeLayout(false);
 }
Example #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.FlowLayoutPanel lytControlButtons;
			this.btnConnect = new System.Windows.Forms.Button();
			this.btnCreateDatabase = new System.Windows.Forms.Button();
			this.tbcEngine = new System.Windows.Forms.TabControl();
			this.btnOK = new System.Windows.Forms.Button();
			this.btnCancel = new System.Windows.Forms.Button();
			this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
			lytControlButtons = new System.Windows.Forms.FlowLayoutPanel();
			lytControlButtons.SuspendLayout();
			this.flowLayoutPanel1.SuspendLayout();
			this.SuspendLayout();
			// 
			// lytControlButtons
			// 
			lytControlButtons.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
			lytControlButtons.AutoSize = true;
			lytControlButtons.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
			lytControlButtons.Controls.Add(this.btnConnect);
			lytControlButtons.Controls.Add(this.btnCreateDatabase);
			lytControlButtons.Location = new System.Drawing.Point(7, 248);
			lytControlButtons.Name = "lytControlButtons";
			lytControlButtons.Size = new System.Drawing.Size(140, 30);
			lytControlButtons.TabIndex = 11;
			lytControlButtons.WrapContents = false;
			// 
			// btnConnect
			// 
			this.btnConnect.AutoSize = true;
			this.btnConnect.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
			this.btnConnect.ImeMode = System.Windows.Forms.ImeMode.NoControl;
			this.btnConnect.Location = new System.Drawing.Point(3, 3);
			this.btnConnect.Name = "btnConnect";
			this.btnConnect.Size = new System.Drawing.Size(64, 24);
			this.btnConnect.TabIndex = 9;
			this.btnConnect.Text = "connect";
			this.btnConnect.TextAlign = System.Drawing.ContentAlignment.TopCenter;
			this.btnConnect.UseVisualStyleBackColor = false;
			this.btnConnect.Click += new System.EventHandler(this.btnConnect_Click);
			// 
			// btnCreateDatabase
			// 
			this.btnCreateDatabase.AutoSize = true;
			this.btnCreateDatabase.BackColor = System.Drawing.SystemColors.Control;
			this.btnCreateDatabase.ImeMode = System.Windows.Forms.ImeMode.NoControl;
			this.btnCreateDatabase.Location = new System.Drawing.Point(73, 3);
			this.btnCreateDatabase.Name = "btnCreateDatabase";
			this.btnCreateDatabase.Size = new System.Drawing.Size(64, 24);
			this.btnCreateDatabase.TabIndex = 10;
			this.btnCreateDatabase.Text = "create";
			this.btnCreateDatabase.TextAlign = System.Drawing.ContentAlignment.TopCenter;
			this.btnCreateDatabase.UseVisualStyleBackColor = false;
			this.btnCreateDatabase.Click += new System.EventHandler(this.btnCreateDatabase_Click);
			// 
			// tbcEngine
			// 
			this.tbcEngine.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.tbcEngine.ItemSize = new System.Drawing.Size(47, 0);
			this.tbcEngine.Location = new System.Drawing.Point(7, 2);
			this.tbcEngine.Name = "tbcEngine";
			this.tbcEngine.SelectedIndex = 0;
			this.tbcEngine.Size = new System.Drawing.Size(349, 242);
			this.tbcEngine.TabIndex = 1;
			this.tbcEngine.Selecting += new System.Windows.Forms.TabControlCancelEventHandler(this.TearoffDbDriver);
			this.tbcEngine.SelectedIndexChanged += new System.EventHandler(this.tbcEngine_SelectedIndexChanged);
			// 
			// btnOK
			// 
			this.btnOK.AutoSize = true;
			this.btnOK.DialogResult = System.Windows.Forms.DialogResult.OK;
			this.btnOK.ImeMode = System.Windows.Forms.ImeMode.NoControl;
			this.btnOK.Location = new System.Drawing.Point(3, 3);
			this.btnOK.Name = "btnOK";
			this.btnOK.Size = new System.Drawing.Size(64, 24);
			this.btnOK.TabIndex = 2;
			this.btnOK.Text = "OK";
			this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
			// 
			// btnCancel
			// 
			this.btnCancel.AutoSize = true;
			this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
			this.btnCancel.ImeMode = System.Windows.Forms.ImeMode.NoControl;
			this.btnCancel.Location = new System.Drawing.Point(73, 3);
			this.btnCancel.Name = "btnCancel";
			this.btnCancel.Size = new System.Drawing.Size(64, 24);
			this.btnCancel.TabIndex = 3;
			this.btnCancel.Text = "Cancel";
			// 
			// flowLayoutPanel1
			// 
			this.flowLayoutPanel1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
			this.flowLayoutPanel1.AutoSize = true;
			this.flowLayoutPanel1.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
			this.flowLayoutPanel1.Controls.Add(this.btnOK);
			this.flowLayoutPanel1.Controls.Add(this.btnCancel);
			this.flowLayoutPanel1.Location = new System.Drawing.Point(207, 248);
			this.flowLayoutPanel1.Name = "flowLayoutPanel1";
			this.flowLayoutPanel1.Size = new System.Drawing.Size(140, 30);
			this.flowLayoutPanel1.TabIndex = 12;
			this.flowLayoutPanel1.WrapContents = false;
			// 
			// SelectDB
			// 
			this.AcceptButton = this.btnOK;
			this.CancelButton = this.btnCancel;
			this.ClientSize = new System.Drawing.Size(364, 279);
			this.Controls.Add(this.flowLayoutPanel1);
			this.Controls.Add(lytControlButtons);
			this.Controls.Add(this.tbcEngine);
			this.MaximizeBox = false;
			this.Name = "SelectDB";
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
			this.Text = "Select DB Engine";
			lytControlButtons.ResumeLayout(false);
			lytControlButtons.PerformLayout();
			this.flowLayoutPanel1.ResumeLayout(false);
			this.flowLayoutPanel1.PerformLayout();
			this.ResumeLayout(false);
			this.PerformLayout();

		}
Example #37
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        protected override void InitializeComponent()
        {
            _userInputFlowPanel = new System.Windows.Forms.FlowLayoutPanel();
            _signatureControlInputLayoutTable = new System.Windows.Forms.TableLayoutPanel();
            _addDigSigCheckBox     = new System.Windows.Forms.CheckBox();
            _signerlabel           = new System.Windows.Forms.Label();
            _addDocPropCheckBox    = new System.Windows.Forms.CheckBox();
            _reasonLabel           = new System.Windows.Forms.Label();
            _reasonComboBox        = new System.Windows.Forms.ComboBox();
            _actionlabel           = new System.Windows.Forms.Label();
            _locationLabel         = new System.Windows.Forms.Label();
            _locationTextBox       = new System.Windows.Forms.TextBox();
            _divider               = new DialogDivider();
            _buttonflowLayoutPanel = new System.Windows.Forms.FlowLayoutPanel();
            _cancelButton          = new System.Windows.Forms.Button();
            _signButton            = new System.Windows.Forms.Button();
            _signSaveAsButton      = new System.Windows.Forms.Button();
            _mainLayoutTable       = new System.Windows.Forms.TableLayoutPanel();
            _userInputFlowPanel.SuspendLayout();
            _signatureControlInputLayoutTable.SuspendLayout();
            _buttonflowLayoutPanel.SuspendLayout();
            _mainLayoutTable.SuspendLayout();
            SuspendLayout();

            //
            // _userInputFlowPanel
            //
            _userInputFlowPanel.Anchor       = System.Windows.Forms.AnchorStyles.Left;
            _userInputFlowPanel.AutoSize     = true;
            _userInputFlowPanel.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            _userInputFlowPanel.Controls.Add(_signatureControlInputLayoutTable);
            _userInputFlowPanel.Location = new System.Drawing.Point(3, 71);
            _userInputFlowPanel.Name     = "_userInputFlowPanel";
            _userInputFlowPanel.Size     = new System.Drawing.Size(475, 195);
            //
            // _signatureControlInputLayoutTable
            //
            _signatureControlInputLayoutTable.AutoSize     = true;
            _signatureControlInputLayoutTable.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            _signatureControlInputLayoutTable.ColumnCount  = 1;
            _signatureControlInputLayoutTable.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
            _signatureControlInputLayoutTable.Controls.Add(_divider, 0, 8);
            _signatureControlInputLayoutTable.Controls.Add(_addDigSigCheckBox, 0, 7);
            _signatureControlInputLayoutTable.Controls.Add(_signerlabel, 0, 0);
            _signatureControlInputLayoutTable.Controls.Add(_addDocPropCheckBox, 0, 6);
            _signatureControlInputLayoutTable.Controls.Add(_reasonLabel, 0, 1);
            _signatureControlInputLayoutTable.Controls.Add(_reasonComboBox, 0, 2);
            _signatureControlInputLayoutTable.Controls.Add(_actionlabel, 0, 5);
            _signatureControlInputLayoutTable.Controls.Add(_locationLabel, 0, 3);
            _signatureControlInputLayoutTable.Controls.Add(_locationTextBox, 0, 4);
            _signatureControlInputLayoutTable.Location = new System.Drawing.Point(6, 19);
            _signatureControlInputLayoutTable.Name     = "_signatureControlInputLayoutTable";
            _signatureControlInputLayoutTable.RowCount = 9;
            _signatureControlInputLayoutTable.RowStyles.Add(new System.Windows.Forms.RowStyle());
            _signatureControlInputLayoutTable.RowStyles.Add(new System.Windows.Forms.RowStyle());
            _signatureControlInputLayoutTable.RowStyles.Add(new System.Windows.Forms.RowStyle());
            _signatureControlInputLayoutTable.RowStyles.Add(new System.Windows.Forms.RowStyle());
            _signatureControlInputLayoutTable.RowStyles.Add(new System.Windows.Forms.RowStyle());
            _signatureControlInputLayoutTable.RowStyles.Add(new System.Windows.Forms.RowStyle());
            _signatureControlInputLayoutTable.RowStyles.Add(new System.Windows.Forms.RowStyle());
            _signatureControlInputLayoutTable.RowStyles.Add(new System.Windows.Forms.RowStyle());
            _signatureControlInputLayoutTable.RowStyles.Add(new System.Windows.Forms.RowStyle());
            _signatureControlInputLayoutTable.Size = new System.Drawing.Size(466, 173);
            //
            // _addDigSigCheckBox
            //
            _addDigSigCheckBox.Anchor   = System.Windows.Forms.AnchorStyles.Left;
            _addDigSigCheckBox.AutoSize = true;
            _addDigSigCheckBox.Location = new System.Drawing.Point(3, 136);
            _addDigSigCheckBox.Name     = "_addDigSigCheckBox";
            _addDigSigCheckBox.Size     = new System.Drawing.Size(15, 14);
            _addDigSigCheckBox.TabIndex = 6;
            //
            // _signerlabel
            //
            _signerlabel.Anchor   = System.Windows.Forms.AnchorStyles.Left;
            _signerlabel.AutoSize = true;
            _signerlabel.Location = new System.Drawing.Point(3, 20);
            _signerlabel.Margin   = new System.Windows.Forms.Padding(3, 10, 3, 20);
            _signerlabel.Name     = "_signerlabel";
            _signerlabel.Size     = new System.Drawing.Size(0, 0);
            //
            // _addDocPropCheckBox
            //
            _addDocPropCheckBox.Anchor     = System.Windows.Forms.AnchorStyles.Left;
            _addDocPropCheckBox.AutoSize   = true;
            _addDocPropCheckBox.Checked    = true;
            _addDocPropCheckBox.CheckState = System.Windows.Forms.CheckState.Checked;
            _addDocPropCheckBox.Location   = new System.Drawing.Point(3, 116);
            _addDocPropCheckBox.Name       = "_addDocPropCheckBox";
            _addDocPropCheckBox.Size       = new System.Drawing.Size(15, 14);
            _addDocPropCheckBox.TabIndex   = 5;
            //
            // _reasonLabel
            //
            _reasonLabel.Anchor   = System.Windows.Forms.AnchorStyles.Left;
            _reasonLabel.AutoSize = true;
            _reasonLabel.Location = new System.Drawing.Point(3, 40);
            _reasonLabel.Name     = "_reasonLabel";
            _reasonLabel.Size     = new System.Drawing.Size(0, 0);
            //
            // _reasonComboBox
            //
            _reasonComboBox.Anchor            = System.Windows.Forms.AnchorStyles.Left;
            _reasonComboBox.FormattingEnabled = true;
            _reasonComboBox.Location          = new System.Drawing.Point(3, 43);
            _reasonComboBox.MaxLength         = _maxIntentLength;
            _reasonComboBox.Name     = "_reasonComboBox";
            _reasonComboBox.Size     = new System.Drawing.Size(460, 21);
            _reasonComboBox.TabIndex = 0;
            //
            // _actionlabel
            //
            _actionlabel.Anchor   = System.Windows.Forms.AnchorStyles.Left;
            _actionlabel.AutoSize = true;
            _actionlabel.Location = new System.Drawing.Point(3, 113);
            _actionlabel.Margin   = new System.Windows.Forms.Padding(3, 10, 3, 0);
            _actionlabel.Name     = "_actionlabel";
            _actionlabel.Size     = new System.Drawing.Size(0, 0);
            //
            // _locationLabel
            //
            _locationLabel.Anchor   = System.Windows.Forms.AnchorStyles.Left;
            _locationLabel.AutoSize = true;
            _locationLabel.Location = new System.Drawing.Point(3, 77);
            _locationLabel.Margin   = new System.Windows.Forms.Padding(3, 10, 3, 0);
            _locationLabel.Name     = "_locationLabel";
            _locationLabel.Size     = new System.Drawing.Size(0, 0);
            //
            // _locationTextBox
            //
            _locationTextBox.Anchor    = System.Windows.Forms.AnchorStyles.Left;
            _locationTextBox.Location  = new System.Drawing.Point(3, 80);
            _locationTextBox.MaxLength = _maxLocationLength;
            _locationTextBox.Name      = "_locationTextBox";
            _locationTextBox.Size      = new System.Drawing.Size(460, 20);
            _locationTextBox.TabIndex  = 1;
            //
            // _divider
            //
            _divider.Anchor = System.Windows.Forms.AnchorStyles.Left;
            _divider.Margin = new System.Windows.Forms.Padding(0, 15, 0, 0);
            _divider.Name   = "_divider";
            //
            // _buttonflowLayoutPanel
            //
            _buttonflowLayoutPanel.AutoSize     = true;
            _buttonflowLayoutPanel.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            _buttonflowLayoutPanel.Controls.Add(_cancelButton);
            _buttonflowLayoutPanel.Controls.Add(_signButton);
            _buttonflowLayoutPanel.Controls.Add(_signSaveAsButton);
            _buttonflowLayoutPanel.Dock          = System.Windows.Forms.DockStyle.Fill;
            _buttonflowLayoutPanel.FlowDirection = System.Windows.Forms.FlowDirection.RightToLeft;
            _buttonflowLayoutPanel.Location      = new System.Drawing.Point(3, 272);
            _buttonflowLayoutPanel.Margin        = new System.Windows.Forms.Padding(3, 0, 0, 0);
            _buttonflowLayoutPanel.Name          = "_buttonflowLayoutPanel";
            _buttonflowLayoutPanel.Padding       = new System.Windows.Forms.Padding(5, 5, 0, 5);
            _buttonflowLayoutPanel.Size          = new System.Drawing.Size(475, 17);
            //
            // _cancelButton
            //
            _cancelButton.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)));
            _cancelButton.AutoSize     = true;
            _cancelButton.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            _cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
            _cancelButton.Location     = new System.Drawing.Point(434, 8);
            _cancelButton.Name         = "_cancelButton";
            _cancelButton.Padding      = new System.Windows.Forms.Padding(15, 0, 15, 0);
            _cancelButton.Size         = new System.Drawing.Size(36, 6);
            _cancelButton.TabIndex     = 4;
            _cancelButton.Click       += new System.EventHandler(_cancelButton_Click);
            //
            // _signButton
            //
            _signButton.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                       | System.Windows.Forms.AnchorStyles.Left)));
            _signButton.AutoSize     = true;
            _signButton.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            _signButton.Enabled      = false;
            _signButton.Location     = new System.Drawing.Point(392, 8);
            _signButton.Name         = "_signButton";
            _signButton.Padding      = new System.Windows.Forms.Padding(15, 0, 15, 0);
            _signButton.Size         = new System.Drawing.Size(36, 6);
            _signButton.TabIndex     = 3;
            _signButton.Click       += new System.EventHandler(_signSaveButton_Click);
            //
            // _signSaveAsButton
            //
            _signSaveAsButton.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                             | System.Windows.Forms.AnchorStyles.Left)));
            _signSaveAsButton.AutoSize     = true;
            _signSaveAsButton.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            _signSaveAsButton.Enabled      = false;
            _signSaveAsButton.Location     = new System.Drawing.Point(350, 8);
            _signSaveAsButton.Name         = "_signSaveAsButton";
            _signSaveAsButton.Padding      = new System.Windows.Forms.Padding(15, 0, 15, 0);
            _signSaveAsButton.Size         = new System.Drawing.Size(36, 6);
            _signSaveAsButton.TabIndex     = 2;
            _signSaveAsButton.Click       += new System.EventHandler(_signSaveAsButton_Click);
            //
            // _mainLayoutTable
            //
            _mainLayoutTable.AutoSize     = true;
            _mainLayoutTable.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            _mainLayoutTable.ColumnCount  = 1;
            _mainLayoutTable.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
            _mainLayoutTable.Controls.Add(_userInputFlowPanel, 0, 1);
            _mainLayoutTable.Controls.Add(_buttonflowLayoutPanel, 0, 2);
            _mainLayoutTable.Location = new System.Drawing.Point(6, 6);
            _mainLayoutTable.Margin   = new System.Windows.Forms.Padding(5);
            _mainLayoutTable.Name     = "_mainLayoutTable";
            _mainLayoutTable.RowCount = 3;
            _mainLayoutTable.RowStyles.Add(new System.Windows.Forms.RowStyle());
            _mainLayoutTable.RowStyles.Add(new System.Windows.Forms.RowStyle());
            _mainLayoutTable.Size = new System.Drawing.Size(481, 292);
            //
            // SigningDialog
            //
            AcceptButton        = _signSaveAsButton;
            AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
            AutoSize            = true;
            AutoSizeMode        = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            CancelButton        = _cancelButton;
            ClientSize          = new System.Drawing.Size(492, 303);
            Controls.Add(_mainLayoutTable);
            FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
            MaximizeBox     = false;
            MinimizeBox     = false;
            Name            = "SigningDialog";
            StartPosition   = System.Windows.Forms.FormStartPosition.CenterParent;
            _userInputFlowPanel.ResumeLayout(false);
            _userInputFlowPanel.PerformLayout();
            _signatureControlInputLayoutTable.ResumeLayout(false);
            _signatureControlInputLayoutTable.PerformLayout();
            _buttonflowLayoutPanel.ResumeLayout(false);
            _buttonflowLayoutPanel.PerformLayout();
            _mainLayoutTable.ResumeLayout(false);
            _mainLayoutTable.PerformLayout();
            ResumeLayout(false);
            PerformLayout();
        }
Example #38
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          tableLayoutPanel1;
     System.Windows.Forms.Panel                     panel1;
     System.Windows.Forms.Label                     label4;
     System.Windows.Forms.Label                     label3;
     System.Windows.Forms.Label                     label2;
     System.Windows.Forms.Label                     label1;
     System.Windows.Forms.FlowLayoutPanel           flowLayoutPanel1;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(WorldVariableView));
     this.bindingComboBoxType       = new NathanAlden.TextAdventure.Common.WindowsForms.Controls.BindingComboBox();
     this.bindingSource             = new System.Windows.Forms.BindingSource(this.components);
     this.promptTextBoxValue        = new NathanAlden.TextAdventure.Common.WindowsForms.Controls.PromptTextBox();
     this.promptTextBoxName         = new NathanAlden.TextAdventure.Common.WindowsForms.Controls.PromptTextBox();
     this.promptTextBoxCategory     = new NathanAlden.TextAdventure.Common.WindowsForms.Controls.PromptTextBox();
     this.pictureBoxValidationError = new System.Windows.Forms.PictureBox();
     this.buttonOk     = new System.Windows.Forms.Button();
     this.buttonCancel = new System.Windows.Forms.Button();
     this.toolTip      = new System.Windows.Forms.ToolTip(this.components);
     tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
     panel1            = new System.Windows.Forms.Panel();
     label4            = new System.Windows.Forms.Label();
     label3            = new System.Windows.Forms.Label();
     label2            = new System.Windows.Forms.Label();
     label1            = new System.Windows.Forms.Label();
     flowLayoutPanel1  = new System.Windows.Forms.FlowLayoutPanel();
     tableLayoutPanel1.SuspendLayout();
     panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource)).BeginInit();
     flowLayoutPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBoxValidationError)).BeginInit();
     this.SuspendLayout();
     //
     // tableLayoutPanel1
     //
     tableLayoutPanel1.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)));
     tableLayoutPanel1.ColumnCount = 1;
     tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     tableLayoutPanel1.Controls.Add(panel1, 0, 0);
     tableLayoutPanel1.Controls.Add(flowLayoutPanel1, 0, 1);
     tableLayoutPanel1.Location = new System.Drawing.Point(12, 12);
     tableLayoutPanel1.Margin   = new System.Windows.Forms.Padding(0);
     tableLayoutPanel1.Name     = "tableLayoutPanel1";
     tableLayoutPanel1.RowCount = 2;
     tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
     tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
     tableLayoutPanel1.Size     = new System.Drawing.Size(360, 206);
     tableLayoutPanel1.TabIndex = 1;
     //
     // panel1
     //
     panel1.Controls.Add(this.bindingComboBoxType);
     panel1.Controls.Add(label4);
     panel1.Controls.Add(this.promptTextBoxValue);
     panel1.Controls.Add(label3);
     panel1.Controls.Add(this.promptTextBoxName);
     panel1.Controls.Add(label2);
     panel1.Controls.Add(label1);
     panel1.Controls.Add(this.promptTextBoxCategory);
     panel1.Dock     = System.Windows.Forms.DockStyle.Fill;
     panel1.Location = new System.Drawing.Point(0, 0);
     panel1.Margin   = new System.Windows.Forms.Padding(0);
     panel1.Name     = "panel1";
     panel1.Size     = new System.Drawing.Size(360, 168);
     panel1.TabIndex = 0;
     //
     // bindingComboBoxType
     //
     this.bindingComboBoxType.DataBindings.Add(new System.Windows.Forms.Binding("SelectedValue", this.bindingSource, "Type", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this.bindingComboBoxType.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.bindingComboBoxType.FormattingEnabled = true;
     this.bindingComboBoxType.Location          = new System.Drawing.Point(64, 62);
     this.bindingComboBoxType.Margin            = new System.Windows.Forms.Padding(0);
     this.bindingComboBoxType.Name     = "bindingComboBoxType";
     this.bindingComboBoxType.Size     = new System.Drawing.Size(105, 25);
     this.bindingComboBoxType.TabIndex = 6;
     //
     // bindingSource
     //
     this.bindingSource.AllowNew   = false;
     this.bindingSource.DataSource = typeof(NathanAlden.TextAdventure.Editor.Controllers.WorldVariables.WorldVariableViewModel);
     //
     // label4
     //
     label4.AutoSize = true;
     label4.Location = new System.Drawing.Point(0, 96);
     label4.Margin   = new System.Windows.Forms.Padding(0);
     label4.Name     = "label4";
     label4.Size     = new System.Drawing.Size(42, 17);
     label4.TabIndex = 7;
     label4.Text     = "Value:";
     //
     // promptTextBoxValue
     //
     this.promptTextBoxValue.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.promptTextBoxValue.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bindingSource, "Value", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this.promptTextBoxValue.Location        = new System.Drawing.Point(64, 93);
     this.promptTextBoxValue.Margin          = new System.Windows.Forms.Padding(0);
     this.promptTextBoxValue.MaxLength       = 0;
     this.promptTextBoxValue.Multiline       = true;
     this.promptTextBoxValue.Name            = "promptTextBoxValue";
     this.promptTextBoxValue.PromptForeColor = System.Drawing.SystemColors.ControlDark;
     this.promptTextBoxValue.PromptText      = "(optional)";
     this.promptTextBoxValue.Size            = new System.Drawing.Size(296, 75);
     this.promptTextBoxValue.TabIndex        = 8;
     //
     // label3
     //
     label3.AutoSize = true;
     label3.Location = new System.Drawing.Point(0, 65);
     label3.Margin   = new System.Windows.Forms.Padding(0);
     label3.Name     = "label3";
     label3.Size     = new System.Drawing.Size(38, 17);
     label3.TabIndex = 5;
     label3.Text     = "Type:";
     //
     // promptTextBoxName
     //
     this.promptTextBoxName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                           | System.Windows.Forms.AnchorStyles.Right)));
     this.promptTextBoxName.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bindingSource, "Name", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this.promptTextBoxName.Location        = new System.Drawing.Point(64, 0);
     this.promptTextBoxName.Margin          = new System.Windows.Forms.Padding(0);
     this.promptTextBoxName.Name            = "promptTextBoxName";
     this.promptTextBoxName.PromptForeColor = System.Drawing.SystemColors.ControlDark;
     this.promptTextBoxName.Size            = new System.Drawing.Size(296, 25);
     this.promptTextBoxName.TabIndex        = 1;
     this.promptTextBoxName.Leave          += new System.EventHandler(this.promptTextBoxName_Leave);
     //
     // label2
     //
     label2.AutoSize = true;
     label2.Location = new System.Drawing.Point(0, 34);
     label2.Margin   = new System.Windows.Forms.Padding(0);
     label2.Name     = "label2";
     label2.Size     = new System.Drawing.Size(64, 17);
     label2.TabIndex = 3;
     label2.Text     = "Category:";
     //
     // label1
     //
     label1.AutoSize = true;
     label1.Location = new System.Drawing.Point(0, 3);
     label1.Margin   = new System.Windows.Forms.Padding(0);
     label1.Name     = "label1";
     label1.Size     = new System.Drawing.Size(46, 17);
     label1.TabIndex = 0;
     label1.Text     = "Name:";
     //
     // promptTextBoxCategory
     //
     this.promptTextBoxCategory.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bindingSource, "Category", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this.promptTextBoxCategory.Location        = new System.Drawing.Point(64, 31);
     this.promptTextBoxCategory.Margin          = new System.Windows.Forms.Padding(0);
     this.promptTextBoxCategory.Name            = "promptTextBoxCategory";
     this.promptTextBoxCategory.PromptForeColor = System.Drawing.SystemColors.ControlDark;
     this.promptTextBoxCategory.PromptText      = "(optional)";
     this.promptTextBoxCategory.Size            = new System.Drawing.Size(193, 25);
     this.promptTextBoxCategory.TabIndex        = 4;
     this.promptTextBoxCategory.Leave          += new System.EventHandler(this.promptTextBoxCategory_Leave);
     //
     // flowLayoutPanel1
     //
     flowLayoutPanel1.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     flowLayoutPanel1.AutoSize     = true;
     flowLayoutPanel1.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     flowLayoutPanel1.Controls.Add(this.pictureBoxValidationError);
     flowLayoutPanel1.Controls.Add(this.buttonOk);
     flowLayoutPanel1.Controls.Add(this.buttonCancel);
     flowLayoutPanel1.Location = new System.Drawing.Point(174, 178);
     flowLayoutPanel1.Margin   = new System.Windows.Forms.Padding(0, 10, 0, 0);
     flowLayoutPanel1.Name     = "flowLayoutPanel1";
     flowLayoutPanel1.Size     = new System.Drawing.Size(186, 28);
     flowLayoutPanel1.TabIndex = 1;
     //
     // pictureBoxValidationError
     //
     this.pictureBoxValidationError.DataBindings.Add(new System.Windows.Forms.Binding("Visible", this.bindingSource, "HasErrors", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this.pictureBoxValidationError.Dock     = System.Windows.Forms.DockStyle.Left;
     this.pictureBoxValidationError.Image    = ((System.Drawing.Image)(resources.GetObject("pictureBoxValidationError.Image")));
     this.pictureBoxValidationError.Location = new System.Drawing.Point(0, 0);
     this.pictureBoxValidationError.Margin   = new System.Windows.Forms.Padding(0);
     this.pictureBoxValidationError.Name     = "pictureBoxValidationError";
     this.pictureBoxValidationError.Size     = new System.Drawing.Size(16, 28);
     this.pictureBoxValidationError.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
     this.pictureBoxValidationError.TabIndex = 2;
     this.pictureBoxValidationError.TabStop  = false;
     //
     // buttonOk
     //
     this.buttonOk.DataBindings.Add(new System.Windows.Forms.Binding("Enabled", this.bindingSource, "IsValid", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this.buttonOk.DialogResult            = System.Windows.Forms.DialogResult.OK;
     this.buttonOk.Location                = new System.Drawing.Point(26, 0);
     this.buttonOk.Margin                  = new System.Windows.Forms.Padding(10, 0, 0, 0);
     this.buttonOk.Name                    = "buttonOk";
     this.buttonOk.Size                    = new System.Drawing.Size(75, 28);
     this.buttonOk.TabIndex                = 0;
     this.buttonOk.Text                    = "OK";
     this.buttonOk.UseVisualStyleBackColor = true;
     //
     // buttonCancel
     //
     this.buttonCancel.DialogResult            = System.Windows.Forms.DialogResult.Cancel;
     this.buttonCancel.Location                = new System.Drawing.Point(111, 0);
     this.buttonCancel.Margin                  = new System.Windows.Forms.Padding(10, 0, 0, 0);
     this.buttonCancel.Name                    = "buttonCancel";
     this.buttonCancel.Size                    = new System.Drawing.Size(75, 28);
     this.buttonCancel.TabIndex                = 1;
     this.buttonCancel.Text                    = "Cancel";
     this.buttonCancel.UseVisualStyleBackColor = true;
     //
     // WorldVariableView
     //
     this.AcceptButton        = this.buttonOk;
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 17F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.CancelButton        = this.buttonCancel;
     this.ClientSize          = new System.Drawing.Size(384, 230);
     this.Controls.Add(tableLayoutPanel1);
     this.Font          = new System.Drawing.Font("Segoe UI", 13F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
     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.MinimumSize   = new System.Drawing.Size(297, 219);
     this.Name          = "WorldVariableView";
     this.Padding       = new System.Windows.Forms.Padding(12);
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     tableLayoutPanel1.ResumeLayout(false);
     tableLayoutPanel1.PerformLayout();
     panel1.ResumeLayout(false);
     panel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource)).EndInit();
     flowLayoutPanel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pictureBoxValidationError)).EndInit();
     this.ResumeLayout(false);
 }
Example #39
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 nameLabel;
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ListBuilder));
            System.Windows.Forms.Label authorLabel;
            System.Windows.Forms.Label urlLabel;
            System.Windows.Forms.FlowLayoutPanel metaFlow;
            System.Windows.Forms.ToolStripMenuItem fileMenu;
            System.Windows.Forms.ToolStripSeparator toolStripSeparator2;
            System.Windows.Forms.ToolStripSeparator toolStripMenuItem1;
            System.Windows.Forms.ToolStripMenuItem practiceMenu;
            System.Windows.Forms.ToolStripSeparator editSep2;
            System.Windows.Forms.ToolStripSeparator contextSep1;
            this.namePanel = new System.Windows.Forms.Panel();
            this.name = new System.Windows.Forms.TextBox();
            this.authorPanel = new System.Windows.Forms.Panel();
            this.author = new System.Windows.Forms.TextBox();
            this.urlPanel = new System.Windows.Forms.Panel();
            this.url = new System.Windows.Forms.TextBox();
            this.entriesPanel = new System.Windows.Forms.Panel();
            this.entriesLabel = new System.Windows.Forms.Label();
            this.showStartPage = new System.Windows.Forms.ToolStripMenuItem();
            this.close = new System.Windows.Forms.ToolStripMenuItem();
            this.deleteList = new System.Windows.Forms.ToolStripMenuItem();
            this.flashcards = new System.Windows.Forms.ToolStripMenuItem();
            this.learn = new System.Windows.Forms.ToolStripMenuItem();
            this.editMenu = new System.Windows.Forms.ToolStripMenuItem();
            this.undo = new System.Windows.Forms.ToolStripMenuItem();
            this.redo = new System.Windows.Forms.ToolStripMenuItem();
            this.editSep1 = new System.Windows.Forms.ToolStripSeparator();
            this.cutMI = new System.Windows.Forms.ToolStripMenuItem();
            this.copyMI = new System.Windows.Forms.ToolStripMenuItem();
            this.pasteMI = new System.Windows.Forms.ToolStripMenuItem();
            this.deleteMI = new System.Windows.Forms.ToolStripMenuItem();
            this.copyAsCsv = new System.Windows.Forms.ToolStripMenuItem();
            this.pasteCSV = new System.Windows.Forms.ToolStripMenuItem();
            this.editSep3 = new System.Windows.Forms.ToolStripSeparator();
            this.sort = new System.Windows.Forms.ToolStripMenuItem();
            this.editMetadata = new System.Windows.Forms.ToolStripMenuItem();
            this.swapAll = new System.Windows.Forms.ToolStripMenuItem();
            this.mainMenu = new System.Windows.Forms.MenuStrip();
            this.itemContextMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.cutCM = new System.Windows.Forms.ToolStripMenuItem();
            this.copyCM = new System.Windows.Forms.ToolStripMenuItem();
            this.pasteCM = new System.Windows.Forms.ToolStripMenuItem();
            this.swap = new System.Windows.Forms.ToolStripMenuItem();
            this.deleteCM = new System.Windows.Forms.ToolStripMenuItem();
            this.saveFileDialog = new System.Windows.Forms.SaveFileDialog();
            this.meta = new System.Windows.Forms.Panel();
            this.shadow = new System.Windows.Forms.PictureBox();
            this.icon = new System.Windows.Forms.PictureBox();
            this.grid = new Szotar.WindowsForms.Controls.DictionaryGrid();
            nameLabel = new System.Windows.Forms.Label();
            authorLabel = new System.Windows.Forms.Label();
            urlLabel = new System.Windows.Forms.Label();
            metaFlow = new System.Windows.Forms.FlowLayoutPanel();
            fileMenu = new System.Windows.Forms.ToolStripMenuItem();
            toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
            toolStripMenuItem1 = new System.Windows.Forms.ToolStripSeparator();
            practiceMenu = new System.Windows.Forms.ToolStripMenuItem();
            editSep2 = new System.Windows.Forms.ToolStripSeparator();
            contextSep1 = new System.Windows.Forms.ToolStripSeparator();
            metaFlow.SuspendLayout();
            this.namePanel.SuspendLayout();
            this.authorPanel.SuspendLayout();
            this.urlPanel.SuspendLayout();
            this.entriesPanel.SuspendLayout();
            this.mainMenu.SuspendLayout();
            this.itemContextMenu.SuspendLayout();
            this.meta.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.shadow)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.icon)).BeginInit();
            this.SuspendLayout();
            // 
            // nameLabel
            // 
            resources.ApplyResources(nameLabel, "nameLabel");
            nameLabel.ForeColor = System.Drawing.SystemColors.GrayText;
            nameLabel.Name = "nameLabel";
            // 
            // authorLabel
            // 
            resources.ApplyResources(authorLabel, "authorLabel");
            authorLabel.ForeColor = System.Drawing.SystemColors.GrayText;
            authorLabel.Name = "authorLabel";
            // 
            // urlLabel
            // 
            resources.ApplyResources(urlLabel, "urlLabel");
            urlLabel.ForeColor = System.Drawing.SystemColors.GrayText;
            urlLabel.Name = "urlLabel";
            // 
            // metaFlow
            // 
            resources.ApplyResources(metaFlow, "metaFlow");
            metaFlow.Controls.Add(this.namePanel);
            metaFlow.Controls.Add(this.authorPanel);
            metaFlow.Controls.Add(this.urlPanel);
            metaFlow.Controls.Add(this.entriesPanel);
            metaFlow.Name = "metaFlow";
            // 
            // namePanel
            // 
            resources.ApplyResources(this.namePanel, "namePanel");
            this.namePanel.Controls.Add(this.name);
            this.namePanel.Controls.Add(nameLabel);
            this.namePanel.Name = "namePanel";
            // 
            // name
            // 
            resources.ApplyResources(this.name, "name");
            this.name.Name = "name";
            // 
            // authorPanel
            // 
            resources.ApplyResources(this.authorPanel, "authorPanel");
            this.authorPanel.Controls.Add(this.author);
            this.authorPanel.Controls.Add(authorLabel);
            this.authorPanel.Name = "authorPanel";
            // 
            // author
            // 
            resources.ApplyResources(this.author, "author");
            this.author.Name = "author";
            // 
            // urlPanel
            // 
            resources.ApplyResources(this.urlPanel, "urlPanel");
            this.urlPanel.Controls.Add(this.url);
            this.urlPanel.Controls.Add(urlLabel);
            this.urlPanel.Name = "urlPanel";
            // 
            // url
            // 
            resources.ApplyResources(this.url, "url");
            this.url.Name = "url";
            // 
            // entriesPanel
            // 
            resources.ApplyResources(this.entriesPanel, "entriesPanel");
            this.entriesPanel.Controls.Add(this.entriesLabel);
            this.entriesPanel.Name = "entriesPanel";
            // 
            // entriesLabel
            // 
            resources.ApplyResources(this.entriesLabel, "entriesLabel");
            this.entriesLabel.ForeColor = System.Drawing.SystemColors.GrayText;
            this.entriesLabel.Name = "entriesLabel";
            // 
            // fileMenu
            // 
            resources.ApplyResources(fileMenu, "fileMenu");
            fileMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.showStartPage,
            toolStripSeparator2,
            this.close,
            toolStripMenuItem1,
            this.deleteList});
            fileMenu.Name = "fileMenu";
            // 
            // showStartPage
            // 
            resources.ApplyResources(this.showStartPage, "showStartPage");
            this.showStartPage.Name = "showStartPage";
            // 
            // toolStripSeparator2
            // 
            resources.ApplyResources(toolStripSeparator2, "toolStripSeparator2");
            toolStripSeparator2.Name = "toolStripSeparator2";
            // 
            // close
            // 
            resources.ApplyResources(this.close, "close");
            this.close.Name = "close";
            // 
            // toolStripMenuItem1
            // 
            resources.ApplyResources(toolStripMenuItem1, "toolStripMenuItem1");
            toolStripMenuItem1.Name = "toolStripMenuItem1";
            // 
            // deleteList
            // 
            resources.ApplyResources(this.deleteList, "deleteList");
            this.deleteList.Name = "deleteList";
            // 
            // practiceMenu
            // 
            resources.ApplyResources(practiceMenu, "practiceMenu");
            practiceMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.flashcards,
            this.learn});
            practiceMenu.Name = "practiceMenu";
            // 
            // flashcards
            // 
            resources.ApplyResources(this.flashcards, "flashcards");
            this.flashcards.Name = "flashcards";
            this.flashcards.Click += new System.EventHandler(this.FlashcardsClick);
            // 
            // learn
            // 
            resources.ApplyResources(this.learn, "learn");
            this.learn.Name = "learn";
            this.learn.Click += new System.EventHandler(this.LearnClick);
            // 
            // editSep2
            // 
            resources.ApplyResources(editSep2, "editSep2");
            editSep2.ForeColor = System.Drawing.SystemColors.ControlText;
            editSep2.Name = "editSep2";
            // 
            // contextSep1
            // 
            resources.ApplyResources(contextSep1, "contextSep1");
            contextSep1.Name = "contextSep1";
            // 
            // editMenu
            // 
            resources.ApplyResources(this.editMenu, "editMenu");
            this.editMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.undo,
            this.redo,
            this.editSep1,
            this.cutMI,
            this.copyMI,
            this.pasteMI,
            this.deleteMI,
            editSep2,
            this.copyAsCsv,
            this.pasteCSV,
            this.editSep3,
            this.sort,
            this.editMetadata,
            this.swapAll});
            this.editMenu.Name = "editMenu";
            // 
            // undo
            // 
            resources.ApplyResources(this.undo, "undo");
            this.undo.Name = "undo";
            // 
            // redo
            // 
            resources.ApplyResources(this.redo, "redo");
            this.redo.Name = "redo";
            // 
            // editSep1
            // 
            resources.ApplyResources(this.editSep1, "editSep1");
            this.editSep1.Name = "editSep1";
            // 
            // cutMI
            // 
            resources.ApplyResources(this.cutMI, "cutMI");
            this.cutMI.Name = "cutMI";
            // 
            // copyMI
            // 
            resources.ApplyResources(this.copyMI, "copyMI");
            this.copyMI.Name = "copyMI";
            // 
            // pasteMI
            // 
            resources.ApplyResources(this.pasteMI, "pasteMI");
            this.pasteMI.Name = "pasteMI";
            // 
            // deleteMI
            // 
            resources.ApplyResources(this.deleteMI, "deleteMI");
            this.deleteMI.Name = "deleteMI";
            // 
            // copyAsCsv
            // 
            resources.ApplyResources(this.copyAsCsv, "copyAsCsv");
            this.copyAsCsv.Name = "copyAsCsv";
            // 
            // pasteCSV
            // 
            resources.ApplyResources(this.pasteCSV, "pasteCSV");
            this.pasteCSV.Name = "pasteCSV";
            this.pasteCSV.Click += new System.EventHandler(this.PasteCsvClick);
            // 
            // editSep3
            // 
            resources.ApplyResources(this.editSep3, "editSep3");
            this.editSep3.Name = "editSep3";
            // 
            // sort
            // 
            resources.ApplyResources(this.sort, "sort");
            this.sort.Name = "sort";
            // 
            // editMetadata
            // 
            resources.ApplyResources(this.editMetadata, "editMetadata");
            this.editMetadata.Checked = true;
            this.editMetadata.CheckState = System.Windows.Forms.CheckState.Checked;
            this.editMetadata.Name = "editMetadata";
            // 
            // swapAll
            // 
            resources.ApplyResources(this.swapAll, "swapAll");
            this.swapAll.Name = "swapAll";
            // 
            // mainMenu
            // 
            resources.ApplyResources(this.mainMenu, "mainMenu");
            this.mainMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            fileMenu,
            this.editMenu,
            practiceMenu});
            this.mainMenu.LayoutStyle = System.Windows.Forms.ToolStripLayoutStyle.HorizontalStackWithOverflow;
            this.mainMenu.Name = "mainMenu";
            // 
            // itemContextMenu
            // 
            resources.ApplyResources(this.itemContextMenu, "itemContextMenu");
            this.itemContextMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.cutCM,
            this.copyCM,
            this.pasteCM,
            contextSep1,
            this.swap,
            this.deleteCM});
            this.itemContextMenu.Name = "itemContextMenu";
            // 
            // cutCM
            // 
            resources.ApplyResources(this.cutCM, "cutCM");
            this.cutCM.Name = "cutCM";
            // 
            // copyCM
            // 
            resources.ApplyResources(this.copyCM, "copyCM");
            this.copyCM.Name = "copyCM";
            // 
            // pasteCM
            // 
            resources.ApplyResources(this.pasteCM, "pasteCM");
            this.pasteCM.Name = "pasteCM";
            // 
            // swap
            // 
            resources.ApplyResources(this.swap, "swap");
            this.swap.Name = "swap";
            // 
            // deleteCM
            // 
            resources.ApplyResources(this.deleteCM, "deleteCM");
            this.deleteCM.Name = "deleteCM";
            // 
            // saveFileDialog
            // 
            resources.ApplyResources(this.saveFileDialog, "saveFileDialog");
            // 
            // meta
            // 
            resources.ApplyResources(this.meta, "meta");
            this.meta.Controls.Add(metaFlow);
            this.meta.Controls.Add(this.shadow);
            this.meta.Controls.Add(this.icon);
            this.meta.Name = "meta";
            // 
            // shadow
            // 
            resources.ApplyResources(this.shadow, "shadow");
            this.shadow.Cursor = System.Windows.Forms.Cursors.SizeNS;
            this.shadow.Image = global::Szotar.WindowsForms.Properties.Resources.TopInwardShadow;
            this.shadow.Name = "shadow";
            this.shadow.TabStop = false;
            // 
            // icon
            // 
            resources.ApplyResources(this.icon, "icon");
            this.icon.Image = global::Szotar.WindowsForms.Properties.Resources.GenericDocument96;
            this.icon.Name = "icon";
            this.icon.TabStop = false;
            // 
            // grid
            // 
            resources.ApplyResources(this.grid, "grid");
            this.grid.AllowNewItems = true;
            this.grid.ColumnRatio = 0.5F;
            this.grid.DataSource = null;
            this.grid.ItemContextMenu = this.itemContextMenu;
            this.grid.Name = "grid";
            this.grid.ShowMutableRows = false;
            // 
            // ListBuilder
            // 
            resources.ApplyResources(this, "$this");
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.grid);
            this.Controls.Add(this.meta);
            this.Controls.Add(this.mainMenu);
            this.Name = "ListBuilder";
            metaFlow.ResumeLayout(false);
            metaFlow.PerformLayout();
            this.namePanel.ResumeLayout(false);
            this.namePanel.PerformLayout();
            this.authorPanel.ResumeLayout(false);
            this.authorPanel.PerformLayout();
            this.urlPanel.ResumeLayout(false);
            this.urlPanel.PerformLayout();
            this.entriesPanel.ResumeLayout(false);
            this.entriesPanel.PerformLayout();
            this.mainMenu.ResumeLayout(false);
            this.mainMenu.PerformLayout();
            this.itemContextMenu.ResumeLayout(false);
            this.meta.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.shadow)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.icon)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();

		}
Example #40
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.Panel panel1;
            System.Windows.Forms.FlowLayoutPanel flowLayoutPanel1;
            Aga.Controls.Tree.NodeControls.NodeTextBox nodeTextBox2;
            Aga.Controls.Tree.NodeControls.NodeTextBox nodeTextBox3;
            Aga.Controls.Tree.NodeControls.NodeTextBox nodeTextBox1;
            Aga.Controls.Tree.NodeControls.NodeDecimalTextBox nodeDecimalTextBox1;
            Aga.Controls.Tree.NodeControls.NodeDecimalTextBox nodeDecimalTextBox2;
            Aga.Controls.Tree.NodeControls.NodeDecimalTextBox nodeDecimalTextBox5;
            Aga.Controls.Tree.NodeControls.NodeDecimalTextBox nodeDecimalTextBox6;
            this.textBox1 = new System.Windows.Forms.TextBox();
            this.findButton = new System.Windows.Forms.Button();
            this.button1 = new System.Windows.Forms.Button();
            this.button2 = new System.Windows.Forms.Button();
            this.treeColumn4 = new Aga.Controls.Tree.TreeColumn();
            this.treeColumn5 = new Aga.Controls.Tree.TreeColumn();
            this.timer1 = new System.Windows.Forms.Timer(this.components);
            this.backgroundWorker1 = new System.ComponentModel.BackgroundWorker();
            this.treeViewAdv1 = new Aga.Controls.Tree.TreeViewAdv();
            this.treeColumn1 = new Aga.Controls.Tree.TreeColumn();
            this.treeColumn2 = new Aga.Controls.Tree.TreeColumn();
            this.treeColumn3 = new Aga.Controls.Tree.TreeColumn();
            this.treeColumn6 = new Aga.Controls.Tree.TreeColumn();
            this.treeColumn7 = new Aga.Controls.Tree.TreeColumn();
            panel1 = new System.Windows.Forms.Panel();
            flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
            nodeTextBox2 = new Aga.Controls.Tree.NodeControls.NodeTextBox();
            nodeTextBox3 = new Aga.Controls.Tree.NodeControls.NodeTextBox();
            nodeTextBox1 = new Aga.Controls.Tree.NodeControls.NodeTextBox();
            nodeDecimalTextBox1 = new Aga.Controls.Tree.NodeControls.NodeDecimalTextBox();
            nodeDecimalTextBox2 = new Aga.Controls.Tree.NodeControls.NodeDecimalTextBox();
            nodeDecimalTextBox5 = new Aga.Controls.Tree.NodeControls.NodeDecimalTextBox();
            nodeDecimalTextBox6 = new Aga.Controls.Tree.NodeControls.NodeDecimalTextBox();
            panel1.SuspendLayout();
            flowLayoutPanel1.SuspendLayout();
            this.SuspendLayout();
            // 
            // panel1
            // 
            panel1.Controls.Add(this.textBox1);
            panel1.Controls.Add(flowLayoutPanel1);
            panel1.Dock = System.Windows.Forms.DockStyle.Top;
            panel1.Location = new System.Drawing.Point(0, 0);
            panel1.Name = "panel1";
            panel1.Size = new System.Drawing.Size(669, 23);
            panel1.TabIndex = 3;
            // 
            // textBox1
            // 
            this.textBox1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.textBox1.Location = new System.Drawing.Point(0, 0);
            this.textBox1.Name = "textBox1";
            this.textBox1.Size = new System.Drawing.Size(519, 21);
            this.textBox1.TabIndex = 1;
            this.textBox1.Text = "localhost:5000";
            this.textBox1.WordWrap = false;
            // 
            // flowLayoutPanel1
            // 
            flowLayoutPanel1.AutoSize = true;
            flowLayoutPanel1.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            flowLayoutPanel1.Controls.Add(this.findButton);
            flowLayoutPanel1.Controls.Add(this.button1);
            flowLayoutPanel1.Controls.Add(this.button2);
            flowLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Right;
            flowLayoutPanel1.Location = new System.Drawing.Point(519, 0);
            flowLayoutPanel1.Name = "flowLayoutPanel1";
            flowLayoutPanel1.Size = new System.Drawing.Size(150, 23);
            flowLayoutPanel1.TabIndex = 2;
            flowLayoutPanel1.WrapContents = false;
            // 
            // findButton
            // 
            this.findButton.AutoSize = true;
            this.findButton.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            this.findButton.Location = new System.Drawing.Point(3, 0);
            this.findButton.Margin = new System.Windows.Forms.Padding(3, 0, 0, 0);
            this.findButton.Name = "findButton";
            this.findButton.Size = new System.Drawing.Size(39, 22);
            this.findButton.TabIndex = 4;
            this.findButton.Text = "Find";
            this.findButton.UseVisualStyleBackColor = true;
            this.findButton.Click += new System.EventHandler(this.findButton_Click);
            // 
            // button1
            // 
            this.button1.AutoSize = true;
            this.button1.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            this.button1.Location = new System.Drawing.Point(45, 0);
            this.button1.Margin = new System.Windows.Forms.Padding(3, 0, 0, 0);
            this.button1.Name = "button1";
            this.button1.Size = new System.Drawing.Size(57, 22);
            this.button1.TabIndex = 0;
            this.button1.Text = "Connect";
            this.button1.UseVisualStyleBackColor = true;
            this.button1.Click += new System.EventHandler(this.button1_Click);
            // 
            // button2
            // 
            this.button2.AutoSize = true;
            this.button2.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            this.button2.Enabled = false;
            this.button2.Location = new System.Drawing.Point(105, 0);
            this.button2.Margin = new System.Windows.Forms.Padding(3, 0, 0, 0);
            this.button2.Name = "button2";
            this.button2.Size = new System.Drawing.Size(45, 22);
            this.button2.TabIndex = 3;
            this.button2.Text = "Pause";
            this.button2.UseVisualStyleBackColor = true;
            this.button2.Click += new System.EventHandler(this.button2_Click);
            // 
            // nodeTextBox2
            // 
            nodeTextBox2.DataPropertyName = "TkBytesAsString";
            nodeTextBox2.IncrementalSearchEnabled = true;
            nodeTextBox2.LeftMargin = 3;
            nodeTextBox2.ParentColumn = this.treeColumn4;
            nodeTextBox2.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // treeColumn4
            // 
            this.treeColumn4.Header = "TkBytes";
            this.treeColumn4.SortOrder = System.Windows.Forms.SortOrder.None;
            this.treeColumn4.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            this.treeColumn4.TooltipText = "Total allocated memory rounded to nearest kilo bytes (including child call)";
            this.treeColumn4.Width = 60;
            // 
            // nodeTextBox3
            // 
            nodeTextBox3.DataPropertyName = "SkBytesAsString";
            nodeTextBox3.IncrementalSearchEnabled = true;
            nodeTextBox3.LeftMargin = 3;
            nodeTextBox3.ParentColumn = this.treeColumn5;
            nodeTextBox3.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // treeColumn5
            // 
            this.treeColumn5.Header = "SkBytes";
            this.treeColumn5.SortOrder = System.Windows.Forms.SortOrder.None;
            this.treeColumn5.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            this.treeColumn5.TooltipText = "Self allocated memory rounded to nearest kilo bytes (child call not included)";
            this.treeColumn5.Width = 60;
            // 
            // timer1
            // 
            this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
            // 
            // backgroundWorker1
            // 
            this.backgroundWorker1.WorkerSupportsCancellation = true;
            this.backgroundWorker1.DoWork += new System.ComponentModel.DoWorkEventHandler(this.backgroundWorker1_DoWork);
            this.backgroundWorker1.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.backgroundWorker1_RunWorkerCompleted);
            // 
            // treeViewAdv1
            // 
            this.treeViewAdv1.AllowColumnReorder = true;
            this.treeViewAdv1.BackColor = System.Drawing.SystemColors.Window;
            this.treeViewAdv1.Columns.Add(this.treeColumn1);
            this.treeViewAdv1.Columns.Add(this.treeColumn2);
            this.treeViewAdv1.Columns.Add(this.treeColumn3);
            this.treeViewAdv1.Columns.Add(this.treeColumn4);
            this.treeViewAdv1.Columns.Add(this.treeColumn5);
            this.treeViewAdv1.Columns.Add(this.treeColumn6);
            this.treeViewAdv1.Columns.Add(this.treeColumn7);
            this.treeViewAdv1.DefaultToolTipProvider = null;
            this.treeViewAdv1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.treeViewAdv1.DragDropMarkColor = System.Drawing.Color.Black;
            this.treeViewAdv1.FullRowSelect = true;
            this.treeViewAdv1.GridLineStyle = ((Aga.Controls.Tree.GridLineStyle)((Aga.Controls.Tree.GridLineStyle.Horizontal | Aga.Controls.Tree.GridLineStyle.Vertical)));
            this.treeViewAdv1.Indent = 12;
            this.treeViewAdv1.LineColor = System.Drawing.SystemColors.ControlDark;
            this.treeViewAdv1.Location = new System.Drawing.Point(0, 23);
            this.treeViewAdv1.Model = null;
            this.treeViewAdv1.Name = "treeViewAdv1";
            this.treeViewAdv1.NodeControls.Add(nodeTextBox1);
            this.treeViewAdv1.NodeControls.Add(nodeDecimalTextBox1);
            this.treeViewAdv1.NodeControls.Add(nodeDecimalTextBox2);
            this.treeViewAdv1.NodeControls.Add(nodeTextBox2);
            this.treeViewAdv1.NodeControls.Add(nodeTextBox3);
            this.treeViewAdv1.NodeControls.Add(nodeDecimalTextBox5);
            this.treeViewAdv1.NodeControls.Add(nodeDecimalTextBox6);
            this.treeViewAdv1.SelectedNode = null;
            this.treeViewAdv1.Size = new System.Drawing.Size(669, 318);
            this.treeViewAdv1.TabIndex = 2;
            this.treeViewAdv1.Text = "treeViewAdv1";
            this.treeViewAdv1.UseColumns = true;
            this.treeViewAdv1.ColumnClicked += new System.EventHandler<Aga.Controls.Tree.TreeColumnEventArgs>(this.treeViewAdv1_ColumnClicked);
            // 
            // treeColumn1
            // 
            this.treeColumn1.Header = "Callstack";
            this.treeColumn1.SortOrder = System.Windows.Forms.SortOrder.None;
            this.treeColumn1.TooltipText = "Function name";
            this.treeColumn1.Width = 300;
            // 
            // treeColumn2
            // 
            this.treeColumn2.Header = "TCount";
            this.treeColumn2.SortOrder = System.Windows.Forms.SortOrder.None;
            this.treeColumn2.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            this.treeColumn2.TooltipText = "Total no. of allocation count (including child call)";
            this.treeColumn2.Width = 60;
            // 
            // treeColumn3
            // 
            this.treeColumn3.Header = "SCount";
            this.treeColumn3.SortOrder = System.Windows.Forms.SortOrder.None;
            this.treeColumn3.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            this.treeColumn3.TooltipText = "Self no. of allocation count (child call not included)";
            this.treeColumn3.Width = 60;
            // 
            // treeColumn6
            // 
            this.treeColumn6.Header = "SCount/F";
            this.treeColumn6.SortOrder = System.Windows.Forms.SortOrder.None;
            this.treeColumn6.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            this.treeColumn6.TooltipText = "Self no. of allocation count per frame";
            this.treeColumn6.Width = 60;
            // 
            // treeColumn7
            // 
            this.treeColumn7.Header = "Call/F";
            this.treeColumn7.SortOrder = System.Windows.Forms.SortOrder.None;
            this.treeColumn7.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            this.treeColumn7.TooltipText = "No. of call per frame";
            this.treeColumn7.Width = 60;
            // 
            // nodeTextBox1
            // 
            nodeTextBox1.DataPropertyName = "Name";
            nodeTextBox1.EditEnabled = false;
            nodeTextBox1.IncrementalSearchEnabled = true;
            nodeTextBox1.LeftMargin = 3;
            nodeTextBox1.ParentColumn = this.treeColumn1;
            // 
            // nodeDecimalTextBox1
            // 
            nodeDecimalTextBox1.DataPropertyName = "TCount";
            nodeDecimalTextBox1.EditEnabled = false;
            nodeDecimalTextBox1.IncrementalSearchEnabled = true;
            nodeDecimalTextBox1.LeftMargin = 3;
            nodeDecimalTextBox1.ParentColumn = this.treeColumn2;
            nodeDecimalTextBox1.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // nodeDecimalTextBox2
            // 
            nodeDecimalTextBox2.DataPropertyName = "SCount";
            nodeDecimalTextBox2.EditEnabled = false;
            nodeDecimalTextBox2.IncrementalSearchEnabled = true;
            nodeDecimalTextBox2.LeftMargin = 3;
            nodeDecimalTextBox2.ParentColumn = this.treeColumn3;
            nodeDecimalTextBox2.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // nodeDecimalTextBox5
            // 
            nodeDecimalTextBox5.DataPropertyName = "SCountPerFrame";
            nodeDecimalTextBox5.IncrementalSearchEnabled = true;
            nodeDecimalTextBox5.LeftMargin = 3;
            nodeDecimalTextBox5.ParentColumn = this.treeColumn6;
            nodeDecimalTextBox5.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // nodeDecimalTextBox6
            // 
            nodeDecimalTextBox6.DataPropertyName = "CallPerFrame";
            nodeDecimalTextBox6.IncrementalSearchEnabled = true;
            nodeDecimalTextBox6.LeftMargin = 3;
            nodeDecimalTextBox6.ParentColumn = this.treeColumn7;
            nodeDecimalTextBox6.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // Form1
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(669, 341);
            this.Controls.Add(this.treeViewAdv1);
            this.Controls.Add(panel1);
            this.Name = "Form1";
            this.Text = "Memory profiler client";
            panel1.ResumeLayout(false);
            panel1.PerformLayout();
            flowLayoutPanel1.ResumeLayout(false);
            flowLayoutPanel1.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()
 {
     System.Windows.Forms.FlowLayoutPanel flowLayoutPanel1;
     this.btnOK = new System.Windows.Forms.Button();
     this.btnCancel = new System.Windows.Forms.Button();
     this.btnRegisterAll = new System.Windows.Forms.Button();
     this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
     this.SwitchSystemProxyLabel = new System.Windows.Forms.Label();
     this.SwitchProxyModeLabel = new System.Windows.Forms.Label();
     this.SwitchAllowLanLabel = new System.Windows.Forms.Label();
     this.ShowLogsLabel = new System.Windows.Forms.Label();
     this.ServerMoveUpLabel = new System.Windows.Forms.Label();
     this.ServerMoveDownLabel = new System.Windows.Forms.Label();
     this.SwitchSystemProxyTextBox = new System.Windows.Forms.TextBox();
     this.SwitchProxyModeTextBox = new System.Windows.Forms.TextBox();
     this.SwitchAllowLanTextBox = new System.Windows.Forms.TextBox();
     this.ShowLogsTextBox = new System.Windows.Forms.TextBox();
     this.ServerMoveUpTextBox = new System.Windows.Forms.TextBox();
     this.ServerMoveDownTextBox = new System.Windows.Forms.TextBox();
     flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
     flowLayoutPanel1.SuspendLayout();
     this.tableLayoutPanel1.SuspendLayout();
     this.SuspendLayout();
     //
     // flowLayoutPanel1
     //
     this.tableLayoutPanel1.SetColumnSpan(flowLayoutPanel1, 2);
     flowLayoutPanel1.Controls.Add(this.btnOK);
     flowLayoutPanel1.Controls.Add(this.btnCancel);
     flowLayoutPanel1.Controls.Add(this.btnRegisterAll);
     flowLayoutPanel1.FlowDirection = System.Windows.Forms.FlowDirection.BottomUp;
     flowLayoutPanel1.Location = new System.Drawing.Point(0, 205);
     flowLayoutPanel1.Margin = new System.Windows.Forms.Padding(0);
     flowLayoutPanel1.Name = "flowLayoutPanel1";
     flowLayoutPanel1.Padding = new System.Windows.Forms.Padding(0, 0, 16, 0);
     flowLayoutPanel1.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     flowLayoutPanel1.Size = new System.Drawing.Size(475, 43);
     flowLayoutPanel1.TabIndex = 6;
     //
     // btnOK
     //
     this.btnOK.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.btnOK.Location = new System.Drawing.Point(333, 9);
     this.btnOK.Name = "btnOK";
     this.btnOK.Size = new System.Drawing.Size(123, 31);
     this.btnOK.TabIndex = 0;
     this.btnOK.Text = "OK";
     this.btnOK.UseVisualStyleBackColor = true;
     this.btnOK.Click += new System.EventHandler(this.OKButton_Click);
     //
     // btnCancel
     //
     this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnCancel.Location = new System.Drawing.Point(204, 9);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(123, 31);
     this.btnCancel.TabIndex = 1;
     this.btnCancel.Text = "Cancel";
     this.btnCancel.UseVisualStyleBackColor = true;
     this.btnCancel.Click += new System.EventHandler(this.CancelButton_Click);
     //
     // btnRegisterAll
     //
     this.btnRegisterAll.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnRegisterAll.Location = new System.Drawing.Point(75, 9);
     this.btnRegisterAll.Name = "btnRegisterAll";
     this.btnRegisterAll.Size = new System.Drawing.Size(123, 31);
     this.btnRegisterAll.TabIndex = 2;
     this.btnRegisterAll.Text = "Reg All";
     this.btnRegisterAll.UseVisualStyleBackColor = true;
     this.btnRegisterAll.Click += new System.EventHandler(this.RegisterAllButton_Click);
     //
     // tableLayoutPanel1
     //
     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(this.SwitchSystemProxyLabel, 0, 0);
     this.tableLayoutPanel1.Controls.Add(this.SwitchProxyModeLabel, 0, 1);
     this.tableLayoutPanel1.Controls.Add(this.SwitchAllowLanLabel, 0, 2);
     this.tableLayoutPanel1.Controls.Add(this.ShowLogsLabel, 0, 3);
     this.tableLayoutPanel1.Controls.Add(this.ServerMoveUpLabel, 0, 4);
     this.tableLayoutPanel1.Controls.Add(this.ServerMoveDownLabel, 0, 5);
     this.tableLayoutPanel1.Controls.Add(flowLayoutPanel1, 0, 6);
     this.tableLayoutPanel1.Controls.Add(this.SwitchSystemProxyTextBox, 1, 0);
     this.tableLayoutPanel1.Controls.Add(this.SwitchProxyModeTextBox, 1, 1);
     this.tableLayoutPanel1.Controls.Add(this.SwitchAllowLanTextBox, 1, 2);
     this.tableLayoutPanel1.Controls.Add(this.ShowLogsTextBox, 1, 3);
     this.tableLayoutPanel1.Controls.Add(this.ServerMoveUpTextBox, 1, 4);
     this.tableLayoutPanel1.Controls.Add(this.ServerMoveDownTextBox, 1, 5);
     this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
     this.tableLayoutPanel1.Name = "tableLayoutPanel1";
     this.tableLayoutPanel1.RowCount = 7;
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 16.50485F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 16.50485F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 16.50485F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 16.50485F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 17.21683F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 16.76375F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 40F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     this.tableLayoutPanel1.Size = new System.Drawing.Size(491, 248);
     this.tableLayoutPanel1.TabIndex = 0;
     //
     // SwitchSystemProxyLabel
     //
     this.SwitchSystemProxyLabel.AutoSize = true;
     this.SwitchSystemProxyLabel.Dock = System.Windows.Forms.DockStyle.Right;
     this.SwitchSystemProxyLabel.Location = new System.Drawing.Point(50, 0);
     this.SwitchSystemProxyLabel.Margin = new System.Windows.Forms.Padding(8, 0, 8, 0);
     this.SwitchSystemProxyLabel.Name = "SwitchSystemProxyLabel";
     this.SwitchSystemProxyLabel.Size = new System.Drawing.Size(147, 34);
     this.SwitchSystemProxyLabel.TabIndex = 0;
     this.SwitchSystemProxyLabel.Text = "Enable System Proxy";
     this.SwitchSystemProxyLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // SwitchProxyModeLabel
     //
     this.SwitchProxyModeLabel.AutoSize = true;
     this.SwitchProxyModeLabel.Dock = System.Windows.Forms.DockStyle.Right;
     this.SwitchProxyModeLabel.Location = new System.Drawing.Point(8, 34);
     this.SwitchProxyModeLabel.Margin = new System.Windows.Forms.Padding(8, 0, 8, 0);
     this.SwitchProxyModeLabel.Name = "SwitchProxyModeLabel";
     this.SwitchProxyModeLabel.Size = new System.Drawing.Size(189, 34);
     this.SwitchProxyModeLabel.TabIndex = 1;
     this.SwitchProxyModeLabel.Text = "Switch System Proxy Mode";
     this.SwitchProxyModeLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // SwitchAllowLanLabel
     //
     this.SwitchAllowLanLabel.AutoSize = true;
     this.SwitchAllowLanLabel.Dock = System.Windows.Forms.DockStyle.Right;
     this.SwitchAllowLanLabel.Location = new System.Drawing.Point(33, 68);
     this.SwitchAllowLanLabel.Margin = new System.Windows.Forms.Padding(8, 0, 8, 0);
     this.SwitchAllowLanLabel.Name = "SwitchAllowLanLabel";
     this.SwitchAllowLanLabel.Size = new System.Drawing.Size(164, 34);
     this.SwitchAllowLanLabel.TabIndex = 3;
     this.SwitchAllowLanLabel.Text = "Allow Clients from LAN";
     this.SwitchAllowLanLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // ShowLogsLabel
     //
     this.ShowLogsLabel.AutoSize = true;
     this.ShowLogsLabel.Dock = System.Windows.Forms.DockStyle.Right;
     this.ShowLogsLabel.Location = new System.Drawing.Point(107, 102);
     this.ShowLogsLabel.Margin = new System.Windows.Forms.Padding(8, 0, 8, 0);
     this.ShowLogsLabel.Name = "ShowLogsLabel";
     this.ShowLogsLabel.Size = new System.Drawing.Size(90, 34);
     this.ShowLogsLabel.TabIndex = 4;
     this.ShowLogsLabel.Text = "Show Logs...";
     this.ShowLogsLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // ServerMoveUpLabel
     //
     this.ServerMoveUpLabel.AutoSize = true;
     this.ServerMoveUpLabel.Dock = System.Windows.Forms.DockStyle.Right;
     this.ServerMoveUpLabel.Location = new System.Drawing.Point(128, 136);
     this.ServerMoveUpLabel.Margin = new System.Windows.Forms.Padding(8, 0, 8, 0);
     this.ServerMoveUpLabel.Name = "ServerMoveUpLabel";
     this.ServerMoveUpLabel.Size = new System.Drawing.Size(69, 35);
     this.ServerMoveUpLabel.TabIndex = 4;
     this.ServerMoveUpLabel.Text = "Move up";
     this.ServerMoveUpLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // ServerMoveDownLabel
     //
     this.ServerMoveDownLabel.AutoSize = true;
     this.ServerMoveDownLabel.Dock = System.Windows.Forms.DockStyle.Right;
     this.ServerMoveDownLabel.Location = new System.Drawing.Point(106, 171);
     this.ServerMoveDownLabel.Margin = new System.Windows.Forms.Padding(8, 0, 8, 0);
     this.ServerMoveDownLabel.Name = "ServerMoveDownLabel";
     this.ServerMoveDownLabel.Size = new System.Drawing.Size(91, 34);
     this.ServerMoveDownLabel.TabIndex = 4;
     this.ServerMoveDownLabel.Text = "Move Down";
     this.ServerMoveDownLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // SwitchSystemProxyTextBox
     //
     this.SwitchSystemProxyTextBox.Dock = System.Windows.Forms.DockStyle.Fill;
     this.SwitchSystemProxyTextBox.Location = new System.Drawing.Point(208, 3);
     this.SwitchSystemProxyTextBox.Margin = new System.Windows.Forms.Padding(3, 3, 16, 3);
     this.SwitchSystemProxyTextBox.Name = "SwitchSystemProxyTextBox";
     this.SwitchSystemProxyTextBox.ReadOnly = true;
     this.SwitchSystemProxyTextBox.Size = new System.Drawing.Size(276, 25);
     this.SwitchSystemProxyTextBox.TabIndex = 7;
     this.SwitchSystemProxyTextBox.TextChanged += new System.EventHandler(this.TextBox_TextChanged);
     this.SwitchSystemProxyTextBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.HotkeyDown);
     this.SwitchSystemProxyTextBox.KeyUp += new System.Windows.Forms.KeyEventHandler(this.HotkeyUp);
     //
     // SwitchProxyModeTextBox
     //
     this.SwitchProxyModeTextBox.Dock = System.Windows.Forms.DockStyle.Fill;
     this.SwitchProxyModeTextBox.Location = new System.Drawing.Point(208, 37);
     this.SwitchProxyModeTextBox.Margin = new System.Windows.Forms.Padding(3, 3, 16, 3);
     this.SwitchProxyModeTextBox.Name = "SwitchProxyModeTextBox";
     this.SwitchProxyModeTextBox.ReadOnly = true;
     this.SwitchProxyModeTextBox.Size = new System.Drawing.Size(276, 25);
     this.SwitchProxyModeTextBox.TabIndex = 8;
     this.SwitchProxyModeTextBox.TextChanged += new System.EventHandler(this.TextBox_TextChanged);
     this.SwitchProxyModeTextBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.HotkeyDown);
     this.SwitchProxyModeTextBox.KeyUp += new System.Windows.Forms.KeyEventHandler(this.HotkeyUp);
     //
     // SwitchAllowLanTextBox
     //
     this.SwitchAllowLanTextBox.Dock = System.Windows.Forms.DockStyle.Fill;
     this.SwitchAllowLanTextBox.Location = new System.Drawing.Point(208, 71);
     this.SwitchAllowLanTextBox.Margin = new System.Windows.Forms.Padding(3, 3, 16, 3);
     this.SwitchAllowLanTextBox.Name = "SwitchAllowLanTextBox";
     this.SwitchAllowLanTextBox.ReadOnly = true;
     this.SwitchAllowLanTextBox.Size = new System.Drawing.Size(276, 25);
     this.SwitchAllowLanTextBox.TabIndex = 10;
     this.SwitchAllowLanTextBox.TextChanged += new System.EventHandler(this.TextBox_TextChanged);
     this.SwitchAllowLanTextBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.HotkeyDown);
     this.SwitchAllowLanTextBox.KeyUp += new System.Windows.Forms.KeyEventHandler(this.HotkeyUp);
     //
     // ShowLogsTextBox
     //
     this.ShowLogsTextBox.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ShowLogsTextBox.Location = new System.Drawing.Point(208, 105);
     this.ShowLogsTextBox.Margin = new System.Windows.Forms.Padding(3, 3, 16, 3);
     this.ShowLogsTextBox.Name = "ShowLogsTextBox";
     this.ShowLogsTextBox.ReadOnly = true;
     this.ShowLogsTextBox.Size = new System.Drawing.Size(276, 25);
     this.ShowLogsTextBox.TabIndex = 11;
     this.ShowLogsTextBox.TextChanged += new System.EventHandler(this.TextBox_TextChanged);
     this.ShowLogsTextBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.HotkeyDown);
     this.ShowLogsTextBox.KeyUp += new System.Windows.Forms.KeyEventHandler(this.HotkeyUp);
     //
     // ServerMoveUpTextBox
     //
     this.ServerMoveUpTextBox.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ServerMoveUpTextBox.Location = new System.Drawing.Point(208, 139);
     this.ServerMoveUpTextBox.Margin = new System.Windows.Forms.Padding(3, 3, 16, 3);
     this.ServerMoveUpTextBox.Name = "ServerMoveUpTextBox";
     this.ServerMoveUpTextBox.ReadOnly = true;
     this.ServerMoveUpTextBox.Size = new System.Drawing.Size(276, 25);
     this.ServerMoveUpTextBox.TabIndex = 12;
     this.ServerMoveUpTextBox.TextChanged += new System.EventHandler(this.TextBox_TextChanged);
     this.ServerMoveUpTextBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.HotkeyDown);
     this.ServerMoveUpTextBox.KeyUp += new System.Windows.Forms.KeyEventHandler(this.HotkeyUp);
     //
     // ServerMoveDownTextBox
     //
     this.ServerMoveDownTextBox.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ServerMoveDownTextBox.Location = new System.Drawing.Point(208, 174);
     this.ServerMoveDownTextBox.Margin = new System.Windows.Forms.Padding(3, 3, 16, 3);
     this.ServerMoveDownTextBox.Name = "ServerMoveDownTextBox";
     this.ServerMoveDownTextBox.ReadOnly = true;
     this.ServerMoveDownTextBox.Size = new System.Drawing.Size(276, 25);
     this.ServerMoveDownTextBox.TabIndex = 13;
     this.ServerMoveDownTextBox.TextChanged += new System.EventHandler(this.TextBox_TextChanged);
     this.ServerMoveDownTextBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.HotkeyDown);
     this.ServerMoveDownTextBox.KeyUp += new System.Windows.Forms.KeyEventHandler(this.HotkeyUp);
     //
     // HotkeySettingsForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
     this.ClientSize = new System.Drawing.Size(491, 248);
     this.Controls.Add(this.tableLayoutPanel1);
     this.Font = new System.Drawing.Font("微软雅黑", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "HotkeySettingsForm";
     this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Edit Hotkeys...";
     flowLayoutPanel1.ResumeLayout(false);
     this.tableLayoutPanel1.ResumeLayout(false);
     this.tableLayoutPanel1.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()
 {
     System.Windows.Forms.TableLayoutPanel          tableMain;
     System.Windows.Forms.FlowLayoutPanel           flowButtons;
     System.Windows.Forms.Label                     formatLabel;
     System.Windows.Forms.Label                     exampleLabel;
     System.Windows.Forms.Panel                     panel;
     System.Windows.Forms.GroupBox                  groupNumbers;
     System.Windows.Forms.GroupBox                  otherGroup;
     System.Windows.Forms.GroupBox                  namesGroup;
     System.Windows.Forms.GroupBox                  dateGroup;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormatBuilder));
     this.okButton            = new System.Windows.Forms.Button();
     this.cancelButton        = new System.Windows.Forms.Button();
     this.textExample         = new System.Windows.Forms.TextBox();
     this.textFormat          = new System.Windows.Forms.TextBox();
     this.digitalSelector     = new System.Windows.Forms.NumericUpDown();
     this.episodeNumberButton = new System.Windows.Forms.Button();
     this.seasonNumberButton  = new System.Windows.Forms.Button();
     this.directoryButton     = new System.Windows.Forms.Button();
     this.fileExtensionButton = new System.Windows.Forms.Button();
     this.folderNameButton    = new System.Windows.Forms.Button();
     this.wordSeparator       = new System.Windows.Forms.ComboBox();
     this.episodeNameButton   = new System.Windows.Forms.Button();
     this.showNameButton      = new System.Windows.Forms.Button();
     this.dateFormat          = new System.Windows.Forms.TextBox();
     this.dateExample         = new System.Windows.Forms.TextBox();
     this.dateButton          = new System.Windows.Forms.Button();
     tableMain    = new System.Windows.Forms.TableLayoutPanel();
     flowButtons  = new System.Windows.Forms.FlowLayoutPanel();
     formatLabel  = new System.Windows.Forms.Label();
     exampleLabel = new System.Windows.Forms.Label();
     panel        = new System.Windows.Forms.Panel();
     groupNumbers = new System.Windows.Forms.GroupBox();
     otherGroup   = new System.Windows.Forms.GroupBox();
     namesGroup   = new System.Windows.Forms.GroupBox();
     dateGroup    = new System.Windows.Forms.GroupBox();
     tableMain.SuspendLayout();
     flowButtons.SuspendLayout();
     panel.SuspendLayout();
     groupNumbers.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.digitalSelector)).BeginInit();
     otherGroup.SuspendLayout();
     namesGroup.SuspendLayout();
     dateGroup.SuspendLayout();
     this.SuspendLayout();
     //
     // tableMain
     //
     tableMain.ColumnCount = 2;
     tableMain.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 104F));
     tableMain.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 25.00062F));
     tableMain.Controls.Add(flowButtons, 0, 3);
     tableMain.Controls.Add(this.textExample, 1, 2);
     tableMain.Controls.Add(this.textFormat, 1, 1);
     tableMain.Controls.Add(formatLabel, 0, 1);
     tableMain.Controls.Add(exampleLabel, 0, 2);
     tableMain.Controls.Add(panel, 0, 0);
     tableMain.Dock     = System.Windows.Forms.DockStyle.Fill;
     tableMain.Location = new System.Drawing.Point(0, 0);
     tableMain.Name     = "tableMain";
     tableMain.RowCount = 4;
     tableMain.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
     tableMain.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
     tableMain.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
     tableMain.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F));
     tableMain.Size     = new System.Drawing.Size(371, 221);
     tableMain.TabIndex = 0;
     //
     // flowButtons
     //
     tableMain.SetColumnSpan(flowButtons, 2);
     flowButtons.Controls.Add(this.okButton);
     flowButtons.Controls.Add(this.cancelButton);
     flowButtons.Dock          = System.Windows.Forms.DockStyle.Fill;
     flowButtons.FlowDirection = System.Windows.Forms.FlowDirection.RightToLeft;
     flowButtons.Location      = new System.Drawing.Point(0, 191);
     flowButtons.Margin        = new System.Windows.Forms.Padding(0);
     flowButtons.Name          = "flowButtons";
     flowButtons.Size          = new System.Drawing.Size(371, 30);
     flowButtons.TabIndex      = 0;
     //
     // okButton
     //
     this.okButton.Location = new System.Drawing.Point(293, 3);
     this.okButton.Name     = "okButton";
     this.okButton.Size     = new System.Drawing.Size(75, 23);
     this.okButton.TabIndex = 0;
     this.okButton.Text     = "OK";
     this.okButton.UseVisualStyleBackColor = true;
     this.okButton.Click += new System.EventHandler(this.OkButtonClick);
     //
     // cancelButton
     //
     this.cancelButton.Location = new System.Drawing.Point(212, 3);
     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;
     this.cancelButton.Click += new System.EventHandler(this.CancelButtonClick);
     //
     // textExample
     //
     this.textExample.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.textExample.Location = new System.Drawing.Point(107, 169);
     this.textExample.Name     = "textExample";
     this.textExample.ReadOnly = true;
     this.textExample.Size     = new System.Drawing.Size(261, 20);
     this.textExample.TabIndex = 1;
     //
     // textFormat
     //
     this.textFormat.Dock         = System.Windows.Forms.DockStyle.Fill;
     this.textFormat.Location     = new System.Drawing.Point(107, 144);
     this.textFormat.Name         = "textFormat";
     this.textFormat.Size         = new System.Drawing.Size(261, 20);
     this.textFormat.TabIndex     = 2;
     this.textFormat.TextChanged += new System.EventHandler(this.TextFormatTextChanged);
     //
     // formatLabel
     //
     formatLabel.Anchor   = System.Windows.Forms.AnchorStyles.Right;
     formatLabel.AutoSize = true;
     formatLabel.Location = new System.Drawing.Point(29, 147);
     formatLabel.Name     = "formatLabel";
     formatLabel.Size     = new System.Drawing.Size(72, 13);
     formatLabel.TabIndex = 3;
     formatLabel.Text     = "Format String:";
     //
     // exampleLabel
     //
     exampleLabel.Anchor   = System.Windows.Forms.AnchorStyles.Right;
     exampleLabel.AutoSize = true;
     exampleLabel.Location = new System.Drawing.Point(16, 172);
     exampleLabel.Name     = "exampleLabel";
     exampleLabel.Size     = new System.Drawing.Size(85, 13);
     exampleLabel.TabIndex = 4;
     exampleLabel.Text     = "Example Output:";
     //
     // panel
     //
     tableMain.SetColumnSpan(panel, 2);
     panel.Controls.Add(groupNumbers);
     panel.Controls.Add(otherGroup);
     panel.Controls.Add(namesGroup);
     panel.Controls.Add(dateGroup);
     panel.Dock     = System.Windows.Forms.DockStyle.Fill;
     panel.Location = new System.Drawing.Point(3, 3);
     panel.Name     = "panel";
     panel.Size     = new System.Drawing.Size(365, 135);
     panel.TabIndex = 10;
     //
     // groupNumbers
     //
     groupNumbers.AutoSize = true;
     groupNumbers.Controls.Add(this.digitalSelector);
     groupNumbers.Controls.Add(this.episodeNumberButton);
     groupNumbers.Controls.Add(this.seasonNumberButton);
     groupNumbers.Location = new System.Drawing.Point(3, 9);
     groupNumbers.Name     = "groupNumbers";
     groupNumbers.Size     = new System.Drawing.Size(82, 119);
     groupNumbers.TabIndex = 6;
     groupNumbers.TabStop  = false;
     groupNumbers.Text     = "Numbers";
     //
     // digitalSelector
     //
     this.digitalSelector.Location = new System.Drawing.Point(6, 77);
     this.digitalSelector.Maximum  = new decimal(new int[] {
         10,
         0,
         0,
         0
     });
     this.digitalSelector.Minimum = new decimal(new int[] {
         1,
         0,
         0,
         0
     });
     this.digitalSelector.Name     = "digitalSelector";
     this.digitalSelector.Size     = new System.Drawing.Size(65, 20);
     this.digitalSelector.TabIndex = 2;
     this.digitalSelector.Value    = new decimal(new int[] {
         1,
         0,
         0,
         0
     });
     //
     // episodeNumberButton
     //
     this.episodeNumberButton.Location = new System.Drawing.Point(6, 48);
     this.episodeNumberButton.Name     = "episodeNumberButton";
     this.episodeNumberButton.Size     = new System.Drawing.Size(65, 23);
     this.episodeNumberButton.TabIndex = 1;
     this.episodeNumberButton.Text     = "Episode";
     this.episodeNumberButton.UseVisualStyleBackColor = true;
     this.episodeNumberButton.Click += new System.EventHandler(this.EpisodeNumberButtonClick);
     //
     // seasonNumberButton
     //
     this.seasonNumberButton.Location = new System.Drawing.Point(6, 19);
     this.seasonNumberButton.Name     = "seasonNumberButton";
     this.seasonNumberButton.Size     = new System.Drawing.Size(65, 23);
     this.seasonNumberButton.TabIndex = 0;
     this.seasonNumberButton.Text     = "Season";
     this.seasonNumberButton.UseVisualStyleBackColor = true;
     this.seasonNumberButton.Click += new System.EventHandler(this.SeasonNumberButtonClick);
     //
     // otherGroup
     //
     otherGroup.AutoSize = true;
     otherGroup.Controls.Add(this.directoryButton);
     otherGroup.Controls.Add(this.fileExtensionButton);
     otherGroup.Controls.Add(this.folderNameButton);
     otherGroup.Location = new System.Drawing.Point(257, 9);
     otherGroup.Name     = "otherGroup";
     otherGroup.Size     = new System.Drawing.Size(96, 119);
     otherGroup.TabIndex = 9;
     otherGroup.TabStop  = false;
     otherGroup.Text     = "Other";
     //
     // directoryButton
     //
     this.directoryButton.Location = new System.Drawing.Point(6, 77);
     this.directoryButton.Name     = "directoryButton";
     this.directoryButton.Size     = new System.Drawing.Size(84, 23);
     this.directoryButton.TabIndex = 12;
     this.directoryButton.Text     = "Directory";
     this.directoryButton.UseVisualStyleBackColor = true;
     this.directoryButton.Click += new System.EventHandler(this.DirectoryButtonClick);
     //
     // fileExtensionButton
     //
     this.fileExtensionButton.Location = new System.Drawing.Point(6, 48);
     this.fileExtensionButton.Name     = "fileExtensionButton";
     this.fileExtensionButton.Size     = new System.Drawing.Size(84, 23);
     this.fileExtensionButton.TabIndex = 11;
     this.fileExtensionButton.Text     = "File Extension";
     this.fileExtensionButton.UseVisualStyleBackColor = true;
     this.fileExtensionButton.Click += new System.EventHandler(this.FileExtensionButtonClick);
     //
     // folderNameButton
     //
     this.folderNameButton.Location = new System.Drawing.Point(6, 19);
     this.folderNameButton.Name     = "folderNameButton";
     this.folderNameButton.Size     = new System.Drawing.Size(84, 23);
     this.folderNameButton.TabIndex = 10;
     this.folderNameButton.Text     = "Folder Name";
     this.folderNameButton.UseVisualStyleBackColor = true;
     this.folderNameButton.Click += new System.EventHandler(this.FolderNameButtonClick);
     //
     // namesGroup
     //
     namesGroup.AutoSize = true;
     namesGroup.Controls.Add(this.wordSeparator);
     namesGroup.Controls.Add(this.episodeNameButton);
     namesGroup.Controls.Add(this.showNameButton);
     namesGroup.Location = new System.Drawing.Point(91, 9);
     namesGroup.Name     = "namesGroup";
     namesGroup.Size     = new System.Drawing.Size(77, 119);
     namesGroup.TabIndex = 7;
     namesGroup.TabStop  = false;
     namesGroup.Text     = "Names";
     //
     // wordSeparator
     //
     this.wordSeparator.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.wordSeparator.FormattingEnabled = true;
     this.wordSeparator.Items.AddRange(new object[] {
         "[space]",
         ".",
         "-",
         "_"
     });
     this.wordSeparator.Location = new System.Drawing.Point(6, 76);
     this.wordSeparator.Name     = "wordSeparator";
     this.wordSeparator.Size     = new System.Drawing.Size(65, 21);
     this.wordSeparator.TabIndex = 2;
     //
     // episodeNameButton
     //
     this.episodeNameButton.Location = new System.Drawing.Point(6, 48);
     this.episodeNameButton.Name     = "episodeNameButton";
     this.episodeNameButton.Size     = new System.Drawing.Size(65, 23);
     this.episodeNameButton.TabIndex = 1;
     this.episodeNameButton.Text     = "Episode";
     this.episodeNameButton.UseVisualStyleBackColor = true;
     this.episodeNameButton.Click += new System.EventHandler(this.EpisodeNameButtonClick);
     //
     // showNameButton
     //
     this.showNameButton.Location = new System.Drawing.Point(6, 19);
     this.showNameButton.Name     = "showNameButton";
     this.showNameButton.Size     = new System.Drawing.Size(65, 23);
     this.showNameButton.TabIndex = 0;
     this.showNameButton.Text     = "Show";
     this.showNameButton.UseVisualStyleBackColor = true;
     this.showNameButton.Click += new System.EventHandler(this.ShowNameButtonClick);
     //
     // dateGroup
     //
     dateGroup.AutoSize = true;
     dateGroup.Controls.Add(this.dateFormat);
     dateGroup.Controls.Add(this.dateExample);
     dateGroup.Controls.Add(this.dateButton);
     dateGroup.Location = new System.Drawing.Point(174, 9);
     dateGroup.Name     = "dateGroup";
     dateGroup.Size     = new System.Drawing.Size(77, 119);
     dateGroup.TabIndex = 8;
     dateGroup.TabStop  = false;
     dateGroup.Text     = "Date";
     //
     // dateFormat
     //
     this.dateFormat.Location     = new System.Drawing.Point(6, 51);
     this.dateFormat.Name         = "dateFormat";
     this.dateFormat.Size         = new System.Drawing.Size(65, 20);
     this.dateFormat.TabIndex     = 1;
     this.dateFormat.TextChanged += new System.EventHandler(this.DateFormatTextChanged);
     //
     // dateExample
     //
     this.dateExample.Location = new System.Drawing.Point(6, 77);
     this.dateExample.Name     = "dateExample";
     this.dateExample.ReadOnly = true;
     this.dateExample.Size     = new System.Drawing.Size(65, 20);
     this.dateExample.TabIndex = 2;
     //
     // dateButton
     //
     this.dateButton.Location = new System.Drawing.Point(6, 19);
     this.dateButton.Name     = "dateButton";
     this.dateButton.Size     = new System.Drawing.Size(65, 23);
     this.dateButton.TabIndex = 0;
     this.dateButton.Text     = "Date";
     this.dateButton.UseVisualStyleBackColor = true;
     this.dateButton.Click += new System.EventHandler(this.DateButtonClick);
     //
     // FormatBuilder
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(371, 221);
     this.Controls.Add(tableMain);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MinimumSize   = new System.Drawing.Size(387, 259);
     this.Name          = "FormatBuilder";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text          = "Format Builder";
     this.Load         += new System.EventHandler(this.FormatBuilderLoad);
     tableMain.ResumeLayout(false);
     tableMain.PerformLayout();
     flowButtons.ResumeLayout(false);
     panel.ResumeLayout(false);
     panel.PerformLayout();
     groupNumbers.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.digitalSelector)).EndInit();
     otherGroup.ResumeLayout(false);
     namesGroup.ResumeLayout(false);
     dateGroup.ResumeLayout(false);
     dateGroup.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()
 {
     System.Windows.Forms.FlowLayoutPanel flowLayoutPanel1;
     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.button5     = new System.Windows.Forms.Button();
     this.panel2      = new System.Windows.Forms.Panel();
     this.pictureBox6 = new System.Windows.Forms.PictureBox();
     this.pictureBox5 = new System.Windows.Forms.PictureBox();
     this.pictureBox4 = new System.Windows.Forms.PictureBox();
     this.pictureBox3 = new System.Windows.Forms.PictureBox();
     this.pictureBox2 = new System.Windows.Forms.PictureBox();
     this.panel1      = new System.Windows.Forms.Panel();
     this.label3      = new System.Windows.Forms.Label();
     this.label2      = new System.Windows.Forms.Label();
     this.label1      = new System.Windows.Forms.Label();
     this.pictureBox1 = new System.Windows.Forms.PictureBox();
     flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
     flowLayoutPanel1.SuspendLayout();
     this.panel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     this.SuspendLayout();
     //
     // flowLayoutPanel1
     //
     flowLayoutPanel1.BackColor             = System.Drawing.Color.Lavender;
     flowLayoutPanel1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
     flowLayoutPanel1.Controls.Add(this.button1);
     flowLayoutPanel1.Controls.Add(this.button2);
     flowLayoutPanel1.Controls.Add(this.button3);
     flowLayoutPanel1.Controls.Add(this.button4);
     flowLayoutPanel1.Controls.Add(this.button5);
     flowLayoutPanel1.Dock     = System.Windows.Forms.DockStyle.Bottom;
     flowLayoutPanel1.ImeMode  = System.Windows.Forms.ImeMode.NoControl;
     flowLayoutPanel1.Location = new System.Drawing.Point(0, 469);
     flowLayoutPanel1.Name     = "flowLayoutPanel1";
     flowLayoutPanel1.Size     = new System.Drawing.Size(835, 85);
     flowLayoutPanel1.TabIndex = 2;
     flowLayoutPanel1.Paint   += new System.Windows.Forms.PaintEventHandler(this.flowLayoutPanel1_Paint);
     //
     // button1
     //
     this.button1.BackColor             = System.Drawing.Color.Transparent;
     this.button1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.button1.Cursor = System.Windows.Forms.Cursors.Hand;
     this.button1.FlatAppearance.BorderColor        = System.Drawing.SystemColors.Control;
     this.button1.FlatAppearance.BorderSize         = 0;
     this.button1.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
     this.button1.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
     this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.button1.Font      = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.button1.ForeColor = System.Drawing.Color.White;
     this.button1.Location  = new System.Drawing.Point(3, 3);
     this.button1.Name      = "button1";
     this.button1.Size      = new System.Drawing.Size(157, 68);
     this.button1.TabIndex  = 6;
     this.button1.Text      = "USUARIOS";
     this.button1.UseVisualStyleBackColor = false;
     this.button1.Click      += new System.EventHandler(this.button1_Click);
     this.button1.MouseLeave += new System.EventHandler(this.button1_MouseLeave);
     this.button1.MouseMove  += new System.Windows.Forms.MouseEventHandler(this.button1_MouseMove);
     //
     // button2
     //
     this.button2.BackColor             = System.Drawing.Color.Transparent;
     this.button2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.button2.Cursor = System.Windows.Forms.Cursors.Hand;
     this.button2.FlatAppearance.BorderColor        = System.Drawing.SystemColors.Control;
     this.button2.FlatAppearance.BorderSize         = 0;
     this.button2.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
     this.button2.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
     this.button2.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.button2.Font      = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.button2.ForeColor = System.Drawing.Color.White;
     this.button2.Location  = new System.Drawing.Point(166, 3);
     this.button2.Name      = "button2";
     this.button2.Size      = new System.Drawing.Size(157, 68);
     this.button2.TabIndex  = 7;
     this.button2.Text      = "CURSOS";
     this.button2.UseVisualStyleBackColor = false;
     this.button2.Click      += new System.EventHandler(this.button2_Click);
     this.button2.MouseLeave += new System.EventHandler(this.button2_MouseLeave);
     this.button2.MouseMove  += new System.Windows.Forms.MouseEventHandler(this.button2_MouseMove);
     //
     // button3
     //
     this.button3.BackColor             = System.Drawing.Color.Transparent;
     this.button3.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.button3.Cursor = System.Windows.Forms.Cursors.Hand;
     this.button3.FlatAppearance.BorderColor        = System.Drawing.SystemColors.Control;
     this.button3.FlatAppearance.BorderSize         = 0;
     this.button3.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
     this.button3.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
     this.button3.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.button3.Font      = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.button3.ForeColor = System.Drawing.Color.White;
     this.button3.Location  = new System.Drawing.Point(329, 3);
     this.button3.Name      = "button3";
     this.button3.Size      = new System.Drawing.Size(157, 68);
     this.button3.TabIndex  = 8;
     this.button3.Text      = "MATRICULA";
     this.button3.UseVisualStyleBackColor = false;
     this.button3.Click      += new System.EventHandler(this.button3_Click);
     this.button3.MouseLeave += new System.EventHandler(this.button3_MouseLeave);
     this.button3.MouseMove  += new System.Windows.Forms.MouseEventHandler(this.button3_MouseMove);
     //
     // button4
     //
     this.button4.BackColor             = System.Drawing.Color.Transparent;
     this.button4.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.button4.Cursor = System.Windows.Forms.Cursors.Hand;
     this.button4.FlatAppearance.BorderColor        = System.Drawing.SystemColors.Control;
     this.button4.FlatAppearance.BorderSize         = 0;
     this.button4.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
     this.button4.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
     this.button4.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.button4.Font      = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.button4.ForeColor = System.Drawing.Color.White;
     this.button4.Location  = new System.Drawing.Point(492, 3);
     this.button4.Name      = "button4";
     this.button4.Size      = new System.Drawing.Size(157, 68);
     this.button4.TabIndex  = 9;
     this.button4.Text      = "REPORTES";
     this.button4.UseVisualStyleBackColor = false;
     this.button4.Click      += new System.EventHandler(this.button4_Click);
     this.button4.MouseLeave += new System.EventHandler(this.button4_MouseLeave);
     this.button4.MouseMove  += new System.Windows.Forms.MouseEventHandler(this.button4_MouseMove);
     //
     // button5
     //
     this.button5.BackColor             = System.Drawing.Color.Transparent;
     this.button5.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.button5.Cursor = System.Windows.Forms.Cursors.Hand;
     this.button5.FlatAppearance.BorderColor        = System.Drawing.SystemColors.Control;
     this.button5.FlatAppearance.BorderSize         = 0;
     this.button5.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
     this.button5.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
     this.button5.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.button5.Font      = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.button5.ForeColor = System.Drawing.Color.White;
     this.button5.Location  = new System.Drawing.Point(655, 3);
     this.button5.Name      = "button5";
     this.button5.Size      = new System.Drawing.Size(157, 68);
     this.button5.TabIndex  = 10;
     this.button5.Text      = "HERRAMIENTAS";
     this.button5.UseVisualStyleBackColor = false;
     this.button5.Click      += new System.EventHandler(this.button5_Click);
     this.button5.MouseLeave += new System.EventHandler(this.button5_MouseLeave);
     this.button5.MouseMove  += new System.Windows.Forms.MouseEventHandler(this.button5_MouseMove);
     //
     // panel2
     //
     this.panel2.BackColor = System.Drawing.Color.Lavender;
     this.panel2.Controls.Add(this.pictureBox6);
     this.panel2.Controls.Add(this.pictureBox5);
     this.panel2.Controls.Add(this.pictureBox4);
     this.panel2.Controls.Add(this.pictureBox3);
     this.panel2.Controls.Add(this.pictureBox2);
     this.panel2.Location = new System.Drawing.Point(0, 388);
     this.panel2.Name     = "panel2";
     this.panel2.Size     = new System.Drawing.Size(835, 92);
     this.panel2.TabIndex = 3;
     //
     // pictureBox6
     //
     this.pictureBox6.Image    = global::SISTEMA_DE_MATRICULA_V1.Properties.Resources.HERRAMIENTAS;
     this.pictureBox6.Location = new System.Drawing.Point(698, 3);
     this.pictureBox6.Name     = "pictureBox6";
     this.pictureBox6.Size     = new System.Drawing.Size(63, 72);
     this.pictureBox6.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pictureBox6.TabIndex = 15;
     this.pictureBox6.TabStop  = false;
     //
     // pictureBox5
     //
     this.pictureBox5.Image    = global::SISTEMA_DE_MATRICULA_V1.Properties.Resources.MATRICULA;
     this.pictureBox5.Location = new System.Drawing.Point(374, 3);
     this.pictureBox5.Name     = "pictureBox5";
     this.pictureBox5.Size     = new System.Drawing.Size(63, 72);
     this.pictureBox5.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pictureBox5.TabIndex = 14;
     this.pictureBox5.TabStop  = false;
     //
     // pictureBox4
     //
     this.pictureBox4.Image    = global::SISTEMA_DE_MATRICULA_V1.Properties.Resources.CURSOS;
     this.pictureBox4.Location = new System.Drawing.Point(213, 3);
     this.pictureBox4.Name     = "pictureBox4";
     this.pictureBox4.Size     = new System.Drawing.Size(63, 72);
     this.pictureBox4.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pictureBox4.TabIndex = 13;
     this.pictureBox4.TabStop  = false;
     this.pictureBox4.Click   += new System.EventHandler(this.pictureBox4_Click);
     //
     // pictureBox3
     //
     this.pictureBox3.Image    = global::SISTEMA_DE_MATRICULA_V1.Properties.Resources.USUARIOS;
     this.pictureBox3.Location = new System.Drawing.Point(47, 3);
     this.pictureBox3.Name     = "pictureBox3";
     this.pictureBox3.Size     = new System.Drawing.Size(63, 72);
     this.pictureBox3.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pictureBox3.TabIndex = 12;
     this.pictureBox3.TabStop  = false;
     this.pictureBox3.Click   += new System.EventHandler(this.pictureBox3_Click);
     //
     // pictureBox2
     //
     this.pictureBox2.Image    = global::SISTEMA_DE_MATRICULA_V1.Properties.Resources.REPORTES;
     this.pictureBox2.Location = new System.Drawing.Point(534, 3);
     this.pictureBox2.Name     = "pictureBox2";
     this.pictureBox2.Size     = new System.Drawing.Size(63, 72);
     this.pictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pictureBox2.TabIndex = 11;
     this.pictureBox2.TabStop  = false;
     //
     // panel1
     //
     this.panel1.BackgroundImage       = global::SISTEMA_DE_MATRICULA_V1.Properties.Resources.fondo1;
     this.panel1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.panel1.Controls.Add(this.label3);
     this.panel1.Controls.Add(this.label2);
     this.panel1.Controls.Add(this.label1);
     this.panel1.Controls.Add(this.pictureBox1);
     this.panel1.Dock     = System.Windows.Forms.DockStyle.Top;
     this.panel1.Location = new System.Drawing.Point(0, 0);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(835, 382);
     this.panel1.TabIndex = 0;
     this.panel1.Paint   += new System.Windows.Forms.PaintEventHandler(this.panel1_Paint);
     //
     // label3
     //
     this.label3.AutoSize  = true;
     this.label3.BackColor = System.Drawing.Color.Transparent;
     this.label3.Font      = new System.Drawing.Font("Cambria", 27.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
     this.label3.Location  = new System.Drawing.Point(223, 153);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(465, 43);
     this.label3.TabIndex  = 3;
     this.label3.Text      = "Sistema de Matricula Escolar";
     this.label3.Click    += new System.EventHandler(this.label3_Click);
     //
     // label2
     //
     this.label2.AutoSize  = true;
     this.label2.BackColor = System.Drawing.Color.Transparent;
     this.label2.Font      = new System.Drawing.Font("Cambria", 27.75F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
     this.label2.Location  = new System.Drawing.Point(3, 260);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(166, 43);
     this.label2.TabIndex  = 2;
     this.label2.Text      = "SME v1.0";
     this.label2.Click    += new System.EventHandler(this.label2_Click);
     //
     // label1
     //
     this.label1.AutoSize  = true;
     this.label1.BackColor = System.Drawing.Color.Transparent;
     this.label1.Font      = new System.Drawing.Font("Cambria", 27.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
     this.label1.Location  = new System.Drawing.Point(270, 196);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(379, 43);
     this.label1.TabIndex  = 1;
     this.label1.Text      = "Escuela El Roto Chileno";
     this.label1.Click    += new System.EventHandler(this.label1_Click);
     //
     // pictureBox1
     //
     this.pictureBox1.BackColor = System.Drawing.Color.Transparent;
     this.pictureBox1.Image     = global::SISTEMA_DE_MATRICULA_V1.Properties.Resources.LOGO_2;
     this.pictureBox1.Location  = new System.Drawing.Point(31, 99);
     this.pictureBox1.Name      = "pictureBox1";
     this.pictureBox1.Size      = new System.Drawing.Size(112, 158);
     this.pictureBox1.SizeMode  = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pictureBox1.TabIndex  = 0;
     this.pictureBox1.TabStop   = false;
     this.pictureBox1.Click    += new System.EventHandler(this.pictureBox1_Click);
     //
     // Perfil_Administrador
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoSize            = true;
     this.BackColor           = System.Drawing.Color.Gainsboro;
     this.ClientSize          = new System.Drawing.Size(835, 554);
     this.Controls.Add(this.panel1);
     this.Controls.Add(flowLayoutPanel1);
     this.Controls.Add(this.panel2);
     this.Name          = "Perfil_Administrador";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "SOPORTE";
     this.FormClosed   += new System.Windows.Forms.FormClosedEventHandler(this.Perfil_Administrador_FormClosed);
     this.Load         += new System.EventHandler(this.Perfil_Soporte_Load);
     flowLayoutPanel1.ResumeLayout(false);
     this.panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     this.ResumeLayout(false);
 }
Example #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.FlowLayoutPanel           flowLayoutPanel1;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(NewWorldView));
     System.Windows.Forms.TableLayoutPanel          tableLayoutPanel1;
     System.Windows.Forms.Panel  panel1;
     System.Windows.Forms.Button buttonGenerateId;
     System.Windows.Forms.Label  label4;
     System.Windows.Forms.Label  label3;
     System.Windows.Forms.Label  label2;
     System.Windows.Forms.Label  label1;
     this.pictureBoxValidationError = new System.Windows.Forms.PictureBox();
     this.bindingSource             = new System.Windows.Forms.BindingSource(this.components);
     this.buttonOk               = new System.Windows.Forms.Button();
     this.buttonCancel           = new System.Windows.Forms.Button();
     this.promptTextBoxVersion   = new NathanAlden.TextAdventure.Common.WindowsForms.Controls.PromptTextBox();
     this.promptTextBoxId        = new NathanAlden.TextAdventure.Common.WindowsForms.Controls.PromptTextBox();
     this.promptTextBoxAuthor    = new NathanAlden.TextAdventure.Common.WindowsForms.Controls.PromptTextBox();
     this.promptTextBoxWorldName = new NathanAlden.TextAdventure.Common.WindowsForms.Controls.PromptTextBox();
     this.toolTip      = new System.Windows.Forms.ToolTip(this.components);
     flowLayoutPanel1  = new System.Windows.Forms.FlowLayoutPanel();
     tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
     panel1            = new System.Windows.Forms.Panel();
     buttonGenerateId  = new System.Windows.Forms.Button();
     label4            = new System.Windows.Forms.Label();
     label3            = new System.Windows.Forms.Label();
     label2            = new System.Windows.Forms.Label();
     label1            = new System.Windows.Forms.Label();
     flowLayoutPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBoxValidationError)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource)).BeginInit();
     tableLayoutPanel1.SuspendLayout();
     panel1.SuspendLayout();
     this.SuspendLayout();
     //
     // flowLayoutPanel1
     //
     flowLayoutPanel1.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     flowLayoutPanel1.AutoSize     = true;
     flowLayoutPanel1.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     flowLayoutPanel1.Controls.Add(this.pictureBoxValidationError);
     flowLayoutPanel1.Controls.Add(this.buttonOk);
     flowLayoutPanel1.Controls.Add(this.buttonCancel);
     flowLayoutPanel1.Location = new System.Drawing.Point(244, 128);
     flowLayoutPanel1.Margin   = new System.Windows.Forms.Padding(0, 10, 0, 0);
     flowLayoutPanel1.Name     = "flowLayoutPanel1";
     flowLayoutPanel1.Size     = new System.Drawing.Size(186, 28);
     flowLayoutPanel1.TabIndex = 1;
     //
     // pictureBoxValidationError
     //
     this.pictureBoxValidationError.DataBindings.Add(new System.Windows.Forms.Binding("Visible", this.bindingSource, "HasErrors", true));
     this.pictureBoxValidationError.Dock     = System.Windows.Forms.DockStyle.Left;
     this.pictureBoxValidationError.Image    = ((System.Drawing.Image)(resources.GetObject("pictureBoxValidationError.Image")));
     this.pictureBoxValidationError.Location = new System.Drawing.Point(0, 0);
     this.pictureBoxValidationError.Margin   = new System.Windows.Forms.Padding(0);
     this.pictureBoxValidationError.Name     = "pictureBoxValidationError";
     this.pictureBoxValidationError.Size     = new System.Drawing.Size(16, 28);
     this.pictureBoxValidationError.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
     this.pictureBoxValidationError.TabIndex = 2;
     this.pictureBoxValidationError.TabStop  = false;
     //
     // bindingSource
     //
     this.bindingSource.DataSource = typeof(NathanAlden.TextAdventure.Editor.Controllers.NewWorld.NewWorldViewModel);
     //
     // buttonOk
     //
     this.buttonOk.DataBindings.Add(new System.Windows.Forms.Binding("Enabled", this.bindingSource, "IsValid", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this.buttonOk.DialogResult            = System.Windows.Forms.DialogResult.OK;
     this.buttonOk.Location                = new System.Drawing.Point(26, 0);
     this.buttonOk.Margin                  = new System.Windows.Forms.Padding(10, 0, 0, 0);
     this.buttonOk.Name                    = "buttonOk";
     this.buttonOk.Size                    = new System.Drawing.Size(75, 28);
     this.buttonOk.TabIndex                = 0;
     this.buttonOk.Text                    = "OK";
     this.buttonOk.UseVisualStyleBackColor = true;
     //
     // buttonCancel
     //
     this.buttonCancel.DialogResult            = System.Windows.Forms.DialogResult.Cancel;
     this.buttonCancel.Location                = new System.Drawing.Point(111, 0);
     this.buttonCancel.Margin                  = new System.Windows.Forms.Padding(10, 0, 0, 0);
     this.buttonCancel.Name                    = "buttonCancel";
     this.buttonCancel.Size                    = new System.Drawing.Size(75, 28);
     this.buttonCancel.TabIndex                = 1;
     this.buttonCancel.Text                    = "Cancel";
     this.buttonCancel.UseVisualStyleBackColor = true;
     //
     // tableLayoutPanel1
     //
     tableLayoutPanel1.AutoSize     = true;
     tableLayoutPanel1.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     tableLayoutPanel1.ColumnCount  = 1;
     tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
     tableLayoutPanel1.Controls.Add(panel1, 0, 0);
     tableLayoutPanel1.Controls.Add(flowLayoutPanel1, 0, 1);
     tableLayoutPanel1.Location = new System.Drawing.Point(15, 15);
     tableLayoutPanel1.Name     = "tableLayoutPanel1";
     tableLayoutPanel1.RowCount = 2;
     tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
     tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
     tableLayoutPanel1.Size     = new System.Drawing.Size(430, 156);
     tableLayoutPanel1.TabIndex = 0;
     //
     // panel1
     //
     panel1.AutoSize     = true;
     panel1.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     panel1.Controls.Add(buttonGenerateId);
     panel1.Controls.Add(label4);
     panel1.Controls.Add(this.promptTextBoxVersion);
     panel1.Controls.Add(label3);
     panel1.Controls.Add(this.promptTextBoxId);
     panel1.Controls.Add(label2);
     panel1.Controls.Add(this.promptTextBoxAuthor);
     panel1.Controls.Add(label1);
     panel1.Controls.Add(this.promptTextBoxWorldName);
     panel1.Location = new System.Drawing.Point(0, 0);
     panel1.Margin   = new System.Windows.Forms.Padding(0);
     panel1.Name     = "panel1";
     panel1.Size     = new System.Drawing.Size(430, 118);
     panel1.TabIndex = 0;
     //
     // buttonGenerateId
     //
     buttonGenerateId.Font     = new System.Drawing.Font("Segoe UI", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
     buttonGenerateId.Location = new System.Drawing.Point(375, 0);
     buttonGenerateId.Margin   = new System.Windows.Forms.Padding(0);
     buttonGenerateId.Name     = "buttonGenerateId";
     buttonGenerateId.Size     = new System.Drawing.Size(55, 25);
     buttonGenerateId.TabIndex = 2;
     buttonGenerateId.Text     = "Generate";
     buttonGenerateId.UseVisualStyleBackColor = true;
     buttonGenerateId.Click += new System.EventHandler(this.buttonGenerateId_Click);
     //
     // label4
     //
     label4.AutoSize = true;
     label4.Location = new System.Drawing.Point(0, 96);
     label4.Margin   = new System.Windows.Forms.Padding(0);
     label4.Name     = "label4";
     label4.Size     = new System.Drawing.Size(54, 17);
     label4.TabIndex = 7;
     label4.Text     = "Version:";
     //
     // promptTextBoxVersion
     //
     this.promptTextBoxVersion.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bindingSource, "Version", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this.promptTextBoxVersion.Location        = new System.Drawing.Point(82, 93);
     this.promptTextBoxVersion.Margin          = new System.Windows.Forms.Padding(0);
     this.promptTextBoxVersion.Name            = "promptTextBoxVersion";
     this.promptTextBoxVersion.PromptForeColor = System.Drawing.SystemColors.ControlDark;
     this.promptTextBoxVersion.PromptText      = "e.g., 1.0";
     this.promptTextBoxVersion.Size            = new System.Drawing.Size(105, 25);
     this.promptTextBoxVersion.TabIndex        = 8;
     this.promptTextBoxVersion.Leave          += new System.EventHandler(this.promptTextBoxVersion_Leave);
     //
     // label3
     //
     label3.AutoSize = true;
     label3.Location = new System.Drawing.Point(0, 65);
     label3.Margin   = new System.Windows.Forms.Padding(0);
     label3.Name     = "label3";
     label3.Size     = new System.Drawing.Size(50, 17);
     label3.TabIndex = 5;
     label3.Text     = "Author:";
     //
     // promptTextBoxId
     //
     this.promptTextBoxId.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bindingSource, "Id", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this.promptTextBoxId.Location        = new System.Drawing.Point(82, 0);
     this.promptTextBoxId.Margin          = new System.Windows.Forms.Padding(0);
     this.promptTextBoxId.Name            = "promptTextBoxId";
     this.promptTextBoxId.PromptForeColor = System.Drawing.SystemColors.ControlDark;
     this.promptTextBoxId.PromptText      = "e.g., 00000000-0000-0000-0000-000000000000";
     this.promptTextBoxId.Size            = new System.Drawing.Size(287, 25);
     this.promptTextBoxId.TabIndex        = 1;
     this.promptTextBoxId.Leave          += new System.EventHandler(this.promptTextBoxId_Leave);
     //
     // label2
     //
     label2.AutoSize = true;
     label2.Location = new System.Drawing.Point(0, 34);
     label2.Margin   = new System.Windows.Forms.Padding(0);
     label2.Name     = "label2";
     label2.Size     = new System.Drawing.Size(82, 17);
     label2.TabIndex = 3;
     label2.Text     = "World name:";
     //
     // promptTextBoxAuthor
     //
     this.promptTextBoxAuthor.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bindingSource, "Author", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this.promptTextBoxAuthor.Location        = new System.Drawing.Point(82, 62);
     this.promptTextBoxAuthor.Margin          = new System.Windows.Forms.Padding(0);
     this.promptTextBoxAuthor.Name            = "promptTextBoxAuthor";
     this.promptTextBoxAuthor.PromptForeColor = System.Drawing.SystemColors.ControlDark;
     this.promptTextBoxAuthor.PromptText      = "e.g., Pat Smith";
     this.promptTextBoxAuthor.Size            = new System.Drawing.Size(193, 25);
     this.promptTextBoxAuthor.TabIndex        = 6;
     this.promptTextBoxAuthor.Leave          += new System.EventHandler(this.promptTextBoxAuthor_Leave);
     //
     // label1
     //
     label1.AutoSize = true;
     label1.Location = new System.Drawing.Point(0, 3);
     label1.Margin   = new System.Windows.Forms.Padding(0);
     label1.Name     = "label1";
     label1.Size     = new System.Drawing.Size(23, 17);
     label1.TabIndex = 0;
     label1.Text     = "ID:";
     //
     // promptTextBoxWorldName
     //
     this.promptTextBoxWorldName.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bindingSource, "WorldName", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this.promptTextBoxWorldName.Location        = new System.Drawing.Point(82, 31);
     this.promptTextBoxWorldName.Margin          = new System.Windows.Forms.Padding(0);
     this.promptTextBoxWorldName.Name            = "promptTextBoxWorldName";
     this.promptTextBoxWorldName.PromptForeColor = System.Drawing.SystemColors.ControlDark;
     this.promptTextBoxWorldName.PromptText      = "e.g., My World";
     this.promptTextBoxWorldName.Size            = new System.Drawing.Size(193, 25);
     this.promptTextBoxWorldName.TabIndex        = 4;
     this.promptTextBoxWorldName.Leave          += new System.EventHandler(this.promptTextBoxWorldName_Leave);
     //
     // NewWorldView
     //
     this.AcceptButton        = this.buttonOk;
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 17F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoSize            = true;
     this.AutoSizeMode        = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.AutoValidate        = System.Windows.Forms.AutoValidate.Disable;
     this.CancelButton        = this.buttonCancel;
     this.ClientSize          = new System.Drawing.Size(487, 261);
     this.Controls.Add(tableLayoutPanel1);
     this.Font            = new System.Drawing.Font("Segoe UI", 13F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     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            = "NewWorldView";
     this.Padding         = new System.Windows.Forms.Padding(12);
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text            = "New World";
     flowLayoutPanel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pictureBoxValidationError)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource)).EndInit();
     tableLayoutPanel1.ResumeLayout(false);
     tableLayoutPanel1.PerformLayout();
     panel1.ResumeLayout(false);
     panel1.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Example #45
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.FlowLayoutPanel _lytButtons;
			System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SubscribeForm));
			this._applyButton = new System.Windows.Forms.Button();
			this._cancelButton = new System.Windows.Forms.Button();
			this._okButton = new System.Windows.Forms.Button();
			this._forumListView = new System.Windows.Forms.ListView();
			this._typeColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
			this._forumColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
			this._descriptionColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
			this._formImages = new System.Windows.Forms.ImageList(this.components);
			this._messageLabel = new System.Windows.Forms.Label();
			this._syncForumsButton = new System.Windows.Forms.Button();
			this._priority = new System.Windows.Forms.NumericUpDown();
			_lytButtons = new System.Windows.Forms.FlowLayoutPanel();
			_lytButtons.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this._priority)).BeginInit();
			this.SuspendLayout();
			// 
			// _lytButtons
			// 
			resources.ApplyResources(_lytButtons, "_lytButtons");
			_lytButtons.Controls.Add(this._applyButton);
			_lytButtons.Controls.Add(this._cancelButton);
			_lytButtons.Controls.Add(this._okButton);
			_lytButtons.Name = "_lytButtons";
			// 
			// _applyButton
			// 
			resources.ApplyResources(this._applyButton, "_applyButton");
			this._applyButton.Name = "_applyButton";
			this._applyButton.Click += new System.EventHandler(this.BtnApplyClick);
			// 
			// _cancelButton
			// 
			resources.ApplyResources(this._cancelButton, "_cancelButton");
			this._cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
			this._cancelButton.Name = "_cancelButton";
			// 
			// _okButton
			// 
			resources.ApplyResources(this._okButton, "_okButton");
			this._okButton.DialogResult = System.Windows.Forms.DialogResult.OK;
			this._okButton.Name = "_okButton";
			this._okButton.Click += new System.EventHandler(this.BtnOkClick);
			// 
			// _forumListView
			// 
			resources.ApplyResources(this._forumListView, "_forumListView");
			this._forumListView.CheckBoxes = true;
			this._forumListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
			this._typeColumnHeader,
			this._forumColumnHeader,
			this._descriptionColumnHeader});
			this._forumListView.FullRowSelect = true;
			this._forumListView.GridLines = true;
			this._forumListView.HideSelection = false;
			this._forumListView.Name = "_forumListView";
			this._forumListView.SmallImageList = this._formImages;
			this._forumListView.UseCompatibleStateImageBehavior = false;
			this._forumListView.View = System.Windows.Forms.View.Details;
			this._forumListView.ColumnClick += new System.Windows.Forms.ColumnClickEventHandler(this.ForumListViewColumnClick);
			this._forumListView.SelectedIndexChanged += new System.EventHandler(this.ForumListViewSelectedIndexChanged);
			// 
			// _typeColumnHeader
			// 
			resources.ApplyResources(this._typeColumnHeader, "_typeColumnHeader");
			// 
			// _forumColumnHeader
			// 
			resources.ApplyResources(this._forumColumnHeader, "_forumColumnHeader");
			// 
			// _descriptionColumnHeader
			// 
			resources.ApplyResources(this._descriptionColumnHeader, "_descriptionColumnHeader");
			// 
			// _formImages
			// 
			this._formImages.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("_formImages.ImageStream")));
			this._formImages.TransparentColor = System.Drawing.Color.Transparent;
			this._formImages.Images.SetKeyName(0, "");
			this._formImages.Images.SetKeyName(1, "");
			// 
			// _messageLabel
			// 
			resources.ApplyResources(this._messageLabel, "_messageLabel");
			this._messageLabel.Name = "_messageLabel";
			// 
			// _syncForumsButton
			// 
			resources.ApplyResources(this._syncForumsButton, "_syncForumsButton");
			this._syncForumsButton.Name = "_syncForumsButton";
			this._syncForumsButton.Click += new System.EventHandler(this.BtnSyncForumsClick);
			// 
			// _priority
			// 
			resources.ApplyResources(this._priority, "_priority");
			this._priority.Maximum = new decimal(new int[] {
			9,
			0,
			0,
			0});
			this._priority.Name = "_priority";
			this._priority.ValueChanged += new System.EventHandler(this.PriorityValueChanged);
			// 
			// SubscribeForm
			// 
			this.AcceptButton = this._okButton;
			resources.ApplyResources(this, "$this");
			this.CancelButton = this._cancelButton;
			this.Controls.Add(_lytButtons);
			this.Controls.Add(this._priority);
			this.Controls.Add(this._syncForumsButton);
			this.Controls.Add(this._messageLabel);
			this.Controls.Add(this._forumListView);
			this.MaximizeBox = false;
			this.MinimizeBox = false;
			this.Name = "SubscribeForm";
			this.ShowInTaskbar = false;
			_lytButtons.ResumeLayout(false);
			_lytButtons.PerformLayout();
			((System.ComponentModel.ISupportInitialize)(this._priority)).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.Windows.Forms.Label            lblDevice;
     System.Windows.Forms.Label            lblConfig;
     System.Windows.Forms.Button           btnBrowse;
     System.Windows.Forms.Button           btnDetect;
     System.Windows.Forms.TableLayoutPanel mainPanel;
     System.Windows.Forms.FlowLayoutPanel  topPanel;
     System.Windows.Forms.Panel            devicePanel;
     System.Windows.Forms.Panel            configPanel;
     System.Windows.Forms.Panel            resetPanel;
     System.Windows.Forms.Panel            statusPanel;
     System.Windows.Forms.GroupBox         splitsGroup;
     this.txtDevice     = new System.Windows.Forms.TextBox();
     this.txtConfigFile = new System.Windows.Forms.TextBox();
     this.chkReset      = new System.Windows.Forms.CheckBox();
     this.chkStatus     = new System.Windows.Forms.CheckBox();
     this.errorPanel    = new System.Windows.Forms.TableLayoutPanel();
     this.errorIcon     = new System.Windows.Forms.PictureBox();
     this.errorMessage  = new System.Windows.Forms.Label();
     this.splitsPanel   = new System.Windows.Forms.TableLayoutPanel();
     lblDevice          = new System.Windows.Forms.Label();
     lblConfig          = new System.Windows.Forms.Label();
     btnBrowse          = new System.Windows.Forms.Button();
     btnDetect          = new System.Windows.Forms.Button();
     mainPanel          = new System.Windows.Forms.TableLayoutPanel();
     topPanel           = new System.Windows.Forms.FlowLayoutPanel();
     devicePanel        = new System.Windows.Forms.Panel();
     configPanel        = new System.Windows.Forms.Panel();
     resetPanel         = new System.Windows.Forms.Panel();
     statusPanel        = new System.Windows.Forms.Panel();
     splitsGroup        = new System.Windows.Forms.GroupBox();
     mainPanel.SuspendLayout();
     topPanel.SuspendLayout();
     devicePanel.SuspendLayout();
     configPanel.SuspendLayout();
     resetPanel.SuspendLayout();
     statusPanel.SuspendLayout();
     this.errorPanel.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errorIcon)).BeginInit();
     splitsGroup.SuspendLayout();
     this.SuspendLayout();
     //
     // lblDevice
     //
     lblDevice.AutoSize = true;
     lblDevice.Location = new System.Drawing.Point(3, 7);
     lblDevice.Margin   = new System.Windows.Forms.Padding(3, 3, 0, 0);
     lblDevice.Name     = "lblDevice";
     lblDevice.Size     = new System.Drawing.Size(44, 13);
     lblDevice.TabIndex = 0;
     lblDevice.Text     = "Device:";
     //
     // lblConfig
     //
     lblConfig.AutoSize = true;
     lblConfig.Location = new System.Drawing.Point(3, 8);
     lblConfig.Margin   = new System.Windows.Forms.Padding(3, 3, 0, 0);
     lblConfig.Name     = "lblConfig";
     lblConfig.Size     = new System.Drawing.Size(56, 13);
     lblConfig.TabIndex = 0;
     lblConfig.Text     = "Config file:";
     //
     // btnBrowse
     //
     btnBrowse.Location = new System.Drawing.Point(410, 3);
     btnBrowse.Name     = "btnBrowse";
     btnBrowse.Size     = new System.Drawing.Size(33, 23);
     btnBrowse.TabIndex = 4;
     btnBrowse.Text     = "...";
     btnBrowse.UseVisualStyleBackColor = true;
     btnBrowse.Click += new System.EventHandler(this.btnBrowse_Click);
     //
     // btnDetect
     //
     btnDetect.Location = new System.Drawing.Point(172, 2);
     btnDetect.Name     = "btnDetect";
     btnDetect.Size     = new System.Drawing.Size(75, 23);
     btnDetect.TabIndex = 1;
     btnDetect.Text     = "Autodetect";
     btnDetect.UseVisualStyleBackColor = true;
     btnDetect.Click += new System.EventHandler(this.btnDetect_Click);
     //
     // mainPanel
     //
     mainPanel.AutoScroll   = true;
     mainPanel.AutoSize     = true;
     mainPanel.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     mainPanel.ColumnCount  = 1;
     mainPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     mainPanel.Controls.Add(topPanel, 0, 0);
     mainPanel.Controls.Add(splitsGroup, 0, 1);
     mainPanel.Dock     = System.Windows.Forms.DockStyle.Fill;
     mainPanel.Location = new System.Drawing.Point(7, 7);
     mainPanel.Margin   = new System.Windows.Forms.Padding(0);
     mainPanel.Name     = "mainPanel";
     mainPanel.RowCount = 2;
     mainPanel.RowStyles.Add(new System.Windows.Forms.RowStyle());
     mainPanel.RowStyles.Add(new System.Windows.Forms.RowStyle());
     mainPanel.Size     = new System.Drawing.Size(462, 179);
     mainPanel.TabIndex = 8;
     //
     // topPanel
     //
     topPanel.AutoSize = true;
     topPanel.Controls.Add(devicePanel);
     topPanel.Controls.Add(configPanel);
     topPanel.Controls.Add(resetPanel);
     topPanel.Controls.Add(statusPanel);
     topPanel.Controls.Add(this.errorPanel);
     topPanel.FlowDirection = System.Windows.Forms.FlowDirection.TopDown;
     topPanel.Location      = new System.Drawing.Point(0, 0);
     topPanel.Margin        = new System.Windows.Forms.Padding(0);
     topPanel.Name          = "topPanel";
     topPanel.Size          = new System.Drawing.Size(446, 147);
     topPanel.TabIndex      = 0;
     //
     // devicePanel
     //
     devicePanel.AutoSize = true;
     devicePanel.Controls.Add(lblDevice);
     devicePanel.Controls.Add(this.txtDevice);
     devicePanel.Controls.Add(btnDetect);
     devicePanel.Location = new System.Drawing.Point(0, 0);
     devicePanel.Margin   = new System.Windows.Forms.Padding(0);
     devicePanel.Name     = "devicePanel";
     devicePanel.Size     = new System.Drawing.Size(250, 28);
     devicePanel.TabIndex = 0;
     //
     // txtDevice
     //
     this.txtDevice.Location     = new System.Drawing.Point(66, 3);
     this.txtDevice.Name         = "txtDevice";
     this.txtDevice.Size         = new System.Drawing.Size(100, 20);
     this.txtDevice.TabIndex     = 0;
     this.txtDevice.TextChanged += new System.EventHandler(this.txtDevice_TextChanged);
     //
     // configPanel
     //
     configPanel.AutoSize = true;
     configPanel.Controls.Add(lblConfig);
     configPanel.Controls.Add(this.txtConfigFile);
     configPanel.Controls.Add(btnBrowse);
     configPanel.Location = new System.Drawing.Point(0, 28);
     configPanel.Margin   = new System.Windows.Forms.Padding(0);
     configPanel.Name     = "configPanel";
     configPanel.Size     = new System.Drawing.Size(446, 29);
     configPanel.TabIndex = 1;
     //
     // txtConfigFile
     //
     this.txtConfigFile.Location = new System.Drawing.Point(66, 4);
     this.txtConfigFile.Name     = "txtConfigFile";
     this.txtConfigFile.Size     = new System.Drawing.Size(340, 20);
     this.txtConfigFile.TabIndex = 3;
     //
     // resetPanel
     //
     resetPanel.AutoSize = true;
     resetPanel.Controls.Add(this.chkReset);
     resetPanel.Location = new System.Drawing.Point(0, 57);
     resetPanel.Margin   = new System.Windows.Forms.Padding(0);
     resetPanel.Name     = "resetPanel";
     resetPanel.Size     = new System.Drawing.Size(225, 23);
     resetPanel.TabIndex = 7;
     //
     // chkReset
     //
     this.chkReset.AutoSize = true;
     this.chkReset.Location = new System.Drawing.Point(66, 3);
     this.chkReset.Name     = "chkReset";
     this.chkReset.Size     = new System.Drawing.Size(156, 17);
     this.chkReset.TabIndex = 5;
     this.chkReset.Text     = "Reset SNES on Timer reset";
     this.chkReset.UseVisualStyleBackColor = true;
     //
     // statusPanel
     //
     statusPanel.AutoSize = true;
     statusPanel.Controls.Add(this.chkStatus);
     statusPanel.Location = new System.Drawing.Point(0, 80);
     statusPanel.Margin   = new System.Windows.Forms.Padding(0);
     statusPanel.Name     = "statusPanel";
     statusPanel.Size     = new System.Drawing.Size(201, 23);
     statusPanel.TabIndex = 8;
     //
     // chkStatus
     //
     this.chkStatus.AutoSize = true;
     this.chkStatus.Location = new System.Drawing.Point(66, 3);
     this.chkStatus.Name     = "chkStatus";
     this.chkStatus.Size     = new System.Drawing.Size(132, 17);
     this.chkStatus.TabIndex = 6;
     this.chkStatus.Text     = "Show Status Message";
     this.chkStatus.UseVisualStyleBackColor = true;
     //
     // errorPanel
     //
     this.errorPanel.AutoSize    = true;
     this.errorPanel.ColumnCount = 2;
     this.errorPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 38F));
     this.errorPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.errorPanel.Controls.Add(this.errorIcon, 0, 0);
     this.errorPanel.Controls.Add(this.errorMessage, 1, 0);
     this.errorPanel.Location = new System.Drawing.Point(3, 106);
     this.errorPanel.Name     = "errorPanel";
     this.errorPanel.RowCount = 1;
     this.errorPanel.RowStyles.Add(new System.Windows.Forms.RowStyle());
     this.errorPanel.Size     = new System.Drawing.Size(119, 38);
     this.errorPanel.TabIndex = 0;
     this.errorPanel.Visible  = false;
     //
     // errorIcon
     //
     this.errorIcon.Location = new System.Drawing.Point(3, 3);
     this.errorIcon.Name     = "errorIcon";
     this.errorIcon.Size     = new System.Drawing.Size(32, 32);
     this.errorIcon.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.errorIcon.TabIndex = 2;
     this.errorIcon.TabStop  = false;
     //
     // errorMessage
     //
     this.errorMessage.AutoSize     = true;
     this.errorMessage.Dock         = System.Windows.Forms.DockStyle.Fill;
     this.errorMessage.Location     = new System.Drawing.Point(41, 0);
     this.errorMessage.MaximumSize  = new System.Drawing.Size(409, 0);
     this.errorMessage.Name         = "errorMessage";
     this.errorMessage.Size         = new System.Drawing.Size(75, 38);
     this.errorMessage.TabIndex     = 0;
     this.errorMessage.Text         = "Error Message";
     this.errorMessage.TextAlign    = System.Drawing.ContentAlignment.MiddleLeft;
     this.errorMessage.TextChanged += new System.EventHandler(this.errorMessage_TextChanged);
     //
     // splitsGroup
     //
     splitsGroup.AutoSize     = true;
     splitsGroup.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     splitsGroup.Controls.Add(this.splitsPanel);
     splitsGroup.Dock     = System.Windows.Forms.DockStyle.Fill;
     splitsGroup.Location = new System.Drawing.Point(0, 147);
     splitsGroup.Margin   = new System.Windows.Forms.Padding(0);
     splitsGroup.Name     = "splitsGroup";
     splitsGroup.Size     = new System.Drawing.Size(462, 32);
     splitsGroup.TabIndex = 9;
     splitsGroup.TabStop  = false;
     splitsGroup.Text     = "Splits";
     //
     // splitsPanel
     //
     this.splitsPanel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                     | System.Windows.Forms.AnchorStyles.Right)));
     this.splitsPanel.AutoSize     = true;
     this.splitsPanel.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.splitsPanel.ColumnCount  = 2;
     this.splitsPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
     this.splitsPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.splitsPanel.Location = new System.Drawing.Point(3, 16);
     this.splitsPanel.Margin   = new System.Windows.Forms.Padding(0);
     this.splitsPanel.Name     = "splitsPanel";
     this.splitsPanel.RowCount = 1;
     this.splitsPanel.RowStyles.Add(new System.Windows.Forms.RowStyle());
     this.splitsPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 1F));
     this.splitsPanel.Size     = new System.Drawing.Size(456, 0);
     this.splitsPanel.TabIndex = 1;
     //
     // ComponentSettings
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoSize            = true;
     this.AutoSizeMode        = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.Controls.Add(mainPanel);
     this.Margin  = new System.Windows.Forms.Padding(0);
     this.Name    = "ComponentSettings";
     this.Padding = new System.Windows.Forms.Padding(7);
     this.Size    = new System.Drawing.Size(476, 193);
     mainPanel.ResumeLayout(false);
     mainPanel.PerformLayout();
     topPanel.ResumeLayout(false);
     topPanel.PerformLayout();
     devicePanel.ResumeLayout(false);
     devicePanel.PerformLayout();
     configPanel.ResumeLayout(false);
     configPanel.PerformLayout();
     resetPanel.ResumeLayout(false);
     resetPanel.PerformLayout();
     statusPanel.ResumeLayout(false);
     statusPanel.PerformLayout();
     this.errorPanel.ResumeLayout(false);
     this.errorPanel.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errorIcon)).EndInit();
     splitsGroup.ResumeLayout(false);
     splitsGroup.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.TableLayoutPanel tableLayoutPanel1;
     System.Windows.Forms.GroupBox         groupBox1;
     System.Windows.Forms.FlowLayoutPanel  flowLayoutPanel1;
     System.Windows.Forms.Label            label1;
     System.Windows.Forms.Label            label2;
     System.Windows.Forms.FlowLayoutPanel  flowLayoutPanel2;
     System.Windows.Forms.FlowLayoutPanel  flowLayoutPanel3;
     System.Windows.Forms.Label            label3;
     System.Windows.Forms.Label            label4;
     System.Windows.Forms.Label            label5;
     System.Windows.Forms.FlowLayoutPanel  flowLayoutPanel6;
     System.Windows.Forms.FlowLayoutPanel  flowLayoutPanel4;
     System.Windows.Forms.FlowLayoutPanel  flowLayoutPanel5;
     System.Windows.Forms.GroupBox         groupBox2;
     System.Windows.Forms.Button           browse;
     this.fileFormat      = new System.Windows.Forms.ComboBox();
     this.jpegCompression = new System.Windows.Forms.NumericUpDown();
     this.ok              = new System.Windows.Forms.Button();
     this.cancel          = new System.Windows.Forms.Button();
     this.alphaLDRGroup   = new System.Windows.Forms.GroupBox();
     this.alphaMap        = new System.Windows.Forms.ComboBox();
     this.alphaCol        = new System.Windows.Forms.Button();
     this.blackPoint      = new System.Windows.Forms.TextBox();
     this.whitePoint      = new System.Windows.Forms.TextBox();
     this.sliceGroup      = new System.Windows.Forms.GroupBox();
     this.exportAllSlices = new System.Windows.Forms.CheckBox();
     this.oneSlice        = new System.Windows.Forms.CheckBox();
     this.sliceSelect     = new System.Windows.Forms.ComboBox();
     this.mapSlicesToGrid = new System.Windows.Forms.CheckBox();
     this.gridWidth       = new System.Windows.Forms.NumericUpDown();
     this.cubeCruciform   = new System.Windows.Forms.CheckBox();
     this.mipGroup        = new System.Windows.Forms.GroupBox();
     this.exportAllMips   = new System.Windows.Forms.CheckBox();
     this.oneMip          = new System.Windows.Forms.CheckBox();
     this.mipSelect       = new System.Windows.Forms.ComboBox();
     this.sampleGroup     = new System.Windows.Forms.GroupBox();
     this.mapSampleArray  = new System.Windows.Forms.CheckBox();
     this.resolveSamples  = new System.Windows.Forms.CheckBox();
     this.oneSample       = new System.Windows.Forms.CheckBox();
     this.sampleSelect    = new System.Windows.Forms.ComboBox();
     this.filename        = new System.Windows.Forms.TextBox();
     this.colorDialog     = new System.Windows.Forms.ColorDialog();
     this.saveTexDialog   = new System.Windows.Forms.SaveFileDialog();
     tableLayoutPanel1    = new System.Windows.Forms.TableLayoutPanel();
     groupBox1            = new System.Windows.Forms.GroupBox();
     flowLayoutPanel1     = new System.Windows.Forms.FlowLayoutPanel();
     label1           = new System.Windows.Forms.Label();
     label2           = new System.Windows.Forms.Label();
     flowLayoutPanel2 = new System.Windows.Forms.FlowLayoutPanel();
     flowLayoutPanel3 = new System.Windows.Forms.FlowLayoutPanel();
     label3           = new System.Windows.Forms.Label();
     label4           = new System.Windows.Forms.Label();
     label5           = new System.Windows.Forms.Label();
     flowLayoutPanel6 = new System.Windows.Forms.FlowLayoutPanel();
     flowLayoutPanel4 = new System.Windows.Forms.FlowLayoutPanel();
     flowLayoutPanel5 = new System.Windows.Forms.FlowLayoutPanel();
     groupBox2        = new System.Windows.Forms.GroupBox();
     browse           = new System.Windows.Forms.Button();
     tableLayoutPanel1.SuspendLayout();
     groupBox1.SuspendLayout();
     flowLayoutPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.jpegCompression)).BeginInit();
     flowLayoutPanel2.SuspendLayout();
     this.alphaLDRGroup.SuspendLayout();
     flowLayoutPanel3.SuspendLayout();
     this.sliceGroup.SuspendLayout();
     flowLayoutPanel6.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridWidth)).BeginInit();
     this.mipGroup.SuspendLayout();
     flowLayoutPanel4.SuspendLayout();
     this.sampleGroup.SuspendLayout();
     flowLayoutPanel5.SuspendLayout();
     groupBox2.SuspendLayout();
     this.SuspendLayout();
     //
     // tableLayoutPanel1
     //
     tableLayoutPanel1.AutoSize    = true;
     tableLayoutPanel1.ColumnCount = 1;
     tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     tableLayoutPanel1.Controls.Add(groupBox1, 0, 1);
     tableLayoutPanel1.Controls.Add(flowLayoutPanel2, 0, 6);
     tableLayoutPanel1.Controls.Add(this.alphaLDRGroup, 0, 5);
     tableLayoutPanel1.Controls.Add(this.sliceGroup, 0, 4);
     tableLayoutPanel1.Controls.Add(this.mipGroup, 0, 2);
     tableLayoutPanel1.Controls.Add(this.sampleGroup, 0, 3);
     tableLayoutPanel1.Controls.Add(groupBox2, 0, 0);
     tableLayoutPanel1.Dock     = System.Windows.Forms.DockStyle.Fill;
     tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
     tableLayoutPanel1.Name     = "tableLayoutPanel1";
     tableLayoutPanel1.RowCount = 7;
     tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 50F));
     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.RowStyles.Add(new System.Windows.Forms.RowStyle());
     tableLayoutPanel1.Size     = new System.Drawing.Size(378, 555);
     tableLayoutPanel1.TabIndex = 0;
     //
     // groupBox1
     //
     groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                              | System.Windows.Forms.AnchorStyles.Right)));
     groupBox1.AutoSize = true;
     groupBox1.Controls.Add(flowLayoutPanel1);
     groupBox1.Location = new System.Drawing.Point(3, 53);
     groupBox1.Name     = "groupBox1";
     groupBox1.Size     = new System.Drawing.Size(372, 72);
     groupBox1.TabIndex = 0;
     groupBox1.TabStop  = false;
     groupBox1.Text     = "File Format";
     //
     // flowLayoutPanel1
     //
     flowLayoutPanel1.AutoSize = true;
     flowLayoutPanel1.Controls.Add(label1);
     flowLayoutPanel1.Controls.Add(this.fileFormat);
     flowLayoutPanel1.Controls.Add(label2);
     flowLayoutPanel1.Controls.Add(this.jpegCompression);
     flowLayoutPanel1.Dock     = System.Windows.Forms.DockStyle.Fill;
     flowLayoutPanel1.Location = new System.Drawing.Point(3, 16);
     flowLayoutPanel1.Name     = "flowLayoutPanel1";
     flowLayoutPanel1.Size     = new System.Drawing.Size(366, 53);
     flowLayoutPanel1.TabIndex = 0;
     //
     // label1
     //
     label1.Anchor      = System.Windows.Forms.AnchorStyles.Right;
     label1.AutoSize    = true;
     label1.Location    = new System.Drawing.Point(3, 7);
     label1.MinimumSize = new System.Drawing.Size(150, 0);
     label1.Name        = "label1";
     label1.Size        = new System.Drawing.Size(150, 13);
     label1.TabIndex    = 1;
     label1.Text        = "File Format:";
     label1.TextAlign   = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // fileFormat
     //
     this.fileFormat.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     flowLayoutPanel1.SetFlowBreak(this.fileFormat, true);
     this.fileFormat.FormattingEnabled = true;
     this.fileFormat.Location          = new System.Drawing.Point(159, 3);
     this.fileFormat.Name                  = "fileFormat";
     this.fileFormat.Size                  = new System.Drawing.Size(121, 21);
     this.fileFormat.TabIndex              = 3;
     this.fileFormat.SelectedIndexChanged += new System.EventHandler(this.fileFormat_SelectedIndexChanged);
     //
     // label2
     //
     label2.Anchor      = System.Windows.Forms.AnchorStyles.Right;
     label2.AutoSize    = true;
     label2.Location    = new System.Drawing.Point(3, 33);
     label2.MinimumSize = new System.Drawing.Size(150, 0);
     label2.Name        = "label2";
     label2.Size        = new System.Drawing.Size(150, 13);
     label2.TabIndex    = 2;
     label2.Text        = "JPEG Compression:";
     label2.TextAlign   = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // jpegCompression
     //
     this.jpegCompression.Location      = new System.Drawing.Point(159, 30);
     this.jpegCompression.Name          = "jpegCompression";
     this.jpegCompression.Size          = new System.Drawing.Size(120, 20);
     this.jpegCompression.TabIndex      = 4;
     this.jpegCompression.ValueChanged += new System.EventHandler(this.jpegCompression_ValueChanged);
     //
     // flowLayoutPanel2
     //
     flowLayoutPanel2.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     flowLayoutPanel2.AutoSize = true;
     flowLayoutPanel2.Controls.Add(this.ok);
     flowLayoutPanel2.Controls.Add(this.cancel);
     flowLayoutPanel2.Location = new System.Drawing.Point(213, 523);
     flowLayoutPanel2.Name     = "flowLayoutPanel2";
     flowLayoutPanel2.Size     = new System.Drawing.Size(162, 29);
     flowLayoutPanel2.TabIndex = 1;
     //
     // ok
     //
     this.ok.Location = new System.Drawing.Point(3, 3);
     this.ok.Name     = "ok";
     this.ok.Size     = new System.Drawing.Size(75, 23);
     this.ok.TabIndex = 22;
     this.ok.Text     = "Save";
     this.ok.UseVisualStyleBackColor = true;
     this.ok.Click += new System.EventHandler(this.ok_Click);
     //
     // cancel
     //
     this.cancel.DialogResult            = System.Windows.Forms.DialogResult.Cancel;
     this.cancel.Location                = new System.Drawing.Point(84, 3);
     this.cancel.Name                    = "cancel";
     this.cancel.Size                    = new System.Drawing.Size(75, 23);
     this.cancel.TabIndex                = 23;
     this.cancel.Text                    = "Cancel";
     this.cancel.UseVisualStyleBackColor = true;
     //
     // alphaLDRGroup
     //
     this.alphaLDRGroup.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                       | System.Windows.Forms.AnchorStyles.Right)));
     this.alphaLDRGroup.AutoSize = true;
     this.alphaLDRGroup.Controls.Add(flowLayoutPanel3);
     this.alphaLDRGroup.Location = new System.Drawing.Point(3, 428);
     this.alphaLDRGroup.Name     = "alphaLDRGroup";
     this.alphaLDRGroup.Size     = new System.Drawing.Size(372, 79);
     this.alphaLDRGroup.TabIndex = 2;
     this.alphaLDRGroup.TabStop  = false;
     this.alphaLDRGroup.Text     = "Alpha Handling";
     //
     // flowLayoutPanel3
     //
     flowLayoutPanel3.AutoSize = true;
     flowLayoutPanel3.Controls.Add(label3);
     flowLayoutPanel3.Controls.Add(this.alphaMap);
     flowLayoutPanel3.Controls.Add(this.alphaCol);
     flowLayoutPanel3.Controls.Add(label4);
     flowLayoutPanel3.Controls.Add(this.blackPoint);
     flowLayoutPanel3.Controls.Add(label5);
     flowLayoutPanel3.Controls.Add(this.whitePoint);
     flowLayoutPanel3.Dock     = System.Windows.Forms.DockStyle.Fill;
     flowLayoutPanel3.Location = new System.Drawing.Point(3, 16);
     flowLayoutPanel3.Name     = "flowLayoutPanel3";
     flowLayoutPanel3.Size     = new System.Drawing.Size(366, 60);
     flowLayoutPanel3.TabIndex = 0;
     //
     // label3
     //
     label3.Anchor    = System.Windows.Forms.AnchorStyles.Right;
     label3.AutoSize  = true;
     label3.Location  = new System.Drawing.Point(3, 7);
     label3.Name      = "label3";
     label3.Size      = new System.Drawing.Size(80, 13);
     label3.TabIndex  = 1;
     label3.Text      = "Alpha mapping:";
     label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // alphaMap
     //
     this.alphaMap.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.alphaMap.FormattingEnabled = true;
     this.alphaMap.Items.AddRange(new object[] {
         "Discard",
         "Blend to Colour",
         "Blend to Checkerboard"
     });
     this.alphaMap.Location              = new System.Drawing.Point(89, 3);
     this.alphaMap.Name                  = "alphaMap";
     this.alphaMap.Size                  = new System.Drawing.Size(148, 21);
     this.alphaMap.TabIndex              = 18;
     this.alphaMap.SelectedIndexChanged += new System.EventHandler(this.alphaMap_SelectedIndexChanged);
     //
     // alphaCol
     //
     flowLayoutPanel3.SetFlowBreak(this.alphaCol, true);
     this.alphaCol.Location                = new System.Drawing.Point(243, 3);
     this.alphaCol.Name                    = "alphaCol";
     this.alphaCol.Size                    = new System.Drawing.Size(110, 21);
     this.alphaCol.TabIndex                = 19;
     this.alphaCol.Text                    = "Background Colour";
     this.alphaCol.TextImageRelation       = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.alphaCol.UseVisualStyleBackColor = true;
     this.alphaCol.Click                  += new System.EventHandler(this.alphaCol_Click);
     //
     // label4
     //
     label4.Anchor    = System.Windows.Forms.AnchorStyles.Right;
     label4.AutoSize  = true;
     label4.Location  = new System.Drawing.Point(3, 40);
     label4.Margin    = new System.Windows.Forms.Padding(3, 7, 3, 0);
     label4.Name      = "label4";
     label4.Size      = new System.Drawing.Size(64, 13);
     label4.TabIndex  = 3;
     label4.Text      = "Black Point:";
     label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // blackPoint
     //
     this.blackPoint.Location     = new System.Drawing.Point(73, 37);
     this.blackPoint.Margin       = new System.Windows.Forms.Padding(3, 10, 3, 3);
     this.blackPoint.Name         = "blackPoint";
     this.blackPoint.Size         = new System.Drawing.Size(100, 20);
     this.blackPoint.TabIndex     = 20;
     this.blackPoint.TextChanged += new System.EventHandler(this.blackPoint_TextChanged);
     //
     // label5
     //
     label5.Anchor    = System.Windows.Forms.AnchorStyles.Right;
     label5.AutoSize  = true;
     label5.Location  = new System.Drawing.Point(179, 40);
     label5.Margin    = new System.Windows.Forms.Padding(3, 7, 3, 0);
     label5.Name      = "label5";
     label5.Size      = new System.Drawing.Size(65, 13);
     label5.TabIndex  = 4;
     label5.Text      = "White Point:";
     label5.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // whitePoint
     //
     this.whitePoint.Location     = new System.Drawing.Point(250, 37);
     this.whitePoint.Margin       = new System.Windows.Forms.Padding(3, 10, 3, 3);
     this.whitePoint.Name         = "whitePoint";
     this.whitePoint.Size         = new System.Drawing.Size(100, 20);
     this.whitePoint.TabIndex     = 21;
     this.whitePoint.TextChanged += new System.EventHandler(this.whitePoint_TextChanged);
     //
     // sliceGroup
     //
     this.sliceGroup.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                    | System.Windows.Forms.AnchorStyles.Right)));
     this.sliceGroup.AutoSize = true;
     this.sliceGroup.Controls.Add(flowLayoutPanel6);
     this.sliceGroup.Location = new System.Drawing.Point(3, 304);
     this.sliceGroup.Name     = "sliceGroup";
     this.sliceGroup.Size     = new System.Drawing.Size(372, 118);
     this.sliceGroup.TabIndex = 5;
     this.sliceGroup.TabStop  = false;
     this.sliceGroup.Text     = "Array/Depth Slices";
     //
     // flowLayoutPanel6
     //
     flowLayoutPanel6.AutoSize = true;
     flowLayoutPanel6.Controls.Add(this.exportAllSlices);
     flowLayoutPanel6.Controls.Add(this.oneSlice);
     flowLayoutPanel6.Controls.Add(this.sliceSelect);
     flowLayoutPanel6.Controls.Add(this.mapSlicesToGrid);
     flowLayoutPanel6.Controls.Add(this.gridWidth);
     flowLayoutPanel6.Controls.Add(this.cubeCruciform);
     flowLayoutPanel6.Dock     = System.Windows.Forms.DockStyle.Fill;
     flowLayoutPanel6.Location = new System.Drawing.Point(3, 16);
     flowLayoutPanel6.Name     = "flowLayoutPanel6";
     flowLayoutPanel6.Size     = new System.Drawing.Size(366, 99);
     flowLayoutPanel6.TabIndex = 0;
     //
     // exportAllSlices
     //
     this.exportAllSlices.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
     flowLayoutPanel6.SetFlowBreak(this.exportAllSlices, true);
     this.exportAllSlices.Location                = new System.Drawing.Point(3, 3);
     this.exportAllSlices.MinimumSize             = new System.Drawing.Size(120, 0);
     this.exportAllSlices.Name                    = "exportAllSlices";
     this.exportAllSlices.Size                    = new System.Drawing.Size(120, 17);
     this.exportAllSlices.TabIndex                = 12;
     this.exportAllSlices.Text                    = "Export All Slices";
     this.exportAllSlices.UseVisualStyleBackColor = true;
     this.exportAllSlices.CheckedChanged         += new System.EventHandler(this.exportAllSlices_CheckedChanged);
     //
     // oneSlice
     //
     this.oneSlice.Anchor                  = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
     this.oneSlice.AutoSize                = true;
     this.oneSlice.Location                = new System.Drawing.Point(3, 28);
     this.oneSlice.MinimumSize             = new System.Drawing.Size(120, 0);
     this.oneSlice.Name                    = "oneSlice";
     this.oneSlice.Size                    = new System.Drawing.Size(120, 17);
     this.oneSlice.TabIndex                = 13;
     this.oneSlice.Text                    = "Select Slice:";
     this.oneSlice.UseVisualStyleBackColor = true;
     this.oneSlice.CheckedChanged         += new System.EventHandler(this.oneSlice_CheckedChanged);
     //
     // sliceSelect
     //
     this.sliceSelect.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     flowLayoutPanel6.SetFlowBreak(this.sliceSelect, true);
     this.sliceSelect.FormattingEnabled = true;
     this.sliceSelect.Location          = new System.Drawing.Point(129, 26);
     this.sliceSelect.Name                  = "sliceSelect";
     this.sliceSelect.Size                  = new System.Drawing.Size(121, 21);
     this.sliceSelect.TabIndex              = 14;
     this.sliceSelect.SelectedIndexChanged += new System.EventHandler(this.sliceSelect_SelectedIndexChanged);
     //
     // mapSlicesToGrid
     //
     this.mapSlicesToGrid.AutoSize = true;
     this.mapSlicesToGrid.Location = new System.Drawing.Point(3, 53);
     this.mapSlicesToGrid.Name     = "mapSlicesToGrid";
     this.mapSlicesToGrid.Size     = new System.Drawing.Size(179, 17);
     this.mapSlicesToGrid.TabIndex = 15;
     this.mapSlicesToGrid.Text     = "Show Slices as Grid. Grid Width:";
     this.mapSlicesToGrid.UseVisualStyleBackColor = true;
     this.mapSlicesToGrid.CheckedChanged         += new System.EventHandler(this.mapSlicesToGrid_CheckedChanged);
     //
     // gridWidth
     //
     this.gridWidth.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
     flowLayoutPanel6.SetFlowBreak(this.gridWidth, true);
     this.gridWidth.Location = new System.Drawing.Point(188, 53);
     this.gridWidth.Minimum  = new decimal(new int[] {
         1,
         0,
         0,
         0
     });
     this.gridWidth.Name     = "gridWidth";
     this.gridWidth.Size     = new System.Drawing.Size(49, 20);
     this.gridWidth.TabIndex = 16;
     this.gridWidth.Value    = new decimal(new int[] {
         1,
         0,
         0,
         0
     });
     this.gridWidth.ValueChanged += new System.EventHandler(this.gridWidth_ValueChanged);
     //
     // cubeCruciform
     //
     this.cubeCruciform.AutoSize = true;
     this.cubeCruciform.Location = new System.Drawing.Point(3, 79);
     this.cubeCruciform.Name     = "cubeCruciform";
     this.cubeCruciform.Size     = new System.Drawing.Size(144, 17);
     this.cubeCruciform.TabIndex = 17;
     this.cubeCruciform.Text     = "Show Cubemap as Cross";
     this.cubeCruciform.UseVisualStyleBackColor = true;
     this.cubeCruciform.CheckedChanged         += new System.EventHandler(this.cubeCruciform_CheckedChanged);
     //
     // mipGroup
     //
     this.mipGroup.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                  | System.Windows.Forms.AnchorStyles.Right)));
     this.mipGroup.AutoSize = true;
     this.mipGroup.Controls.Add(flowLayoutPanel4);
     this.mipGroup.Location = new System.Drawing.Point(3, 131);
     this.mipGroup.Name     = "mipGroup";
     this.mipGroup.Size     = new System.Drawing.Size(372, 69);
     this.mipGroup.TabIndex = 3;
     this.mipGroup.TabStop  = false;
     this.mipGroup.Text     = "Mips";
     //
     // flowLayoutPanel4
     //
     flowLayoutPanel4.AutoSize = true;
     flowLayoutPanel4.Controls.Add(this.exportAllMips);
     flowLayoutPanel4.Controls.Add(this.oneMip);
     flowLayoutPanel4.Controls.Add(this.mipSelect);
     flowLayoutPanel4.Dock     = System.Windows.Forms.DockStyle.Fill;
     flowLayoutPanel4.Location = new System.Drawing.Point(3, 16);
     flowLayoutPanel4.Name     = "flowLayoutPanel4";
     flowLayoutPanel4.Size     = new System.Drawing.Size(366, 50);
     flowLayoutPanel4.TabIndex = 0;
     //
     // exportAllMips
     //
     this.exportAllMips.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
     this.exportAllMips.AutoSize = true;
     flowLayoutPanel4.SetFlowBreak(this.exportAllMips, true);
     this.exportAllMips.Location                = new System.Drawing.Point(3, 3);
     this.exportAllMips.MinimumSize             = new System.Drawing.Size(120, 0);
     this.exportAllMips.Name                    = "exportAllMips";
     this.exportAllMips.Size                    = new System.Drawing.Size(120, 17);
     this.exportAllMips.TabIndex                = 5;
     this.exportAllMips.Text                    = "Export All Mips";
     this.exportAllMips.UseVisualStyleBackColor = true;
     this.exportAllMips.CheckedChanged         += new System.EventHandler(this.exportAllMips_CheckedChanged);
     //
     // oneMip
     //
     this.oneMip.Anchor                  = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
     this.oneMip.AutoSize                = true;
     this.oneMip.Location                = new System.Drawing.Point(3, 28);
     this.oneMip.MinimumSize             = new System.Drawing.Size(120, 0);
     this.oneMip.Name                    = "oneMip";
     this.oneMip.Size                    = new System.Drawing.Size(120, 17);
     this.oneMip.TabIndex                = 6;
     this.oneMip.Text                    = "Select Mip:";
     this.oneMip.UseVisualStyleBackColor = true;
     this.oneMip.CheckedChanged         += new System.EventHandler(this.oneMip_CheckedChanged);
     //
     // mipSelect
     //
     this.mipSelect.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     flowLayoutPanel4.SetFlowBreak(this.mipSelect, true);
     this.mipSelect.FormattingEnabled = true;
     this.mipSelect.Location          = new System.Drawing.Point(129, 26);
     this.mipSelect.Name                  = "mipSelect";
     this.mipSelect.Size                  = new System.Drawing.Size(121, 21);
     this.mipSelect.TabIndex              = 7;
     this.mipSelect.SelectedIndexChanged += new System.EventHandler(this.mipSelect_SelectedIndexChanged);
     //
     // sampleGroup
     //
     this.sampleGroup.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                     | System.Windows.Forms.AnchorStyles.Right)));
     this.sampleGroup.AutoSize = true;
     this.sampleGroup.Controls.Add(flowLayoutPanel5);
     this.sampleGroup.Location = new System.Drawing.Point(3, 206);
     this.sampleGroup.Name     = "sampleGroup";
     this.sampleGroup.Size     = new System.Drawing.Size(372, 92);
     this.sampleGroup.TabIndex = 6;
     this.sampleGroup.TabStop  = false;
     this.sampleGroup.Text     = "MSAA Samples";
     //
     // flowLayoutPanel5
     //
     flowLayoutPanel5.AutoSize = true;
     flowLayoutPanel5.Controls.Add(this.mapSampleArray);
     flowLayoutPanel5.Controls.Add(this.resolveSamples);
     flowLayoutPanel5.Controls.Add(this.oneSample);
     flowLayoutPanel5.Controls.Add(this.sampleSelect);
     flowLayoutPanel5.Dock     = System.Windows.Forms.DockStyle.Fill;
     flowLayoutPanel5.Location = new System.Drawing.Point(3, 16);
     flowLayoutPanel5.Name     = "flowLayoutPanel5";
     flowLayoutPanel5.Size     = new System.Drawing.Size(366, 73);
     flowLayoutPanel5.TabIndex = 0;
     //
     // mapSampleArray
     //
     this.mapSampleArray.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
     this.mapSampleArray.AutoSize = true;
     flowLayoutPanel5.SetFlowBreak(this.mapSampleArray, true);
     this.mapSampleArray.Location = new System.Drawing.Point(3, 3);
     this.mapSampleArray.Name     = "mapSampleArray";
     this.mapSampleArray.Size     = new System.Drawing.Size(162, 17);
     this.mapSampleArray.TabIndex = 8;
     this.mapSampleArray.Text     = "Map Samples as Array Slices";
     this.mapSampleArray.UseVisualStyleBackColor = true;
     this.mapSampleArray.CheckedChanged         += new System.EventHandler(this.mapSampleArray_CheckedChanged);
     //
     // resolveSamples
     //
     this.resolveSamples.AutoSize = true;
     flowLayoutPanel5.SetFlowBreak(this.resolveSamples, true);
     this.resolveSamples.Location = new System.Drawing.Point(3, 26);
     this.resolveSamples.Name     = "resolveSamples";
     this.resolveSamples.Size     = new System.Drawing.Size(108, 17);
     this.resolveSamples.TabIndex = 9;
     this.resolveSamples.Text     = "Resolve Samples";
     this.resolveSamples.UseVisualStyleBackColor = true;
     this.resolveSamples.CheckedChanged         += new System.EventHandler(this.resolveSamples_CheckedChanged);
     //
     // oneSample
     //
     this.oneSample.Anchor                  = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
     this.oneSample.AutoSize                = true;
     this.oneSample.Location                = new System.Drawing.Point(3, 51);
     this.oneSample.MinimumSize             = new System.Drawing.Size(120, 0);
     this.oneSample.Name                    = "oneSample";
     this.oneSample.Size                    = new System.Drawing.Size(120, 17);
     this.oneSample.TabIndex                = 10;
     this.oneSample.Text                    = "Select Sample:";
     this.oneSample.UseVisualStyleBackColor = true;
     this.oneSample.CheckedChanged         += new System.EventHandler(this.oneSample_CheckedChanged);
     //
     // sampleSelect
     //
     this.sampleSelect.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     flowLayoutPanel5.SetFlowBreak(this.sampleSelect, true);
     this.sampleSelect.FormattingEnabled = true;
     this.sampleSelect.Location          = new System.Drawing.Point(129, 49);
     this.sampleSelect.Name                  = "sampleSelect";
     this.sampleSelect.Size                  = new System.Drawing.Size(121, 21);
     this.sampleSelect.TabIndex              = 11;
     this.sampleSelect.SelectedIndexChanged += new System.EventHandler(this.sampleSelect_SelectedIndexChanged);
     //
     // groupBox2
     //
     groupBox2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                              | System.Windows.Forms.AnchorStyles.Right)));
     groupBox2.Controls.Add(this.filename);
     groupBox2.Controls.Add(browse);
     groupBox2.Location = new System.Drawing.Point(3, 3);
     groupBox2.Name     = "groupBox2";
     groupBox2.Size     = new System.Drawing.Size(372, 44);
     groupBox2.TabIndex = 7;
     groupBox2.TabStop  = false;
     groupBox2.Text     = "Path";
     //
     // filename
     //
     this.filename.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                  | System.Windows.Forms.AnchorStyles.Right)));
     this.filename.Location = new System.Drawing.Point(9, 15);
     this.filename.Name     = "filename";
     this.filename.Size     = new System.Drawing.Size(322, 20);
     this.filename.TabIndex = 1;
     //
     // browse
     //
     browse.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     browse.Location = new System.Drawing.Point(337, 15);
     browse.Name     = "browse";
     browse.Size     = new System.Drawing.Size(26, 23);
     browse.TabIndex = 2;
     browse.Text     = "...";
     browse.UseVisualStyleBackColor = true;
     browse.Click += new System.EventHandler(this.browse_Click);
     //
     // colorDialog
     //
     this.colorDialog.AnyColor = true;
     //
     // saveTexDialog
     //
     this.saveTexDialog.DefaultExt      = "dds";
     this.saveTexDialog.OverwritePrompt = false;
     this.saveTexDialog.Title           = "Save Texture As";
     //
     // TextureSaveDialog
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoSize            = true;
     this.AutoSizeMode        = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.ClientSize          = new System.Drawing.Size(378, 555);
     this.Controls.Add(tableLayoutPanel1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "TextureSaveDialog";
     this.ShowIcon        = false;
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text            = "Save Texture";
     this.Shown          += new System.EventHandler(this.TextureSaveDialog_Shown);
     tableLayoutPanel1.ResumeLayout(false);
     tableLayoutPanel1.PerformLayout();
     groupBox1.ResumeLayout(false);
     groupBox1.PerformLayout();
     flowLayoutPanel1.ResumeLayout(false);
     flowLayoutPanel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.jpegCompression)).EndInit();
     flowLayoutPanel2.ResumeLayout(false);
     this.alphaLDRGroup.ResumeLayout(false);
     this.alphaLDRGroup.PerformLayout();
     flowLayoutPanel3.ResumeLayout(false);
     flowLayoutPanel3.PerformLayout();
     this.sliceGroup.ResumeLayout(false);
     this.sliceGroup.PerformLayout();
     flowLayoutPanel6.ResumeLayout(false);
     flowLayoutPanel6.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridWidth)).EndInit();
     this.mipGroup.ResumeLayout(false);
     this.mipGroup.PerformLayout();
     flowLayoutPanel4.ResumeLayout(false);
     flowLayoutPanel4.PerformLayout();
     this.sampleGroup.ResumeLayout(false);
     this.sampleGroup.PerformLayout();
     flowLayoutPanel5.ResumeLayout(false);
     flowLayoutPanel5.PerformLayout();
     groupBox2.ResumeLayout(false);
     groupBox2.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Example #48
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.TableLayoutPanel          table;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(LogViewer));
     System.Windows.Forms.FlowLayoutPanel           checkboxes;
     System.Windows.Forms.ColumnHeader columnHeader1;
     System.Windows.Forms.ColumnHeader columnHeader2;
     System.Windows.Forms.ColumnHeader columnHeader3;
     this.metrics  = new System.Windows.Forms.CheckBox();
     this.debug    = new System.Windows.Forms.CheckBox();
     this.warning  = new System.Windows.Forms.CheckBox();
     this.error    = new System.Windows.Forms.CheckBox();
     this.list     = new Szotar.WindowsForms.Controls.ListViewNF();
     table         = new System.Windows.Forms.TableLayoutPanel();
     checkboxes    = new System.Windows.Forms.FlowLayoutPanel();
     columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     table.SuspendLayout();
     checkboxes.SuspendLayout();
     this.SuspendLayout();
     //
     // table
     //
     resources.ApplyResources(table, "table");
     table.Controls.Add(checkboxes, 0, 0);
     table.Controls.Add(this.list, 0, 1);
     table.Name = "table";
     //
     // checkboxes
     //
     resources.ApplyResources(checkboxes, "checkboxes");
     checkboxes.Controls.Add(this.metrics);
     checkboxes.Controls.Add(this.debug);
     checkboxes.Controls.Add(this.warning);
     checkboxes.Controls.Add(this.error);
     checkboxes.Name = "checkboxes";
     //
     // metrics
     //
     resources.ApplyResources(this.metrics, "metrics");
     this.metrics.Name = "metrics";
     this.metrics.UseVisualStyleBackColor = true;
     //
     // debug
     //
     resources.ApplyResources(this.debug, "debug");
     this.debug.Name = "debug";
     this.debug.UseVisualStyleBackColor = true;
     //
     // warning
     //
     resources.ApplyResources(this.warning, "warning");
     this.warning.Name = "warning";
     this.warning.UseVisualStyleBackColor = true;
     //
     // error
     //
     resources.ApplyResources(this.error, "error");
     this.error.Name = "error";
     this.error.UseVisualStyleBackColor = true;
     //
     // list
     //
     resources.ApplyResources(this.list, "list");
     this.list.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         columnHeader1,
         columnHeader2,
         columnHeader3
     });
     this.list.Name = "list";
     this.list.UseCompatibleStateImageBehavior = false;
     this.list.View = System.Windows.Forms.View.Details;
     //
     // columnHeader1
     //
     resources.ApplyResources(columnHeader1, "columnHeader1");
     //
     // columnHeader2
     //
     resources.ApplyResources(columnHeader2, "columnHeader2");
     //
     // columnHeader3
     //
     resources.ApplyResources(columnHeader3, "columnHeader3");
     //
     // LogViewer
     //
     resources.ApplyResources(this, "$this");
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(table);
     this.Name = "LogViewer";
     table.ResumeLayout(false);
     table.PerformLayout();
     checkboxes.ResumeLayout(false);
     checkboxes.PerformLayout();
     this.ResumeLayout(false);
 }
Example #49
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                     label1;
     System.Windows.Forms.Label                     label2;
     System.Windows.Forms.Label                     label3;
     System.Windows.Forms.Label                     label4;
     System.Windows.Forms.FlowLayoutPanel           flowLayoutPanel1;
     System.Windows.Forms.Label                     label5;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(OpenConnection));
     this.btnOk              = new System.Windows.Forms.Button();
     this.btnCancel          = new System.Windows.Forms.Button();
     this.tableLayoutPanel1  = new System.Windows.Forms.TableLayoutPanel();
     this.btnConnections     = new System.Windows.Forms.Button();
     this.tbServer           = new System.Windows.Forms.TextBox();
     this.tbUser             = new System.Windows.Forms.TextBox();
     this.tbWorkspace        = new System.Windows.Forms.TextBox();
     this.btnBrowseWorkspace = new System.Windows.Forms.Button();
     this.cbNTLM             = new System.Windows.Forms.CheckBox();
     this.tbPassword         = new System.Windows.Forms.TextBox();
     this.cbShowAtStartup    = new System.Windows.Forms.CheckBox();
     label1           = new System.Windows.Forms.Label();
     label2           = new System.Windows.Forms.Label();
     label3           = new System.Windows.Forms.Label();
     label4           = new System.Windows.Forms.Label();
     flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
     label5           = new System.Windows.Forms.Label();
     flowLayoutPanel1.SuspendLayout();
     this.tableLayoutPanel1.SuspendLayout();
     this.SuspendLayout();
     //
     // label1
     //
     label1.AutoSize = true;
     this.tableLayoutPanel1.SetColumnSpan(label1, 3);
     label1.Dock      = System.Windows.Forms.DockStyle.Fill;
     label1.Location  = new System.Drawing.Point(3, 0);
     label1.Name      = "label1";
     label1.Size      = new System.Drawing.Size(415, 30);
     label1.TabIndex  = 1;
     label1.Text      = "Select a connection or enter a new one:";
     label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label2
     //
     label2.AutoSize  = true;
     label2.Dock      = System.Windows.Forms.DockStyle.Fill;
     label2.Location  = new System.Drawing.Point(3, 30);
     label2.Name      = "label2";
     label2.Size      = new System.Drawing.Size(65, 26);
     label2.TabIndex  = 3;
     label2.Text      = "Server:";
     label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label3
     //
     label3.AutoSize  = true;
     label3.Dock      = System.Windows.Forms.DockStyle.Fill;
     label3.Location  = new System.Drawing.Point(3, 80);
     label3.Name      = "label3";
     label3.Size      = new System.Drawing.Size(65, 26);
     label3.TabIndex  = 4;
     label3.Text      = "User:"******"label4";
     label4.Size      = new System.Drawing.Size(65, 29);
     label4.TabIndex  = 5;
     label4.Text      = "Workspace:";
     label4.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // flowLayoutPanel1
     //
     flowLayoutPanel1.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     flowLayoutPanel1.AutoSize = true;
     this.tableLayoutPanel1.SetColumnSpan(flowLayoutPanel1, 2);
     flowLayoutPanel1.Controls.Add(this.btnOk);
     flowLayoutPanel1.Controls.Add(this.btnCancel);
     flowLayoutPanel1.Location = new System.Drawing.Point(358, 170);
     flowLayoutPanel1.Margin   = new System.Windows.Forms.Padding(0);
     flowLayoutPanel1.Name     = "flowLayoutPanel1";
     flowLayoutPanel1.Size     = new System.Drawing.Size(162, 29);
     flowLayoutPanel1.TabIndex = 12;
     //
     // btnOk
     //
     this.btnOk.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnOk.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.btnOk.Location  = new System.Drawing.Point(3, 3);
     this.btnOk.Name      = "btnOk";
     this.btnOk.Size      = new System.Drawing.Size(75, 23);
     this.btnOk.TabIndex  = 9;
     this.btnOk.Text      = "OK";
     this.btnOk.UseVisualStyleBackColor = true;
     this.btnOk.Click += new System.EventHandler(this.btnOk_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.FlatStyle               = System.Windows.Forms.FlatStyle.System;
     this.btnCancel.Location                = new System.Drawing.Point(84, 3);
     this.btnCancel.Name                    = "btnCancel";
     this.btnCancel.Size                    = new System.Drawing.Size(75, 23);
     this.btnCancel.TabIndex                = 10;
     this.btnCancel.Text                    = "Cancel";
     this.btnCancel.UseVisualStyleBackColor = true;
     this.btnCancel.Click                  += new System.EventHandler(this.btnCancel_Click);
     //
     // label5
     //
     label5.AutoSize  = true;
     label5.Dock      = System.Windows.Forms.DockStyle.Fill;
     label5.Location  = new System.Drawing.Point(3, 106);
     label5.Name      = "label5";
     label5.Size      = new System.Drawing.Size(65, 26);
     label5.TabIndex  = 14;
     label5.Text      = "Password:"******"tableLayoutPanel1";
     this.tableLayoutPanel1.RowCount = 7;
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     this.tableLayoutPanel1.Size     = new System.Drawing.Size(520, 199);
     this.tableLayoutPanel1.TabIndex = 0;
     //
     // btnConnections
     //
     this.btnConnections.AutoSize                = true;
     this.btnConnections.Dock                    = System.Windows.Forms.DockStyle.Right;
     this.btnConnections.Image                   = ((System.Drawing.Image)(resources.GetObject("btnConnections.Image")));
     this.btnConnections.ImageAlign              = System.Drawing.ContentAlignment.MiddleRight;
     this.btnConnections.Location                = new System.Drawing.Point(425, 3);
     this.btnConnections.Name                    = "btnConnections";
     this.btnConnections.Size                    = new System.Drawing.Size(92, 24);
     this.btnConnections.TabIndex                = 2;
     this.btnConnections.Text                    = "&Connections";
     this.btnConnections.TextImageRelation       = System.Windows.Forms.TextImageRelation.TextBeforeImage;
     this.btnConnections.UseVisualStyleBackColor = true;
     this.btnConnections.Click                  += new System.EventHandler(this.btnConnections_Click);
     //
     // tbServer
     //
     this.tbServer.Anchor             = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
     this.tbServer.AutoCompleteMode   = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
     this.tbServer.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.RecentlyUsedList;
     this.tableLayoutPanel1.SetColumnSpan(this.tbServer, 2);
     this.tbServer.Location = new System.Drawing.Point(74, 33);
     this.tbServer.Name     = "tbServer";
     this.tbServer.Size     = new System.Drawing.Size(344, 20);
     this.tbServer.TabIndex = 3;
     //
     // tbUser
     //
     this.tbUser.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
     this.tableLayoutPanel1.SetColumnSpan(this.tbUser, 2);
     this.tbUser.Enabled  = false;
     this.tbUser.Location = new System.Drawing.Point(74, 83);
     this.tbUser.Name     = "tbUser";
     this.tbUser.Size     = new System.Drawing.Size(344, 20);
     this.tbUser.TabIndex = 5;
     //
     // tbWorkspace
     //
     this.tbWorkspace.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
     this.tableLayoutPanel1.SetColumnSpan(this.tbWorkspace, 2);
     this.tbWorkspace.Location = new System.Drawing.Point(74, 136);
     this.tbWorkspace.Name     = "tbWorkspace";
     this.tbWorkspace.Size     = new System.Drawing.Size(344, 20);
     this.tbWorkspace.TabIndex = 7;
     //
     // btnBrowseWorkspace
     //
     this.btnBrowseWorkspace.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.btnBrowseWorkspace.Location  = new System.Drawing.Point(424, 135);
     this.btnBrowseWorkspace.Name      = "btnBrowseWorkspace";
     this.btnBrowseWorkspace.Size      = new System.Drawing.Size(75, 23);
     this.btnBrowseWorkspace.TabIndex  = 8;
     this.btnBrowseWorkspace.Text      = "B&rowse";
     this.btnBrowseWorkspace.UseVisualStyleBackColor = true;
     this.btnBrowseWorkspace.Click += new System.EventHandler(this.btnBrowseWorkspace_Click);
     //
     // cbNTLM
     //
     this.cbNTLM.AutoSize   = true;
     this.cbNTLM.Checked    = true;
     this.cbNTLM.CheckState = System.Windows.Forms.CheckState.Checked;
     this.tableLayoutPanel1.SetColumnSpan(this.cbNTLM, 2);
     this.cbNTLM.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.cbNTLM.Location  = new System.Drawing.Point(74, 59);
     this.cbNTLM.Name      = "cbNTLM";
     this.cbNTLM.Size      = new System.Drawing.Size(161, 18);
     this.cbNTLM.TabIndex  = 4;
     this.cbNTLM.Text      = "Use Existing Authentication";
     this.cbNTLM.UseVisualStyleBackColor = true;
     this.cbNTLM.CheckedChanged         += new System.EventHandler(this.cbNTLM_CheckedChanged);
     //
     // tbPassword
     //
     this.tbPassword.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
     this.tableLayoutPanel1.SetColumnSpan(this.tbPassword, 2);
     this.tbPassword.Enabled  = false;
     this.tbPassword.Location = new System.Drawing.Point(74, 109);
     this.tbPassword.Name     = "tbPassword";
     this.tbPassword.Size     = new System.Drawing.Size(344, 20);
     this.tbPassword.TabIndex = 6;
     this.tbPassword.UseSystemPasswordChar = true;
     //
     // cbShowAtStartup
     //
     this.cbShowAtStartup.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.cbShowAtStartup.AutoSize = true;
     this.tableLayoutPanel1.SetColumnSpan(this.cbShowAtStartup, 2);
     this.cbShowAtStartup.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.cbShowAtStartup.Location  = new System.Drawing.Point(3, 178);
     this.cbShowAtStartup.Name      = "cbShowAtStartup";
     this.cbShowAtStartup.Size      = new System.Drawing.Size(156, 18);
     this.cbShowAtStartup.TabIndex  = 15;
     this.cbShowAtStartup.Text      = "Show this dialog at startup";
     this.cbShowAtStartup.UseVisualStyleBackColor = true;
     //
     // OpenConnection
     //
     this.AcceptButton        = this.btnOk;
     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(544, 223);
     this.Controls.Add(this.tableLayoutPanel1);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox   = false;
     this.MinimizeBox   = false;
     this.Name          = "OpenConnection";
     this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Show;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text          = "Open Connection";
     this.Load         += new System.EventHandler(this.OpenConnection_Load);
     flowLayoutPanel1.ResumeLayout(false);
     this.tableLayoutPanel1.ResumeLayout(false);
     this.tableLayoutPanel1.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()
 {
     System.Windows.Forms.Panel                     Pnl_Buttons;
     System.Windows.Forms.Label                     Lbl_Title;
     System.Windows.Forms.FlowLayoutPanel           Flp_Options;
     System.Windows.Forms.Label                     Lbl_InstallLocation;
     System.Windows.Forms.Label                     Lbl_ProgramLocation;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ApplicationInstaller));
     this.Btn_Back                  = new System.Windows.Forms.Button();
     this.Btn_Install               = new System.Windows.Forms.Button();
     this.ChBox_HasFolder           = new System.Windows.Forms.CheckBox();
     this.ChBox_InstallAdmin        = new System.Windows.Forms.CheckBox();
     this.Pnl_InstallLocation       = new System.Windows.Forms.Panel();
     this.Pnl_InstallLocationSelect = new System.Windows.Forms.Panel();
     this.Txt_InstallLocation       = new System.Windows.Forms.TextBox();
     this.Btn_InstallLocationBrowse = new System.Windows.Forms.Button();
     this.Pnl_ProgramLocation       = new System.Windows.Forms.Panel();
     this.Pnl_ProgramLocationSelect = new System.Windows.Forms.Panel();
     this.Txt_ProgramLocation       = new System.Windows.Forms.TextBox();
     this.Btn_ProgramLocationBrowse = new System.Windows.Forms.Button();
     this.Btn_AddExecutable         = new System.Windows.Forms.Button();
     this.Pnl_ExecutablesHeader     = new System.Windows.Forms.Panel();
     this.Lbl_RelativeLocation      = new System.Windows.Forms.Label();
     this.Lbl_ShortcutName          = new System.Windows.Forms.Label();
     this.Lbl_OnDesktop             = new System.Windows.Forms.Label();
     this.Pnl_PaddingPanel          = new System.Windows.Forms.Panel();
     this.Pnl_AddExecutable         = new System.Windows.Forms.Panel();
     this.Pnl_ExecutablesSelector   = new System.Windows.Forms.Panel();
     this.Pnl_Executables           = new System.Windows.Forms.Panel();
     Pnl_Buttons         = new System.Windows.Forms.Panel();
     Lbl_Title           = new System.Windows.Forms.Label();
     Flp_Options         = new System.Windows.Forms.FlowLayoutPanel();
     Lbl_InstallLocation = new System.Windows.Forms.Label();
     Lbl_ProgramLocation = new System.Windows.Forms.Label();
     Pnl_Buttons.SuspendLayout();
     Flp_Options.SuspendLayout();
     this.Pnl_InstallLocation.SuspendLayout();
     this.Pnl_InstallLocationSelect.SuspendLayout();
     this.Pnl_ProgramLocation.SuspendLayout();
     this.Pnl_ProgramLocationSelect.SuspendLayout();
     this.Pnl_ExecutablesHeader.SuspendLayout();
     this.Pnl_AddExecutable.SuspendLayout();
     this.Pnl_ExecutablesSelector.SuspendLayout();
     this.SuspendLayout();
     //
     // Pnl_Buttons
     //
     Pnl_Buttons.Controls.Add(this.Btn_Back);
     Pnl_Buttons.Controls.Add(this.Btn_Install);
     Pnl_Buttons.Dock     = System.Windows.Forms.DockStyle.Bottom;
     Pnl_Buttons.Location = new System.Drawing.Point(50, 481);
     Pnl_Buttons.Name     = "Pnl_Buttons";
     Pnl_Buttons.Size     = new System.Drawing.Size(682, 50);
     Pnl_Buttons.TabIndex = 2;
     //
     // Btn_Back
     //
     this.Btn_Back.Dock     = System.Windows.Forms.DockStyle.Right;
     this.Btn_Back.Location = new System.Drawing.Point(482, 0);
     this.Btn_Back.Name     = "Btn_Back";
     this.Btn_Back.Size     = new System.Drawing.Size(200, 50);
     this.Btn_Back.TabIndex = 1;
     this.Btn_Back.Text     = "Back";
     this.Btn_Back.UseVisualStyleBackColor = true;
     this.Btn_Back.Click += new System.EventHandler(this.Btn_Back_Click);
     //
     // Btn_Install
     //
     this.Btn_Install.Dock     = System.Windows.Forms.DockStyle.Left;
     this.Btn_Install.Location = new System.Drawing.Point(0, 0);
     this.Btn_Install.Name     = "Btn_Install";
     this.Btn_Install.Size     = new System.Drawing.Size(200, 50);
     this.Btn_Install.TabIndex = 0;
     this.Btn_Install.Text     = "Install";
     this.Btn_Install.UseVisualStyleBackColor = true;
     this.Btn_Install.Click += new System.EventHandler(this.Btn_Install_Click);
     //
     // Lbl_Title
     //
     Lbl_Title.Dock      = System.Windows.Forms.DockStyle.Top;
     Lbl_Title.Font      = new System.Drawing.Font("Courier New", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     Lbl_Title.Location  = new System.Drawing.Point(50, 50);
     Lbl_Title.Name      = "Lbl_Title";
     Lbl_Title.Size      = new System.Drawing.Size(682, 80);
     Lbl_Title.TabIndex  = 0;
     Lbl_Title.Text      = "Application Installer";
     Lbl_Title.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // Flp_Options
     //
     Flp_Options.Controls.Add(this.ChBox_HasFolder);
     Flp_Options.Controls.Add(this.ChBox_InstallAdmin);
     Flp_Options.Dock          = System.Windows.Forms.DockStyle.Bottom;
     Flp_Options.FlowDirection = System.Windows.Forms.FlowDirection.TopDown;
     Flp_Options.Location      = new System.Drawing.Point(50, 436);
     Flp_Options.Name          = "Flp_Options";
     Flp_Options.Padding       = new System.Windows.Forms.Padding(0, 10, 0, 10);
     Flp_Options.Size          = new System.Drawing.Size(682, 45);
     Flp_Options.TabIndex      = 15;
     //
     // ChBox_HasFolder
     //
     this.ChBox_HasFolder.AutoSize = true;
     this.ChBox_HasFolder.Location = new System.Drawing.Point(3, 13);
     this.ChBox_HasFolder.Name     = "ChBox_HasFolder";
     this.ChBox_HasFolder.Size     = new System.Drawing.Size(202, 21);
     this.ChBox_HasFolder.TabIndex = 0;
     this.ChBox_HasFolder.Text     = "Contained in an App Folder";
     this.ChBox_HasFolder.UseVisualStyleBackColor = true;
     this.ChBox_HasFolder.CheckedChanged         += new System.EventHandler(this.ChBox_HasFolder_CheckedChanged);
     //
     // ChBox_InstallAdmin
     //
     this.ChBox_InstallAdmin.AutoSize = true;
     this.ChBox_InstallAdmin.Location = new System.Drawing.Point(211, 13);
     this.ChBox_InstallAdmin.Name     = "ChBox_InstallAdmin";
     this.ChBox_InstallAdmin.Size     = new System.Drawing.Size(265, 21);
     this.ChBox_InstallAdmin.TabIndex = 1;
     this.ChBox_InstallAdmin.Text     = "Install for all users? (Requires admin)";
     this.ChBox_InstallAdmin.UseVisualStyleBackColor = true;
     this.ChBox_InstallAdmin.CheckedChanged         += new System.EventHandler(this.ChBox_InstallAdmin_CheckedChanged);
     //
     // Lbl_InstallLocation
     //
     Lbl_InstallLocation.Dock      = System.Windows.Forms.DockStyle.Fill;
     Lbl_InstallLocation.Location  = new System.Drawing.Point(0, 0);
     Lbl_InstallLocation.Name      = "Lbl_InstallLocation";
     Lbl_InstallLocation.Size      = new System.Drawing.Size(682, 41);
     Lbl_InstallLocation.TabIndex  = 20;
     Lbl_InstallLocation.Text      = "Installation Location";
     Lbl_InstallLocation.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // Lbl_ProgramLocation
     //
     Lbl_ProgramLocation.Dock      = System.Windows.Forms.DockStyle.Fill;
     Lbl_ProgramLocation.Location  = new System.Drawing.Point(0, 0);
     Lbl_ProgramLocation.Name      = "Lbl_ProgramLocation";
     Lbl_ProgramLocation.Size      = new System.Drawing.Size(682, 41);
     Lbl_ProgramLocation.TabIndex  = 19;
     Lbl_ProgramLocation.Text      = "Program Location";
     Lbl_ProgramLocation.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // Pnl_InstallLocation
     //
     this.Pnl_InstallLocation.Controls.Add(Lbl_InstallLocation);
     this.Pnl_InstallLocation.Controls.Add(this.Pnl_InstallLocationSelect);
     this.Pnl_InstallLocation.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.Pnl_InstallLocation.Location = new System.Drawing.Point(50, 370);
     this.Pnl_InstallLocation.Name     = "Pnl_InstallLocation";
     this.Pnl_InstallLocation.Size     = new System.Drawing.Size(682, 66);
     this.Pnl_InstallLocation.TabIndex = 21;
     //
     // Pnl_InstallLocationSelect
     //
     this.Pnl_InstallLocationSelect.Controls.Add(this.Txt_InstallLocation);
     this.Pnl_InstallLocationSelect.Controls.Add(this.Btn_InstallLocationBrowse);
     this.Pnl_InstallLocationSelect.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.Pnl_InstallLocationSelect.Location = new System.Drawing.Point(0, 41);
     this.Pnl_InstallLocationSelect.Name     = "Pnl_InstallLocationSelect";
     this.Pnl_InstallLocationSelect.Size     = new System.Drawing.Size(682, 25);
     this.Pnl_InstallLocationSelect.TabIndex = 19;
     //
     // Txt_InstallLocation
     //
     this.Txt_InstallLocation.Dock         = System.Windows.Forms.DockStyle.Fill;
     this.Txt_InstallLocation.Location     = new System.Drawing.Point(0, 0);
     this.Txt_InstallLocation.Name         = "Txt_InstallLocation";
     this.Txt_InstallLocation.Size         = new System.Drawing.Size(582, 22);
     this.Txt_InstallLocation.TabIndex     = 17;
     this.Txt_InstallLocation.TextChanged += new System.EventHandler(this.Txt_InstallLocation_TextChanged);
     //
     // Btn_InstallLocationBrowse
     //
     this.Btn_InstallLocationBrowse.Dock     = System.Windows.Forms.DockStyle.Right;
     this.Btn_InstallLocationBrowse.Location = new System.Drawing.Point(582, 0);
     this.Btn_InstallLocationBrowse.Name     = "Btn_InstallLocationBrowse";
     this.Btn_InstallLocationBrowse.Size     = new System.Drawing.Size(100, 25);
     this.Btn_InstallLocationBrowse.TabIndex = 16;
     this.Btn_InstallLocationBrowse.Text     = "Browse";
     this.Btn_InstallLocationBrowse.UseVisualStyleBackColor = true;
     this.Btn_InstallLocationBrowse.Click += new System.EventHandler(this.Btn_InstallLocationBrowse_Click);
     //
     // Pnl_ProgramLocation
     //
     this.Pnl_ProgramLocation.Controls.Add(Lbl_ProgramLocation);
     this.Pnl_ProgramLocation.Controls.Add(this.Pnl_ProgramLocationSelect);
     this.Pnl_ProgramLocation.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.Pnl_ProgramLocation.Location = new System.Drawing.Point(50, 304);
     this.Pnl_ProgramLocation.Name     = "Pnl_ProgramLocation";
     this.Pnl_ProgramLocation.Size     = new System.Drawing.Size(682, 66);
     this.Pnl_ProgramLocation.TabIndex = 22;
     //
     // Pnl_ProgramLocationSelect
     //
     this.Pnl_ProgramLocationSelect.Controls.Add(this.Txt_ProgramLocation);
     this.Pnl_ProgramLocationSelect.Controls.Add(this.Btn_ProgramLocationBrowse);
     this.Pnl_ProgramLocationSelect.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.Pnl_ProgramLocationSelect.Location = new System.Drawing.Point(0, 41);
     this.Pnl_ProgramLocationSelect.Name     = "Pnl_ProgramLocationSelect";
     this.Pnl_ProgramLocationSelect.Size     = new System.Drawing.Size(682, 25);
     this.Pnl_ProgramLocationSelect.TabIndex = 18;
     //
     // Txt_ProgramLocation
     //
     this.Txt_ProgramLocation.Dock         = System.Windows.Forms.DockStyle.Fill;
     this.Txt_ProgramLocation.Location     = new System.Drawing.Point(0, 0);
     this.Txt_ProgramLocation.Name         = "Txt_ProgramLocation";
     this.Txt_ProgramLocation.Size         = new System.Drawing.Size(582, 22);
     this.Txt_ProgramLocation.TabIndex     = 17;
     this.Txt_ProgramLocation.TextChanged += new System.EventHandler(this.Txt_ProgramLocation_TextChanged);
     //
     // Btn_ProgramLocationBrowse
     //
     this.Btn_ProgramLocationBrowse.Dock     = System.Windows.Forms.DockStyle.Right;
     this.Btn_ProgramLocationBrowse.Location = new System.Drawing.Point(582, 0);
     this.Btn_ProgramLocationBrowse.Name     = "Btn_ProgramLocationBrowse";
     this.Btn_ProgramLocationBrowse.Size     = new System.Drawing.Size(100, 25);
     this.Btn_ProgramLocationBrowse.TabIndex = 16;
     this.Btn_ProgramLocationBrowse.Text     = "Browse";
     this.Btn_ProgramLocationBrowse.UseVisualStyleBackColor = true;
     this.Btn_ProgramLocationBrowse.Click += new System.EventHandler(this.Btn_ProgramLocationBrowse_Click);
     //
     // Btn_AddExecutable
     //
     this.Btn_AddExecutable.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.Btn_AddExecutable.Location = new System.Drawing.Point(0, 0);
     this.Btn_AddExecutable.Name     = "Btn_AddExecutable";
     this.Btn_AddExecutable.Size     = new System.Drawing.Size(682, 50);
     this.Btn_AddExecutable.TabIndex = 3;
     this.Btn_AddExecutable.Text     = "Add Executable";
     this.Btn_AddExecutable.UseVisualStyleBackColor = true;
     this.Btn_AddExecutable.Click += new System.EventHandler(this.Btn_AddExecutable_Click);
     //
     // Pnl_ExecutablesHeader
     //
     this.Pnl_ExecutablesHeader.Controls.Add(this.Lbl_RelativeLocation);
     this.Pnl_ExecutablesHeader.Controls.Add(this.Lbl_ShortcutName);
     this.Pnl_ExecutablesHeader.Controls.Add(this.Lbl_OnDesktop);
     this.Pnl_ExecutablesHeader.Controls.Add(this.Pnl_PaddingPanel);
     this.Pnl_ExecutablesHeader.Dock     = System.Windows.Forms.DockStyle.Top;
     this.Pnl_ExecutablesHeader.Location = new System.Drawing.Point(0, 0);
     this.Pnl_ExecutablesHeader.Name     = "Pnl_ExecutablesHeader";
     this.Pnl_ExecutablesHeader.Size     = new System.Drawing.Size(682, 50);
     this.Pnl_ExecutablesHeader.TabIndex = 25;
     //
     // Lbl_RelativeLocation
     //
     this.Lbl_RelativeLocation.Dock      = System.Windows.Forms.DockStyle.Fill;
     this.Lbl_RelativeLocation.Location  = new System.Drawing.Point(175, 0);
     this.Lbl_RelativeLocation.Name      = "Lbl_RelativeLocation";
     this.Lbl_RelativeLocation.Size      = new System.Drawing.Size(332, 50);
     this.Lbl_RelativeLocation.TabIndex  = 29;
     this.Lbl_RelativeLocation.Text      = "Relative Location";
     this.Lbl_RelativeLocation.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // Lbl_ShortcutName
     //
     this.Lbl_ShortcutName.Dock      = System.Windows.Forms.DockStyle.Left;
     this.Lbl_ShortcutName.Location  = new System.Drawing.Point(0, 0);
     this.Lbl_ShortcutName.Name      = "Lbl_ShortcutName";
     this.Lbl_ShortcutName.Size      = new System.Drawing.Size(175, 50);
     this.Lbl_ShortcutName.TabIndex  = 28;
     this.Lbl_ShortcutName.Text      = "Shortcut Name";
     this.Lbl_ShortcutName.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // Lbl_OnDesktop
     //
     this.Lbl_OnDesktop.Dock      = System.Windows.Forms.DockStyle.Right;
     this.Lbl_OnDesktop.Location  = new System.Drawing.Point(507, 0);
     this.Lbl_OnDesktop.Name      = "Lbl_OnDesktop";
     this.Lbl_OnDesktop.Size      = new System.Drawing.Size(75, 50);
     this.Lbl_OnDesktop.TabIndex  = 27;
     this.Lbl_OnDesktop.Text      = "On Desktop";
     this.Lbl_OnDesktop.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // Pnl_PaddingPanel
     //
     this.Pnl_PaddingPanel.Dock     = System.Windows.Forms.DockStyle.Right;
     this.Pnl_PaddingPanel.Location = new System.Drawing.Point(582, 0);
     this.Pnl_PaddingPanel.Name     = "Pnl_PaddingPanel";
     this.Pnl_PaddingPanel.Size     = new System.Drawing.Size(100, 50);
     this.Pnl_PaddingPanel.TabIndex = 26;
     //
     // Pnl_AddExecutable
     //
     this.Pnl_AddExecutable.Controls.Add(this.Btn_AddExecutable);
     this.Pnl_AddExecutable.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.Pnl_AddExecutable.Location = new System.Drawing.Point(0, 114);
     this.Pnl_AddExecutable.Name     = "Pnl_AddExecutable";
     this.Pnl_AddExecutable.Size     = new System.Drawing.Size(682, 50);
     this.Pnl_AddExecutable.TabIndex = 19;
     //
     // Pnl_ExecutablesSelector
     //
     this.Pnl_ExecutablesSelector.Controls.Add(this.Pnl_Executables);
     this.Pnl_ExecutablesSelector.Controls.Add(this.Pnl_ExecutablesHeader);
     this.Pnl_ExecutablesSelector.Controls.Add(this.Pnl_AddExecutable);
     this.Pnl_ExecutablesSelector.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.Pnl_ExecutablesSelector.Location = new System.Drawing.Point(50, 130);
     this.Pnl_ExecutablesSelector.Name     = "Pnl_ExecutablesSelector";
     this.Pnl_ExecutablesSelector.Padding  = new System.Windows.Forms.Padding(0, 0, 0, 10);
     this.Pnl_ExecutablesSelector.Size     = new System.Drawing.Size(682, 174);
     this.Pnl_ExecutablesSelector.TabIndex = 27;
     //
     // Pnl_Executables
     //
     this.Pnl_Executables.AutoScroll = true;
     this.Pnl_Executables.Dock       = System.Windows.Forms.DockStyle.Fill;
     this.Pnl_Executables.Location   = new System.Drawing.Point(0, 50);
     this.Pnl_Executables.Name       = "Pnl_Executables";
     this.Pnl_Executables.Size       = new System.Drawing.Size(682, 64);
     this.Pnl_Executables.TabIndex   = 27;
     //
     // ApplicationInstaller
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(782, 581);
     this.Controls.Add(this.Pnl_ExecutablesSelector);
     this.Controls.Add(this.Pnl_ProgramLocation);
     this.Controls.Add(this.Pnl_InstallLocation);
     this.Controls.Add(Flp_Options);
     this.Controls.Add(Pnl_Buttons);
     this.Controls.Add(Lbl_Title);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name          = "ApplicationInstaller";
     this.Padding       = new System.Windows.Forms.Padding(50);
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text          = "Application Installer";
     this.Load         += new System.EventHandler(this.ApplicationInstaller_Load);
     Pnl_Buttons.ResumeLayout(false);
     Flp_Options.ResumeLayout(false);
     Flp_Options.PerformLayout();
     this.Pnl_InstallLocation.ResumeLayout(false);
     this.Pnl_InstallLocationSelect.ResumeLayout(false);
     this.Pnl_InstallLocationSelect.PerformLayout();
     this.Pnl_ProgramLocation.ResumeLayout(false);
     this.Pnl_ProgramLocationSelect.ResumeLayout(false);
     this.Pnl_ProgramLocationSelect.PerformLayout();
     this.Pnl_ExecutablesHeader.ResumeLayout(false);
     this.Pnl_AddExecutable.ResumeLayout(false);
     this.Pnl_ExecutablesSelector.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()
        {
            this.components = new System.ComponentModel.Container();
            System.Windows.Forms.Panel bottomPanel;
            System.Windows.Forms.Label lblMainWindowPage;
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SettingsForm));
            System.Windows.Forms.Label lblSize;
            System.Windows.Forms.GroupBox groupBox15;
            System.Windows.Forms.GroupBox groupBox7;
            System.Windows.Forms.Label lblGeneralPage;
            System.Windows.Forms.Label lblEnvironment;
            System.Windows.Forms.Label lblSkillPlannerPage;
            System.Windows.Forms.Label lblNetworkPageAPIProvider;
            System.Windows.Forms.Label lblNetworkPageProxy;
            System.Windows.Forms.Label label12;
            System.Windows.Forms.Label label11;
            System.Windows.Forms.Label lblHTTP;
            System.Windows.Forms.Label lblEmailNotificationPage;
            System.Windows.Forms.Label lblEmailServer;
            System.Windows.Forms.Label lblFromAddress;
            System.Windows.Forms.Label lblToAddress;
            System.Windows.Forms.Label lblEmailPassword;
            System.Windows.Forms.Label lblEmailUsername;
            System.Windows.Forms.Label lblPortNumber;
            System.Windows.Forms.Label lblNotificationsPage;
            System.Windows.Forms.Label lblTrayIconPage;
            System.Windows.Forms.GroupBox systemTrayIconGroupBox;
            System.Windows.Forms.Label lblSchedulerUIPage;
            System.Windows.Forms.Label lblText;
            System.Windows.Forms.Label lblBlockingEvents;
            System.Windows.Forms.Label lblRecurringEvents;
            System.Windows.Forms.Label lblSimpleEvents;
            System.Windows.Forms.Label lblReminder;
            System.Windows.Forms.Label lblURI;
            System.Windows.Forms.Label lblPassword;
            System.Windows.Forms.Label lblGoogleEmail;
            System.Windows.Forms.Label lblEarlyReminder;
            System.Windows.Forms.Label lblLateReminder;
            System.Windows.Forms.Label lblExternalCalendarPage;
            System.Windows.Forms.Label lblG15Page;
            System.Windows.Forms.Label lblCycleTrainingSeconds;
            System.Windows.Forms.Label lblG15CycleCharSeconds;
            System.Windows.Forms.Label lblIgbServerPage;
            System.Windows.Forms.Label lblIGBPort;
            System.Windows.Forms.FlowLayoutPanel flowLayoutPanel28;
            System.Windows.Forms.Label igbHelpLabel;
            System.Windows.Forms.Label label1;
            System.Windows.Forms.GroupBox gbSkillBrowserIconSet;
            System.Windows.Forms.TreeNode treeNode1 = new System.Windows.Forms.TreeNode("Node1");
            System.Windows.Forms.TreeNode treeNode2 = new System.Windows.Forms.TreeNode("Node2");
            System.Windows.Forms.TreeNode treeNode3 = new System.Windows.Forms.TreeNode("Node3");
            System.Windows.Forms.TreeNode treeNode4 = new System.Windows.Forms.TreeNode("Node4");
            System.Windows.Forms.TreeNode treeNode5 = new System.Windows.Forms.TreeNode("Node5");
            System.Windows.Forms.TreeNode treeNode6 = new System.Windows.Forms.TreeNode("Node6");
            System.Windows.Forms.TreeNode treeNode7 = new System.Windows.Forms.TreeNode("Node7");
            System.Windows.Forms.TreeNode treeNode8 = new System.Windows.Forms.TreeNode("Node8");
            System.Windows.Forms.TreeNode treeNode9 = new System.Windows.Forms.TreeNode("Node0", new System.Windows.Forms.TreeNode[] {
            treeNode1,
            treeNode2,
            treeNode3,
            treeNode4,
            treeNode5,
            treeNode6,
            treeNode7,
            treeNode8});
            System.Windows.Forms.Label label2;
            System.Windows.Forms.TreeNode treeNode10 = new System.Windows.Forms.TreeNode("Updates", 11, 11);
            System.Windows.Forms.TreeNode treeNode11 = new System.Windows.Forms.TreeNode("Network", 7, 7);
            System.Windows.Forms.TreeNode treeNode12 = new System.Windows.Forms.TreeNode("Logitech Keyboards", 4, 4);
            System.Windows.Forms.TreeNode treeNode13 = new System.Windows.Forms.TreeNode("IGB Server", 3, 3);
            System.Windows.Forms.TreeNode treeNode14 = new System.Windows.Forms.TreeNode("General", 10, 10, new System.Windows.Forms.TreeNode[] {
            treeNode10,
            treeNode11,
            treeNode12,
            treeNode13});
            System.Windows.Forms.TreeNode treeNode15 = new System.Windows.Forms.TreeNode("Main Window", 6, 6);
            System.Windows.Forms.TreeNode treeNode16 = new System.Windows.Forms.TreeNode("Icons", 13, 13);
            System.Windows.Forms.TreeNode treeNode17 = new System.Windows.Forms.TreeNode("Messages", 14, 14);
            System.Windows.Forms.TreeNode treeNode18 = new System.Windows.Forms.TreeNode("Skill Planner", 8, 8, new System.Windows.Forms.TreeNode[] {
            treeNode16,
            treeNode17});
            System.Windows.Forms.TreeNode treeNode19 = new System.Windows.Forms.TreeNode("System Tray Icon", 2, 2);
            System.Windows.Forms.TreeNode treeNode20 = new System.Windows.Forms.TreeNode("External Calendar", 5, 5);
            System.Windows.Forms.TreeNode treeNode21 = new System.Windows.Forms.TreeNode("Scheduler", 1, 1, new System.Windows.Forms.TreeNode[] {
            treeNode20});
            System.Windows.Forms.TreeNode treeNode22 = new System.Windows.Forms.TreeNode("Skill Completion Mails", 12, 12);
            System.Windows.Forms.TreeNode treeNode23 = new System.Windows.Forms.TreeNode("Notifications", 9, 9, new System.Windows.Forms.TreeNode[] {
            treeNode22});
            System.Windows.Forms.TreeNode treeNode24 = new System.Windows.Forms.TreeNode("BattleClinic Service", 15, 15);
            this.applyButton = new System.Windows.Forms.Button();
            this.okButton = new System.Windows.Forms.Button();
            this.cancelButton = new System.Windows.Forms.Button();
            this.cbColorQueuedSkills = new System.Windows.Forms.CheckBox();
            this.cbShowPrereqMetSkills = new System.Windows.Forms.CheckBox();
            this.cbColorPartialSkills = new System.Windows.Forms.CheckBox();
            this.cbAlwaysShowSkillQueueTime = new System.Windows.Forms.CheckBox();
            this.cbShowNonPublicSkills = new System.Windows.Forms.CheckBox();
            this.cbShowAllPublicSkills = new System.Windows.Forms.CheckBox();
            this.cbWindowsTitleList = new System.Windows.Forms.ComboBox();
            this.cbSkillInTitle = new System.Windows.Forms.CheckBox();
            this.cbTitleToTime = new System.Windows.Forms.CheckBox();
            this.rbSystemTrayOptionsNever = new System.Windows.Forms.RadioButton();
            this.rbSystemTrayOptionsAlways = new System.Windows.Forms.RadioButton();
            this.rbSystemTrayOptionsMinimized = new System.Windows.Forms.RadioButton();
            this.igbUrlTextBox = new System.Windows.Forms.TextBox();
            this.tableLayoutPanel4 = new System.Windows.Forms.TableLayoutPanel();
            this.cbSkillIconSet = new System.Windows.Forms.ComboBox();
            this.tvlist = new System.Windows.Forms.TreeView();
            this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
            this.label6 = new System.Windows.Forms.Label();
            this.label7 = new System.Windows.Forms.Label();
            this.label8 = new System.Windows.Forms.Label();
            this.flowLayoutPanel9 = new System.Windows.Forms.FlowLayoutPanel();
            this.checkBox1 = new System.Windows.Forms.CheckBox();
            this.checkBox2 = new System.Windows.Forms.CheckBox();
            this.checkBox3 = new System.Windows.Forms.CheckBox();
            this.chName = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.ttToolTipCodes = new System.Windows.Forms.ToolTip(this.components);
            this.cbUseIncreasedContrastOnOverview = new System.Windows.Forms.CheckBox();
            this.overviewGroupCharactersInTrainingCheckBox = new System.Windows.Forms.CheckBox();
            this.overviewShowSkillQueueTrainingTimeCheckBox = new System.Windows.Forms.CheckBox();
            this.overviewShowWalletCheckBox = new System.Windows.Forms.CheckBox();
            this.overviewShowPortraitCheckBox = new System.Windows.Forms.CheckBox();
            this.cbShowOverViewTab = new System.Windows.Forms.CheckBox();
            this.colorDialog = new System.Windows.Forms.ColorDialog();
            this.treeView = new System.Windows.Forms.TreeView();
            this.imageList = new System.Windows.Forms.ImageList(this.components);
            this.leftPanel = new System.Windows.Forms.Panel();
            this.multiPanel = new EVEMon.Controls.MultiPanel();
            this.mainWindowPage = new EVEMon.Controls.MultiPanelPage();
            this.groupBox2 = new System.Windows.Forms.GroupBox();
            this.overviewPanel = new System.Windows.Forms.Panel();
            this.overviewPortraitSizeComboBox = new System.Windows.Forms.ComboBox();
            this.generalPage = new EVEMon.Controls.MultiPanelPage();
            this.cbWorksafeMode = new System.Windows.Forms.CheckBox();
            this.compatibilityCombo = new System.Windows.Forms.ComboBox();
            this.runAtStartupComboBox = new System.Windows.Forms.CheckBox();
            this.skillPlannerPage = new EVEMon.Controls.MultiPanelPage();
            this.cbAdvanceEntryAdd = new System.Windows.Forms.CheckBox();
            this.cbSummaryOnMultiSelectOnly = new System.Windows.Forms.CheckBox();
            this.cbHighlightQueuedSiklls = new System.Windows.Forms.CheckBox();
            this.cbHighlightPartialSkills = new System.Windows.Forms.CheckBox();
            this.cbHighlightConflicts = new System.Windows.Forms.CheckBox();
            this.cbHighlightPrerequisites = new System.Windows.Forms.CheckBox();
            this.cbHighlightPlannedSkills = new System.Windows.Forms.CheckBox();
            this.networkPage = new EVEMon.Controls.MultiPanelPage();
            this.ApiProxyGroupBox = new System.Windows.Forms.GroupBox();
            this.btnDeleteAPIServer = new System.Windows.Forms.Button();
            this.btnAddAPIServer = new System.Windows.Forms.Button();
            this.cbAPIServer = new System.Windows.Forms.ComboBox();
            this.btnEditAPIServer = new System.Windows.Forms.Button();
            this.ProxyServerGroupBox = new System.Windows.Forms.GroupBox();
            this.customProxyCheckBox = new System.Windows.Forms.CheckBox();
            this.customProxyPanel = new System.Windows.Forms.Panel();
            this.proxyPortTextBox = new System.Windows.Forms.TextBox();
            this.proxyAuthenticationButton = new System.Windows.Forms.Button();
            this.proxyHttpHostTextBox = new System.Windows.Forms.TextBox();
            this.emailNotificationsPage = new EVEMon.Controls.MultiPanelPage();
            this.mailNotificationPanel = new System.Windows.Forms.FlowLayoutPanel();
            this.cbEmailUseShortFormat = new System.Windows.Forms.CheckBox();
            this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
            this.tlpEmailSettings = new System.Windows.Forms.TableLayoutPanel();
            this.tbMailServer = new System.Windows.Forms.TextBox();
            this.tbFromAddress = new System.Windows.Forms.TextBox();
            this.tbToAddress = new System.Windows.Forms.TextBox();
            this.cbEmailServerRequireSsl = new System.Windows.Forms.CheckBox();
            this.cbEmailAuthRequired = new System.Windows.Forms.CheckBox();
            this.tlpEmailAuthTable = new System.Windows.Forms.TableLayoutPanel();
            this.tbEmailUsername = new System.Windows.Forms.TextBox();
            this.tbEmailPassword = new System.Windows.Forms.TextBox();
            this.emailPortTextBox = new System.Windows.Forms.TextBox();
            this.btnTestEmail = new System.Windows.Forms.Button();
            this.mailNotificationCheckBox = new System.Windows.Forms.CheckBox();
            this.notificationsPage = new EVEMon.Controls.MultiPanelPage();
            this.notificationsControl = new EVEMon.SettingsUI.NotificationsControl();
            this.cbPlaySoundOnSkillComplete = new System.Windows.Forms.CheckBox();
            this.trayIconPage = new EVEMon.Controls.MultiPanelPage();
            this.mainWindowBehaviourGroupBox = new System.Windows.Forms.GroupBox();
            this.rbMinToTaskBar = new System.Windows.Forms.RadioButton();
            this.rbMinToTray = new System.Windows.Forms.RadioButton();
            this.rbExitEVEMon = new System.Windows.Forms.RadioButton();
            this.trayIconPopupGroupBox = new System.Windows.Forms.GroupBox();
            this.trayPopupDisabledRadio = new System.Windows.Forms.RadioButton();
            this.trayPopupButton = new System.Windows.Forms.Button();
            this.trayPopupRadio = new System.Windows.Forms.RadioButton();
            this.trayTooltipRadio = new System.Windows.Forms.RadioButton();
            this.trayTooltipButton = new System.Windows.Forms.Button();
            this.updatesPage = new EVEMon.Controls.MultiPanelPage();
            this.groupBox1 = new System.Windows.Forms.GroupBox();
            this.btnResetUpdateQueryTimers = new System.Windows.Forms.Button();
            this.updateSettingsControl = new EVEMon.SettingsUI.UpdateSettingsControl();
            this.lblUpdatesPage = new System.Windows.Forms.Label();
            this.cbCheckTimeOnStartup = new System.Windows.Forms.CheckBox();
            this.cbCheckForUpdates = new System.Windows.Forms.CheckBox();
            this.schedulerUIPage = new EVEMon.Controls.MultiPanelPage();
            this.panelColorText = new System.Windows.Forms.Panel();
            this.panelColorRecurring2 = new System.Windows.Forms.Panel();
            this.panelColorRecurring1 = new System.Windows.Forms.Panel();
            this.panelColorSingle2 = new System.Windows.Forms.Panel();
            this.panelColorSingle1 = new System.Windows.Forms.Panel();
            this.panelColorBlocking = new System.Windows.Forms.Panel();
            this.externalCalendarPage = new EVEMon.Controls.MultiPanelPage();
            this.externalCalendarPanel = new System.Windows.Forms.Panel();
            this.rbMSOutlook = new System.Windows.Forms.RadioButton();
            this.dtpLateReminder = new System.Windows.Forms.DateTimePicker();
            this.tbReminder = new System.Windows.Forms.TextBox();
            this.dtpEarlyReminder = new System.Windows.Forms.DateTimePicker();
            this.gbGoogle = new System.Windows.Forms.GroupBox();
            this.cbGoogleReminder = new System.Windows.Forms.ComboBox();
            this.tbGoogleURI = new System.Windows.Forms.TextBox();
            this.tbGooglePassword = new System.Windows.Forms.TextBox();
            this.tbGoogleEmail = new System.Windows.Forms.TextBox();
            this.rbGoogle = new System.Windows.Forms.RadioButton();
            this.cbUseAlterateReminder = new System.Windows.Forms.CheckBox();
            this.cbSetReminder = new System.Windows.Forms.CheckBox();
            this.externalCalendarCheckbox = new System.Windows.Forms.CheckBox();
            this.g15Page = new EVEMon.Controls.MultiPanelPage();
            this.g15CheckBox = new System.Windows.Forms.CheckBox();
            this.g15Panel = new System.Windows.Forms.Panel();
            this.cbG15ShowEVETime = new System.Windows.Forms.CheckBox();
            this.cbG15ShowTime = new System.Windows.Forms.CheckBox();
            this.panelCycleQueueInfo = new System.Windows.Forms.Panel();
            this.cbG15CycleTimes = new System.Windows.Forms.CheckBox();
            this.ACycleTimesInterval = new System.Windows.Forms.NumericUpDown();
            this.panelCycleCharInfo = new System.Windows.Forms.Panel();
            this.cbG15ACycle = new System.Windows.Forms.CheckBox();
            this.ACycleInterval = new System.Windows.Forms.NumericUpDown();
            this.igbServerPage = new EVEMon.Controls.MultiPanelPage();
            this.igbCheckBox = new System.Windows.Forms.CheckBox();
            this.igbFlowPanel = new System.Windows.Forms.FlowLayoutPanel();
            this.flowLayoutPanel27 = new System.Windows.Forms.FlowLayoutPanel();
            this.igbPortTextBox = new System.Windows.Forms.TextBox();
            this.cbIGBPublic = new System.Windows.Forms.CheckBox();
            this.iconsPage = new EVEMon.Controls.MultiPanelPage();
            this.messagesPage = new EVEMon.Controls.MultiPanelPage();
            this.gbMessageBox = new System.Windows.Forms.GroupBox();
            this.lblPrioritesConflict = new System.Windows.Forms.Label();
            this.btnPrioritiesReset = new System.Windows.Forms.Button();
            this.ObsoleteEntryRemovalGroupBox = new System.Windows.Forms.GroupBox();
            this.RemoveAllLabel = new System.Windows.Forms.Label();
            this.AlwaysAskLabel = new System.Windows.Forms.Label();
            this.RemoveConfirmedLabel = new System.Windows.Forms.Label();
            this.alwaysAskRadioButton = new System.Windows.Forms.RadioButton();
            this.removeAllRadioButton = new System.Windows.Forms.RadioButton();
            this.removeConfirmedRadioButton = new System.Windows.Forms.RadioButton();
            this.battleClinicServicePage = new EVEMon.Controls.MultiPanelPage();
            this.settingsFileStorageGroupBox = new System.Windows.Forms.GroupBox();
            this.settingsFileStorageControl = new EVEMon.SettingsUI.SettingsFileStorageControl();
            this.BattleClinicLinkLabel = new System.Windows.Forms.LinkLabel();
            this.bcCredentialsGroupBox = new System.Windows.Forms.GroupBox();
            this.battleClinicAPIControl = new EVEMon.SettingsUI.BattleClinicAPIControl();
            bottomPanel = new System.Windows.Forms.Panel();
            lblMainWindowPage = new System.Windows.Forms.Label();
            lblSize = new System.Windows.Forms.Label();
            groupBox15 = new System.Windows.Forms.GroupBox();
            groupBox7 = new System.Windows.Forms.GroupBox();
            lblGeneralPage = new System.Windows.Forms.Label();
            lblEnvironment = new System.Windows.Forms.Label();
            lblSkillPlannerPage = new System.Windows.Forms.Label();
            lblNetworkPageAPIProvider = new System.Windows.Forms.Label();
            lblNetworkPageProxy = new System.Windows.Forms.Label();
            label12 = new System.Windows.Forms.Label();
            label11 = new System.Windows.Forms.Label();
            lblHTTP = new System.Windows.Forms.Label();
            lblEmailNotificationPage = new System.Windows.Forms.Label();
            lblEmailServer = new System.Windows.Forms.Label();
            lblFromAddress = new System.Windows.Forms.Label();
            lblToAddress = new System.Windows.Forms.Label();
            lblEmailPassword = new System.Windows.Forms.Label();
            lblEmailUsername = new System.Windows.Forms.Label();
            lblPortNumber = new System.Windows.Forms.Label();
            lblNotificationsPage = new System.Windows.Forms.Label();
            lblTrayIconPage = new System.Windows.Forms.Label();
            systemTrayIconGroupBox = new System.Windows.Forms.GroupBox();
            lblSchedulerUIPage = new System.Windows.Forms.Label();
            lblText = new System.Windows.Forms.Label();
            lblBlockingEvents = new System.Windows.Forms.Label();
            lblRecurringEvents = new System.Windows.Forms.Label();
            lblSimpleEvents = new System.Windows.Forms.Label();
            lblReminder = new System.Windows.Forms.Label();
            lblURI = new System.Windows.Forms.Label();
            lblPassword = new System.Windows.Forms.Label();
            lblGoogleEmail = new System.Windows.Forms.Label();
            lblEarlyReminder = new System.Windows.Forms.Label();
            lblLateReminder = new System.Windows.Forms.Label();
            lblExternalCalendarPage = new System.Windows.Forms.Label();
            lblG15Page = new System.Windows.Forms.Label();
            lblCycleTrainingSeconds = new System.Windows.Forms.Label();
            lblG15CycleCharSeconds = new System.Windows.Forms.Label();
            lblIgbServerPage = new System.Windows.Forms.Label();
            lblIGBPort = new System.Windows.Forms.Label();
            flowLayoutPanel28 = new System.Windows.Forms.FlowLayoutPanel();
            igbHelpLabel = new System.Windows.Forms.Label();
            label1 = new System.Windows.Forms.Label();
            gbSkillBrowserIconSet = new System.Windows.Forms.GroupBox();
            label2 = new System.Windows.Forms.Label();
            bottomPanel.SuspendLayout();
            groupBox15.SuspendLayout();
            groupBox7.SuspendLayout();
            systemTrayIconGroupBox.SuspendLayout();
            flowLayoutPanel28.SuspendLayout();
            gbSkillBrowserIconSet.SuspendLayout();
            this.tableLayoutPanel4.SuspendLayout();
            this.tableLayoutPanel1.SuspendLayout();
            this.flowLayoutPanel9.SuspendLayout();
            this.leftPanel.SuspendLayout();
            this.multiPanel.SuspendLayout();
            this.mainWindowPage.SuspendLayout();
            this.groupBox2.SuspendLayout();
            this.overviewPanel.SuspendLayout();
            this.generalPage.SuspendLayout();
            this.skillPlannerPage.SuspendLayout();
            this.networkPage.SuspendLayout();
            this.ApiProxyGroupBox.SuspendLayout();
            this.ProxyServerGroupBox.SuspendLayout();
            this.customProxyPanel.SuspendLayout();
            this.emailNotificationsPage.SuspendLayout();
            this.mailNotificationPanel.SuspendLayout();
            this.tableLayoutPanel2.SuspendLayout();
            this.tlpEmailSettings.SuspendLayout();
            this.tlpEmailAuthTable.SuspendLayout();
            this.notificationsPage.SuspendLayout();
            this.trayIconPage.SuspendLayout();
            this.mainWindowBehaviourGroupBox.SuspendLayout();
            this.trayIconPopupGroupBox.SuspendLayout();
            this.updatesPage.SuspendLayout();
            this.groupBox1.SuspendLayout();
            this.schedulerUIPage.SuspendLayout();
            this.externalCalendarPage.SuspendLayout();
            this.externalCalendarPanel.SuspendLayout();
            this.gbGoogle.SuspendLayout();
            this.g15Page.SuspendLayout();
            this.g15Panel.SuspendLayout();
            this.panelCycleQueueInfo.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.ACycleTimesInterval)).BeginInit();
            this.panelCycleCharInfo.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.ACycleInterval)).BeginInit();
            this.igbServerPage.SuspendLayout();
            this.igbFlowPanel.SuspendLayout();
            this.flowLayoutPanel27.SuspendLayout();
            this.iconsPage.SuspendLayout();
            this.messagesPage.SuspendLayout();
            this.gbMessageBox.SuspendLayout();
            this.ObsoleteEntryRemovalGroupBox.SuspendLayout();
            this.battleClinicServicePage.SuspendLayout();
            this.settingsFileStorageGroupBox.SuspendLayout();
            this.bcCredentialsGroupBox.SuspendLayout();
            this.SuspendLayout();
            // 
            // bottomPanel
            // 
            bottomPanel.BackColor = System.Drawing.SystemColors.ControlLight;
            bottomPanel.Controls.Add(this.applyButton);
            bottomPanel.Controls.Add(this.okButton);
            bottomPanel.Controls.Add(this.cancelButton);
            bottomPanel.Dock = System.Windows.Forms.DockStyle.Bottom;
            bottomPanel.Location = new System.Drawing.Point(0, 436);
            bottomPanel.Name = "bottomPanel";
            bottomPanel.Size = new System.Drawing.Size(644, 46);
            bottomPanel.TabIndex = 8;
            // 
            // applyButton
            // 
            this.applyButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.applyButton.Location = new System.Drawing.Point(557, 11);
            this.applyButton.Name = "applyButton";
            this.applyButton.Size = new System.Drawing.Size(75, 23);
            this.applyButton.TabIndex = 4;
            this.applyButton.Text = "&Apply";
            this.applyButton.UseVisualStyleBackColor = true;
            this.applyButton.Click += new System.EventHandler(this.applyButton_Click);
            // 
            // okButton
            // 
            this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.okButton.Location = new System.Drawing.Point(395, 11);
            this.okButton.Name = "okButton";
            this.okButton.Size = new System.Drawing.Size(75, 23);
            this.okButton.TabIndex = 3;
            this.okButton.Text = "&OK";
            this.okButton.UseVisualStyleBackColor = true;
            this.okButton.Click += new System.EventHandler(this.btnOk_Click);
            // 
            // 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(476, 11);
            this.cancelButton.Name = "cancelButton";
            this.cancelButton.Size = new System.Drawing.Size(75, 23);
            this.cancelButton.TabIndex = 2;
            this.cancelButton.Text = "&Cancel";
            this.cancelButton.UseVisualStyleBackColor = true;
            this.cancelButton.Click += new System.EventHandler(this.btnCancel_Click);
            // 
            // lblMainWindowPage
            // 
            lblMainWindowPage.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            lblMainWindowPage.ForeColor = System.Drawing.SystemColors.MenuHighlight;
            lblMainWindowPage.Location = new System.Drawing.Point(4, 20);
            lblMainWindowPage.Name = "lblMainWindowPage";
            lblMainWindowPage.Size = new System.Drawing.Size(424, 44);
            lblMainWindowPage.TabIndex = 19;
            lblMainWindowPage.Text = resources.GetString("lblMainWindowPage.Text");
            // 
            // lblSize
            // 
            lblSize.AutoSize = true;
            lblSize.Location = new System.Drawing.Point(20, 52);
            lblSize.Name = "lblSize";
            lblSize.Size = new System.Drawing.Size(26, 13);
            lblSize.TabIndex = 31;
            lblSize.Text = "Size";
            // 
            // groupBox15
            // 
            groupBox15.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            groupBox15.Controls.Add(this.cbColorQueuedSkills);
            groupBox15.Controls.Add(this.cbShowPrereqMetSkills);
            groupBox15.Controls.Add(this.cbColorPartialSkills);
            groupBox15.Controls.Add(this.cbAlwaysShowSkillQueueTime);
            groupBox15.Controls.Add(this.cbShowNonPublicSkills);
            groupBox15.Controls.Add(this.cbShowAllPublicSkills);
            groupBox15.Location = new System.Drawing.Point(3, 180);
            groupBox15.Name = "groupBox15";
            groupBox15.Size = new System.Drawing.Size(426, 85);
            groupBox15.TabIndex = 7;
            groupBox15.TabStop = false;
            groupBox15.Text = "Character Monitor";
            // 
            // cbColorQueuedSkills
            // 
            this.cbColorQueuedSkills.AutoSize = true;
            this.cbColorQueuedSkills.Location = new System.Drawing.Point(188, 38);
            this.cbColorQueuedSkills.Name = "cbColorQueuedSkills";
            this.cbColorQueuedSkills.Size = new System.Drawing.Size(135, 17);
            this.cbColorQueuedSkills.TabIndex = 13;
            this.cbColorQueuedSkills.Text = "Highlight Queued Skills";
            this.ttToolTipCodes.SetToolTip(this.cbColorQueuedSkills, "When enabled, highlights all\r\nqueued skills in character\'s skill list");
            this.cbColorQueuedSkills.UseVisualStyleBackColor = true;
            // 
            // cbShowPrereqMetSkills
            // 
            this.cbShowPrereqMetSkills.AutoSize = true;
            this.cbShowPrereqMetSkills.Location = new System.Drawing.Point(15, 57);
            this.cbShowPrereqMetSkills.Name = "cbShowPrereqMetSkills";
            this.cbShowPrereqMetSkills.Size = new System.Drawing.Size(158, 17);
            this.cbShowPrereqMetSkills.TabIndex = 12;
            this.cbShowPrereqMetSkills.Text = "Show Also Prereq-Met Skills";
            this.ttToolTipCodes.SetToolTip(this.cbShowPrereqMetSkills, "When enabled, shows all prerequisites\r\nmet skills in character\'s skill list");
            this.cbShowPrereqMetSkills.UseVisualStyleBackColor = true;
            // 
            // cbColorPartialSkills
            // 
            this.cbColorPartialSkills.AutoSize = true;
            this.cbColorPartialSkills.Location = new System.Drawing.Point(188, 20);
            this.cbColorPartialSkills.Name = "cbColorPartialSkills";
            this.cbColorPartialSkills.Size = new System.Drawing.Size(172, 17);
            this.cbColorPartialSkills.TabIndex = 11;
            this.cbColorPartialSkills.Text = "Highlight Partially Trained Skills";
            this.ttToolTipCodes.SetToolTip(this.cbColorPartialSkills, "When enabled, highlights all partially\r\ntrained skills in character\'s skill list");
            this.cbColorPartialSkills.UseVisualStyleBackColor = true;
            // 
            // cbAlwaysShowSkillQueueTime
            // 
            this.cbAlwaysShowSkillQueueTime.AutoSize = true;
            this.cbAlwaysShowSkillQueueTime.Location = new System.Drawing.Point(188, 57);
            this.cbAlwaysShowSkillQueueTime.Name = "cbAlwaysShowSkillQueueTime";
            this.cbAlwaysShowSkillQueueTime.Size = new System.Drawing.Size(213, 17);
            this.cbAlwaysShowSkillQueueTime.TabIndex = 2;
            this.cbAlwaysShowSkillQueueTime.Text = "Always show time above the skill queue";
            this.ttToolTipCodes.SetToolTip(this.cbAlwaysShowSkillQueueTime, "When enabled, always displays the total\r\nqueue time above the skill queue bar");
            this.cbAlwaysShowSkillQueueTime.UseVisualStyleBackColor = true;
            // 
            // cbShowNonPublicSkills
            // 
            this.cbShowNonPublicSkills.AutoSize = true;
            this.cbShowNonPublicSkills.Enabled = false;
            this.cbShowNonPublicSkills.Location = new System.Drawing.Point(15, 38);
            this.cbShowNonPublicSkills.Name = "cbShowNonPublicSkills";
            this.cbShowNonPublicSkills.Size = new System.Drawing.Size(158, 17);
            this.cbShowNonPublicSkills.TabIndex = 1;
            this.cbShowNonPublicSkills.Text = "Show Also Non-Public Skills";
            this.ttToolTipCodes.SetToolTip(this.cbShowNonPublicSkills, "When enabled, shows all non-public skills in character\'s skill list");
            this.cbShowNonPublicSkills.UseVisualStyleBackColor = true;
            // 
            // cbShowAllPublicSkills
            // 
            this.cbShowAllPublicSkills.AutoSize = true;
            this.cbShowAllPublicSkills.Location = new System.Drawing.Point(15, 20);
            this.cbShowAllPublicSkills.Name = "cbShowAllPublicSkills";
            this.cbShowAllPublicSkills.Size = new System.Drawing.Size(149, 17);
            this.cbShowAllPublicSkills.TabIndex = 0;
            this.cbShowAllPublicSkills.Text = "Show Also All Public Skills";
            this.ttToolTipCodes.SetToolTip(this.cbShowAllPublicSkills, "When enabled, shows all public skills in character\'s skill list");
            this.cbShowAllPublicSkills.UseVisualStyleBackColor = true;
            this.cbShowAllPublicSkills.CheckedChanged += new System.EventHandler(this.OnMustEnableOrDisable);
            // 
            // groupBox7
            // 
            groupBox7.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            groupBox7.Controls.Add(this.cbWindowsTitleList);
            groupBox7.Controls.Add(this.cbSkillInTitle);
            groupBox7.Controls.Add(this.cbTitleToTime);
            groupBox7.Location = new System.Drawing.Point(3, 67);
            groupBox7.Name = "groupBox7";
            groupBox7.Size = new System.Drawing.Size(426, 105);
            groupBox7.TabIndex = 14;
            groupBox7.TabStop = false;
            groupBox7.Text = "Window Title";
            // 
            // cbWindowsTitleList
            // 
            this.cbWindowsTitleList.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cbWindowsTitleList.FormattingEnabled = true;
            this.cbWindowsTitleList.Items.AddRange(new object[] {
            "Single character - finishing skill next",
            "Single character - selected character",
            "Multi character - finishing skill next first",
            "Multi character - selected character first "});
            this.cbWindowsTitleList.Location = new System.Drawing.Point(15, 66);
            this.cbWindowsTitleList.Name = "cbWindowsTitleList";
            this.cbWindowsTitleList.Size = new System.Drawing.Size(224, 21);
            this.cbWindowsTitleList.TabIndex = 1;
            // 
            // cbSkillInTitle
            // 
            this.cbSkillInTitle.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                        | System.Windows.Forms.AnchorStyles.Left)));
            this.cbSkillInTitle.AutoSize = true;
            this.cbSkillInTitle.Location = new System.Drawing.Point(15, 43);
            this.cbSkillInTitle.Name = "cbSkillInTitle";
            this.cbSkillInTitle.Size = new System.Drawing.Size(121, 17);
            this.cbSkillInTitle.TabIndex = 7;
            this.cbSkillInTitle.Text = "Show skill in training";
            this.ttToolTipCodes.SetToolTip(this.cbSkillInTitle, "When enabled, shows the character\'s skill\r\nin training according to choice below");
            this.cbSkillInTitle.UseVisualStyleBackColor = true;
            // 
            // cbTitleToTime
            // 
            this.cbTitleToTime.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                        | System.Windows.Forms.AnchorStyles.Left)));
            this.cbTitleToTime.AutoSize = true;
            this.cbTitleToTime.Location = new System.Drawing.Point(15, 20);
            this.cbTitleToTime.Margin = new System.Windows.Forms.Padding(12, 3, 3, 3);
            this.cbTitleToTime.Name = "cbTitleToTime";
            this.cbTitleToTime.Size = new System.Drawing.Size(193, 17);
            this.cbTitleToTime.TabIndex = 6;
            this.cbTitleToTime.Text = "Show character info in window title";
            this.ttToolTipCodes.SetToolTip(this.cbTitleToTime, "When enabled, shows the character\'s info in window title");
            this.cbTitleToTime.UseVisualStyleBackColor = true;
            this.cbTitleToTime.CheckedChanged += new System.EventHandler(this.OnMustEnableOrDisable);
            // 
            // lblGeneralPage
            // 
            lblGeneralPage.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            lblGeneralPage.ForeColor = System.Drawing.SystemColors.MenuHighlight;
            lblGeneralPage.Location = new System.Drawing.Point(4, 34);
            lblGeneralPage.Name = "lblGeneralPage";
            lblGeneralPage.Size = new System.Drawing.Size(424, 28);
            lblGeneralPage.TabIndex = 20;
            lblGeneralPage.Text = "Select whether EVEMon will start every time you startup your system. You can also" +
                " choose to disable EVEMon\'s graphics and select the enviroment it will run in.";
            // 
            // lblEnvironment
            // 
            lblEnvironment.AutoSize = true;
            lblEnvironment.Location = new System.Drawing.Point(3, 181);
            lblEnvironment.Name = "lblEnvironment";
            lblEnvironment.Size = new System.Drawing.Size(222, 13);
            lblEnvironment.TabIndex = 1;
            lblEnvironment.Text = "Environment (requires restart to take effect)";
            // 
            // lblSkillPlannerPage
            // 
            lblSkillPlannerPage.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            lblSkillPlannerPage.ForeColor = System.Drawing.SystemColors.MenuHighlight;
            lblSkillPlannerPage.Location = new System.Drawing.Point(4, 20);
            lblSkillPlannerPage.Name = "lblSkillPlannerPage";
            lblSkillPlannerPage.Size = new System.Drawing.Size(424, 28);
            lblSkillPlannerPage.TabIndex = 19;
            lblSkillPlannerPage.Text = "You can select whether to highlight any entry in the Skill Planner according to i" +
                "ts status and more.";
            // 
            // lblNetworkPageAPIProvider
            // 
            lblNetworkPageAPIProvider.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            lblNetworkPageAPIProvider.ForeColor = System.Drawing.SystemColors.MenuHighlight;
            lblNetworkPageAPIProvider.Location = new System.Drawing.Point(12, 17);
            lblNetworkPageAPIProvider.Name = "lblNetworkPageAPIProvider";
            lblNetworkPageAPIProvider.Size = new System.Drawing.Size(374, 29);
            lblNetworkPageAPIProvider.TabIndex = 8;
            lblNetworkPageAPIProvider.Text = "By default, EVEMon queries CCP for the API data. You can implement your own provi" +
                "der and make EVEMon use it.";
            // 
            // lblNetworkPageProxy
            // 
            lblNetworkPageProxy.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            lblNetworkPageProxy.ForeColor = System.Drawing.SystemColors.MenuHighlight;
            lblNetworkPageProxy.Location = new System.Drawing.Point(9, 17);
            lblNetworkPageProxy.Name = "lblNetworkPageProxy";
            lblNetworkPageProxy.Size = new System.Drawing.Size(382, 32);
            lblNetworkPageProxy.TabIndex = 8;
            lblNetworkPageProxy.Text = "By default, EVEMon will use the same Proxy settings as Internet Explorer (can be " +
                "configured through the Control Panel).";
            // 
            // label12
            // 
            label12.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            label12.Location = new System.Drawing.Point(50, 8);
            label12.Name = "label12";
            label12.Size = new System.Drawing.Size(165, 13);
            label12.TabIndex = 3;
            label12.Text = "Host/IP Address";
            label12.TextAlign = System.Drawing.ContentAlignment.TopCenter;
            // 
            // label11
            // 
            label11.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            label11.Location = new System.Drawing.Point(221, 8);
            label11.Name = "label11";
            label11.Size = new System.Drawing.Size(39, 13);
            label11.TabIndex = 4;
            label11.Text = "Port";
            label11.TextAlign = System.Drawing.ContentAlignment.TopCenter;
            // 
            // lblHTTP
            // 
            lblHTTP.AutoSize = true;
            lblHTTP.Location = new System.Drawing.Point(8, 27);
            lblHTTP.Name = "lblHTTP";
            lblHTTP.Size = new System.Drawing.Size(36, 13);
            lblHTTP.TabIndex = 0;
            lblHTTP.Text = "HTTP:";
            lblHTTP.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // lblEmailNotificationPage
            // 
            lblEmailNotificationPage.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            lblEmailNotificationPage.AutoSize = true;
            lblEmailNotificationPage.ForeColor = System.Drawing.SystemColors.MenuHighlight;
            lblEmailNotificationPage.Location = new System.Drawing.Point(4, 40);
            lblEmailNotificationPage.Name = "lblEmailNotificationPage";
            lblEmailNotificationPage.Size = new System.Drawing.Size(366, 13);
            lblEmailNotificationPage.TabIndex = 19;
            lblEmailNotificationPage.Text = "EVEMon can send you an email whenever a skill level completes its training.";
            // 
            // lblEmailServer
            // 
            lblEmailServer.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                        | System.Windows.Forms.AnchorStyles.Right)));
            lblEmailServer.AutoSize = true;
            lblEmailServer.Location = new System.Drawing.Point(9, 0);
            lblEmailServer.Name = "lblEmailServer";
            lblEmailServer.Size = new System.Drawing.Size(70, 27);
            lblEmailServer.TabIndex = 0;
            lblEmailServer.Text = "Email Server:";
            lblEmailServer.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // lblFromAddress
            // 
            lblFromAddress.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                        | System.Windows.Forms.AnchorStyles.Right)));
            lblFromAddress.AutoSize = true;
            lblFromAddress.Location = new System.Drawing.Point(3, 162);
            lblFromAddress.Name = "lblFromAddress";
            lblFromAddress.Size = new System.Drawing.Size(76, 27);
            lblFromAddress.TabIndex = 1;
            lblFromAddress.Text = "From address:";
            lblFromAddress.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // lblToAddress
            // 
            lblToAddress.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                        | System.Windows.Forms.AnchorStyles.Right)));
            lblToAddress.AutoSize = true;
            lblToAddress.Location = new System.Drawing.Point(15, 189);
            lblToAddress.Name = "lblToAddress";
            lblToAddress.Size = new System.Drawing.Size(64, 27);
            lblToAddress.TabIndex = 2;
            lblToAddress.Text = "To address:";
            lblToAddress.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // lblEmailPassword
            // 
            lblEmailPassword.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                        | System.Windows.Forms.AnchorStyles.Right)));
            lblEmailPassword.AutoSize = true;
            lblEmailPassword.Location = new System.Drawing.Point(5, 27);
            lblEmailPassword.Name = "lblEmailPassword";
            lblEmailPassword.Size = new System.Drawing.Size(57, 27);
            lblEmailPassword.TabIndex = 8;
            lblEmailPassword.Text = "Password:"******"lblEmailUsername";
            lblEmailUsername.Size = new System.Drawing.Size(59, 27);
            lblEmailUsername.TabIndex = 7;
            lblEmailUsername.Text = "Username:"******"lblPortNumber";
            lblPortNumber.Size = new System.Drawing.Size(71, 27);
            lblPortNumber.TabIndex = 10;
            lblPortNumber.Text = "Port Number:";
            lblPortNumber.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // lblNotificationsPage
            // 
            lblNotificationsPage.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            lblNotificationsPage.ForeColor = System.Drawing.SystemColors.MenuHighlight;
            lblNotificationsPage.Location = new System.Drawing.Point(4, 14);
            lblNotificationsPage.Name = "lblNotificationsPage";
            lblNotificationsPage.Size = new System.Drawing.Size(424, 43);
            lblNotificationsPage.TabIndex = 19;
            lblNotificationsPage.Text = "You can choose what notifications will be shown in your system\'s tray notificatio" +
                "n area or in EVEMon\'s main window and when. You can also toggle the sound notifi" +
                "cation upon skill completion on or off.";
            // 
            // lblTrayIconPage
            // 
            lblTrayIconPage.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            lblTrayIconPage.ForeColor = System.Drawing.SystemColors.MenuHighlight;
            lblTrayIconPage.Location = new System.Drawing.Point(4, 20);
            lblTrayIconPage.Name = "lblTrayIconPage";
            lblTrayIconPage.Size = new System.Drawing.Size(424, 31);
            lblTrayIconPage.TabIndex = 18;
            lblTrayIconPage.Text = "Here you can set the visible status of EVEMon\'s Tray Icon, configure the style of" +
                " the Tray Icon\'s popup info and EVEMon\'s behaviour upon pressing the Close butto" +
                "n.\r\n";
            // 
            // systemTrayIconGroupBox
            // 
            systemTrayIconGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            systemTrayIconGroupBox.Controls.Add(this.rbSystemTrayOptionsNever);
            systemTrayIconGroupBox.Controls.Add(this.rbSystemTrayOptionsAlways);
            systemTrayIconGroupBox.Controls.Add(this.rbSystemTrayOptionsMinimized);
            systemTrayIconGroupBox.Location = new System.Drawing.Point(9, 68);
            systemTrayIconGroupBox.Name = "systemTrayIconGroupBox";
            systemTrayIconGroupBox.Size = new System.Drawing.Size(419, 100);
            systemTrayIconGroupBox.TabIndex = 9;
            systemTrayIconGroupBox.TabStop = false;
            systemTrayIconGroupBox.Text = "Show System Tray Icon";
            // 
            // rbSystemTrayOptionsNever
            // 
            this.rbSystemTrayOptionsNever.AutoSize = true;
            this.rbSystemTrayOptionsNever.Location = new System.Drawing.Point(6, 20);
            this.rbSystemTrayOptionsNever.Name = "rbSystemTrayOptionsNever";
            this.rbSystemTrayOptionsNever.Padding = new System.Windows.Forms.Padding(3, 0, 0, 0);
            this.rbSystemTrayOptionsNever.Size = new System.Drawing.Size(57, 17);
            this.rbSystemTrayOptionsNever.TabIndex = 1;
            this.rbSystemTrayOptionsNever.TabStop = true;
            this.rbSystemTrayOptionsNever.Tag = "";
            this.rbSystemTrayOptionsNever.Text = "Never";
            this.rbSystemTrayOptionsNever.UseVisualStyleBackColor = true;
            this.rbSystemTrayOptionsNever.CheckedChanged += new System.EventHandler(this.OnMustEnableOrDisable);
            // 
            // rbSystemTrayOptionsAlways
            // 
            this.rbSystemTrayOptionsAlways.AutoSize = true;
            this.rbSystemTrayOptionsAlways.Location = new System.Drawing.Point(6, 66);
            this.rbSystemTrayOptionsAlways.Name = "rbSystemTrayOptionsAlways";
            this.rbSystemTrayOptionsAlways.Padding = new System.Windows.Forms.Padding(3, 0, 0, 0);
            this.rbSystemTrayOptionsAlways.Size = new System.Drawing.Size(61, 17);
            this.rbSystemTrayOptionsAlways.TabIndex = 3;
            this.rbSystemTrayOptionsAlways.TabStop = true;
            this.rbSystemTrayOptionsAlways.Tag = "";
            this.rbSystemTrayOptionsAlways.Text = "Always";
            this.rbSystemTrayOptionsAlways.UseVisualStyleBackColor = true;
            // 
            // rbSystemTrayOptionsMinimized
            // 
            this.rbSystemTrayOptionsMinimized.AutoSize = true;
            this.rbSystemTrayOptionsMinimized.Location = new System.Drawing.Point(6, 43);
            this.rbSystemTrayOptionsMinimized.Name = "rbSystemTrayOptionsMinimized";
            this.rbSystemTrayOptionsMinimized.Padding = new System.Windows.Forms.Padding(3, 0, 0, 0);
            this.rbSystemTrayOptionsMinimized.Size = new System.Drawing.Size(106, 17);
            this.rbSystemTrayOptionsMinimized.TabIndex = 2;
            this.rbSystemTrayOptionsMinimized.TabStop = true;
            this.rbSystemTrayOptionsMinimized.Tag = "";
            this.rbSystemTrayOptionsMinimized.Text = "When Minimized";
            this.rbSystemTrayOptionsMinimized.UseVisualStyleBackColor = true;
            // 
            // lblSchedulerUIPage
            // 
            lblSchedulerUIPage.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            lblSchedulerUIPage.ForeColor = System.Drawing.SystemColors.MenuHighlight;
            lblSchedulerUIPage.Location = new System.Drawing.Point(6, 34);
            lblSchedulerUIPage.Name = "lblSchedulerUIPage";
            lblSchedulerUIPage.Size = new System.Drawing.Size(422, 45);
            lblSchedulerUIPage.TabIndex = 6;
            lblSchedulerUIPage.Text = "Select the colors used in the scheduler. Using the scheduler, EVEMon can warn you" +
                " about skill that will complete at times you will be away from your computer.";
            // 
            // lblText
            // 
            lblText.AutoSize = true;
            lblText.Location = new System.Drawing.Point(6, 109);
            lblText.Name = "lblText";
            lblText.Size = new System.Drawing.Size(33, 13);
            lblText.TabIndex = 5;
            lblText.Text = "Text:";
            // 
            // lblBlockingEvents
            // 
            lblBlockingEvents.AutoSize = true;
            lblBlockingEvents.Location = new System.Drawing.Point(6, 132);
            lblBlockingEvents.Name = "lblBlockingEvents";
            lblBlockingEvents.Size = new System.Drawing.Size(85, 13);
            lblBlockingEvents.TabIndex = 0;
            lblBlockingEvents.Text = "Blocking Events:";
            // 
            // lblRecurringEvents
            // 
            lblRecurringEvents.AutoSize = true;
            lblRecurringEvents.Location = new System.Drawing.Point(6, 180);
            lblRecurringEvents.Name = "lblRecurringEvents";
            lblRecurringEvents.Size = new System.Drawing.Size(93, 13);
            lblRecurringEvents.TabIndex = 1;
            lblRecurringEvents.Text = "Recurring Events:";
            // 
            // lblSimpleEvents
            // 
            lblSimpleEvents.AutoSize = true;
            lblSimpleEvents.Location = new System.Drawing.Point(6, 157);
            lblSimpleEvents.Name = "lblSimpleEvents";
            lblSimpleEvents.Size = new System.Drawing.Size(77, 13);
            lblSimpleEvents.TabIndex = 2;
            lblSimpleEvents.Text = "Simple Events:";
            // 
            // lblReminder
            // 
            lblReminder.AutoSize = true;
            lblReminder.Location = new System.Drawing.Point(6, 107);
            lblReminder.Name = "lblReminder";
            lblReminder.Size = new System.Drawing.Size(56, 13);
            lblReminder.TabIndex = 6;
            lblReminder.Text = "Reminder:";
            // 
            // lblURI
            // 
            lblURI.AutoSize = true;
            lblURI.Location = new System.Drawing.Point(6, 80);
            lblURI.Name = "lblURI";
            lblURI.Size = new System.Drawing.Size(29, 13);
            lblURI.TabIndex = 5;
            lblURI.Text = "URI:";
            // 
            // lblPassword
            // 
            lblPassword.AutoSize = true;
            lblPassword.Location = new System.Drawing.Point(6, 52);
            lblPassword.Name = "lblPassword";
            lblPassword.Size = new System.Drawing.Size(57, 13);
            lblPassword.TabIndex = 1;
            lblPassword.Text = "Password:"******"lblGoogleEmail";
            lblGoogleEmail.Size = new System.Drawing.Size(71, 13);
            lblGoogleEmail.TabIndex = 0;
            lblGoogleEmail.Text = "Google Email:";
            // 
            // lblEarlyReminder
            // 
            lblEarlyReminder.AutoSize = true;
            lblEarlyReminder.Location = new System.Drawing.Point(30, 228);
            lblEarlyReminder.Name = "lblEarlyReminder";
            lblEarlyReminder.Size = new System.Drawing.Size(83, 13);
            lblEarlyReminder.TabIndex = 4;
            lblEarlyReminder.Text = "Early Reminder:";
            // 
            // lblLateReminder
            // 
            lblLateReminder.AutoSize = true;
            lblLateReminder.Location = new System.Drawing.Point(195, 228);
            lblLateReminder.Name = "lblLateReminder";
            lblLateReminder.Size = new System.Drawing.Size(80, 13);
            lblLateReminder.TabIndex = 6;
            lblLateReminder.Text = "Late Reminder:";
            // 
            // lblExternalCalendarPage
            // 
            lblExternalCalendarPage.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            lblExternalCalendarPage.ForeColor = System.Drawing.SystemColors.MenuHighlight;
            lblExternalCalendarPage.Location = new System.Drawing.Point(3, 32);
            lblExternalCalendarPage.Name = "lblExternalCalendarPage";
            lblExternalCalendarPage.Size = new System.Drawing.Size(429, 35);
            lblExternalCalendarPage.TabIndex = 11;
            lblExternalCalendarPage.Text = "EVEMon can import scheduler entries from Outlook or Google calendars to emphasize" +
                " the skills that will complete at times you won\'t be available.";
            // 
            // lblG15Page
            // 
            lblG15Page.AutoSize = true;
            lblG15Page.ForeColor = System.Drawing.SystemColors.MenuHighlight;
            lblG15Page.Location = new System.Drawing.Point(3, 40);
            lblG15Page.Name = "lblG15Page";
            lblG15Page.Size = new System.Drawing.Size(339, 13);
            lblG15Page.TabIndex = 5;
            lblG15Page.Text = "EVEMon supports the LCD display of the Logitech G15/G19 keyboard.";
            // 
            // lblCycleTrainingSeconds
            // 
            lblCycleTrainingSeconds.AutoSize = true;
            lblCycleTrainingSeconds.Location = new System.Drawing.Point(265, 6);
            lblCycleTrainingSeconds.Margin = new System.Windows.Forms.Padding(3, 6, 3, 0);
            lblCycleTrainingSeconds.Name = "lblCycleTrainingSeconds";
            lblCycleTrainingSeconds.Size = new System.Drawing.Size(46, 13);
            lblCycleTrainingSeconds.TabIndex = 9;
            lblCycleTrainingSeconds.Text = "seconds";
            // 
            // lblG15CycleCharSeconds
            // 
            lblG15CycleCharSeconds.AutoSize = true;
            lblG15CycleCharSeconds.Location = new System.Drawing.Point(186, 6);
            lblG15CycleCharSeconds.Margin = new System.Windows.Forms.Padding(3, 6, 3, 0);
            lblG15CycleCharSeconds.Name = "lblG15CycleCharSeconds";
            lblG15CycleCharSeconds.Size = new System.Drawing.Size(46, 13);
            lblG15CycleCharSeconds.TabIndex = 6;
            lblG15CycleCharSeconds.Text = "seconds";
            // 
            // lblIgbServerPage
            // 
            lblIgbServerPage.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            lblIgbServerPage.ForeColor = System.Drawing.SystemColors.MenuHighlight;
            lblIgbServerPage.Location = new System.Drawing.Point(4, 34);
            lblIgbServerPage.Name = "lblIgbServerPage";
            lblIgbServerPage.Size = new System.Drawing.Size(424, 48);
            lblIgbServerPage.TabIndex = 5;
            lblIgbServerPage.Text = "When this option is checked and EVEMon running, you can open the in-game browser " +
                "and type the address provided below to give a quick look at your plans and the s" +
                "killbooks you need to buy.\r\n";
            // 
            // lblIGBPort
            // 
            lblIGBPort.AutoSize = true;
            lblIGBPort.Dock = System.Windows.Forms.DockStyle.Left;
            lblIGBPort.Location = new System.Drawing.Point(3, 0);
            lblIGBPort.Name = "lblIGBPort";
            lblIGBPort.Size = new System.Drawing.Size(50, 26);
            lblIGBPort.TabIndex = 6;
            lblIGBPort.Text = "IGB Port:";
            lblIGBPort.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            // 
            // flowLayoutPanel28
            // 
            flowLayoutPanel28.Controls.Add(igbHelpLabel);
            flowLayoutPanel28.Controls.Add(this.igbUrlTextBox);
            flowLayoutPanel28.Location = new System.Drawing.Point(12, 37);
            flowLayoutPanel28.Name = "flowLayoutPanel28";
            flowLayoutPanel28.Size = new System.Drawing.Size(334, 22);
            flowLayoutPanel28.TabIndex = 11;
            // 
            // igbHelpLabel
            // 
            igbHelpLabel.AutoSize = true;
            igbHelpLabel.Location = new System.Drawing.Point(3, 3);
            igbHelpLabel.Margin = new System.Windows.Forms.Padding(3, 3, 3, 0);
            igbHelpLabel.Name = "igbHelpLabel";
            igbHelpLabel.Size = new System.Drawing.Size(181, 13);
            igbHelpLabel.TabIndex = 8;
            igbHelpLabel.Text = "Open the in-game browser and type :";
            // 
            // igbUrlTextBox
            // 
            this.igbUrlTextBox.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.igbUrlTextBox.Location = new System.Drawing.Point(190, 3);
            this.igbUrlTextBox.Name = "igbUrlTextBox";
            this.igbUrlTextBox.ReadOnly = true;
            this.igbUrlTextBox.Size = new System.Drawing.Size(120, 14);
            this.igbUrlTextBox.TabIndex = 10;
            this.igbUrlTextBox.Text = "http://localhost:80/";
            // 
            // label1
            // 
            label1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            label1.ForeColor = System.Drawing.SystemColors.MenuHighlight;
            label1.Location = new System.Drawing.Point(4, 20);
            label1.Name = "label1";
            label1.Size = new System.Drawing.Size(424, 32);
            label1.TabIndex = 15;
            label1.Text = "You can customize the icons used in the skill planner; if you have a good idea fo" +
                "r a set of icons instructions to create your own can be found on BattleClinic.";
            // 
            // gbSkillBrowserIconSet
            // 
            gbSkillBrowserIconSet.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            gbSkillBrowserIconSet.Controls.Add(this.tableLayoutPanel4);
            gbSkillBrowserIconSet.Location = new System.Drawing.Point(7, 55);
            gbSkillBrowserIconSet.Name = "gbSkillBrowserIconSet";
            gbSkillBrowserIconSet.Size = new System.Drawing.Size(225, 204);
            gbSkillBrowserIconSet.TabIndex = 14;
            gbSkillBrowserIconSet.TabStop = false;
            gbSkillBrowserIconSet.Text = "Skill Browser Icon Set";
            // 
            // tableLayoutPanel4
            // 
            this.tableLayoutPanel4.AutoSize = true;
            this.tableLayoutPanel4.ColumnCount = 1;
            this.tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
            this.tableLayoutPanel4.Controls.Add(this.cbSkillIconSet, 0, 0);
            this.tableLayoutPanel4.Controls.Add(this.tvlist, 0, 1);
            this.tableLayoutPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tableLayoutPanel4.Location = new System.Drawing.Point(3, 17);
            this.tableLayoutPanel4.Name = "tableLayoutPanel4";
            this.tableLayoutPanel4.RowCount = 2;
            this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle());
            this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle());
            this.tableLayoutPanel4.Size = new System.Drawing.Size(219, 184);
            this.tableLayoutPanel4.TabIndex = 15;
            // 
            // cbSkillIconSet
            // 
            this.cbSkillIconSet.Dock = System.Windows.Forms.DockStyle.Fill;
            this.cbSkillIconSet.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cbSkillIconSet.FormattingEnabled = true;
            this.cbSkillIconSet.Location = new System.Drawing.Point(3, 3);
            this.cbSkillIconSet.Name = "cbSkillIconSet";
            this.cbSkillIconSet.Size = new System.Drawing.Size(213, 21);
            this.cbSkillIconSet.TabIndex = 3;
            this.cbSkillIconSet.SelectedIndexChanged += new System.EventHandler(this.skillIconSetComboBox_SelectedIndexChanged);
            // 
            // tvlist
            // 
            this.tvlist.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.tvlist.Location = new System.Drawing.Point(3, 30);
            this.tvlist.Name = "tvlist";
            treeNode1.Name = "Node1";
            treeNode1.Text = "Node1";
            treeNode2.Name = "Node2";
            treeNode2.Text = "Node2";
            treeNode3.Name = "Node3";
            treeNode3.Text = "Node3";
            treeNode4.Name = "Node4";
            treeNode4.Text = "Node4";
            treeNode5.Name = "Node5";
            treeNode5.Text = "Node5";
            treeNode6.Name = "Node6";
            treeNode6.Text = "Node6";
            treeNode7.Name = "Node7";
            treeNode7.Text = "Node7";
            treeNode8.Name = "Node8";
            treeNode8.Text = "Node8";
            treeNode9.Name = "Node0";
            treeNode9.Text = "Node0";
            this.tvlist.Nodes.AddRange(new System.Windows.Forms.TreeNode[] {
            treeNode9});
            this.tvlist.Size = new System.Drawing.Size(213, 151);
            this.tvlist.TabIndex = 9;
            // 
            // label2
            // 
            label2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            label2.ForeColor = System.Drawing.SystemColors.MenuHighlight;
            label2.Location = new System.Drawing.Point(5, 30);
            label2.Name = "label2";
            label2.Size = new System.Drawing.Size(424, 28);
            label2.TabIndex = 24;
            label2.Text = "You can configure how EVEMon handles skills that appear to be completed and reset" +
                " the appearing messages behavior.";
            // 
            // 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(this.label6, 0, 3);
            this.tableLayoutPanel1.Controls.Add(this.label7, 0, 0);
            this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
            this.tableLayoutPanel1.Name = "tableLayoutPanel1";
            this.tableLayoutPanel1.RowCount = 4;
            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
            this.tableLayoutPanel1.Size = new System.Drawing.Size(200, 100);
            this.tableLayoutPanel1.TabIndex = 0;
            // 
            // label6
            // 
            this.label6.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.label6.AutoSize = true;
            this.label6.Location = new System.Drawing.Point(3, 60);
            this.label6.Name = "label6";
            this.label6.Size = new System.Drawing.Size(90, 40);
            this.label6.TabIndex = 8;
            this.label6.Text = "Server Password:"******"label7";
            this.label7.Size = new System.Drawing.Size(69, 20);
            this.label7.TabIndex = 0;
            this.label7.Text = "Email Server:";
            this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // label8
            // 
            this.label8.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.label8.AutoSize = true;
            this.label8.Location = new System.Drawing.Point(22, 101);
            this.label8.Name = "label8";
            this.label8.Size = new System.Drawing.Size(73, 26);
            this.label8.TabIndex = 1;
            this.label8.Text = "From address:";
            this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // flowLayoutPanel9
            // 
            this.flowLayoutPanel9.AutoSize = true;
            this.flowLayoutPanel9.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            this.flowLayoutPanel9.Controls.Add(this.checkBox1);
            this.flowLayoutPanel9.Controls.Add(this.checkBox2);
            this.flowLayoutPanel9.Controls.Add(this.checkBox3);
            this.flowLayoutPanel9.Dock = System.Windows.Forms.DockStyle.Fill;
            this.flowLayoutPanel9.FlowDirection = System.Windows.Forms.FlowDirection.TopDown;
            this.flowLayoutPanel9.Location = new System.Drawing.Point(3, 16);
            this.flowLayoutPanel9.Name = "flowLayoutPanel9";
            this.flowLayoutPanel9.Padding = new System.Windows.Forms.Padding(9, 0, 9, 0);
            this.flowLayoutPanel9.Size = new System.Drawing.Size(356, 70);
            this.flowLayoutPanel9.TabIndex = 3;
            // 
            // checkBox1
            // 
            this.checkBox1.AutoSize = true;
            this.checkBox1.Location = new System.Drawing.Point(12, 3);
            this.checkBox1.Name = "checkBox1";
            this.checkBox1.Size = new System.Drawing.Size(102, 17);
            this.checkBox1.TabIndex = 0;
            this.checkBox1.Text = "Minimize to Tray";
            this.checkBox1.UseVisualStyleBackColor = true;
            // 
            // checkBox2
            // 
            this.checkBox2.AutoSize = true;
            this.checkBox2.Location = new System.Drawing.Point(12, 26);
            this.checkBox2.Name = "checkBox2";
            this.checkBox2.Size = new System.Drawing.Size(171, 17);
            this.checkBox2.TabIndex = 1;
            this.checkBox2.Text = "Set window title to training time";
            this.checkBox2.UseVisualStyleBackColor = true;
            // 
            // checkBox3
            // 
            this.checkBox3.AutoSize = true;
            this.checkBox3.Location = new System.Drawing.Point(12, 49);
            this.checkBox3.Name = "checkBox3";
            this.checkBox3.Size = new System.Drawing.Size(264, 17);
            this.checkBox3.TabIndex = 2;
            this.checkBox3.Text = "Run in \"safe for work\" mode (no portraits or colors)";
            this.checkBox3.UseVisualStyleBackColor = true;
            // 
            // chName
            // 
            this.chName.Text = "Sample";
            // 
            // cbUseIncreasedContrastOnOverview
            // 
            this.cbUseIncreasedContrastOnOverview.AutoSize = true;
            this.cbUseIncreasedContrastOnOverview.Location = new System.Drawing.Point(190, 20);
            this.cbUseIncreasedContrastOnOverview.Name = "cbUseIncreasedContrastOnOverview";
            this.cbUseIncreasedContrastOnOverview.Size = new System.Drawing.Size(137, 17);
            this.cbUseIncreasedContrastOnOverview.TabIndex = 34;
            this.cbUseIncreasedContrastOnOverview.Text = "Use Increased Contrast";
            this.ttToolTipCodes.SetToolTip(this.cbUseIncreasedContrastOnOverview, "When enabled, increases the contrast of the shown info");
            this.cbUseIncreasedContrastOnOverview.UseVisualStyleBackColor = true;
            // 
            // overviewGroupCharactersInTrainingCheckBox
            // 
            this.overviewGroupCharactersInTrainingCheckBox.AutoSize = true;
            this.overviewGroupCharactersInTrainingCheckBox.Location = new System.Drawing.Point(161, 26);
            this.overviewGroupCharactersInTrainingCheckBox.Name = "overviewGroupCharactersInTrainingCheckBox";
            this.overviewGroupCharactersInTrainingCheckBox.Size = new System.Drawing.Size(167, 17);
            this.overviewGroupCharactersInTrainingCheckBox.TabIndex = 33;
            this.overviewGroupCharactersInTrainingCheckBox.Text = "Group Character\'s In Training";
            this.ttToolTipCodes.SetToolTip(this.overviewGroupCharactersInTrainingCheckBox, "When enabled, groups the character\'s\r\nthat are currently in training");
            this.overviewGroupCharactersInTrainingCheckBox.UseVisualStyleBackColor = true;
            // 
            // overviewShowSkillQueueTrainingTimeCheckBox
            // 
            this.overviewShowSkillQueueTrainingTimeCheckBox.AutoSize = true;
            this.overviewShowSkillQueueTrainingTimeCheckBox.Location = new System.Drawing.Point(161, 3);
            this.overviewShowSkillQueueTrainingTimeCheckBox.Name = "overviewShowSkillQueueTrainingTimeCheckBox";
            this.overviewShowSkillQueueTrainingTimeCheckBox.Size = new System.Drawing.Size(173, 17);
            this.overviewShowSkillQueueTrainingTimeCheckBox.TabIndex = 32;
            this.overviewShowSkillQueueTrainingTimeCheckBox.Text = "Show Skill Queue Training Time";
            this.ttToolTipCodes.SetToolTip(this.overviewShowSkillQueueTrainingTimeCheckBox, "When enabled, shows the character\'s\r\nskill queue training time");
            this.overviewShowSkillQueueTrainingTimeCheckBox.UseVisualStyleBackColor = true;
            // 
            // overviewShowWalletCheckBox
            // 
            this.overviewShowWalletCheckBox.AutoSize = true;
            this.overviewShowWalletCheckBox.Location = new System.Drawing.Point(3, 3);
            this.overviewShowWalletCheckBox.Name = "overviewShowWalletCheckBox";
            this.overviewShowWalletCheckBox.Size = new System.Drawing.Size(125, 17);
            this.overviewShowWalletCheckBox.TabIndex = 30;
            this.overviewShowWalletCheckBox.Text = "Show Wallet Balance";
            this.ttToolTipCodes.SetToolTip(this.overviewShowWalletCheckBox, "When enabled, shows the character\'s wallet balance");
            this.overviewShowWalletCheckBox.UseVisualStyleBackColor = true;
            // 
            // overviewShowPortraitCheckBox
            // 
            this.overviewShowPortraitCheckBox.AutoSize = true;
            this.overviewShowPortraitCheckBox.Location = new System.Drawing.Point(3, 26);
            this.overviewShowPortraitCheckBox.Name = "overviewShowPortraitCheckBox";
            this.overviewShowPortraitCheckBox.Size = new System.Drawing.Size(142, 17);
            this.overviewShowPortraitCheckBox.TabIndex = 26;
            this.overviewShowPortraitCheckBox.Text = "Show Character Portrait";
            this.ttToolTipCodes.SetToolTip(this.overviewShowPortraitCheckBox, "When enabled, shows the character\'s portrait\r\nas a thumbnail alongside the charac" +
                    "ter\'s name");
            this.overviewShowPortraitCheckBox.UseVisualStyleBackColor = true;
            // 
            // cbShowOverViewTab
            // 
            this.cbShowOverViewTab.AutoSize = true;
            this.cbShowOverViewTab.Location = new System.Drawing.Point(14, 20);
            this.cbShowOverViewTab.Name = "cbShowOverViewTab";
            this.cbShowOverViewTab.Size = new System.Drawing.Size(129, 17);
            this.cbShowOverViewTab.TabIndex = 0;
            this.cbShowOverViewTab.Text = "Show \"Overview\" tab";
            this.ttToolTipCodes.SetToolTip(this.cbShowOverViewTab, "When enabled, shows the Overview tab");
            this.cbShowOverViewTab.UseVisualStyleBackColor = true;
            this.cbShowOverViewTab.CheckedChanged += new System.EventHandler(this.OnMustEnableOrDisable);
            // 
            // treeView
            // 
            this.treeView.BackColor = System.Drawing.SystemColors.ControlLightLight;
            this.treeView.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.treeView.Dock = System.Windows.Forms.DockStyle.Fill;
            this.treeView.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.treeView.FullRowSelect = true;
            this.treeView.HideSelection = false;
            this.treeView.ImageIndex = 0;
            this.treeView.ImageList = this.imageList;
            this.treeView.ItemHeight = 20;
            this.treeView.Location = new System.Drawing.Point(6, 6);
            this.treeView.Name = "treeView";
            treeNode10.ImageIndex = 11;
            treeNode10.Name = "Node9";
            treeNode10.SelectedImageIndex = 11;
            treeNode10.Tag = "updatesPage";
            treeNode10.Text = "Updates";
            treeNode11.ImageIndex = 7;
            treeNode11.Name = "Node5";
            treeNode11.SelectedImageIndex = 7;
            treeNode11.Tag = "networkPage";
            treeNode11.Text = "Network";
            treeNode12.ImageIndex = 4;
            treeNode12.Name = "g15Node";
            treeNode12.SelectedImageIndex = 4;
            treeNode12.Tag = "g15Page";
            treeNode12.Text = "Logitech Keyboards";
            treeNode13.ImageIndex = 3;
            treeNode13.Name = "Node2";
            treeNode13.SelectedImageIndex = 3;
            treeNode13.Tag = "igbServerPage";
            treeNode13.Text = "IGB Server";
            treeNode14.ImageIndex = 10;
            treeNode14.Name = "generalNode";
            treeNode14.SelectedImageIndex = 10;
            treeNode14.Tag = "generalPage";
            treeNode14.Text = "General";
            treeNode15.ImageIndex = 6;
            treeNode15.Name = "Node3";
            treeNode15.SelectedImageIndex = 6;
            treeNode15.Tag = "mainWindowPage";
            treeNode15.Text = "Main Window";
            treeNode16.ImageIndex = 13;
            treeNode16.Name = "IconsNode";
            treeNode16.SelectedImageIndex = 13;
            treeNode16.Tag = "iconsPage";
            treeNode16.Text = "Icons";
            treeNode17.ImageIndex = 14;
            treeNode17.Name = "MassagesNode";
            treeNode17.SelectedImageIndex = 14;
            treeNode17.Tag = "messagesPage";
            treeNode17.Text = "Messages";
            treeNode18.ImageIndex = 8;
            treeNode18.Name = "Node4";
            treeNode18.SelectedImageIndex = 8;
            treeNode18.Tag = "skillPlannerPage";
            treeNode18.Text = "Skill Planner";
            treeNode19.ImageIndex = 2;
            treeNode19.Name = "trayIconNode";
            treeNode19.SelectedImageIndex = 2;
            treeNode19.Tag = "trayIconPage";
            treeNode19.Text = "System Tray Icon";
            treeNode20.ImageIndex = 5;
            treeNode20.Name = "Node11";
            treeNode20.SelectedImageIndex = 5;
            treeNode20.Tag = "externalCalendarPage";
            treeNode20.Text = "External Calendar";
            treeNode21.ImageIndex = 1;
            treeNode21.Name = "Node10";
            treeNode21.SelectedImageIndex = 1;
            treeNode21.Tag = "schedulerUIPage";
            treeNode21.Text = "Scheduler";
            treeNode22.ImageIndex = 12;
            treeNode22.Name = "Node7";
            treeNode22.SelectedImageIndex = 12;
            treeNode22.Tag = "emailNotificationsPage";
            treeNode22.Text = "Skill Completion Mails";
            treeNode23.ImageIndex = 9;
            treeNode23.Name = "Node2";
            treeNode23.SelectedImageIndex = 9;
            treeNode23.Tag = "notificationsPage";
            treeNode23.Text = "Notifications";
            treeNode24.ImageIndex = 15;
            treeNode24.Name = "BattleClinicWebServiceNode";
            treeNode24.SelectedImageIndex = 15;
            treeNode24.Tag = "battleClinicServicePage";
            treeNode24.Text = "BattleClinic Service";
            this.treeView.Nodes.AddRange(new System.Windows.Forms.TreeNode[] {
            treeNode14,
            treeNode15,
            treeNode18,
            treeNode19,
            treeNode21,
            treeNode23,
            treeNode24});
            this.treeView.SelectedImageIndex = 0;
            this.treeView.ShowLines = false;
            this.treeView.ShowPlusMinus = false;
            this.treeView.ShowRootLines = false;
            this.treeView.Size = new System.Drawing.Size(187, 424);
            this.treeView.TabIndex = 6;
            this.treeView.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.treeView_AfterSelect);
            // 
            // imageList
            // 
            this.imageList.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList.ImageStream")));
            this.imageList.TransparentColor = System.Drawing.Color.Empty;
            this.imageList.Images.SetKeyName(0, "Transparent.png");
            this.imageList.Images.SetKeyName(1, "Calendar.png");
            this.imageList.Images.SetKeyName(2, "EVEMon16.png");
            this.imageList.Images.SetKeyName(3, "IGB Server.png");
            this.imageList.Images.SetKeyName(4, "Logitech Keyboard.png");
            this.imageList.Images.SetKeyName(5, "gcalendar.png");
            this.imageList.Images.SetKeyName(6, "MainWindow.png");
            this.imageList.Images.SetKeyName(7, "Online.png");
            this.imageList.Images.SetKeyName(8, "Plan.png");
            this.imageList.Images.SetKeyName(9, "Problem.png");
            this.imageList.Images.SetKeyName(10, "Settings.png");
            this.imageList.Images.SetKeyName(11, "Update3.png");
            this.imageList.Images.SetKeyName(12, "Email.png");
            this.imageList.Images.SetKeyName(13, "book.png");
            this.imageList.Images.SetKeyName(14, "messagebox.png");
            this.imageList.Images.SetKeyName(15, "BattleClinic.png");
            // 
            // leftPanel
            // 
            this.leftPanel.BackColor = System.Drawing.SystemColors.ControlLightLight;
            this.leftPanel.Controls.Add(this.treeView);
            this.leftPanel.Dock = System.Windows.Forms.DockStyle.Left;
            this.leftPanel.Location = new System.Drawing.Point(0, 0);
            this.leftPanel.Name = "leftPanel";
            this.leftPanel.Padding = new System.Windows.Forms.Padding(6);
            this.leftPanel.Size = new System.Drawing.Size(199, 436);
            this.leftPanel.TabIndex = 9;
            // 
            // multiPanel
            // 
            this.multiPanel.Controls.Add(this.mainWindowPage);
            this.multiPanel.Controls.Add(this.generalPage);
            this.multiPanel.Controls.Add(this.skillPlannerPage);
            this.multiPanel.Controls.Add(this.networkPage);
            this.multiPanel.Controls.Add(this.emailNotificationsPage);
            this.multiPanel.Controls.Add(this.notificationsPage);
            this.multiPanel.Controls.Add(this.trayIconPage);
            this.multiPanel.Controls.Add(this.updatesPage);
            this.multiPanel.Controls.Add(this.schedulerUIPage);
            this.multiPanel.Controls.Add(this.externalCalendarPage);
            this.multiPanel.Controls.Add(this.g15Page);
            this.multiPanel.Controls.Add(this.igbServerPage);
            this.multiPanel.Controls.Add(this.iconsPage);
            this.multiPanel.Controls.Add(this.messagesPage);
            this.multiPanel.Controls.Add(this.battleClinicServicePage);
            this.multiPanel.Dock = System.Windows.Forms.DockStyle.Fill;
            this.multiPanel.Location = new System.Drawing.Point(199, 0);
            this.multiPanel.Name = "multiPanel";
            this.multiPanel.Padding = new System.Windows.Forms.Padding(5);
            this.multiPanel.SelectedPage = this.mainWindowPage;
            this.multiPanel.Size = new System.Drawing.Size(445, 436);
            this.multiPanel.TabIndex = 7;
            // 
            // mainWindowPage
            // 
            this.mainWindowPage.Controls.Add(lblMainWindowPage);
            this.mainWindowPage.Controls.Add(this.groupBox2);
            this.mainWindowPage.Controls.Add(groupBox15);
            this.mainWindowPage.Controls.Add(groupBox7);
            this.mainWindowPage.Dock = System.Windows.Forms.DockStyle.Fill;
            this.mainWindowPage.Location = new System.Drawing.Point(5, 5);
            this.mainWindowPage.Name = "mainWindowPage";
            this.mainWindowPage.Size = new System.Drawing.Size(435, 426);
            this.mainWindowPage.TabIndex = 1;
            this.mainWindowPage.Text = "mainWindowPage";
            // 
            // groupBox2
            // 
            this.groupBox2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.groupBox2.Controls.Add(this.cbUseIncreasedContrastOnOverview);
            this.groupBox2.Controls.Add(this.overviewPanel);
            this.groupBox2.Controls.Add(this.cbShowOverViewTab);
            this.groupBox2.Location = new System.Drawing.Point(1, 274);
            this.groupBox2.Name = "groupBox2";
            this.groupBox2.Size = new System.Drawing.Size(428, 127);
            this.groupBox2.TabIndex = 15;
            this.groupBox2.TabStop = false;
            this.groupBox2.Text = "Overview";
            // 
            // overviewPanel
            // 
            this.overviewPanel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.overviewPanel.Controls.Add(this.overviewGroupCharactersInTrainingCheckBox);
            this.overviewPanel.Controls.Add(this.overviewShowSkillQueueTrainingTimeCheckBox);
            this.overviewPanel.Controls.Add(this.overviewShowWalletCheckBox);
            this.overviewPanel.Controls.Add(lblSize);
            this.overviewPanel.Controls.Add(this.overviewShowPortraitCheckBox);
            this.overviewPanel.Controls.Add(this.overviewPortraitSizeComboBox);
            this.overviewPanel.Location = new System.Drawing.Point(29, 43);
            this.overviewPanel.Name = "overviewPanel";
            this.overviewPanel.Size = new System.Drawing.Size(393, 79);
            this.overviewPanel.TabIndex = 32;
            // 
            // overviewPortraitSizeComboBox
            // 
            this.overviewPortraitSizeComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.overviewPortraitSizeComboBox.FormattingEnabled = true;
            this.overviewPortraitSizeComboBox.Location = new System.Drawing.Point(52, 49);
            this.overviewPortraitSizeComboBox.Name = "overviewPortraitSizeComboBox";
            this.overviewPortraitSizeComboBox.Size = new System.Drawing.Size(93, 21);
            this.overviewPortraitSizeComboBox.TabIndex = 28;
            // 
            // generalPage
            // 
            this.generalPage.Controls.Add(lblGeneralPage);
            this.generalPage.Controls.Add(this.cbWorksafeMode);
            this.generalPage.Controls.Add(this.compatibilityCombo);
            this.generalPage.Controls.Add(lblEnvironment);
            this.generalPage.Controls.Add(this.runAtStartupComboBox);
            this.generalPage.Dock = System.Windows.Forms.DockStyle.Fill;
            this.generalPage.Location = new System.Drawing.Point(5, 5);
            this.generalPage.Name = "generalPage";
            this.generalPage.Size = new System.Drawing.Size(435, 426);
            this.generalPage.TabIndex = 0;
            this.generalPage.Text = "generalPage";
            this.generalPage.Visible = false;
            // 
            // cbWorksafeMode
            // 
            this.cbWorksafeMode.AutoSize = true;
            this.cbWorksafeMode.Location = new System.Drawing.Point(3, 131);
            this.cbWorksafeMode.Name = "cbWorksafeMode";
            this.cbWorksafeMode.Size = new System.Drawing.Size(271, 17);
            this.cbWorksafeMode.TabIndex = 6;
            this.cbWorksafeMode.Text = "Run in \"safe for work\" mode (no portraits or colors)";
            this.cbWorksafeMode.UseVisualStyleBackColor = true;
            this.cbWorksafeMode.CheckedChanged += new System.EventHandler(this.OnMustEnableOrDisable);
            // 
            // compatibilityCombo
            // 
            this.compatibilityCombo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.compatibilityCombo.FormattingEnabled = true;
            this.compatibilityCombo.Items.AddRange(new object[] {
            "Windows",
            "Wine"});
            this.compatibilityCombo.Location = new System.Drawing.Point(231, 178);
            this.compatibilityCombo.Name = "compatibilityCombo";
            this.compatibilityCombo.Size = new System.Drawing.Size(121, 21);
            this.compatibilityCombo.TabIndex = 7;
            // 
            // runAtStartupComboBox
            // 
            this.runAtStartupComboBox.AutoSize = true;
            this.runAtStartupComboBox.Location = new System.Drawing.Point(3, 88);
            this.runAtStartupComboBox.Name = "runAtStartupComboBox";
            this.runAtStartupComboBox.Size = new System.Drawing.Size(138, 17);
            this.runAtStartupComboBox.TabIndex = 5;
            this.runAtStartupComboBox.Text = "Run EVEMon at Startup";
            this.runAtStartupComboBox.UseVisualStyleBackColor = true;
            // 
            // skillPlannerPage
            // 
            this.skillPlannerPage.Controls.Add(this.cbAdvanceEntryAdd);
            this.skillPlannerPage.Controls.Add(this.cbSummaryOnMultiSelectOnly);
            this.skillPlannerPage.Controls.Add(lblSkillPlannerPage);
            this.skillPlannerPage.Controls.Add(this.cbHighlightQueuedSiklls);
            this.skillPlannerPage.Controls.Add(this.cbHighlightPartialSkills);
            this.skillPlannerPage.Controls.Add(this.cbHighlightConflicts);
            this.skillPlannerPage.Controls.Add(this.cbHighlightPrerequisites);
            this.skillPlannerPage.Controls.Add(this.cbHighlightPlannedSkills);
            this.skillPlannerPage.Dock = System.Windows.Forms.DockStyle.Fill;
            this.skillPlannerPage.Location = new System.Drawing.Point(5, 5);
            this.skillPlannerPage.Name = "skillPlannerPage";
            this.skillPlannerPage.Size = new System.Drawing.Size(435, 426);
            this.skillPlannerPage.TabIndex = 3;
            this.skillPlannerPage.Text = "skillPlannerPage";
            this.skillPlannerPage.Visible = false;
            // 
            // cbAdvanceEntryAdd
            // 
            this.cbAdvanceEntryAdd.AutoSize = true;
            this.cbAdvanceEntryAdd.Location = new System.Drawing.Point(14, 198);
            this.cbAdvanceEntryAdd.Name = "cbAdvanceEntryAdd";
            this.cbAdvanceEntryAdd.Size = new System.Drawing.Size(211, 17);
            this.cbAdvanceEntryAdd.TabIndex = 21;
            this.cbAdvanceEntryAdd.Text = "Set Priority When Adding Skills To Plan";
            this.cbAdvanceEntryAdd.UseVisualStyleBackColor = true;
            // 
            // cbSummaryOnMultiSelectOnly
            // 
            this.cbSummaryOnMultiSelectOnly.AutoSize = true;
            this.cbSummaryOnMultiSelectOnly.Location = new System.Drawing.Point(14, 175);
            this.cbSummaryOnMultiSelectOnly.Name = "cbSummaryOnMultiSelectOnly";
            this.cbSummaryOnMultiSelectOnly.Size = new System.Drawing.Size(232, 17);
            this.cbSummaryOnMultiSelectOnly.TabIndex = 20;
            this.cbSummaryOnMultiSelectOnly.Text = "Show Plan Summary Only On \"Multi-Select\"";
            this.cbSummaryOnMultiSelectOnly.UseVisualStyleBackColor = true;
            // 
            // cbHighlightQueuedSiklls
            // 
            this.cbHighlightQueuedSiklls.AutoSize = true;
            this.cbHighlightQueuedSiklls.Location = new System.Drawing.Point(14, 152);
            this.cbHighlightQueuedSiklls.Name = "cbHighlightQueuedSiklls";
            this.cbHighlightQueuedSiklls.Size = new System.Drawing.Size(135, 17);
            this.cbHighlightQueuedSiklls.TabIndex = 14;
            this.cbHighlightQueuedSiklls.Text = "Highlight Queued Skills";
            this.cbHighlightQueuedSiklls.UseVisualStyleBackColor = true;
            // 
            // cbHighlightPartialSkills
            // 
            this.cbHighlightPartialSkills.AutoSize = true;
            this.cbHighlightPartialSkills.Location = new System.Drawing.Point(14, 129);
            this.cbHighlightPartialSkills.Name = "cbHighlightPartialSkills";
            this.cbHighlightPartialSkills.Size = new System.Drawing.Size(172, 17);
            this.cbHighlightPartialSkills.TabIndex = 10;
            this.cbHighlightPartialSkills.Text = "Highlight Partially Trained Skills";
            this.cbHighlightPartialSkills.UseVisualStyleBackColor = true;
            // 
            // cbHighlightConflicts
            // 
            this.cbHighlightConflicts.AutoSize = true;
            this.cbHighlightConflicts.Location = new System.Drawing.Point(14, 83);
            this.cbHighlightConflicts.Name = "cbHighlightConflicts";
            this.cbHighlightConflicts.Size = new System.Drawing.Size(158, 17);
            this.cbHighlightConflicts.TabIndex = 9;
            this.cbHighlightConflicts.Text = "Highlight Schedule Conflicts";
            this.cbHighlightConflicts.UseVisualStyleBackColor = true;
            // 
            // cbHighlightPrerequisites
            // 
            this.cbHighlightPrerequisites.AutoSize = true;
            this.cbHighlightPrerequisites.Location = new System.Drawing.Point(14, 106);
            this.cbHighlightPrerequisites.Name = "cbHighlightPrerequisites";
            this.cbHighlightPrerequisites.Size = new System.Drawing.Size(130, 17);
            this.cbHighlightPrerequisites.TabIndex = 8;
            this.cbHighlightPrerequisites.Text = "Highlight Prerequisites";
            this.cbHighlightPrerequisites.UseVisualStyleBackColor = true;
            // 
            // cbHighlightPlannedSkills
            // 
            this.cbHighlightPlannedSkills.AutoSize = true;
            this.cbHighlightPlannedSkills.Location = new System.Drawing.Point(14, 60);
            this.cbHighlightPlannedSkills.Name = "cbHighlightPlannedSkills";
            this.cbHighlightPlannedSkills.Size = new System.Drawing.Size(136, 17);
            this.cbHighlightPlannedSkills.TabIndex = 0;
            this.cbHighlightPlannedSkills.Text = "Highlight Planned Skills";
            this.cbHighlightPlannedSkills.UseVisualStyleBackColor = true;
            // 
            // networkPage
            // 
            this.networkPage.Controls.Add(this.ApiProxyGroupBox);
            this.networkPage.Controls.Add(this.ProxyServerGroupBox);
            this.networkPage.Dock = System.Windows.Forms.DockStyle.Fill;
            this.networkPage.Location = new System.Drawing.Point(5, 5);
            this.networkPage.Name = "networkPage";
            this.networkPage.Size = new System.Drawing.Size(435, 426);
            this.networkPage.TabIndex = 4;
            this.networkPage.Text = "networkPage";
            this.networkPage.Visible = false;
            // 
            // ApiProxyGroupBox
            // 
            this.ApiProxyGroupBox.Controls.Add(lblNetworkPageAPIProvider);
            this.ApiProxyGroupBox.Controls.Add(this.btnDeleteAPIServer);
            this.ApiProxyGroupBox.Controls.Add(this.btnAddAPIServer);
            this.ApiProxyGroupBox.Controls.Add(this.cbAPIServer);
            this.ApiProxyGroupBox.Controls.Add(this.btnEditAPIServer);
            this.ApiProxyGroupBox.Location = new System.Drawing.Point(3, 235);
            this.ApiProxyGroupBox.Name = "ApiProxyGroupBox";
            this.ApiProxyGroupBox.Size = new System.Drawing.Size(392, 122);
            this.ApiProxyGroupBox.TabIndex = 7;
            this.ApiProxyGroupBox.TabStop = false;
            this.ApiProxyGroupBox.Text = "API Provider";
            // 
            // btnDeleteAPIServer
            // 
            this.btnDeleteAPIServer.Location = new System.Drawing.Point(174, 85);
            this.btnDeleteAPIServer.Name = "btnDeleteAPIServer";
            this.btnDeleteAPIServer.Size = new System.Drawing.Size(75, 23);
            this.btnDeleteAPIServer.TabIndex = 4;
            this.btnDeleteAPIServer.Text = "Delete";
            this.btnDeleteAPIServer.UseVisualStyleBackColor = true;
            this.btnDeleteAPIServer.Click += new System.EventHandler(this.btnDeleteAPIServer_Click);
            // 
            // btnAddAPIServer
            // 
            this.btnAddAPIServer.Location = new System.Drawing.Point(12, 85);
            this.btnAddAPIServer.Name = "btnAddAPIServer";
            this.btnAddAPIServer.Size = new System.Drawing.Size(75, 23);
            this.btnAddAPIServer.TabIndex = 2;
            this.btnAddAPIServer.Text = "Add";
            this.btnAddAPIServer.UseVisualStyleBackColor = true;
            this.btnAddAPIServer.Click += new System.EventHandler(this.btnAddAPIServer_Click);
            // 
            // cbAPIServer
            // 
            this.cbAPIServer.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cbAPIServer.FormattingEnabled = true;
            this.cbAPIServer.Location = new System.Drawing.Point(12, 58);
            this.cbAPIServer.Name = "cbAPIServer";
            this.cbAPIServer.Size = new System.Drawing.Size(233, 21);
            this.cbAPIServer.TabIndex = 0;
            this.cbAPIServer.SelectedIndexChanged += new System.EventHandler(this.OnMustEnableOrDisable);
            // 
            // btnEditAPIServer
            // 
            this.btnEditAPIServer.Location = new System.Drawing.Point(93, 85);
            this.btnEditAPIServer.Name = "btnEditAPIServer";
            this.btnEditAPIServer.Size = new System.Drawing.Size(75, 23);
            this.btnEditAPIServer.TabIndex = 3;
            this.btnEditAPIServer.Text = "Edit";
            this.btnEditAPIServer.UseVisualStyleBackColor = true;
            this.btnEditAPIServer.Click += new System.EventHandler(this.btnEditAPIServer_Click);
            // 
            // ProxyServerGroupBox
            // 
            this.ProxyServerGroupBox.Controls.Add(this.customProxyCheckBox);
            this.ProxyServerGroupBox.Controls.Add(lblNetworkPageProxy);
            this.ProxyServerGroupBox.Controls.Add(this.customProxyPanel);
            this.ProxyServerGroupBox.Location = new System.Drawing.Point(3, 31);
            this.ProxyServerGroupBox.Name = "ProxyServerGroupBox";
            this.ProxyServerGroupBox.Size = new System.Drawing.Size(392, 157);
            this.ProxyServerGroupBox.TabIndex = 0;
            this.ProxyServerGroupBox.TabStop = false;
            this.ProxyServerGroupBox.Text = "Proxy Server Settings";
            // 
            // customProxyCheckBox
            // 
            this.customProxyCheckBox.AutoSize = true;
            this.customProxyCheckBox.Location = new System.Drawing.Point(9, 74);
            this.customProxyCheckBox.Name = "customProxyCheckBox";
            this.customProxyCheckBox.Size = new System.Drawing.Size(119, 17);
            this.customProxyCheckBox.TabIndex = 9;
            this.customProxyCheckBox.Text = "Use a custom proxy";
            this.customProxyCheckBox.UseVisualStyleBackColor = true;
            this.customProxyCheckBox.CheckedChanged += new System.EventHandler(this.OnMustEnableOrDisable);
            // 
            // customProxyPanel
            // 
            this.customProxyPanel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.customProxyPanel.Controls.Add(this.proxyPortTextBox);
            this.customProxyPanel.Controls.Add(label12);
            this.customProxyPanel.Controls.Add(this.proxyAuthenticationButton);
            this.customProxyPanel.Controls.Add(label11);
            this.customProxyPanel.Controls.Add(lblHTTP);
            this.customProxyPanel.Controls.Add(this.proxyHttpHostTextBox);
            this.customProxyPanel.Location = new System.Drawing.Point(17, 97);
            this.customProxyPanel.Name = "customProxyPanel";
            this.customProxyPanel.Size = new System.Drawing.Size(369, 54);
            this.customProxyPanel.TabIndex = 6;
            // 
            // proxyPortTextBox
            // 
            this.proxyPortTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.proxyPortTextBox.Location = new System.Drawing.Point(222, 24);
            this.proxyPortTextBox.MaxLength = 5;
            this.proxyPortTextBox.Name = "proxyPortTextBox";
            this.proxyPortTextBox.Size = new System.Drawing.Size(38, 21);
            this.proxyPortTextBox.TabIndex = 2;
            this.proxyPortTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.proxyPortTextBox_Validating);
            // 
            // proxyAuthenticationButton
            // 
            this.proxyAuthenticationButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.proxyAuthenticationButton.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            this.proxyAuthenticationButton.Location = new System.Drawing.Point(266, 22);
            this.proxyAuthenticationButton.Margin = new System.Windows.Forms.Padding(3, 3, 3, 0);
            this.proxyAuthenticationButton.Name = "proxyAuthenticationButton";
            this.proxyAuthenticationButton.Size = new System.Drawing.Size(97, 23);
            this.proxyAuthenticationButton.TabIndex = 5;
            this.proxyAuthenticationButton.Text = "Authentication...";
            this.proxyAuthenticationButton.UseVisualStyleBackColor = true;
            this.proxyAuthenticationButton.Click += new System.EventHandler(this.proxyAuthenticationButton_Click);
            // 
            // proxyHttpHostTextBox
            // 
            this.proxyHttpHostTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.proxyHttpHostTextBox.Location = new System.Drawing.Point(50, 24);
            this.proxyHttpHostTextBox.Name = "proxyHttpHostTextBox";
            this.proxyHttpHostTextBox.Size = new System.Drawing.Size(165, 21);
            this.proxyHttpHostTextBox.TabIndex = 1;
            // 
            // emailNotificationsPage
            // 
            this.emailNotificationsPage.Controls.Add(lblEmailNotificationPage);
            this.emailNotificationsPage.Controls.Add(this.mailNotificationPanel);
            this.emailNotificationsPage.Controls.Add(this.mailNotificationCheckBox);
            this.emailNotificationsPage.Dock = System.Windows.Forms.DockStyle.Fill;
            this.emailNotificationsPage.Location = new System.Drawing.Point(5, 5);
            this.emailNotificationsPage.Name = "emailNotificationsPage";
            this.emailNotificationsPage.Size = new System.Drawing.Size(435, 426);
            this.emailNotificationsPage.TabIndex = 6;
            this.emailNotificationsPage.Text = "emailNotificationsPage";
            this.emailNotificationsPage.Visible = false;
            // 
            // mailNotificationPanel
            // 
            this.mailNotificationPanel.AutoSize = true;
            this.mailNotificationPanel.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            this.mailNotificationPanel.Controls.Add(this.cbEmailUseShortFormat);
            this.mailNotificationPanel.Controls.Add(this.tableLayoutPanel2);
            this.mailNotificationPanel.Controls.Add(this.btnTestEmail);
            this.mailNotificationPanel.FlowDirection = System.Windows.Forms.FlowDirection.TopDown;
            this.mailNotificationPanel.Location = new System.Drawing.Point(3, 104);
            this.mailNotificationPanel.Name = "mailNotificationPanel";
            this.mailNotificationPanel.Padding = new System.Windows.Forms.Padding(9, 0, 9, 0);
            this.mailNotificationPanel.Size = new System.Drawing.Size(362, 285);
            this.mailNotificationPanel.TabIndex = 1;
            this.mailNotificationPanel.WrapContents = false;
            // 
            // cbEmailUseShortFormat
            // 
            this.cbEmailUseShortFormat.AutoSize = true;
            this.cbEmailUseShortFormat.Location = new System.Drawing.Point(12, 3);
            this.cbEmailUseShortFormat.Name = "cbEmailUseShortFormat";
            this.cbEmailUseShortFormat.Size = new System.Drawing.Size(179, 17);
            this.cbEmailUseShortFormat.TabIndex = 2;
            this.cbEmailUseShortFormat.Text = "Use Short Format (SMS-Friendly)";
            this.cbEmailUseShortFormat.UseVisualStyleBackColor = true;
            // 
            // tableLayoutPanel2
            // 
            this.tableLayoutPanel2.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            this.tableLayoutPanel2.ColumnCount = 3;
            this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
            this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
            this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
            this.tableLayoutPanel2.Controls.Add(this.tlpEmailSettings, 1, 0);
            this.tableLayoutPanel2.Location = new System.Drawing.Point(12, 26);
            this.tableLayoutPanel2.Name = "tableLayoutPanel2";
            this.tableLayoutPanel2.RowCount = 1;
            this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle());
            this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 227F));
            this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 227F));
            this.tableLayoutPanel2.Size = new System.Drawing.Size(338, 227);
            this.tableLayoutPanel2.TabIndex = 1;
            // 
            // tlpEmailSettings
            // 
            this.tlpEmailSettings.AutoSize = true;
            this.tlpEmailSettings.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            this.tlpEmailSettings.ColumnCount = 2;
            this.tlpEmailSettings.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
            this.tlpEmailSettings.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
            this.tlpEmailSettings.Controls.Add(lblEmailServer, 0, 0);
            this.tlpEmailSettings.Controls.Add(lblFromAddress, 0, 5);
            this.tlpEmailSettings.Controls.Add(lblToAddress, 0, 6);
            this.tlpEmailSettings.Controls.Add(this.tbMailServer, 1, 0);
            this.tlpEmailSettings.Controls.Add(this.tbFromAddress, 1, 5);
            this.tlpEmailSettings.Controls.Add(this.tbToAddress, 1, 6);
            this.tlpEmailSettings.Controls.Add(this.cbEmailServerRequireSsl, 1, 2);
            this.tlpEmailSettings.Controls.Add(this.cbEmailAuthRequired, 1, 3);
            this.tlpEmailSettings.Controls.Add(this.tlpEmailAuthTable, 1, 4);
            this.tlpEmailSettings.Controls.Add(this.emailPortTextBox, 1, 1);
            this.tlpEmailSettings.Controls.Add(lblPortNumber, 0, 1);
            this.tlpEmailSettings.Location = new System.Drawing.Point(22, 3);
            this.tlpEmailSettings.Name = "tlpEmailSettings";
            this.tlpEmailSettings.RowCount = 7;
            this.tlpEmailSettings.RowStyles.Add(new System.Windows.Forms.RowStyle());
            this.tlpEmailSettings.RowStyles.Add(new System.Windows.Forms.RowStyle());
            this.tlpEmailSettings.RowStyles.Add(new System.Windows.Forms.RowStyle());
            this.tlpEmailSettings.RowStyles.Add(new System.Windows.Forms.RowStyle());
            this.tlpEmailSettings.RowStyles.Add(new System.Windows.Forms.RowStyle());
            this.tlpEmailSettings.RowStyles.Add(new System.Windows.Forms.RowStyle());
            this.tlpEmailSettings.RowStyles.Add(new System.Windows.Forms.RowStyle());
            this.tlpEmailSettings.Size = new System.Drawing.Size(294, 216);
            this.tlpEmailSettings.TabIndex = 2;
            // 
            // tbMailServer
            // 
            this.tbMailServer.Location = new System.Drawing.Point(85, 3);
            this.tbMailServer.Name = "tbMailServer";
            this.tbMailServer.Size = new System.Drawing.Size(152, 21);
            this.tbMailServer.TabIndex = 1;
            // 
            // tbFromAddress
            // 
            this.tbFromAddress.Location = new System.Drawing.Point(85, 165);
            this.tbFromAddress.Name = "tbFromAddress";
            this.tbFromAddress.Size = new System.Drawing.Size(206, 21);
            this.tbFromAddress.TabIndex = 1;
            // 
            // tbToAddress
            // 
            this.tbToAddress.Location = new System.Drawing.Point(85, 192);
            this.tbToAddress.Name = "tbToAddress";
            this.tbToAddress.Size = new System.Drawing.Size(206, 21);
            this.tbToAddress.TabIndex = 1;
            // 
            // cbEmailServerRequireSsl
            // 
            this.cbEmailServerRequireSsl.AutoSize = true;
            this.cbEmailServerRequireSsl.Location = new System.Drawing.Point(85, 57);
            this.cbEmailServerRequireSsl.Name = "cbEmailServerRequireSsl";
            this.cbEmailServerRequireSsl.Size = new System.Drawing.Size(114, 17);
            this.cbEmailServerRequireSsl.TabIndex = 1;
            this.cbEmailServerRequireSsl.Text = "Connect using SSL";
            this.cbEmailServerRequireSsl.UseVisualStyleBackColor = true;
            // 
            // cbEmailAuthRequired
            // 
            this.cbEmailAuthRequired.AutoSize = true;
            this.cbEmailAuthRequired.Location = new System.Drawing.Point(85, 80);
            this.cbEmailAuthRequired.Name = "cbEmailAuthRequired";
            this.cbEmailAuthRequired.Size = new System.Drawing.Size(125, 17);
            this.cbEmailAuthRequired.TabIndex = 1;
            this.cbEmailAuthRequired.Text = "Server requires login";
            this.cbEmailAuthRequired.UseVisualStyleBackColor = true;
            this.cbEmailAuthRequired.CheckedChanged += new System.EventHandler(this.OnMustEnableOrDisable);
            // 
            // tlpEmailAuthTable
            // 
            this.tlpEmailAuthTable.AutoSize = true;
            this.tlpEmailAuthTable.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            this.tlpEmailAuthTable.ColumnCount = 2;
            this.tlpEmailAuthTable.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
            this.tlpEmailAuthTable.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
            this.tlpEmailAuthTable.Controls.Add(lblEmailPassword, 0, 1);
            this.tlpEmailAuthTable.Controls.Add(lblEmailUsername, 0, 0);
            this.tlpEmailAuthTable.Controls.Add(this.tbEmailUsername, 1, 0);
            this.tlpEmailAuthTable.Controls.Add(this.tbEmailPassword, 1, 1);
            this.tlpEmailAuthTable.Location = new System.Drawing.Point(85, 103);
            this.tlpEmailAuthTable.Margin = new System.Windows.Forms.Padding(3, 3, 3, 5);
            this.tlpEmailAuthTable.Name = "tlpEmailAuthTable";
            this.tlpEmailAuthTable.RowCount = 2;
            this.tlpEmailAuthTable.RowStyles.Add(new System.Windows.Forms.RowStyle());
            this.tlpEmailAuthTable.RowStyles.Add(new System.Windows.Forms.RowStyle());
            this.tlpEmailAuthTable.Size = new System.Drawing.Size(200, 54);
            this.tlpEmailAuthTable.TabIndex = 8;
            // 
            // tbEmailUsername
            // 
            this.tbEmailUsername.Location = new System.Drawing.Point(68, 3);
            this.tbEmailUsername.Name = "tbEmailUsername";
            this.tbEmailUsername.Size = new System.Drawing.Size(129, 21);
            this.tbEmailUsername.TabIndex = 1;
            // 
            // tbEmailPassword
            // 
            this.tbEmailPassword.Location = new System.Drawing.Point(68, 30);
            this.tbEmailPassword.Name = "tbEmailPassword";
            this.tbEmailPassword.PasswordChar = '*';
            this.tbEmailPassword.Size = new System.Drawing.Size(129, 21);
            this.tbEmailPassword.TabIndex = 1;
            // 
            // emailPortTextBox
            // 
            this.emailPortTextBox.Location = new System.Drawing.Point(85, 30);
            this.emailPortTextBox.Name = "emailPortTextBox";
            this.emailPortTextBox.Size = new System.Drawing.Size(152, 21);
            this.emailPortTextBox.TabIndex = 1;
            this.emailPortTextBox.Text = "25";
            // 
            // btnTestEmail
            // 
            this.btnTestEmail.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.btnTestEmail.Location = new System.Drawing.Point(240, 259);
            this.btnTestEmail.Name = "btnTestEmail";
            this.btnTestEmail.Size = new System.Drawing.Size(110, 23);
            this.btnTestEmail.TabIndex = 10;
            this.btnTestEmail.Text = "Send Test Email";
            this.btnTestEmail.UseVisualStyleBackColor = true;
            this.btnTestEmail.Click += new System.EventHandler(this.emailTestButton_Click);
            // 
            // mailNotificationCheckBox
            // 
            this.mailNotificationCheckBox.AutoSize = true;
            this.mailNotificationCheckBox.Location = new System.Drawing.Point(3, 81);
            this.mailNotificationCheckBox.Name = "mailNotificationCheckBox";
            this.mailNotificationCheckBox.Size = new System.Drawing.Size(215, 17);
            this.mailNotificationCheckBox.TabIndex = 1;
            this.mailNotificationCheckBox.Text = "Send email when skill training completes";
            this.mailNotificationCheckBox.UseVisualStyleBackColor = true;
            this.mailNotificationCheckBox.CheckedChanged += new System.EventHandler(this.OnMustEnableOrDisable);
            // 
            // notificationsPage
            // 
            this.notificationsPage.Controls.Add(lblNotificationsPage);
            this.notificationsPage.Controls.Add(this.notificationsControl);
            this.notificationsPage.Controls.Add(this.cbPlaySoundOnSkillComplete);
            this.notificationsPage.Dock = System.Windows.Forms.DockStyle.Fill;
            this.notificationsPage.Location = new System.Drawing.Point(5, 5);
            this.notificationsPage.Name = "notificationsPage";
            this.notificationsPage.Size = new System.Drawing.Size(435, 426);
            this.notificationsPage.TabIndex = 7;
            this.notificationsPage.Text = "notificationsPage";
            this.notificationsPage.Visible = false;
            // 
            // notificationsControl
            // 
            this.notificationsControl.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.notificationsControl.AutoScroll = true;
            this.notificationsControl.BackColor = System.Drawing.SystemColors.Window;
            this.notificationsControl.Location = new System.Drawing.Point(3, 56);
            this.notificationsControl.Name = "notificationsControl";
            this.notificationsControl.Settings = null;
            this.notificationsControl.Size = new System.Drawing.Size(429, 341);
            this.notificationsControl.TabIndex = 4;
            // 
            // cbPlaySoundOnSkillComplete
            // 
            this.cbPlaySoundOnSkillComplete.AutoSize = true;
            this.cbPlaySoundOnSkillComplete.Location = new System.Drawing.Point(3, 403);
            this.cbPlaySoundOnSkillComplete.Name = "cbPlaySoundOnSkillComplete";
            this.cbPlaySoundOnSkillComplete.Size = new System.Drawing.Size(216, 17);
            this.cbPlaySoundOnSkillComplete.TabIndex = 3;
            this.cbPlaySoundOnSkillComplete.Text = "Play sound when skill training completes";
            this.cbPlaySoundOnSkillComplete.UseVisualStyleBackColor = true;
            // 
            // trayIconPage
            // 
            this.trayIconPage.Controls.Add(lblTrayIconPage);
            this.trayIconPage.Controls.Add(this.mainWindowBehaviourGroupBox);
            this.trayIconPage.Controls.Add(this.trayIconPopupGroupBox);
            this.trayIconPage.Controls.Add(systemTrayIconGroupBox);
            this.trayIconPage.Dock = System.Windows.Forms.DockStyle.Fill;
            this.trayIconPage.Location = new System.Drawing.Point(5, 5);
            this.trayIconPage.Name = "trayIconPage";
            this.trayIconPage.Size = new System.Drawing.Size(435, 426);
            this.trayIconPage.TabIndex = 8;
            this.trayIconPage.Text = "trayIconPage";
            this.trayIconPage.Visible = false;
            // 
            // mainWindowBehaviourGroupBox
            // 
            this.mainWindowBehaviourGroupBox.Controls.Add(this.rbMinToTaskBar);
            this.mainWindowBehaviourGroupBox.Controls.Add(this.rbMinToTray);
            this.mainWindowBehaviourGroupBox.Controls.Add(this.rbExitEVEMon);
            this.mainWindowBehaviourGroupBox.Location = new System.Drawing.Point(9, 307);
            this.mainWindowBehaviourGroupBox.Name = "mainWindowBehaviourGroupBox";
            this.mainWindowBehaviourGroupBox.Size = new System.Drawing.Size(419, 91);
            this.mainWindowBehaviourGroupBox.TabIndex = 17;
            this.mainWindowBehaviourGroupBox.TabStop = false;
            this.mainWindowBehaviourGroupBox.Text = "Main Window Close Behaviour";
            // 
            // rbMinToTaskBar
            // 
            this.rbMinToTaskBar.AutoSize = true;
            this.rbMinToTaskBar.Location = new System.Drawing.Point(12, 66);
            this.rbMinToTaskBar.Name = "rbMinToTaskBar";
            this.rbMinToTaskBar.Size = new System.Drawing.Size(285, 17);
            this.rbMinToTaskBar.TabIndex = 2;
            this.rbMinToTaskBar.TabStop = true;
            this.rbMinToTaskBar.Text = "Minimize to the taskbar (Recommended for Windows 7)";
            this.rbMinToTaskBar.UseVisualStyleBackColor = true;
            // 
            // rbMinToTray
            // 
            this.rbMinToTray.AutoSize = true;
            this.rbMinToTray.Location = new System.Drawing.Point(12, 43);
            this.rbMinToTray.Name = "rbMinToTray";
            this.rbMinToTray.Size = new System.Drawing.Size(291, 17);
            this.rbMinToTray.TabIndex = 1;
            this.rbMinToTray.TabStop = true;
            this.rbMinToTray.Text = "Minimize to the system tray (Recommended for XP/Vista)";
            this.rbMinToTray.UseVisualStyleBackColor = true;
            // 
            // rbExitEVEMon
            // 
            this.rbExitEVEMon.AutoSize = true;
            this.rbExitEVEMon.Location = new System.Drawing.Point(12, 20);
            this.rbExitEVEMon.Name = "rbExitEVEMon";
            this.rbExitEVEMon.Size = new System.Drawing.Size(87, 17);
            this.rbExitEVEMon.TabIndex = 0;
            this.rbExitEVEMon.TabStop = true;
            this.rbExitEVEMon.Text = "Exit EVEMon";
            this.rbExitEVEMon.UseVisualStyleBackColor = true;
            // 
            // trayIconPopupGroupBox
            // 
            this.trayIconPopupGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.trayIconPopupGroupBox.Controls.Add(this.trayPopupDisabledRadio);
            this.trayIconPopupGroupBox.Controls.Add(this.trayPopupButton);
            this.trayIconPopupGroupBox.Controls.Add(this.trayPopupRadio);
            this.trayIconPopupGroupBox.Controls.Add(this.trayTooltipRadio);
            this.trayIconPopupGroupBox.Controls.Add(this.trayTooltipButton);
            this.trayIconPopupGroupBox.Location = new System.Drawing.Point(9, 184);
            this.trayIconPopupGroupBox.Name = "trayIconPopupGroupBox";
            this.trayIconPopupGroupBox.Size = new System.Drawing.Size(419, 104);
            this.trayIconPopupGroupBox.TabIndex = 10;
            this.trayIconPopupGroupBox.TabStop = false;
            this.trayIconPopupGroupBox.Text = "Icon Popup Style";
            // 
            // trayPopupDisabledRadio
            // 
            this.trayPopupDisabledRadio.AutoSize = true;
            this.trayPopupDisabledRadio.Location = new System.Drawing.Point(6, 78);
            this.trayPopupDisabledRadio.Name = "trayPopupDisabledRadio";
            this.trayPopupDisabledRadio.Size = new System.Drawing.Size(66, 17);
            this.trayPopupDisabledRadio.TabIndex = 5;
            this.trayPopupDisabledRadio.TabStop = true;
            this.trayPopupDisabledRadio.Text = "Disabled";
            this.trayPopupDisabledRadio.UseVisualStyleBackColor = true;
            // 
            // trayPopupButton
            // 
            this.trayPopupButton.Location = new System.Drawing.Point(69, 46);
            this.trayPopupButton.Name = "trayPopupButton";
            this.trayPopupButton.Size = new System.Drawing.Size(75, 23);
            this.trayPopupButton.TabIndex = 4;
            this.trayPopupButton.Text = "Configure";
            this.trayPopupButton.UseVisualStyleBackColor = true;
            this.trayPopupButton.Click += new System.EventHandler(this.trayPopupButton_Click);
            // 
            // trayPopupRadio
            // 
            this.trayPopupRadio.AutoSize = true;
            this.trayPopupRadio.Location = new System.Drawing.Point(6, 49);
            this.trayPopupRadio.Name = "trayPopupRadio";
            this.trayPopupRadio.Size = new System.Drawing.Size(56, 17);
            this.trayPopupRadio.TabIndex = 3;
            this.trayPopupRadio.TabStop = true;
            this.trayPopupRadio.Text = "Popup";
            this.trayPopupRadio.UseVisualStyleBackColor = true;
            // 
            // trayTooltipRadio
            // 
            this.trayTooltipRadio.AutoSize = true;
            this.trayTooltipRadio.Location = new System.Drawing.Point(6, 20);
            this.trayTooltipRadio.Name = "trayTooltipRadio";
            this.trayTooltipRadio.Size = new System.Drawing.Size(57, 17);
            this.trayTooltipRadio.TabIndex = 0;
            this.trayTooltipRadio.TabStop = true;
            this.trayTooltipRadio.Text = "Tooltip";
            this.trayTooltipRadio.UseVisualStyleBackColor = true;
            // 
            // trayTooltipButton
            // 
            this.trayTooltipButton.Location = new System.Drawing.Point(69, 17);
            this.trayTooltipButton.Name = "trayTooltipButton";
            this.trayTooltipButton.Size = new System.Drawing.Size(75, 23);
            this.trayTooltipButton.TabIndex = 2;
            this.trayTooltipButton.Text = "Configure";
            this.trayTooltipButton.UseVisualStyleBackColor = true;
            this.trayTooltipButton.Click += new System.EventHandler(this.trayTooltipButton_Click);
            // 
            // updatesPage
            // 
            this.updatesPage.Controls.Add(this.groupBox1);
            this.updatesPage.Controls.Add(this.updateSettingsControl);
            this.updatesPage.Controls.Add(this.lblUpdatesPage);
            this.updatesPage.Controls.Add(this.cbCheckTimeOnStartup);
            this.updatesPage.Controls.Add(this.cbCheckForUpdates);
            this.updatesPage.Dock = System.Windows.Forms.DockStyle.Fill;
            this.updatesPage.Location = new System.Drawing.Point(5, 5);
            this.updatesPage.Name = "updatesPage";
            this.updatesPage.Size = new System.Drawing.Size(435, 426);
            this.updatesPage.TabIndex = 9;
            this.updatesPage.Text = "updatesPage";
            this.updatesPage.Visible = false;
            // 
            // groupBox1
            // 
            this.groupBox1.Controls.Add(this.btnResetUpdateQueryTimers);
            this.groupBox1.Location = new System.Drawing.Point(320, 35);
            this.groupBox1.Name = "groupBox1";
            this.groupBox1.Size = new System.Drawing.Size(105, 45);
            this.groupBox1.TabIndex = 12;
            this.groupBox1.TabStop = false;
            this.groupBox1.Text = "Queries Updater";
            // 
            // btnResetUpdateQueryTimers
            // 
            this.btnResetUpdateQueryTimers.Location = new System.Drawing.Point(15, 15);
            this.btnResetUpdateQueryTimers.Name = "btnResetUpdateQueryTimers";
            this.btnResetUpdateQueryTimers.Size = new System.Drawing.Size(75, 23);
            this.btnResetUpdateQueryTimers.TabIndex = 11;
            this.btnResetUpdateQueryTimers.Text = "Update All";
            this.btnResetUpdateQueryTimers.UseVisualStyleBackColor = true;
            this.btnResetUpdateQueryTimers.Click += new System.EventHandler(this.btnUpdateQueryTimers_Click);
            // 
            // updateSettingsControl
            // 
            this.updateSettingsControl.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.updateSettingsControl.AutoScroll = true;
            this.updateSettingsControl.Location = new System.Drawing.Point(11, 85);
            this.updateSettingsControl.Name = "updateSettingsControl";
            this.updateSettingsControl.Settings = null;
            this.updateSettingsControl.Size = new System.Drawing.Size(413, 340);
            this.updateSettingsControl.TabIndex = 10;
            // 
            // lblUpdatesPage
            // 
            this.lblUpdatesPage.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.lblUpdatesPage.ForeColor = System.Drawing.SystemColors.MenuHighlight;
            this.lblUpdatesPage.Location = new System.Drawing.Point(3, 2);
            this.lblUpdatesPage.Name = "lblUpdatesPage";
            this.lblUpdatesPage.Size = new System.Drawing.Size(429, 34);
            this.lblUpdatesPage.TabIndex = 9;
            this.lblUpdatesPage.Text = "The following settings help reducing the network load, especially for high-latenc" +
                "y connections and clients with many characters.";
            // 
            // cbCheckTimeOnStartup
            // 
            this.cbCheckTimeOnStartup.AutoSize = true;
            this.cbCheckTimeOnStartup.Location = new System.Drawing.Point(15, 39);
            this.cbCheckTimeOnStartup.Name = "cbCheckTimeOnStartup";
            this.cbCheckTimeOnStartup.Size = new System.Drawing.Size(201, 17);
            this.cbCheckTimeOnStartup.TabIndex = 0;
            this.cbCheckTimeOnStartup.Text = "Check the computer clock on startup";
            this.cbCheckTimeOnStartup.UseVisualStyleBackColor = true;
            // 
            // cbCheckForUpdates
            // 
            this.cbCheckForUpdates.AutoSize = true;
            this.cbCheckForUpdates.Location = new System.Drawing.Point(15, 62);
            this.cbCheckForUpdates.Name = "cbCheckForUpdates";
            this.cbCheckForUpdates.Size = new System.Drawing.Size(158, 17);
            this.cbCheckForUpdates.TabIndex = 0;
            this.cbCheckForUpdates.Text = "Check for EVEMon updates";
            this.cbCheckForUpdates.UseVisualStyleBackColor = true;
            // 
            // schedulerUIPage
            // 
            this.schedulerUIPage.Controls.Add(lblSchedulerUIPage);
            this.schedulerUIPage.Controls.Add(this.panelColorText);
            this.schedulerUIPage.Controls.Add(lblText);
            this.schedulerUIPage.Controls.Add(this.panelColorRecurring2);
            this.schedulerUIPage.Controls.Add(lblBlockingEvents);
            this.schedulerUIPage.Controls.Add(this.panelColorRecurring1);
            this.schedulerUIPage.Controls.Add(lblRecurringEvents);
            this.schedulerUIPage.Controls.Add(this.panelColorSingle2);
            this.schedulerUIPage.Controls.Add(lblSimpleEvents);
            this.schedulerUIPage.Controls.Add(this.panelColorSingle1);
            this.schedulerUIPage.Controls.Add(this.panelColorBlocking);
            this.schedulerUIPage.Dock = System.Windows.Forms.DockStyle.Fill;
            this.schedulerUIPage.Location = new System.Drawing.Point(5, 5);
            this.schedulerUIPage.Name = "schedulerUIPage";
            this.schedulerUIPage.Size = new System.Drawing.Size(435, 426);
            this.schedulerUIPage.TabIndex = 10;
            this.schedulerUIPage.Text = "schedulerUIPage";
            this.schedulerUIPage.Visible = false;
            // 
            // panelColorText
            // 
            this.panelColorText.BackColor = System.Drawing.Color.White;
            this.panelColorText.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.panelColorText.Cursor = System.Windows.Forms.Cursors.Hand;
            this.panelColorText.Location = new System.Drawing.Point(107, 105);
            this.panelColorText.Name = "panelColorText";
            this.panelColorText.Size = new System.Drawing.Size(43, 17);
            this.panelColorText.TabIndex = 4;
            this.panelColorText.Click += new System.EventHandler(this.colorPanel_Click);
            // 
            // panelColorRecurring2
            // 
            this.panelColorRecurring2.BackColor = System.Drawing.Color.LightGreen;
            this.panelColorRecurring2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.panelColorRecurring2.Cursor = System.Windows.Forms.Cursors.Hand;
            this.panelColorRecurring2.Location = new System.Drawing.Point(156, 176);
            this.panelColorRecurring2.Name = "panelColorRecurring2";
            this.panelColorRecurring2.Size = new System.Drawing.Size(43, 17);
            this.panelColorRecurring2.TabIndex = 4;
            this.panelColorRecurring2.Click += new System.EventHandler(this.colorPanel_Click);
            // 
            // panelColorRecurring1
            // 
            this.panelColorRecurring1.BackColor = System.Drawing.Color.Green;
            this.panelColorRecurring1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.panelColorRecurring1.Cursor = System.Windows.Forms.Cursors.Hand;
            this.panelColorRecurring1.Location = new System.Drawing.Point(107, 176);
            this.panelColorRecurring1.Name = "panelColorRecurring1";
            this.panelColorRecurring1.Size = new System.Drawing.Size(43, 17);
            this.panelColorRecurring1.TabIndex = 4;
            this.panelColorRecurring1.Click += new System.EventHandler(this.colorPanel_Click);
            // 
            // panelColorSingle2
            // 
            this.panelColorSingle2.BackColor = System.Drawing.Color.LightBlue;
            this.panelColorSingle2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.panelColorSingle2.Cursor = System.Windows.Forms.Cursors.Hand;
            this.panelColorSingle2.Location = new System.Drawing.Point(156, 153);
            this.panelColorSingle2.Name = "panelColorSingle2";
            this.panelColorSingle2.Size = new System.Drawing.Size(43, 17);
            this.panelColorSingle2.TabIndex = 4;
            this.panelColorSingle2.Click += new System.EventHandler(this.colorPanel_Click);
            // 
            // panelColorSingle1
            // 
            this.panelColorSingle1.BackColor = System.Drawing.Color.Blue;
            this.panelColorSingle1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.panelColorSingle1.Cursor = System.Windows.Forms.Cursors.Hand;
            this.panelColorSingle1.Location = new System.Drawing.Point(107, 153);
            this.panelColorSingle1.Name = "panelColorSingle1";
            this.panelColorSingle1.Size = new System.Drawing.Size(43, 17);
            this.panelColorSingle1.TabIndex = 4;
            this.panelColorSingle1.Click += new System.EventHandler(this.colorPanel_Click);
            // 
            // panelColorBlocking
            // 
            this.panelColorBlocking.BackColor = System.Drawing.Color.Red;
            this.panelColorBlocking.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.panelColorBlocking.Cursor = System.Windows.Forms.Cursors.Hand;
            this.panelColorBlocking.Location = new System.Drawing.Point(107, 128);
            this.panelColorBlocking.Name = "panelColorBlocking";
            this.panelColorBlocking.Size = new System.Drawing.Size(43, 17);
            this.panelColorBlocking.TabIndex = 3;
            this.panelColorBlocking.Click += new System.EventHandler(this.colorPanel_Click);
            // 
            // externalCalendarPage
            // 
            this.externalCalendarPage.Controls.Add(this.externalCalendarPanel);
            this.externalCalendarPage.Controls.Add(lblExternalCalendarPage);
            this.externalCalendarPage.Controls.Add(this.externalCalendarCheckbox);
            this.externalCalendarPage.Dock = System.Windows.Forms.DockStyle.Fill;
            this.externalCalendarPage.Location = new System.Drawing.Point(5, 5);
            this.externalCalendarPage.Name = "externalCalendarPage";
            this.externalCalendarPage.Size = new System.Drawing.Size(435, 426);
            this.externalCalendarPage.TabIndex = 11;
            this.externalCalendarPage.Text = "externalCalendarPage";
            this.externalCalendarPage.Visible = false;
            // 
            // externalCalendarPanel
            // 
            this.externalCalendarPanel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.externalCalendarPanel.Controls.Add(this.rbMSOutlook);
            this.externalCalendarPanel.Controls.Add(this.dtpLateReminder);
            this.externalCalendarPanel.Controls.Add(this.tbReminder);
            this.externalCalendarPanel.Controls.Add(this.dtpEarlyReminder);
            this.externalCalendarPanel.Controls.Add(this.gbGoogle);
            this.externalCalendarPanel.Controls.Add(this.rbGoogle);
            this.externalCalendarPanel.Controls.Add(this.cbUseAlterateReminder);
            this.externalCalendarPanel.Controls.Add(lblEarlyReminder);
            this.externalCalendarPanel.Controls.Add(this.cbSetReminder);
            this.externalCalendarPanel.Controls.Add(lblLateReminder);
            this.externalCalendarPanel.Location = new System.Drawing.Point(3, 119);
            this.externalCalendarPanel.Name = "externalCalendarPanel";
            this.externalCalendarPanel.Size = new System.Drawing.Size(429, 262);
            this.externalCalendarPanel.TabIndex = 12;
            // 
            // rbMSOutlook
            // 
            this.rbMSOutlook.AutoSize = true;
            this.rbMSOutlook.Checked = true;
            this.rbMSOutlook.Location = new System.Drawing.Point(3, 5);
            this.rbMSOutlook.Name = "rbMSOutlook";
            this.rbMSOutlook.Size = new System.Drawing.Size(79, 17);
            this.rbMSOutlook.TabIndex = 1;
            this.rbMSOutlook.TabStop = true;
            this.rbMSOutlook.Text = "MS Outlook";
            this.rbMSOutlook.UseVisualStyleBackColor = true;
            this.rbMSOutlook.Click += new System.EventHandler(this.OnMustEnableOrDisable);
            // 
            // dtpLateReminder
            // 
            this.dtpLateReminder.Format = System.Windows.Forms.DateTimePickerFormat.Time;
            this.dtpLateReminder.Location = new System.Drawing.Point(281, 224);
            this.dtpLateReminder.Name = "dtpLateReminder";
            this.dtpLateReminder.ShowUpDown = true;
            this.dtpLateReminder.Size = new System.Drawing.Size(72, 21);
            this.dtpLateReminder.TabIndex = 10;
            this.dtpLateReminder.Value = new System.DateTime(2007, 9, 21, 0, 0, 0, 0);
            // 
            // tbReminder
            // 
            this.tbReminder.Location = new System.Drawing.Point(88, 171);
            this.tbReminder.Name = "tbReminder";
            this.tbReminder.Size = new System.Drawing.Size(35, 21);
            this.tbReminder.TabIndex = 7;
            this.tbReminder.Text = "5";
            this.tbReminder.Validating += new System.ComponentModel.CancelEventHandler(this.tbReminder_Validating);
            // 
            // dtpEarlyReminder
            // 
            this.dtpEarlyReminder.Format = System.Windows.Forms.DateTimePickerFormat.Time;
            this.dtpEarlyReminder.Location = new System.Drawing.Point(119, 224);
            this.dtpEarlyReminder.Name = "dtpEarlyReminder";
            this.dtpEarlyReminder.ShowUpDown = true;
            this.dtpEarlyReminder.Size = new System.Drawing.Size(70, 21);
            this.dtpEarlyReminder.TabIndex = 9;
            this.dtpEarlyReminder.Value = new System.DateTime(2007, 9, 21, 0, 0, 0, 0);
            // 
            // gbGoogle
            // 
            this.gbGoogle.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.gbGoogle.Controls.Add(this.cbGoogleReminder);
            this.gbGoogle.Controls.Add(lblReminder);
            this.gbGoogle.Controls.Add(lblURI);
            this.gbGoogle.Controls.Add(this.tbGoogleURI);
            this.gbGoogle.Controls.Add(this.tbGooglePassword);
            this.gbGoogle.Controls.Add(this.tbGoogleEmail);
            this.gbGoogle.Controls.Add(lblPassword);
            this.gbGoogle.Controls.Add(lblGoogleEmail);
            this.gbGoogle.Enabled = false;
            this.gbGoogle.Location = new System.Drawing.Point(2, 28);
            this.gbGoogle.Name = "gbGoogle";
            this.gbGoogle.Size = new System.Drawing.Size(423, 137);
            this.gbGoogle.TabIndex = 3;
            this.gbGoogle.TabStop = false;
            this.gbGoogle.Text = "Google Information";
            // 
            // cbGoogleReminder
            // 
            this.cbGoogleReminder.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cbGoogleReminder.FormattingEnabled = true;
            this.cbGoogleReminder.Items.AddRange(new object[] {
            "Alert",
            "All",
            "Email",
            "None",
            "SMS",
            "Unspecified"});
            this.cbGoogleReminder.Location = new System.Drawing.Point(83, 104);
            this.cbGoogleReminder.Name = "cbGoogleReminder";
            this.cbGoogleReminder.Size = new System.Drawing.Size(121, 21);
            this.cbGoogleReminder.TabIndex = 7;
            // 
            // tbGoogleURI
            // 
            this.tbGoogleURI.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.tbGoogleURI.Location = new System.Drawing.Point(83, 76);
            this.tbGoogleURI.Name = "tbGoogleURI";
            this.tbGoogleURI.Size = new System.Drawing.Size(334, 21);
            this.tbGoogleURI.TabIndex = 5;
            this.tbGoogleURI.Text = "http://www.google.com/calendar/feeds/default/private/full";
            // 
            // tbGooglePassword
            // 
            this.tbGooglePassword.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.tbGooglePassword.Location = new System.Drawing.Point(83, 49);
            this.tbGooglePassword.Name = "tbGooglePassword";
            this.tbGooglePassword.PasswordChar = '*';
            this.tbGooglePassword.Size = new System.Drawing.Size(334, 21);
            this.tbGooglePassword.TabIndex = 4;
            // 
            // tbGoogleEmail
            // 
            this.tbGoogleEmail.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.tbGoogleEmail.Location = new System.Drawing.Point(83, 21);
            this.tbGoogleEmail.Name = "tbGoogleEmail";
            this.tbGoogleEmail.Size = new System.Drawing.Size(334, 21);
            this.tbGoogleEmail.TabIndex = 3;
            // 
            // rbGoogle
            // 
            this.rbGoogle.AutoSize = true;
            this.rbGoogle.Location = new System.Drawing.Point(88, 4);
            this.rbGoogle.Name = "rbGoogle";
            this.rbGoogle.Size = new System.Drawing.Size(58, 17);
            this.rbGoogle.TabIndex = 2;
            this.rbGoogle.Text = "Google";
            this.rbGoogle.UseVisualStyleBackColor = true;
            this.rbGoogle.Click += new System.EventHandler(this.OnMustEnableOrDisable);
            // 
            // cbUseAlterateReminder
            // 
            this.cbUseAlterateReminder.AutoSize = true;
            this.cbUseAlterateReminder.Checked = true;
            this.cbUseAlterateReminder.CheckState = System.Windows.Forms.CheckState.Checked;
            this.cbUseAlterateReminder.Location = new System.Drawing.Point(11, 198);
            this.cbUseAlterateReminder.Name = "cbUseAlterateReminder";
            this.cbUseAlterateReminder.Size = new System.Drawing.Size(136, 17);
            this.cbUseAlterateReminder.TabIndex = 8;
            this.cbUseAlterateReminder.Text = "Use alternate reminder";
            this.cbUseAlterateReminder.UseVisualStyleBackColor = true;
            // 
            // cbSetReminder
            // 
            this.cbSetReminder.AutoSize = true;
            this.cbSetReminder.Checked = true;
            this.cbSetReminder.CheckState = System.Windows.Forms.CheckState.Checked;
            this.cbSetReminder.Location = new System.Drawing.Point(11, 173);
            this.cbSetReminder.Name = "cbSetReminder";
            this.cbSetReminder.Size = new System.Drawing.Size(71, 17);
            this.cbSetReminder.TabIndex = 6;
            this.cbSetReminder.Text = "Reminder";
            this.cbSetReminder.UseVisualStyleBackColor = true;
            // 
            // externalCalendarCheckbox
            // 
            this.externalCalendarCheckbox.AutoSize = true;
            this.externalCalendarCheckbox.Location = new System.Drawing.Point(6, 98);
            this.externalCalendarCheckbox.Name = "externalCalendarCheckbox";
            this.externalCalendarCheckbox.Size = new System.Drawing.Size(169, 17);
            this.externalCalendarCheckbox.TabIndex = 0;
            this.externalCalendarCheckbox.Text = "Use External Calendar (Import)";
            this.externalCalendarCheckbox.UseVisualStyleBackColor = true;
            this.externalCalendarCheckbox.Click += new System.EventHandler(this.OnMustEnableOrDisable);
            // 
            // g15Page
            // 
            this.g15Page.Controls.Add(this.g15CheckBox);
            this.g15Page.Controls.Add(lblG15Page);
            this.g15Page.Controls.Add(this.g15Panel);
            this.g15Page.Dock = System.Windows.Forms.DockStyle.Fill;
            this.g15Page.Location = new System.Drawing.Point(5, 5);
            this.g15Page.Name = "g15Page";
            this.g15Page.Size = new System.Drawing.Size(435, 426);
            this.g15Page.TabIndex = 13;
            this.g15Page.Text = "g15Page";
            this.g15Page.Visible = false;
            // 
            // g15CheckBox
            // 
            this.g15CheckBox.AutoSize = true;
            this.g15CheckBox.Location = new System.Drawing.Point(6, 102);
            this.g15CheckBox.Name = "g15CheckBox";
            this.g15CheckBox.Size = new System.Drawing.Size(130, 17);
            this.g15CheckBox.TabIndex = 0;
            this.g15CheckBox.Text = "Use G15/G19 Display";
            this.g15CheckBox.UseVisualStyleBackColor = true;
            this.g15CheckBox.CheckedChanged += new System.EventHandler(this.OnMustEnableOrDisable);
            // 
            // g15Panel
            // 
            this.g15Panel.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            this.g15Panel.Controls.Add(this.cbG15ShowEVETime);
            this.g15Panel.Controls.Add(this.cbG15ShowTime);
            this.g15Panel.Controls.Add(this.panelCycleQueueInfo);
            this.g15Panel.Controls.Add(this.panelCycleCharInfo);
            this.g15Panel.Location = new System.Drawing.Point(6, 125);
            this.g15Panel.Margin = new System.Windows.Forms.Padding(0);
            this.g15Panel.Name = "g15Panel";
            this.g15Panel.Size = new System.Drawing.Size(399, 112);
            this.g15Panel.TabIndex = 7;
            // 
            // cbG15ShowEVETime
            // 
            this.cbG15ShowEVETime.AutoSize = true;
            this.cbG15ShowEVETime.Location = new System.Drawing.Point(10, 59);
            this.cbG15ShowEVETime.Name = "cbG15ShowEVETime";
            this.cbG15ShowEVETime.Size = new System.Drawing.Size(103, 17);
            this.cbG15ShowEVETime.TabIndex = 9;
            this.cbG15ShowEVETime.Text = "Show EVE Time";
            this.cbG15ShowEVETime.UseVisualStyleBackColor = true;
            // 
            // cbG15ShowTime
            // 
            this.cbG15ShowTime.AutoSize = true;
            this.cbG15ShowTime.Location = new System.Drawing.Point(114, 59);
            this.cbG15ShowTime.Name = "cbG15ShowTime";
            this.cbG15ShowTime.Size = new System.Drawing.Size(116, 17);
            this.cbG15ShowTime.TabIndex = 8;
            this.cbG15ShowTime.Text = "Show System Time";
            this.cbG15ShowTime.UseVisualStyleBackColor = true;
            // 
            // panelCycleQueueInfo
            // 
            this.panelCycleQueueInfo.AutoSize = true;
            this.panelCycleQueueInfo.Controls.Add(this.cbG15CycleTimes);
            this.panelCycleQueueInfo.Controls.Add(this.ACycleTimesInterval);
            this.panelCycleQueueInfo.Controls.Add(lblCycleTrainingSeconds);
            this.panelCycleQueueInfo.Location = new System.Drawing.Point(7, 29);
            this.panelCycleQueueInfo.Name = "panelCycleQueueInfo";
            this.panelCycleQueueInfo.Size = new System.Drawing.Size(315, 28);
            this.panelCycleQueueInfo.TabIndex = 7;
            // 
            // cbG15CycleTimes
            // 
            this.cbG15CycleTimes.AutoSize = true;
            this.cbG15CycleTimes.Location = new System.Drawing.Point(3, 5);
            this.cbG15CycleTimes.Margin = new System.Windows.Forms.Padding(3, 5, 0, 3);
            this.cbG15CycleTimes.Name = "cbG15CycleTimes";
            this.cbG15CycleTimes.Size = new System.Drawing.Size(212, 17);
            this.cbG15CycleTimes.TabIndex = 7;
            this.cbG15CycleTimes.Text = "Cycle Characters Skill Queue info every";
            this.cbG15CycleTimes.UseVisualStyleBackColor = true;
            this.cbG15CycleTimes.CheckedChanged += new System.EventHandler(this.OnMustEnableOrDisable);
            // 
            // ACycleTimesInterval
            // 
            this.ACycleTimesInterval.AutoSize = true;
            this.ACycleTimesInterval.Location = new System.Drawing.Point(221, 4);
            this.ACycleTimesInterval.Margin = new System.Windows.Forms.Padding(0, 3, 0, 3);
            this.ACycleTimesInterval.Maximum = new decimal(new int[] {
            120,
            0,
            0,
            0});
            this.ACycleTimesInterval.Minimum = new decimal(new int[] {
            1,
            0,
            0,
            0});
            this.ACycleTimesInterval.Name = "ACycleTimesInterval";
            this.ACycleTimesInterval.Size = new System.Drawing.Size(45, 21);
            this.ACycleTimesInterval.TabIndex = 8;
            this.ACycleTimesInterval.Value = new decimal(new int[] {
            10,
            0,
            0,
            0});
            // 
            // panelCycleCharInfo
            // 
            this.panelCycleCharInfo.AutoSize = true;
            this.panelCycleCharInfo.Controls.Add(this.cbG15ACycle);
            this.panelCycleCharInfo.Controls.Add(this.ACycleInterval);
            this.panelCycleCharInfo.Controls.Add(lblG15CycleCharSeconds);
            this.panelCycleCharInfo.Location = new System.Drawing.Point(7, 3);
            this.panelCycleCharInfo.Name = "panelCycleCharInfo";
            this.panelCycleCharInfo.Size = new System.Drawing.Size(236, 28);
            this.panelCycleCharInfo.TabIndex = 6;
            // 
            // cbG15ACycle
            // 
            this.cbG15ACycle.AutoSize = true;
            this.cbG15ACycle.Location = new System.Drawing.Point(3, 5);
            this.cbG15ACycle.Margin = new System.Windows.Forms.Padding(3, 5, 0, 3);
            this.cbG15ACycle.Name = "cbG15ACycle";
            this.cbG15ACycle.Size = new System.Drawing.Size(135, 17);
            this.cbG15ACycle.TabIndex = 4;
            this.cbG15ACycle.Text = "Cycle Characters every";
            this.cbG15ACycle.UseVisualStyleBackColor = true;
            this.cbG15ACycle.CheckedChanged += new System.EventHandler(this.OnMustEnableOrDisable);
            // 
            // ACycleInterval
            // 
            this.ACycleInterval.AutoSize = true;
            this.ACycleInterval.Location = new System.Drawing.Point(142, 4);
            this.ACycleInterval.Margin = new System.Windows.Forms.Padding(0, 3, 0, 3);
            this.ACycleInterval.Maximum = new decimal(new int[] {
            120,
            0,
            0,
            0});
            this.ACycleInterval.Minimum = new decimal(new int[] {
            1,
            0,
            0,
            0});
            this.ACycleInterval.Name = "ACycleInterval";
            this.ACycleInterval.Size = new System.Drawing.Size(45, 21);
            this.ACycleInterval.TabIndex = 5;
            this.ACycleInterval.Value = new decimal(new int[] {
            20,
            0,
            0,
            0});
            this.ACycleInterval.ValueChanged += new System.EventHandler(this.ACycleInterval_ValueChanged);
            // 
            // igbServerPage
            // 
            this.igbServerPage.Controls.Add(this.igbCheckBox);
            this.igbServerPage.Controls.Add(lblIgbServerPage);
            this.igbServerPage.Controls.Add(this.igbFlowPanel);
            this.igbServerPage.Dock = System.Windows.Forms.DockStyle.Fill;
            this.igbServerPage.Location = new System.Drawing.Point(5, 5);
            this.igbServerPage.Name = "igbServerPage";
            this.igbServerPage.Size = new System.Drawing.Size(435, 426);
            this.igbServerPage.TabIndex = 14;
            this.igbServerPage.Text = "igbServerPage";
            this.igbServerPage.Visible = false;
            // 
            // igbCheckBox
            // 
            this.igbCheckBox.AutoSize = true;
            this.igbCheckBox.Location = new System.Drawing.Point(7, 115);
            this.igbCheckBox.Name = "igbCheckBox";
            this.igbCheckBox.Size = new System.Drawing.Size(121, 17);
            this.igbCheckBox.TabIndex = 3;
            this.igbCheckBox.Text = "Run IGB Mini-server";
            this.igbCheckBox.UseVisualStyleBackColor = true;
            this.igbCheckBox.CheckedChanged += new System.EventHandler(this.OnMustEnableOrDisable);
            // 
            // igbFlowPanel
            // 
            this.igbFlowPanel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.igbFlowPanel.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            this.igbFlowPanel.Controls.Add(this.flowLayoutPanel27);
            this.igbFlowPanel.Controls.Add(flowLayoutPanel28);
            this.igbFlowPanel.Controls.Add(this.cbIGBPublic);
            this.igbFlowPanel.FlowDirection = System.Windows.Forms.FlowDirection.TopDown;
            this.igbFlowPanel.Location = new System.Drawing.Point(7, 138);
            this.igbFlowPanel.Name = "igbFlowPanel";
            this.igbFlowPanel.Padding = new System.Windows.Forms.Padding(9, 0, 9, 0);
            this.igbFlowPanel.Size = new System.Drawing.Size(413, 95);
            this.igbFlowPanel.TabIndex = 4;
            // 
            // flowLayoutPanel27
            // 
            this.flowLayoutPanel27.Controls.Add(lblIGBPort);
            this.flowLayoutPanel27.Controls.Add(this.igbPortTextBox);
            this.flowLayoutPanel27.Location = new System.Drawing.Point(12, 3);
            this.flowLayoutPanel27.Name = "flowLayoutPanel27";
            this.flowLayoutPanel27.Size = new System.Drawing.Size(125, 28);
            this.flowLayoutPanel27.TabIndex = 7;
            // 
            // igbPortTextBox
            // 
            this.igbPortTextBox.Location = new System.Drawing.Point(59, 3);
            this.igbPortTextBox.MaxLength = 5;
            this.igbPortTextBox.Name = "igbPortTextBox";
            this.igbPortTextBox.Size = new System.Drawing.Size(35, 21);
            this.igbPortTextBox.TabIndex = 8;
            this.igbPortTextBox.Text = "80";
            this.igbPortTextBox.TextChanged += new System.EventHandler(this.igbPortTextBox_TextChanged);
            this.igbPortTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.igbPortTextBox_Validating);
            // 
            // cbIGBPublic
            // 
            this.cbIGBPublic.AutoSize = true;
            this.cbIGBPublic.Location = new System.Drawing.Point(12, 65);
            this.cbIGBPublic.Name = "cbIGBPublic";
            this.cbIGBPublic.Size = new System.Drawing.Size(165, 17);
            this.cbIGBPublic.TabIndex = 4;
            this.cbIGBPublic.Text = "Make IGB Mini-server public?";
            this.cbIGBPublic.UseVisualStyleBackColor = true;
            // 
            // iconsPage
            // 
            this.iconsPage.Controls.Add(label1);
            this.iconsPage.Controls.Add(gbSkillBrowserIconSet);
            this.iconsPage.Dock = System.Windows.Forms.DockStyle.Fill;
            this.iconsPage.Location = new System.Drawing.Point(5, 5);
            this.iconsPage.Name = "iconsPage";
            this.iconsPage.Size = new System.Drawing.Size(435, 426);
            this.iconsPage.TabIndex = 16;
            this.iconsPage.Text = "iconsPage";
            // 
            // messagesPage
            // 
            this.messagesPage.Controls.Add(this.gbMessageBox);
            this.messagesPage.Controls.Add(label2);
            this.messagesPage.Controls.Add(this.ObsoleteEntryRemovalGroupBox);
            this.messagesPage.Dock = System.Windows.Forms.DockStyle.Fill;
            this.messagesPage.Location = new System.Drawing.Point(5, 5);
            this.messagesPage.Name = "messagesPage";
            this.messagesPage.Size = new System.Drawing.Size(435, 426);
            this.messagesPage.TabIndex = 17;
            this.messagesPage.Text = "messagesPage";
            // 
            // gbMessageBox
            // 
            this.gbMessageBox.Controls.Add(this.lblPrioritesConflict);
            this.gbMessageBox.Controls.Add(this.btnPrioritiesReset);
            this.gbMessageBox.Location = new System.Drawing.Point(5, 314);
            this.gbMessageBox.Name = "gbMessageBox";
            this.gbMessageBox.Size = new System.Drawing.Size(424, 58);
            this.gbMessageBox.TabIndex = 25;
            this.gbMessageBox.TabStop = false;
            this.gbMessageBox.Text = "Pop-up Messages";
            // 
            // lblPrioritesConflict
            // 
            this.lblPrioritesConflict.AutoSize = true;
            this.lblPrioritesConflict.Location = new System.Drawing.Point(20, 25);
            this.lblPrioritesConflict.Name = "lblPrioritesConflict";
            this.lblPrioritesConflict.Size = new System.Drawing.Size(87, 13);
            this.lblPrioritesConflict.TabIndex = 1;
            this.lblPrioritesConflict.Text = "Priorities Conflict";
            // 
            // btnPrioritiesReset
            // 
            this.btnPrioritiesReset.Location = new System.Drawing.Point(332, 20);
            this.btnPrioritiesReset.Name = "btnPrioritiesReset";
            this.btnPrioritiesReset.Size = new System.Drawing.Size(75, 23);
            this.btnPrioritiesReset.TabIndex = 0;
            this.btnPrioritiesReset.Text = "Reset";
            this.btnPrioritiesReset.UseVisualStyleBackColor = true;
            this.btnPrioritiesReset.Click += new System.EventHandler(this.btnPrioritiesReset_Click);
            // 
            // ObsoleteEntryRemovalGroupBox
            // 
            this.ObsoleteEntryRemovalGroupBox.Controls.Add(this.RemoveAllLabel);
            this.ObsoleteEntryRemovalGroupBox.Controls.Add(this.AlwaysAskLabel);
            this.ObsoleteEntryRemovalGroupBox.Controls.Add(this.RemoveConfirmedLabel);
            this.ObsoleteEntryRemovalGroupBox.Controls.Add(this.alwaysAskRadioButton);
            this.ObsoleteEntryRemovalGroupBox.Controls.Add(this.removeAllRadioButton);
            this.ObsoleteEntryRemovalGroupBox.Controls.Add(this.removeConfirmedRadioButton);
            this.ObsoleteEntryRemovalGroupBox.Location = new System.Drawing.Point(5, 120);
            this.ObsoleteEntryRemovalGroupBox.Name = "ObsoleteEntryRemovalGroupBox";
            this.ObsoleteEntryRemovalGroupBox.Size = new System.Drawing.Size(425, 187);
            this.ObsoleteEntryRemovalGroupBox.TabIndex = 23;
            this.ObsoleteEntryRemovalGroupBox.TabStop = false;
            this.ObsoleteEntryRemovalGroupBox.Text = "Obsolete Plan Entry Removal";
            // 
            // RemoveAllLabel
            // 
            this.RemoveAllLabel.Location = new System.Drawing.Point(24, 144);
            this.RemoveAllLabel.Name = "RemoveAllLabel";
            this.RemoveAllLabel.Size = new System.Drawing.Size(394, 27);
            this.RemoveAllLabel.TabIndex = 5;
            this.RemoveAllLabel.Text = "If EVEMon believes a skill level has been completed, whether it has been confirme" +
                "d by the API or not it will be removed when the plan is opened.";
            // 
            // AlwaysAskLabel
            // 
            this.AlwaysAskLabel.Location = new System.Drawing.Point(24, 91);
            this.AlwaysAskLabel.Name = "AlwaysAskLabel";
            this.AlwaysAskLabel.Size = new System.Drawing.Size(394, 27);
            this.AlwaysAskLabel.TabIndex = 4;
            this.AlwaysAskLabel.Text = "Always display the \"Obsolete Entries\" link at the bottom of the skill planner bef" +
                "ore removing entries.";
            // 
            // RemoveConfirmedLabel
            // 
            this.RemoveConfirmedLabel.Location = new System.Drawing.Point(24, 39);
            this.RemoveConfirmedLabel.Name = "RemoveConfirmedLabel";
            this.RemoveConfirmedLabel.Size = new System.Drawing.Size(394, 27);
            this.RemoveConfirmedLabel.TabIndex = 3;
            this.RemoveConfirmedLabel.Text = "Once the API has confirmed a skill level has completed it is removed the next tim" +
                "e a plan is opened. This is the default behaviour.";
            // 
            // alwaysAskRadioButton
            // 
            this.alwaysAskRadioButton.AutoSize = true;
            this.alwaysAskRadioButton.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            this.alwaysAskRadioButton.Location = new System.Drawing.Point(7, 73);
            this.alwaysAskRadioButton.Name = "alwaysAskRadioButton";
            this.alwaysAskRadioButton.Size = new System.Drawing.Size(88, 17);
            this.alwaysAskRadioButton.TabIndex = 2;
            this.alwaysAskRadioButton.TabStop = true;
            this.alwaysAskRadioButton.Text = "Always ask";
            this.alwaysAskRadioButton.UseVisualStyleBackColor = true;
            // 
            // removeAllRadioButton
            // 
            this.removeAllRadioButton.AutoSize = true;
            this.removeAllRadioButton.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            this.removeAllRadioButton.Location = new System.Drawing.Point(7, 126);
            this.removeAllRadioButton.Name = "removeAllRadioButton";
            this.removeAllRadioButton.Size = new System.Drawing.Size(245, 17);
            this.removeAllRadioButton.TabIndex = 1;
            this.removeAllRadioButton.TabStop = true;
            this.removeAllRadioButton.Text = "Remove entry once training completes";
            this.removeAllRadioButton.UseVisualStyleBackColor = true;
            // 
            // removeConfirmedRadioButton
            // 
            this.removeConfirmedRadioButton.AutoSize = true;
            this.removeConfirmedRadioButton.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            this.removeConfirmedRadioButton.Location = new System.Drawing.Point(7, 21);
            this.removeConfirmedRadioButton.Name = "removeConfirmedRadioButton";
            this.removeConfirmedRadioButton.Size = new System.Drawing.Size(264, 17);
            this.removeConfirmedRadioButton.TabIndex = 0;
            this.removeConfirmedRadioButton.TabStop = true;
            this.removeConfirmedRadioButton.Text = "Remove confirmed entry (Recommended)";
            this.removeConfirmedRadioButton.UseVisualStyleBackColor = true;
            // 
            // battleClinicServicePage
            // 
            this.battleClinicServicePage.Controls.Add(this.settingsFileStorageGroupBox);
            this.battleClinicServicePage.Controls.Add(this.BattleClinicLinkLabel);
            this.battleClinicServicePage.Controls.Add(this.bcCredentialsGroupBox);
            this.battleClinicServicePage.Dock = System.Windows.Forms.DockStyle.Fill;
            this.battleClinicServicePage.Location = new System.Drawing.Point(5, 5);
            this.battleClinicServicePage.Name = "battleClinicServicePage";
            this.battleClinicServicePage.Size = new System.Drawing.Size(435, 426);
            this.battleClinicServicePage.TabIndex = 18;
            this.battleClinicServicePage.Text = "battleClinicServicePage";
            // 
            // settingsFileStorageGroupBox
            // 
            this.settingsFileStorageGroupBox.Controls.Add(this.settingsFileStorageControl);
            this.settingsFileStorageGroupBox.Location = new System.Drawing.Point(6, 282);
            this.settingsFileStorageGroupBox.Name = "settingsFileStorageGroupBox";
            this.settingsFileStorageGroupBox.Size = new System.Drawing.Size(422, 127);
            this.settingsFileStorageGroupBox.TabIndex = 3;
            this.settingsFileStorageGroupBox.TabStop = false;
            this.settingsFileStorageGroupBox.Text = "Settings File Storage";
            // 
            // settingsFileStorageControl
            // 
            this.settingsFileStorageControl.Dock = System.Windows.Forms.DockStyle.Fill;
            this.settingsFileStorageControl.Font = new System.Drawing.Font("Tahoma", 8.25F);
            this.settingsFileStorageControl.Location = new System.Drawing.Point(3, 17);
            this.settingsFileStorageControl.Name = "settingsFileStorageControl";
            this.settingsFileStorageControl.Size = new System.Drawing.Size(416, 107);
            this.settingsFileStorageControl.TabIndex = 0;
            // 
            // BattleClinicLinkLabel
            // 
            this.BattleClinicLinkLabel.ForeColor = System.Drawing.SystemColors.MenuHighlight;
            this.BattleClinicLinkLabel.LinkArea = new System.Windows.Forms.LinkArea(228, 12);
            this.BattleClinicLinkLabel.Location = new System.Drawing.Point(6, 18);
            this.BattleClinicLinkLabel.Name = "BattleClinicLinkLabel";
            this.BattleClinicLinkLabel.Size = new System.Drawing.Size(419, 45);
            this.BattleClinicLinkLabel.TabIndex = 2;
            this.BattleClinicLinkLabel.TabStop = true;
            this.BattleClinicLinkLabel.Text = resources.GetString("BattleClinicLinkLabel.Text");
            this.BattleClinicLinkLabel.UseCompatibleTextRendering = true;
            this.BattleClinicLinkLabel.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.BattleClinicLinkLabel_LinkClicked);
            // 
            // bcCredentialsGroupBox
            // 
            this.bcCredentialsGroupBox.Controls.Add(this.battleClinicAPIControl);
            this.bcCredentialsGroupBox.Location = new System.Drawing.Point(6, 78);
            this.bcCredentialsGroupBox.Name = "bcCredentialsGroupBox";
            this.bcCredentialsGroupBox.Size = new System.Drawing.Size(422, 183);
            this.bcCredentialsGroupBox.TabIndex = 1;
            this.bcCredentialsGroupBox.TabStop = false;
            this.bcCredentialsGroupBox.Text = "BattleClinic API Credentials";
            // 
            // battleClinicAPIControl
            // 
            this.battleClinicAPIControl.Dock = System.Windows.Forms.DockStyle.Fill;
            this.battleClinicAPIControl.Font = new System.Drawing.Font("Tahoma", 8.25F);
            this.battleClinicAPIControl.Location = new System.Drawing.Point(3, 17);
            this.battleClinicAPIControl.Name = "battleClinicAPIControl";
            this.battleClinicAPIControl.Size = new System.Drawing.Size(416, 163);
            this.battleClinicAPIControl.TabIndex = 0;
            // 
            // SettingsForm
            // 
            this.AcceptButton = this.okButton;
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            this.BackColor = System.Drawing.SystemColors.Window;
            this.CancelButton = this.cancelButton;
            this.ClientSize = new System.Drawing.Size(644, 482);
            this.Controls.Add(this.multiPanel);
            this.Controls.Add(this.leftPanel);
            this.Controls.Add(bottomPanel);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.MinimumSize = new System.Drawing.Size(400, 400);
            this.Name = "SettingsForm";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "EVEMon Settings";
            this.Load += new System.EventHandler(this.SettingsForm_Load);
            bottomPanel.ResumeLayout(false);
            groupBox15.ResumeLayout(false);
            groupBox15.PerformLayout();
            groupBox7.ResumeLayout(false);
            groupBox7.PerformLayout();
            systemTrayIconGroupBox.ResumeLayout(false);
            systemTrayIconGroupBox.PerformLayout();
            flowLayoutPanel28.ResumeLayout(false);
            flowLayoutPanel28.PerformLayout();
            gbSkillBrowserIconSet.ResumeLayout(false);
            gbSkillBrowserIconSet.PerformLayout();
            this.tableLayoutPanel4.ResumeLayout(false);
            this.tableLayoutPanel1.ResumeLayout(false);
            this.tableLayoutPanel1.PerformLayout();
            this.flowLayoutPanel9.ResumeLayout(false);
            this.flowLayoutPanel9.PerformLayout();
            this.leftPanel.ResumeLayout(false);
            this.multiPanel.ResumeLayout(false);
            this.mainWindowPage.ResumeLayout(false);
            this.groupBox2.ResumeLayout(false);
            this.groupBox2.PerformLayout();
            this.overviewPanel.ResumeLayout(false);
            this.overviewPanel.PerformLayout();
            this.generalPage.ResumeLayout(false);
            this.generalPage.PerformLayout();
            this.skillPlannerPage.ResumeLayout(false);
            this.skillPlannerPage.PerformLayout();
            this.networkPage.ResumeLayout(false);
            this.ApiProxyGroupBox.ResumeLayout(false);
            this.ProxyServerGroupBox.ResumeLayout(false);
            this.ProxyServerGroupBox.PerformLayout();
            this.customProxyPanel.ResumeLayout(false);
            this.customProxyPanel.PerformLayout();
            this.emailNotificationsPage.ResumeLayout(false);
            this.emailNotificationsPage.PerformLayout();
            this.mailNotificationPanel.ResumeLayout(false);
            this.mailNotificationPanel.PerformLayout();
            this.tableLayoutPanel2.ResumeLayout(false);
            this.tableLayoutPanel2.PerformLayout();
            this.tlpEmailSettings.ResumeLayout(false);
            this.tlpEmailSettings.PerformLayout();
            this.tlpEmailAuthTable.ResumeLayout(false);
            this.tlpEmailAuthTable.PerformLayout();
            this.notificationsPage.ResumeLayout(false);
            this.notificationsPage.PerformLayout();
            this.trayIconPage.ResumeLayout(false);
            this.mainWindowBehaviourGroupBox.ResumeLayout(false);
            this.mainWindowBehaviourGroupBox.PerformLayout();
            this.trayIconPopupGroupBox.ResumeLayout(false);
            this.trayIconPopupGroupBox.PerformLayout();
            this.updatesPage.ResumeLayout(false);
            this.updatesPage.PerformLayout();
            this.groupBox1.ResumeLayout(false);
            this.schedulerUIPage.ResumeLayout(false);
            this.schedulerUIPage.PerformLayout();
            this.externalCalendarPage.ResumeLayout(false);
            this.externalCalendarPage.PerformLayout();
            this.externalCalendarPanel.ResumeLayout(false);
            this.externalCalendarPanel.PerformLayout();
            this.gbGoogle.ResumeLayout(false);
            this.gbGoogle.PerformLayout();
            this.g15Page.ResumeLayout(false);
            this.g15Page.PerformLayout();
            this.g15Panel.ResumeLayout(false);
            this.g15Panel.PerformLayout();
            this.panelCycleQueueInfo.ResumeLayout(false);
            this.panelCycleQueueInfo.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.ACycleTimesInterval)).EndInit();
            this.panelCycleCharInfo.ResumeLayout(false);
            this.panelCycleCharInfo.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.ACycleInterval)).EndInit();
            this.igbServerPage.ResumeLayout(false);
            this.igbServerPage.PerformLayout();
            this.igbFlowPanel.ResumeLayout(false);
            this.igbFlowPanel.PerformLayout();
            this.flowLayoutPanel27.ResumeLayout(false);
            this.flowLayoutPanel27.PerformLayout();
            this.iconsPage.ResumeLayout(false);
            this.messagesPage.ResumeLayout(false);
            this.gbMessageBox.ResumeLayout(false);
            this.gbMessageBox.PerformLayout();
            this.ObsoleteEntryRemovalGroupBox.ResumeLayout(false);
            this.ObsoleteEntryRemovalGroupBox.PerformLayout();
            this.battleClinicServicePage.ResumeLayout(false);
            this.settingsFileStorageGroupBox.ResumeLayout(false);
            this.bcCredentialsGroupBox.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()
 {
     this.components = new System.ComponentModel.Container();
     System.Windows.Forms.Panel           _upperPannel;
     System.Windows.Forms.FlowLayoutPanel flowLayoutPanel1;
     System.Windows.Forms.Label           _tallyField_LBL;
     System.Windows.Forms.Label           _title_LBL;
     this._tallyField_CmbB = new System.Windows.Forms.ComboBox();
     this._BS_TallyClass   = new System.Windows.Forms.BindingSource(this.components);
     this._lowerPanel      = new System.Windows.Forms.FlowLayoutPanel();
     _upperPannel          = new System.Windows.Forms.Panel();
     flowLayoutPanel1      = new System.Windows.Forms.FlowLayoutPanel();
     _tallyField_LBL       = new System.Windows.Forms.Label();
     _title_LBL            = new System.Windows.Forms.Label();
     _upperPannel.SuspendLayout();
     flowLayoutPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this._BS_TallyClass)).BeginInit();
     this.SuspendLayout();
     //
     // _upperPannel
     //
     _upperPannel.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     _upperPannel.Controls.Add(flowLayoutPanel1);
     _upperPannel.Controls.Add(_title_LBL);
     _upperPannel.Dock     = System.Windows.Forms.DockStyle.Top;
     _upperPannel.Location = new System.Drawing.Point(0, 0);
     _upperPannel.Name     = "_upperPannel";
     _upperPannel.Size     = new System.Drawing.Size(313, 71);
     _upperPannel.TabIndex = 0;
     //
     // flowLayoutPanel1
     //
     flowLayoutPanel1.AutoSize     = true;
     flowLayoutPanel1.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     flowLayoutPanel1.Controls.Add(_tallyField_LBL);
     flowLayoutPanel1.Controls.Add(this._tallyField_CmbB);
     flowLayoutPanel1.Dock     = System.Windows.Forms.DockStyle.Top;
     flowLayoutPanel1.Location = new System.Drawing.Point(0, 25);
     flowLayoutPanel1.Name     = "flowLayoutPanel1";
     flowLayoutPanel1.Size     = new System.Drawing.Size(313, 27);
     flowLayoutPanel1.TabIndex = 0;
     //
     // _tallyField_LBL
     //
     _tallyField_LBL.AutoSize  = true;
     _tallyField_LBL.Dock      = System.Windows.Forms.DockStyle.Left;
     _tallyField_LBL.Location  = new System.Drawing.Point(3, 0);
     _tallyField_LBL.Name      = "_tallyField_LBL";
     _tallyField_LBL.Size      = new System.Drawing.Size(57, 27);
     _tallyField_LBL.TabIndex  = 1;
     _tallyField_LBL.Text      = "Tally Field";
     _tallyField_LBL.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // _tallyField_CmbB
     //
     this._tallyField_CmbB.DataBindings.Add(new System.Windows.Forms.Binding("SelectedItem", this._BS_TallyClass, "Field", true));
     this._tallyField_CmbB.FlatStyle         = System.Windows.Forms.FlatStyle.Flat;
     this._tallyField_CmbB.FormattingEnabled = true;
     this._tallyField_CmbB.Location          = new System.Drawing.Point(66, 3);
     this._tallyField_CmbB.Name     = "_tallyField_CmbB";
     this._tallyField_CmbB.Size     = new System.Drawing.Size(121, 21);
     this._tallyField_CmbB.TabIndex = 2;
     //
     // _BS_TallyClass
     //
     this._BS_TallyClass.DataSource = typeof(CruiseManager.Core.CruiseCustomize.FixCNTTallyClass);
     //
     // _title_LBL
     //
     _title_LBL.AutoSize = true;
     _title_LBL.Dock     = System.Windows.Forms.DockStyle.Top;
     _title_LBL.Font     = new System.Drawing.Font("Segoe UI", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     _title_LBL.Location = new System.Drawing.Point(0, 0);
     _title_LBL.Name     = "_title_LBL";
     _title_LBL.Size     = new System.Drawing.Size(168, 25);
     _title_LBL.TabIndex = 0;
     _title_LBL.Text     = "FixCNT Tally Setup";
     //
     // _lowerPanel
     //
     this._lowerPanel.Dock          = System.Windows.Forms.DockStyle.Fill;
     this._lowerPanel.FlowDirection = System.Windows.Forms.FlowDirection.TopDown;
     this._lowerPanel.Location      = new System.Drawing.Point(0, 71);
     this._lowerPanel.Name          = "_lowerPanel";
     this._lowerPanel.Size          = new System.Drawing.Size(313, 216);
     this._lowerPanel.TabIndex      = 1;
     //
     // FixCNTTallyEditPanel
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this._lowerPanel);
     this.Controls.Add(_upperPannel);
     this.Font = global::CruiseManager.Properties.Settings.Default.AppFont;
     this.Name = "FixCNTTallyEditPanel";
     this.Size = new System.Drawing.Size(313, 287);
     _upperPannel.ResumeLayout(false);
     _upperPannel.PerformLayout();
     flowLayoutPanel1.ResumeLayout(false);
     flowLayoutPanel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this._BS_TallyClass)).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()
        {
            this.components = new System.ComponentModel.Container();
            System.Windows.Forms.Panel panel1;
            System.Windows.Forms.Panel panel2;
            System.Windows.Forms.FlowLayoutPanel flowLayoutPanel1;
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormVerify));
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
            this.btnCloseDialog = new System.Windows.Forms.Button();
            this.btnRestoreSelectedObjects = new System.Windows.Forms.Button();
            this.DeleteAllLostAndFoundTags = new System.Windows.Forms.Button();
            this.Remove = new System.Windows.Forms.Button();
            this.SaveObjects = new System.Windows.Forms.Button();
            this.label2 = new System.Windows.Forms.Label();
            this.label1 = new System.Windows.Forms.Label();
            this.ShowOnlyCommits = new System.Windows.Forms.CheckBox();
            this.NoReflogs = new System.Windows.Forms.CheckBox();
            this.FullCheck = new System.Windows.Forms.CheckBox();
            this.Unreachable = new System.Windows.Forms.CheckBox();
            this.mnuLostObjects = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.mnuLostObjectView = new System.Windows.Forms.ToolStripMenuItem();
            this.mnuLostObjectsCreateTag = new System.Windows.Forms.ToolStripMenuItem();
            this.mnuLostObjectsCreateBranch = new System.Windows.Forms.ToolStripMenuItem();
            this.Warnings = new System.Windows.Forms.DataGridView();
            this.columnIsLostObjectSelected = new System.Windows.Forms.DataGridViewCheckBoxColumn();
            this.columnDate = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.columnType = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.columnSubject = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.columnAuthor = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.columnHash = new System.Windows.Forms.DataGridViewTextBoxColumn();
            panel1 = new System.Windows.Forms.Panel();
            panel2 = new System.Windows.Forms.Panel();
            flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
            panel1.SuspendLayout();
            panel2.SuspendLayout();
            flowLayoutPanel1.SuspendLayout();
            this.mnuLostObjects.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.Warnings)).BeginInit();
            this.SuspendLayout();
            // 
            // panel1
            // 
            panel1.Controls.Add(this.btnCloseDialog);
            panel1.Controls.Add(this.btnRestoreSelectedObjects);
            panel1.Controls.Add(this.DeleteAllLostAndFoundTags);
            panel1.Controls.Add(this.Remove);
            panel1.Controls.Add(this.SaveObjects);
            panel1.Dock = System.Windows.Forms.DockStyle.Bottom;
            panel1.Location = new System.Drawing.Point(0, 514);
            panel1.Name = "panel1";
            panel1.Size = new System.Drawing.Size(859, 61);
            panel1.TabIndex = 1;
            // 
            // btnCloseDialog
            // 
            this.btnCloseDialog.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.btnCloseDialog.DialogResult = System.Windows.Forms.DialogResult.Cancel;
            this.btnCloseDialog.Location = new System.Drawing.Point(647, 33);
            this.btnCloseDialog.Name = "btnCloseDialog";
            this.btnCloseDialog.Size = new System.Drawing.Size(208, 25);
            this.btnCloseDialog.TabIndex = 9;
            this.btnCloseDialog.Text = "Cancel";
            this.btnCloseDialog.UseVisualStyleBackColor = true;
            // 
            // btnRestoreSelectedObjects
            // 
            this.btnRestoreSelectedObjects.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.btnRestoreSelectedObjects.Location = new System.Drawing.Point(298, 21);
            this.btnRestoreSelectedObjects.Name = "btnRestoreSelectedObjects";
            this.btnRestoreSelectedObjects.Size = new System.Drawing.Size(317, 25);
            this.btnRestoreSelectedObjects.TabIndex = 5;
            this.btnRestoreSelectedObjects.Text = "Recover selected objects";
            this.btnRestoreSelectedObjects.UseVisualStyleBackColor = true;
            this.btnRestoreSelectedObjects.Click += new System.EventHandler(this.btnRestoreSelectedObjects_Click);
            // 
            // DeleteAllLostAndFoundTags
            // 
            this.DeleteAllLostAndFoundTags.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.DeleteAllLostAndFoundTags.Location = new System.Drawing.Point(3, 33);
            this.DeleteAllLostAndFoundTags.Name = "DeleteAllLostAndFoundTags";
            this.DeleteAllLostAndFoundTags.Size = new System.Drawing.Size(252, 25);
            this.DeleteAllLostAndFoundTags.TabIndex = 7;
            this.DeleteAllLostAndFoundTags.Text = "Delete all LOST_AND_FOUND tags";
            this.DeleteAllLostAndFoundTags.UseVisualStyleBackColor = true;
            this.DeleteAllLostAndFoundTags.Click += new System.EventHandler(this.DeleteAllLostAndFoundTagsClick);
            // 
            // Remove
            // 
            this.Remove.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.Remove.Location = new System.Drawing.Point(3, 6);
            this.Remove.Name = "Remove";
            this.Remove.Size = new System.Drawing.Size(252, 25);
            this.Remove.TabIndex = 6;
            this.Remove.Text = "Remove all dangling objects";
            this.Remove.UseVisualStyleBackColor = true;
            this.Remove.Click += new System.EventHandler(this.RemoveClick);
            // 
            // SaveObjects
            // 
            this.SaveObjects.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.SaveObjects.Location = new System.Drawing.Point(647, 6);
            this.SaveObjects.Name = "SaveObjects";
            this.SaveObjects.Size = new System.Drawing.Size(208, 25);
            this.SaveObjects.TabIndex = 8;
            this.SaveObjects.Text = "Save objects to .git/lost-found";
            this.SaveObjects.UseVisualStyleBackColor = true;
            this.SaveObjects.Click += new System.EventHandler(this.SaveObjectsClick);
            // 
            // panel2
            // 
            panel2.AutoSize = true;
            panel2.Controls.Add(flowLayoutPanel1);
            panel2.Controls.Add(this.ShowOnlyCommits);
            panel2.Controls.Add(this.NoReflogs);
            panel2.Controls.Add(this.FullCheck);
            panel2.Controls.Add(this.Unreachable);
            panel2.Dock = System.Windows.Forms.DockStyle.Top;
            panel2.Location = new System.Drawing.Point(0, 0);
            panel2.Name = "panel2";
            panel2.Size = new System.Drawing.Size(859, 138);
            panel2.TabIndex = 4;
            // 
            // flowLayoutPanel1
            // 
            flowLayoutPanel1.AutoSize = true;
            flowLayoutPanel1.Controls.Add(this.label2);
            flowLayoutPanel1.Controls.Add(this.label1);
            flowLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Left;
            flowLayoutPanel1.Location = new System.Drawing.Point(0, 0);
            flowLayoutPanel1.Name = "flowLayoutPanel1";
            flowLayoutPanel1.Padding = new System.Windows.Forms.Padding(5);
            flowLayoutPanel1.Size = new System.Drawing.Size(351, 138);
            flowLayoutPanel1.TabIndex = 13;
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Location = new System.Drawing.Point(8, 5);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(335, 105);
            this.label2.TabIndex = 15;
            this.label2.Text = resources.GetString("label2.Text");
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(8, 115);
            this.label1.Margin = new System.Windows.Forms.Padding(3, 5, 3, 0);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(200, 15);
            this.label1.TabIndex = 16;
            this.label1.Text = "Double-click on a row for quick view";
            // 
            // ShowOnlyCommits
            // 
            this.ShowOnlyCommits.AutoSize = true;
            this.ShowOnlyCommits.Checked = true;
            this.ShowOnlyCommits.CheckState = System.Windows.Forms.CheckState.Checked;
            this.ShowOnlyCommits.Location = new System.Drawing.Point(430, 9);
            this.ShowOnlyCommits.Name = "ShowOnlyCommits";
            this.ShowOnlyCommits.Size = new System.Drawing.Size(131, 19);
            this.ShowOnlyCommits.TabIndex = 0;
            this.ShowOnlyCommits.Text = "Show only commits";
            this.ShowOnlyCommits.UseVisualStyleBackColor = true;
            this.ShowOnlyCommits.CheckedChanged += new System.EventHandler(this.ShowOnlyCommitsCheckedChanged);
            // 
            // NoReflogs
            // 
            this.NoReflogs.AutoSize = true;
            this.NoReflogs.Checked = true;
            this.NoReflogs.CheckState = System.Windows.Forms.CheckState.Checked;
            this.NoReflogs.Location = new System.Drawing.Point(430, 35);
            this.NoReflogs.Name = "NoReflogs";
            this.NoReflogs.Size = new System.Drawing.Size(375, 34);
            this.NoReflogs.TabIndex = 1;
            this.NoReflogs.Text = "Do not consider commits that are referenced only by an entry in a \r\nreflog to be " +
    "reachable.";
            this.NoReflogs.UseVisualStyleBackColor = true;
            this.NoReflogs.CheckedChanged += new System.EventHandler(this.NoReflogsCheckedChanged);
            // 
            // FullCheck
            // 
            this.FullCheck.AutoSize = true;
            this.FullCheck.Location = new System.Drawing.Point(430, 101);
            this.FullCheck.Name = "FullCheck";
            this.FullCheck.Size = new System.Drawing.Size(397, 34);
            this.FullCheck.TabIndex = 3;
            this.FullCheck.Text = "Check not just objects in GIT_OBJECT_DIRECTORY ($GIT_DIR/objects), \r\nbut also the" +
    " ones found in alternate object pools.\r\n";
            this.FullCheck.UseVisualStyleBackColor = true;
            this.FullCheck.CheckedChanged += new System.EventHandler(this.FullCheckCheckedChanged);
            // 
            // Unreachable
            // 
            this.Unreachable.AutoSize = true;
            this.Unreachable.Location = new System.Drawing.Point(430, 68);
            this.Unreachable.Name = "Unreachable";
            this.Unreachable.Size = new System.Drawing.Size(429, 34);
            this.Unreachable.TabIndex = 2;
            this.Unreachable.Text = "Print out objects that exist but that aren\'t readable from any of the reference \r" +
    "\nnodes.\r\n";
            this.Unreachable.UseVisualStyleBackColor = true;
            this.Unreachable.CheckedChanged += new System.EventHandler(this.UnreachableCheckedChanged);
            // 
            // mnuLostObjects
            // 
            this.mnuLostObjects.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.mnuLostObjectView,
            this.mnuLostObjectsCreateTag,
            this.mnuLostObjectsCreateBranch});
            this.mnuLostObjects.Name = "mnuLostObjects";
            this.mnuLostObjects.Size = new System.Drawing.Size(190, 70);
            // 
            // mnuLostObjectView
            // 
            this.mnuLostObjectView.Name = "mnuLostObjectView";
            this.mnuLostObjectView.Size = new System.Drawing.Size(189, 22);
            this.mnuLostObjectView.Text = "View";
            this.mnuLostObjectView.Click += new System.EventHandler(this.mnuLostObjectView_Click);
            // 
            // mnuLostObjectsCreateTag
            // 
            this.mnuLostObjectsCreateTag.Name = "mnuLostObjectsCreateTag";
            this.mnuLostObjectsCreateTag.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.T)));
            this.mnuLostObjectsCreateTag.Size = new System.Drawing.Size(189, 22);
            this.mnuLostObjectsCreateTag.Text = "Create tag";
            this.mnuLostObjectsCreateTag.Click += new System.EventHandler(this.mnuLostObjectsCreateTag_Click);
            // 
            // mnuLostObjectsCreateBranch
            // 
            this.mnuLostObjectsCreateBranch.Name = "mnuLostObjectsCreateBranch";
            this.mnuLostObjectsCreateBranch.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.B)));
            this.mnuLostObjectsCreateBranch.Size = new System.Drawing.Size(189, 22);
            this.mnuLostObjectsCreateBranch.Text = "Create branch";
            this.mnuLostObjectsCreateBranch.Click += new System.EventHandler(this.mnuLostObjectsCreateBranch_Click);
            // 
            // Warnings
            // 
            this.Warnings.AllowUserToAddRows = false;
            this.Warnings.AllowUserToDeleteRows = false;
            this.Warnings.AllowUserToOrderColumns = true;
            this.Warnings.AllowUserToResizeRows = false;
            this.Warnings.AutoSizeRowsMode = System.Windows.Forms.DataGridViewAutoSizeRowsMode.AllCells;
            this.Warnings.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.Warnings.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
            this.columnIsLostObjectSelected,
            this.columnDate,
            this.columnType,
            this.columnSubject,
            this.columnAuthor,
            this.columnHash});
            this.Warnings.Dock = System.Windows.Forms.DockStyle.Fill;
            this.Warnings.EditMode = System.Windows.Forms.DataGridViewEditMode.EditOnEnter;
            this.Warnings.Location = new System.Drawing.Point(0, 138);
            this.Warnings.MultiSelect = false;
            this.Warnings.Name = "Warnings";
            this.Warnings.RowHeadersVisible = false;
            this.Warnings.RowTemplate.ContextMenuStrip = this.mnuLostObjects;
            this.Warnings.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
            this.Warnings.ShowEditingIcon = false;
            this.Warnings.Size = new System.Drawing.Size(859, 376);
            this.Warnings.TabIndex = 4;
            this.Warnings.CellMouseDoubleClick += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.Warnings_CellMouseDoubleClick);
            this.Warnings.CellMouseDown += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.Warnings_CellMouseDown);
            // 
            // columnIsLostObjectSelected
            // 
            this.columnIsLostObjectSelected.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
            this.columnIsLostObjectSelected.DataPropertyName = "IsSelected";
            this.columnIsLostObjectSelected.HeaderText = "";
            this.columnIsLostObjectSelected.MinimumWidth = 20;
            this.columnIsLostObjectSelected.Name = "columnIsLostObjectSelected";
            this.columnIsLostObjectSelected.Width = 20;
            // 
            // columnDate
            // 
            this.columnDate.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
            this.columnDate.DataPropertyName = "Date";
            this.columnDate.HeaderText = "Date";
            this.columnDate.Name = "columnDate";
            this.columnDate.ReadOnly = true;
            this.columnDate.Width = 56;
            // 
            // columnType
            // 
            this.columnType.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
            this.columnType.DataPropertyName = "RawType";
            this.columnType.HeaderText = "Type";
            this.columnType.Name = "columnType";
            this.columnType.ReadOnly = true;
            this.columnType.Width = 58;
            // 
            // columnSubject
            // 
            this.columnSubject.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
            this.columnSubject.DataPropertyName = "Subject";
            dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.columnSubject.DefaultCellStyle = dataGridViewCellStyle1;
            this.columnSubject.HeaderText = "Subject";
            this.columnSubject.Name = "columnSubject";
            this.columnSubject.ReadOnly = true;
            // 
            // columnAuthor
            // 
            this.columnAuthor.DataPropertyName = "Author";
            this.columnAuthor.HeaderText = "Author";
            this.columnAuthor.Name = "columnAuthor";
            this.columnAuthor.ReadOnly = true;
            this.columnAuthor.Width = 150;
            // 
            // columnHash
            // 
            this.columnHash.DataPropertyName = "Hash";
            this.columnHash.HeaderText = "Hash";
            this.columnHash.Name = "columnHash";
            this.columnHash.ReadOnly = true;
            this.columnHash.Width = 80;
            // 
            // FormVerify
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
            this.CancelButton = this.btnCloseDialog;
            this.ClientSize = new System.Drawing.Size(859, 575);
            this.Controls.Add(this.Warnings);
            this.Controls.Add(panel2);
            this.Controls.Add(panel1);
            this.MinimizeBox = false;
            this.Name = "FormVerify";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
            this.Text = "Verify database";
            this.Shown += new System.EventHandler(this.FormVerifyShown);
            panel1.ResumeLayout(false);
            panel2.ResumeLayout(false);
            panel2.PerformLayout();
            flowLayoutPanel1.ResumeLayout(false);
            flowLayoutPanel1.PerformLayout();
            this.mnuLostObjects.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.Warnings)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();

        }
Example #54
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.Panel                     panel1;
     System.Windows.Forms.Panel                     panel2;
     System.Windows.Forms.FlowLayoutPanel           flowLayoutPanel1;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormVerify));
     System.Windows.Forms.DataGridViewCellStyle     dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     this.btnCloseDialog            = new System.Windows.Forms.Button();
     this.btnRestoreSelectedObjects = new System.Windows.Forms.Button();
     this.DeleteAllLostAndFoundTags = new System.Windows.Forms.Button();
     this.Remove                     = new System.Windows.Forms.Button();
     this.SaveObjects                = new System.Windows.Forms.Button();
     this.label2                     = new System.Windows.Forms.Label();
     this.label1                     = new System.Windows.Forms.Label();
     this.ShowOnlyCommits            = new System.Windows.Forms.CheckBox();
     this.NoReflogs                  = new System.Windows.Forms.CheckBox();
     this.FullCheck                  = new System.Windows.Forms.CheckBox();
     this.Unreachable                = new System.Windows.Forms.CheckBox();
     this.mnuLostObjects             = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.mnuLostObjectView          = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuLostObjectsCreateTag    = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuLostObjectsCreateBranch = new System.Windows.Forms.ToolStripMenuItem();
     this.Warnings                   = new System.Windows.Forms.DataGridView();
     this.columnIsLostObjectSelected = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.columnDate                 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.columnType                 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.columnSubject              = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.columnAuthor               = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.columnHash                 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     panel1           = new System.Windows.Forms.Panel();
     panel2           = new System.Windows.Forms.Panel();
     flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
     panel1.SuspendLayout();
     panel2.SuspendLayout();
     flowLayoutPanel1.SuspendLayout();
     this.mnuLostObjects.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.Warnings)).BeginInit();
     this.SuspendLayout();
     //
     // panel1
     //
     panel1.Controls.Add(this.btnCloseDialog);
     panel1.Controls.Add(this.btnRestoreSelectedObjects);
     panel1.Controls.Add(this.DeleteAllLostAndFoundTags);
     panel1.Controls.Add(this.Remove);
     panel1.Controls.Add(this.SaveObjects);
     panel1.Dock     = System.Windows.Forms.DockStyle.Bottom;
     panel1.Location = new System.Drawing.Point(0, 514);
     panel1.Name     = "panel1";
     panel1.Size     = new System.Drawing.Size(859, 61);
     panel1.TabIndex = 1;
     //
     // btnCloseDialog
     //
     this.btnCloseDialog.Anchor                  = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnCloseDialog.DialogResult            = System.Windows.Forms.DialogResult.Cancel;
     this.btnCloseDialog.Location                = new System.Drawing.Point(647, 33);
     this.btnCloseDialog.Name                    = "btnCloseDialog";
     this.btnCloseDialog.Size                    = new System.Drawing.Size(208, 25);
     this.btnCloseDialog.TabIndex                = 9;
     this.btnCloseDialog.Text                    = "Cancel";
     this.btnCloseDialog.UseVisualStyleBackColor = true;
     //
     // btnRestoreSelectedObjects
     //
     this.btnRestoreSelectedObjects.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.btnRestoreSelectedObjects.Location = new System.Drawing.Point(298, 21);
     this.btnRestoreSelectedObjects.Name     = "btnRestoreSelectedObjects";
     this.btnRestoreSelectedObjects.Size     = new System.Drawing.Size(317, 25);
     this.btnRestoreSelectedObjects.TabIndex = 5;
     this.btnRestoreSelectedObjects.Text     = "Recover selected objects";
     this.btnRestoreSelectedObjects.UseVisualStyleBackColor = true;
     this.btnRestoreSelectedObjects.Click += new System.EventHandler(this.btnRestoreSelectedObjects_Click);
     //
     // DeleteAllLostAndFoundTags
     //
     this.DeleteAllLostAndFoundTags.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.DeleteAllLostAndFoundTags.Location = new System.Drawing.Point(3, 33);
     this.DeleteAllLostAndFoundTags.Name     = "DeleteAllLostAndFoundTags";
     this.DeleteAllLostAndFoundTags.Size     = new System.Drawing.Size(252, 25);
     this.DeleteAllLostAndFoundTags.TabIndex = 7;
     this.DeleteAllLostAndFoundTags.Text     = "Delete all LOST_AND_FOUND tags";
     this.DeleteAllLostAndFoundTags.UseVisualStyleBackColor = true;
     this.DeleteAllLostAndFoundTags.Click += new System.EventHandler(this.DeleteAllLostAndFoundTagsClick);
     //
     // Remove
     //
     this.Remove.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.Remove.Location = new System.Drawing.Point(3, 6);
     this.Remove.Name     = "Remove";
     this.Remove.Size     = new System.Drawing.Size(252, 25);
     this.Remove.TabIndex = 6;
     this.Remove.Text     = "Remove all dangling objects";
     this.Remove.UseVisualStyleBackColor = true;
     this.Remove.Click += new System.EventHandler(this.RemoveClick);
     //
     // SaveObjects
     //
     this.SaveObjects.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.SaveObjects.Location = new System.Drawing.Point(647, 6);
     this.SaveObjects.Name     = "SaveObjects";
     this.SaveObjects.Size     = new System.Drawing.Size(208, 25);
     this.SaveObjects.TabIndex = 8;
     this.SaveObjects.Text     = "Save objects to .git/lost-found";
     this.SaveObjects.UseVisualStyleBackColor = true;
     this.SaveObjects.Click += new System.EventHandler(this.SaveObjectsClick);
     //
     // panel2
     //
     panel2.AutoSize = true;
     panel2.Controls.Add(flowLayoutPanel1);
     panel2.Controls.Add(this.ShowOnlyCommits);
     panel2.Controls.Add(this.NoReflogs);
     panel2.Controls.Add(this.FullCheck);
     panel2.Controls.Add(this.Unreachable);
     panel2.Dock     = System.Windows.Forms.DockStyle.Top;
     panel2.Location = new System.Drawing.Point(0, 0);
     panel2.Name     = "panel2";
     panel2.Size     = new System.Drawing.Size(859, 138);
     panel2.TabIndex = 4;
     //
     // flowLayoutPanel1
     //
     flowLayoutPanel1.AutoSize = true;
     flowLayoutPanel1.Controls.Add(this.label2);
     flowLayoutPanel1.Controls.Add(this.label1);
     flowLayoutPanel1.Dock     = System.Windows.Forms.DockStyle.Left;
     flowLayoutPanel1.Location = new System.Drawing.Point(0, 0);
     flowLayoutPanel1.Name     = "flowLayoutPanel1";
     flowLayoutPanel1.Padding  = new System.Windows.Forms.Padding(5);
     flowLayoutPanel1.Size     = new System.Drawing.Size(351, 138);
     flowLayoutPanel1.TabIndex = 13;
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(8, 5);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(335, 105);
     this.label2.TabIndex = 15;
     this.label2.Text     = resources.GetString("label2.Text");
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(8, 115);
     this.label1.Margin   = new System.Windows.Forms.Padding(3, 5, 3, 0);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(200, 15);
     this.label1.TabIndex = 16;
     this.label1.Text     = "Double-click on a row for quick view";
     //
     // ShowOnlyCommits
     //
     this.ShowOnlyCommits.AutoSize   = true;
     this.ShowOnlyCommits.Checked    = true;
     this.ShowOnlyCommits.CheckState = System.Windows.Forms.CheckState.Checked;
     this.ShowOnlyCommits.Location   = new System.Drawing.Point(430, 9);
     this.ShowOnlyCommits.Name       = "ShowOnlyCommits";
     this.ShowOnlyCommits.Size       = new System.Drawing.Size(131, 19);
     this.ShowOnlyCommits.TabIndex   = 0;
     this.ShowOnlyCommits.Text       = "Show only commits";
     this.ShowOnlyCommits.UseVisualStyleBackColor = true;
     this.ShowOnlyCommits.CheckedChanged         += new System.EventHandler(this.ShowOnlyCommitsCheckedChanged);
     //
     // NoReflogs
     //
     this.NoReflogs.AutoSize   = true;
     this.NoReflogs.Checked    = true;
     this.NoReflogs.CheckState = System.Windows.Forms.CheckState.Checked;
     this.NoReflogs.Location   = new System.Drawing.Point(430, 35);
     this.NoReflogs.Name       = "NoReflogs";
     this.NoReflogs.Size       = new System.Drawing.Size(375, 34);
     this.NoReflogs.TabIndex   = 1;
     this.NoReflogs.Text       = "Do not consider commits that are referenced only by an entry in a \r\nreflog to be " +
                                 "reachable.";
     this.NoReflogs.UseVisualStyleBackColor = true;
     this.NoReflogs.CheckedChanged         += new System.EventHandler(this.NoReflogsCheckedChanged);
     //
     // FullCheck
     //
     this.FullCheck.AutoSize = true;
     this.FullCheck.Location = new System.Drawing.Point(430, 101);
     this.FullCheck.Name     = "FullCheck";
     this.FullCheck.Size     = new System.Drawing.Size(397, 34);
     this.FullCheck.TabIndex = 3;
     this.FullCheck.Text     = "Check not just objects in GIT_OBJECT_DIRECTORY ($GIT_DIR/objects), \r\nbut also the" +
                               " ones found in alternate object pools.\r\n";
     this.FullCheck.UseVisualStyleBackColor = true;
     this.FullCheck.CheckedChanged         += new System.EventHandler(this.FullCheckCheckedChanged);
     //
     // Unreachable
     //
     this.Unreachable.AutoSize = true;
     this.Unreachable.Location = new System.Drawing.Point(430, 68);
     this.Unreachable.Name     = "Unreachable";
     this.Unreachable.Size     = new System.Drawing.Size(429, 34);
     this.Unreachable.TabIndex = 2;
     this.Unreachable.Text     = "Print out objects that exist but that aren\'t readable from any of the reference \r" +
                                 "\nnodes.\r\n";
     this.Unreachable.UseVisualStyleBackColor = true;
     this.Unreachable.CheckedChanged         += new System.EventHandler(this.UnreachableCheckedChanged);
     //
     // mnuLostObjects
     //
     this.mnuLostObjects.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.mnuLostObjectView,
         this.mnuLostObjectsCreateTag,
         this.mnuLostObjectsCreateBranch
     });
     this.mnuLostObjects.Name = "mnuLostObjects";
     this.mnuLostObjects.Size = new System.Drawing.Size(190, 70);
     //
     // mnuLostObjectView
     //
     this.mnuLostObjectView.Name   = "mnuLostObjectView";
     this.mnuLostObjectView.Size   = new System.Drawing.Size(189, 22);
     this.mnuLostObjectView.Text   = "View";
     this.mnuLostObjectView.Click += new System.EventHandler(this.mnuLostObjectView_Click);
     //
     // mnuLostObjectsCreateTag
     //
     this.mnuLostObjectsCreateTag.Name         = "mnuLostObjectsCreateTag";
     this.mnuLostObjectsCreateTag.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.T)));
     this.mnuLostObjectsCreateTag.Size         = new System.Drawing.Size(189, 22);
     this.mnuLostObjectsCreateTag.Text         = "Create tag";
     this.mnuLostObjectsCreateTag.Click       += new System.EventHandler(this.mnuLostObjectsCreateTag_Click);
     //
     // mnuLostObjectsCreateBranch
     //
     this.mnuLostObjectsCreateBranch.Name         = "mnuLostObjectsCreateBranch";
     this.mnuLostObjectsCreateBranch.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.B)));
     this.mnuLostObjectsCreateBranch.Size         = new System.Drawing.Size(189, 22);
     this.mnuLostObjectsCreateBranch.Text         = "Create branch";
     this.mnuLostObjectsCreateBranch.Click       += new System.EventHandler(this.mnuLostObjectsCreateBranch_Click);
     //
     // Warnings
     //
     this.Warnings.AllowUserToAddRows          = false;
     this.Warnings.AllowUserToDeleteRows       = false;
     this.Warnings.AllowUserToOrderColumns     = true;
     this.Warnings.AllowUserToResizeRows       = false;
     this.Warnings.AutoSizeRowsMode            = System.Windows.Forms.DataGridViewAutoSizeRowsMode.AllCells;
     this.Warnings.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.Warnings.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
         this.columnIsLostObjectSelected,
         this.columnDate,
         this.columnType,
         this.columnSubject,
         this.columnAuthor,
         this.columnHash
     });
     this.Warnings.Dock                         = System.Windows.Forms.DockStyle.Fill;
     this.Warnings.EditMode                     = System.Windows.Forms.DataGridViewEditMode.EditOnEnter;
     this.Warnings.Location                     = new System.Drawing.Point(0, 138);
     this.Warnings.MultiSelect                  = false;
     this.Warnings.Name                         = "Warnings";
     this.Warnings.RowHeadersVisible            = false;
     this.Warnings.RowTemplate.ContextMenuStrip = this.mnuLostObjects;
     this.Warnings.SelectionMode                = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.Warnings.ShowEditingIcon              = false;
     this.Warnings.Size                         = new System.Drawing.Size(859, 376);
     this.Warnings.TabIndex                     = 4;
     this.Warnings.CellMouseDoubleClick        += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.Warnings_CellMouseDoubleClick);
     this.Warnings.CellMouseDown               += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.Warnings_CellMouseDown);
     //
     // columnIsLostObjectSelected
     //
     this.columnIsLostObjectSelected.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
     this.columnIsLostObjectSelected.DataPropertyName = "IsSelected";
     this.columnIsLostObjectSelected.HeaderText       = "";
     this.columnIsLostObjectSelected.MinimumWidth     = 20;
     this.columnIsLostObjectSelected.Name             = "columnIsLostObjectSelected";
     this.columnIsLostObjectSelected.Width            = 20;
     //
     // columnDate
     //
     this.columnDate.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
     this.columnDate.DataPropertyName = "Date";
     this.columnDate.HeaderText       = "Date";
     this.columnDate.Name             = "columnDate";
     this.columnDate.ReadOnly         = true;
     this.columnDate.Width            = 56;
     //
     // columnType
     //
     this.columnType.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
     this.columnType.DataPropertyName = "RawType";
     this.columnType.HeaderText       = "Type";
     this.columnType.Name             = "columnType";
     this.columnType.ReadOnly         = true;
     this.columnType.Width            = 58;
     //
     // columnSubject
     //
     this.columnSubject.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
     this.columnSubject.DataPropertyName = "Subject";
     dataGridViewCellStyle1.Alignment    = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle1.WrapMode     = System.Windows.Forms.DataGridViewTriState.True;
     this.columnSubject.DefaultCellStyle = dataGridViewCellStyle1;
     this.columnSubject.HeaderText       = "Subject";
     this.columnSubject.Name             = "columnSubject";
     this.columnSubject.ReadOnly         = true;
     //
     // columnAuthor
     //
     this.columnAuthor.DataPropertyName = "Author";
     this.columnAuthor.HeaderText       = "Author";
     this.columnAuthor.Name             = "columnAuthor";
     this.columnAuthor.ReadOnly         = true;
     this.columnAuthor.Width            = 150;
     //
     // columnHash
     //
     this.columnHash.DataPropertyName = "Hash";
     this.columnHash.HeaderText       = "Hash";
     this.columnHash.Name             = "columnHash";
     this.columnHash.ReadOnly         = true;
     this.columnHash.Width            = 80;
     //
     // FormVerify
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Dpi;
     this.CancelButton        = this.btnCloseDialog;
     this.ClientSize          = new System.Drawing.Size(859, 575);
     this.Controls.Add(this.Warnings);
     this.Controls.Add(panel2);
     this.Controls.Add(panel1);
     this.MinimizeBox   = false;
     this.Name          = "FormVerify";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text          = "Verify database";
     this.Shown        += new System.EventHandler(this.FormVerifyShown);
     panel1.ResumeLayout(false);
     panel2.ResumeLayout(false);
     panel2.PerformLayout();
     flowLayoutPanel1.ResumeLayout(false);
     flowLayoutPanel1.PerformLayout();
     this.mnuLostObjects.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.Warnings)).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()
 {
     this.components = new System.ComponentModel.Container();
     System.Windows.Forms.Panel _pnlContent;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ExternalsConfigurationComponentControl));
     System.Windows.Forms.FlowLayoutPanel           _pnlButtons;
     this._listExternals    = new System.Windows.Forms.ListView();
     this.colLabel          = new System.Windows.Forms.ColumnHeader();
     this.colDescription    = new System.Windows.Forms.ColumnHeader();
     this._btnAdd           = new System.Windows.Forms.Button();
     this._btnRemove        = new System.Windows.Forms.Button();
     this._btnEdit          = new System.Windows.Forms.Button();
     this._mnuExternalTypes = new System.Windows.Forms.ContextMenuStrip(this.components);
     _pnlContent            = new System.Windows.Forms.Panel();
     _pnlButtons            = new System.Windows.Forms.FlowLayoutPanel();
     _pnlContent.SuspendLayout();
     _pnlButtons.SuspendLayout();
     this.SuspendLayout();
     //
     // _pnlContent
     //
     _pnlContent.Controls.Add(this._listExternals);
     _pnlContent.Controls.Add(_pnlButtons);
     resources.ApplyResources(_pnlContent, "_pnlContent");
     _pnlContent.Name = "_pnlContent";
     //
     // _listExternals
     //
     this._listExternals.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.colLabel,
         this.colDescription
     });
     resources.ApplyResources(this._listExternals, "_listExternals");
     this._listExternals.FullRowSelect = true;
     this._listExternals.GridLines     = true;
     this._listExternals.HeaderStyle   = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
     this._listExternals.HideSelection = false;
     this._listExternals.LabelEdit     = true;
     this._listExternals.MultiSelect   = false;
     this._listExternals.Name          = "_listExternals";
     this._listExternals.UseCompatibleStateImageBehavior = false;
     this._listExternals.View                  = System.Windows.Forms.View.Details;
     this._listExternals.AfterLabelEdit       += new System.Windows.Forms.LabelEditEventHandler(this._listExternals_AfterLabelEdit);
     this._listExternals.SelectedIndexChanged += new System.EventHandler(this._listExternals_SelectedIndexChanged);
     this._listExternals.DoubleClick          += new System.EventHandler(this._listExternals_DoubleClick);
     //
     // colLabel
     //
     resources.ApplyResources(this.colLabel, "colLabel");
     //
     // colDescription
     //
     resources.ApplyResources(this.colDescription, "colDescription");
     //
     // _pnlButtons
     //
     _pnlButtons.Controls.Add(this._btnAdd);
     _pnlButtons.Controls.Add(this._btnRemove);
     _pnlButtons.Controls.Add(this._btnEdit);
     resources.ApplyResources(_pnlButtons, "_pnlButtons");
     _pnlButtons.Name = "_pnlButtons";
     //
     // _btnAdd
     //
     resources.ApplyResources(this._btnAdd, "_btnAdd");
     this._btnAdd.Name = "_btnAdd";
     this._btnAdd.UseVisualStyleBackColor = true;
     this._btnAdd.Click += new System.EventHandler(this._btnAdd_Click);
     //
     // _btnRemove
     //
     resources.ApplyResources(this._btnRemove, "_btnRemove");
     this._btnRemove.Name = "_btnRemove";
     this._btnRemove.UseVisualStyleBackColor = true;
     this._btnRemove.Click += new System.EventHandler(this._btnRemove_Click);
     //
     // _btnEdit
     //
     resources.ApplyResources(this._btnEdit, "_btnEdit");
     this._btnEdit.Name = "_btnEdit";
     this._btnEdit.UseVisualStyleBackColor = true;
     this._btnEdit.Click += new System.EventHandler(this._btnEdit_Click);
     //
     // _mnuExternalTypes
     //
     this._mnuExternalTypes.Name = "_mnuExternalTypes";
     resources.ApplyResources(this._mnuExternalTypes, "_mnuExternalTypes");
     //
     // ExternalsConfigurationComponentControl
     //
     resources.ApplyResources(this, "$this");
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(_pnlContent);
     this.Name = "ExternalsConfigurationComponentControl";
     _pnlContent.ResumeLayout(false);
     _pnlButtons.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.FlowLayoutPanel flowLayoutPanel1;
			System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmExceptionBox));
			this.lblDescription = new System.Windows.Forms.Label();
			this.lblMessage = new System.Windows.Forms.Label();
			this.panel1 = new System.Windows.Forms.Panel();
			this.btnDetails = new System.Windows.Forms.Button();
			this.btnClose = new System.Windows.Forms.Button();
			this.txtWholeText = new System.Windows.Forms.TextBox();
			flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
			flowLayoutPanel1.SuspendLayout();
			this.panel1.SuspendLayout();
			this.SuspendLayout();
			//
			// flowLayoutPanel1
			//
			flowLayoutPanel1.AutoSize = true;
			flowLayoutPanel1.Controls.Add(this.lblDescription);
			flowLayoutPanel1.Controls.Add(this.lblMessage);
			flowLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Top;
			flowLayoutPanel1.Location = new System.Drawing.Point(0, 0);
			flowLayoutPanel1.Name = "flowLayoutPanel1";
			flowLayoutPanel1.Size = new System.Drawing.Size(458, 69);
			flowLayoutPanel1.TabIndex = 5;
			//
			// lblDescription
			//
			this.lblDescription.AutoSize = true;
			this.lblDescription.Dock = System.Windows.Forms.DockStyle.Top;
			this.lblDescription.Location = new System.Drawing.Point(0, 0);
			this.lblDescription.Margin = new System.Windows.Forms.Padding(0);
			this.lblDescription.Name = "lblDescription";
			this.lblDescription.Padding = new System.Windows.Forms.Padding(10, 10, 10, 0);
			this.lblDescription.Size = new System.Drawing.Size(414, 36);
			this.lblDescription.TabIndex = 3;
			this.lblDescription.Text = "Unhandled exception has occurred in a component in your application. If you click" +
    " Continue, the application will ignore this error and attempt to continue.\r\n";
			this.lblDescription.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			//
			// lblMessage
			//
			this.lblMessage.AutoSize = true;
			this.lblMessage.Dock = System.Windows.Forms.DockStyle.Top;
			this.lblMessage.Location = new System.Drawing.Point(3, 36);
			this.lblMessage.Name = "lblMessage";
			this.lblMessage.Padding = new System.Windows.Forms.Padding(10);
			this.lblMessage.Size = new System.Drawing.Size(118, 33);
			this.lblMessage.TabIndex = 0;
			this.lblMessage.Text = "exception message";
			//
			// panel1
			//
			this.panel1.Controls.Add(this.btnDetails);
			this.panel1.Controls.Add(this.btnClose);
			this.panel1.Dock = System.Windows.Forms.DockStyle.Bottom;
			this.panel1.Location = new System.Drawing.Point(0, 67);
			this.panel1.Name = "panel1";
			this.panel1.Size = new System.Drawing.Size(458, 47);
			this.panel1.TabIndex = 4;
			//
			// btnDetails
			//
			this.btnDetails.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
			this.btnDetails.Location = new System.Drawing.Point(12, 12);
			this.btnDetails.Name = "btnDetails";
			this.btnDetails.Size = new System.Drawing.Size(108, 23);
			this.btnDetails.TabIndex = 4;
			this.btnDetails.Text = "Details";
			this.btnDetails.UseVisualStyleBackColor = true;
			this.btnDetails.Click += new System.EventHandler(this.btnDetails_Click);
			//
			// btnClose
			//
			this.btnClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
			this.btnClose.DialogResult = System.Windows.Forms.DialogResult.OK;
			this.btnClose.Location = new System.Drawing.Point(338, 12);
			this.btnClose.Name = "btnClose";
			this.btnClose.Size = new System.Drawing.Size(108, 23);
			this.btnClose.TabIndex = 3;
			this.btnClose.Text = "Resume";
			this.btnClose.UseVisualStyleBackColor = true;
			//
			// txtWholeText
			//
			this.txtWholeText.Dock = System.Windows.Forms.DockStyle.Fill;
			this.txtWholeText.Location = new System.Drawing.Point(0, 69);
			this.txtWholeText.Multiline = true;
			this.txtWholeText.Name = "txtWholeText";
			this.txtWholeText.ReadOnly = true;
			this.txtWholeText.ScrollBars = System.Windows.Forms.ScrollBars.Both;
			this.txtWholeText.Size = new System.Drawing.Size(458, 0);
			this.txtWholeText.TabIndex = 0;
			this.txtWholeText.Visible = false;
			//
			// frmExceptionBox
			//
			this.AcceptButton = this.btnClose;
			this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.AutoSize = true;
			this.CancelButton = this.btnClose;
			this.ClientSize = new System.Drawing.Size(458, 114);
			this.Controls.Add(this.txtWholeText);
			this.Controls.Add(flowLayoutPanel1);
			this.Controls.Add(this.panel1);
			this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
			this.MaximizeBox = false;
			this.MinimizeBox = false;
			this.Name = "frmExceptionBox";
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
			this.Text = "Exception";
			this.Resize += new System.EventHandler(this.frmExceptionBox_Resize);
			flowLayoutPanel1.ResumeLayout(false);
			flowLayoutPanel1.PerformLayout();
			this.panel1.ResumeLayout(false);
			this.ResumeLayout(false);
			this.PerformLayout();

        }
Example #57
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.FlowLayoutPanel           flMenu;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(fm_inDex_Main));
     this.lblDanhMuc        = new System.Windows.Forms.Label();
     this.btnHangHoa        = new System.Windows.Forms.Button();
     this.btnNguonHang      = new System.Windows.Forms.Button();
     this.btnNhomHang       = new System.Windows.Forms.Button();
     this.btnKhachHang      = new System.Windows.Forms.Button();
     this.btnKhoHang        = new System.Windows.Forms.Button();
     this.btn_nhanvien      = new System.Windows.Forms.Button();
     this.lblNghiepVu       = new System.Windows.Forms.Label();
     this.btnBanHang        = new System.Windows.Forms.Button();
     this.btnBaoCao         = new System.Windows.Forms.Button();
     this.btnDoiHang        = new System.Windows.Forms.Button();
     this.btnNhapHang       = new System.Windows.Forms.Button();
     this.btnPhieuChi       = new System.Windows.Forms.Button();
     this.btnPhieuThu       = new System.Windows.Forms.Button();
     this.btnHoaDonDoi      = new System.Windows.Forms.Button();
     this.btnHoaDonBan      = new System.Windows.Forms.Button();
     this.lblHeThong        = new System.Windows.Forms.Label();
     this.btnDoiMatKhau     = new System.Windows.Forms.Button();
     this.btnNhanVien       = new System.Windows.Forms.Button();
     this.btnTTCuaHang      = new System.Windows.Forms.Button();
     this.btnSaoLuu         = new System.Windows.Forms.Button();
     this.btnPhucHoi        = new System.Windows.Forms.Button();
     this.label4            = new System.Windows.Forms.Label();
     this.btnTTTacGia       = new System.Windows.Forms.Button();
     this.btnHoTro          = new System.Windows.Forms.Button();
     this.btnSuDung         = new System.Windows.Forms.Button();
     this.menuBar           = new System.Windows.Forms.PictureBox();
     this.lblXinChao        = new System.Windows.Forms.Label();
     this.bgMain            = new System.Windows.Forms.PictureBox();
     this.gb_thongtincanhan = new System.Windows.Forms.GroupBox();
     this.lb_diachi         = new System.Windows.Forms.Label();
     this.label12           = new System.Windows.Forms.Label();
     this.lb_socmnd         = new System.Windows.Forms.Label();
     this.label10           = new System.Windows.Forms.Label();
     this.lb_sodt           = new System.Windows.Forms.Label();
     this.label8            = new System.Windows.Forms.Label();
     this.lb_gioitinh       = new System.Windows.Forms.Label();
     this.label6            = new System.Windows.Forms.Label();
     this.lb_namsinh        = new System.Windows.Forms.Label();
     this.label3            = new System.Windows.Forms.Label();
     this.lb_hoten          = new System.Windows.Forms.Label();
     this.label1            = new System.Windows.Forms.Label();
     this.gb_quyensudung    = new System.Windows.Forms.GroupBox();
     this.comboBox1         = new System.Windows.Forms.ComboBox();
     this.label22           = new System.Windows.Forms.Label();
     this.lb_quyensudung    = new System.Windows.Forms.Label();
     this.label20           = new System.Windows.Forms.Label();
     this.gb_thongtinnoilam = new System.Windows.Forms.GroupBox();
     this.lb_vaolam         = new System.Windows.Forms.Label();
     this.label18           = new System.Windows.Forms.Label();
     this.lb_chucvu         = new System.Windows.Forms.Label();
     this.label16           = new System.Windows.Forms.Label();
     this.lb_manv           = new System.Windows.Forms.Label();
     this.label14           = new System.Windows.Forms.Label();
     this.ptb_anhnv         = new System.Windows.Forms.PictureBox();
     flMenu = new System.Windows.Forms.FlowLayoutPanel();
     flMenu.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.menuBar)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bgMain)).BeginInit();
     this.gb_thongtincanhan.SuspendLayout();
     this.gb_quyensudung.SuspendLayout();
     this.gb_thongtinnoilam.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ptb_anhnv)).BeginInit();
     this.SuspendLayout();
     //
     // flMenu
     //
     flMenu.AllowDrop = true;
     resources.ApplyResources(flMenu, "flMenu");
     flMenu.Controls.Add(this.lblDanhMuc);
     flMenu.Controls.Add(this.btnHangHoa);
     flMenu.Controls.Add(this.btnNguonHang);
     flMenu.Controls.Add(this.btnNhomHang);
     flMenu.Controls.Add(this.btnKhachHang);
     flMenu.Controls.Add(this.btnKhoHang);
     flMenu.Controls.Add(this.btn_nhanvien);
     flMenu.Controls.Add(this.lblNghiepVu);
     flMenu.Controls.Add(this.btnBanHang);
     flMenu.Controls.Add(this.btnBaoCao);
     flMenu.Controls.Add(this.btnDoiHang);
     flMenu.Controls.Add(this.btnNhapHang);
     flMenu.Controls.Add(this.btnPhieuChi);
     flMenu.Controls.Add(this.btnPhieuThu);
     flMenu.Controls.Add(this.btnHoaDonDoi);
     flMenu.Controls.Add(this.btnHoaDonBan);
     flMenu.Controls.Add(this.lblHeThong);
     flMenu.Controls.Add(this.btnDoiMatKhau);
     flMenu.Controls.Add(this.btnNhanVien);
     flMenu.Controls.Add(this.btnTTCuaHang);
     flMenu.Controls.Add(this.btnSaoLuu);
     flMenu.Controls.Add(this.btnPhucHoi);
     flMenu.Controls.Add(this.label4);
     flMenu.Controls.Add(this.btnTTTacGia);
     flMenu.Controls.Add(this.btnHoTro);
     flMenu.Controls.Add(this.btnSuDung);
     flMenu.Name = "flMenu";
     //
     // lblDanhMuc
     //
     this.lblDanhMuc.BackColor = System.Drawing.Color.Transparent;
     resources.ApplyResources(this.lblDanhMuc, "lblDanhMuc");
     this.lblDanhMuc.ForeColor = System.Drawing.Color.Maroon;
     this.lblDanhMuc.Name      = "lblDanhMuc";
     this.lblDanhMuc.Click    += new System.EventHandler(this.label3_Click);
     //
     // btnHangHoa
     //
     this.btnHangHoa.BackColor = System.Drawing.SystemColors.ControlLightLight;
     resources.ApplyResources(this.btnHangHoa, "btnHangHoa");
     this.btnHangHoa.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
     this.btnHangHoa.Name      = "btnHangHoa";
     this.btnHangHoa.UseVisualStyleBackColor = false;
     //
     // btnNguonHang
     //
     this.btnNguonHang.BackColor = System.Drawing.SystemColors.ControlLightLight;
     resources.ApplyResources(this.btnNguonHang, "btnNguonHang");
     this.btnNguonHang.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
     this.btnNguonHang.Name      = "btnNguonHang";
     this.btnNguonHang.UseVisualStyleBackColor = false;
     //
     // btnNhomHang
     //
     this.btnNhomHang.BackColor = System.Drawing.SystemColors.ControlLightLight;
     resources.ApplyResources(this.btnNhomHang, "btnNhomHang");
     this.btnNhomHang.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
     this.btnNhomHang.Name      = "btnNhomHang";
     this.btnNhomHang.UseVisualStyleBackColor = false;
     //
     // btnKhachHang
     //
     this.btnKhachHang.BackColor = System.Drawing.SystemColors.ControlLightLight;
     resources.ApplyResources(this.btnKhachHang, "btnKhachHang");
     this.btnKhachHang.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
     this.btnKhachHang.Name      = "btnKhachHang";
     this.btnKhachHang.UseVisualStyleBackColor = false;
     //
     // btnKhoHang
     //
     this.btnKhoHang.BackColor = System.Drawing.SystemColors.ControlLightLight;
     resources.ApplyResources(this.btnKhoHang, "btnKhoHang");
     this.btnKhoHang.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
     this.btnKhoHang.Name      = "btnKhoHang";
     this.btnKhoHang.UseVisualStyleBackColor = false;
     //
     // btn_nhanvien
     //
     this.btn_nhanvien.BackColor = System.Drawing.SystemColors.ControlLightLight;
     resources.ApplyResources(this.btn_nhanvien, "btn_nhanvien");
     this.btn_nhanvien.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
     this.btn_nhanvien.Name      = "btn_nhanvien";
     this.btn_nhanvien.UseVisualStyleBackColor = false;
     this.btn_nhanvien.Click += new System.EventHandler(this.btn_nhanvien_Click);
     //
     // lblNghiepVu
     //
     this.lblNghiepVu.BackColor = System.Drawing.Color.Transparent;
     resources.ApplyResources(this.lblNghiepVu, "lblNghiepVu");
     this.lblNghiepVu.ForeColor = System.Drawing.Color.Maroon;
     this.lblNghiepVu.Name      = "lblNghiepVu";
     //
     // btnBanHang
     //
     this.btnBanHang.BackColor = System.Drawing.SystemColors.ControlLightLight;
     resources.ApplyResources(this.btnBanHang, "btnBanHang");
     this.btnBanHang.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
     this.btnBanHang.Name      = "btnBanHang";
     this.btnBanHang.UseVisualStyleBackColor = false;
     //
     // btnBaoCao
     //
     this.btnBaoCao.BackColor = System.Drawing.SystemColors.ControlLightLight;
     resources.ApplyResources(this.btnBaoCao, "btnBaoCao");
     this.btnBaoCao.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
     this.btnBaoCao.Name      = "btnBaoCao";
     this.btnBaoCao.UseVisualStyleBackColor = false;
     //
     // btnDoiHang
     //
     this.btnDoiHang.BackColor = System.Drawing.SystemColors.ControlLightLight;
     resources.ApplyResources(this.btnDoiHang, "btnDoiHang");
     this.btnDoiHang.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
     this.btnDoiHang.Name      = "btnDoiHang";
     this.btnDoiHang.UseVisualStyleBackColor = false;
     //
     // btnNhapHang
     //
     this.btnNhapHang.BackColor = System.Drawing.SystemColors.ControlLightLight;
     resources.ApplyResources(this.btnNhapHang, "btnNhapHang");
     this.btnNhapHang.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
     this.btnNhapHang.Name      = "btnNhapHang";
     this.btnNhapHang.UseVisualStyleBackColor = false;
     this.btnNhapHang.Click += new System.EventHandler(this.button6_Click);
     //
     // btnPhieuChi
     //
     this.btnPhieuChi.BackColor = System.Drawing.SystemColors.ControlLightLight;
     resources.ApplyResources(this.btnPhieuChi, "btnPhieuChi");
     this.btnPhieuChi.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
     this.btnPhieuChi.Name      = "btnPhieuChi";
     this.btnPhieuChi.UseVisualStyleBackColor = false;
     //
     // btnPhieuThu
     //
     this.btnPhieuThu.BackColor = System.Drawing.SystemColors.ControlLightLight;
     resources.ApplyResources(this.btnPhieuThu, "btnPhieuThu");
     this.btnPhieuThu.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
     this.btnPhieuThu.Name      = "btnPhieuThu";
     this.btnPhieuThu.UseVisualStyleBackColor = false;
     //
     // btnHoaDonDoi
     //
     this.btnHoaDonDoi.BackColor = System.Drawing.SystemColors.ControlLightLight;
     resources.ApplyResources(this.btnHoaDonDoi, "btnHoaDonDoi");
     this.btnHoaDonDoi.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
     this.btnHoaDonDoi.Name      = "btnHoaDonDoi";
     this.btnHoaDonDoi.UseVisualStyleBackColor = false;
     //
     // btnHoaDonBan
     //
     this.btnHoaDonBan.BackColor = System.Drawing.SystemColors.ControlLightLight;
     resources.ApplyResources(this.btnHoaDonBan, "btnHoaDonBan");
     this.btnHoaDonBan.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
     this.btnHoaDonBan.Name      = "btnHoaDonBan";
     this.btnHoaDonBan.UseVisualStyleBackColor = false;
     //
     // lblHeThong
     //
     this.lblHeThong.BackColor = System.Drawing.Color.Transparent;
     resources.ApplyResources(this.lblHeThong, "lblHeThong");
     this.lblHeThong.ForeColor = System.Drawing.Color.Maroon;
     this.lblHeThong.Name      = "lblHeThong";
     this.lblHeThong.Click    += new System.EventHandler(this.label2_Click);
     //
     // btnDoiMatKhau
     //
     this.btnDoiMatKhau.BackColor = System.Drawing.SystemColors.ControlLightLight;
     resources.ApplyResources(this.btnDoiMatKhau, "btnDoiMatKhau");
     this.btnDoiMatKhau.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
     this.btnDoiMatKhau.Name      = "btnDoiMatKhau";
     this.btnDoiMatKhau.UseVisualStyleBackColor = false;
     //
     // btnNhanVien
     //
     this.btnNhanVien.BackColor = System.Drawing.SystemColors.ControlLightLight;
     resources.ApplyResources(this.btnNhanVien, "btnNhanVien");
     this.btnNhanVien.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
     this.btnNhanVien.Name      = "btnNhanVien";
     this.btnNhanVien.UseVisualStyleBackColor = false;
     //
     // btnTTCuaHang
     //
     this.btnTTCuaHang.BackColor = System.Drawing.SystemColors.ControlLightLight;
     resources.ApplyResources(this.btnTTCuaHang, "btnTTCuaHang");
     this.btnTTCuaHang.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
     this.btnTTCuaHang.Name      = "btnTTCuaHang";
     this.btnTTCuaHang.UseVisualStyleBackColor = false;
     //
     // btnSaoLuu
     //
     this.btnSaoLuu.BackColor = System.Drawing.SystemColors.ControlLightLight;
     resources.ApplyResources(this.btnSaoLuu, "btnSaoLuu");
     this.btnSaoLuu.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
     this.btnSaoLuu.Name      = "btnSaoLuu";
     this.btnSaoLuu.UseVisualStyleBackColor = false;
     this.btnSaoLuu.Click += new System.EventHandler(this.btnHangHoa_Click);
     //
     // btnPhucHoi
     //
     this.btnPhucHoi.BackColor = System.Drawing.SystemColors.ControlLightLight;
     resources.ApplyResources(this.btnPhucHoi, "btnPhucHoi");
     this.btnPhucHoi.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
     this.btnPhucHoi.Name      = "btnPhucHoi";
     this.btnPhucHoi.UseVisualStyleBackColor = false;
     //
     // label4
     //
     this.label4.BackColor = System.Drawing.Color.Transparent;
     resources.ApplyResources(this.label4, "label4");
     this.label4.ForeColor = System.Drawing.Color.Maroon;
     this.label4.Name      = "label4";
     this.label4.Click    += new System.EventHandler(this.label4_Click);
     //
     // btnTTTacGia
     //
     this.btnTTTacGia.BackColor = System.Drawing.SystemColors.ControlLightLight;
     resources.ApplyResources(this.btnTTTacGia, "btnTTTacGia");
     this.btnTTTacGia.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
     this.btnTTTacGia.Name      = "btnTTTacGia";
     this.btnTTTacGia.UseVisualStyleBackColor = false;
     this.btnTTTacGia.Click += new System.EventHandler(this.btnNguonHang_Click);
     //
     // btnHoTro
     //
     this.btnHoTro.BackColor = System.Drawing.SystemColors.ControlLightLight;
     resources.ApplyResources(this.btnHoTro, "btnHoTro");
     this.btnHoTro.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
     this.btnHoTro.Name      = "btnHoTro";
     this.btnHoTro.UseVisualStyleBackColor = false;
     //
     // btnSuDung
     //
     this.btnSuDung.BackColor = System.Drawing.SystemColors.ControlLightLight;
     resources.ApplyResources(this.btnSuDung, "btnSuDung");
     this.btnSuDung.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
     this.btnSuDung.Name      = "btnSuDung";
     this.btnSuDung.UseVisualStyleBackColor = false;
     this.btnSuDung.Click += new System.EventHandler(this.button16_Click);
     //
     // menuBar
     //
     resources.ApplyResources(this.menuBar, "menuBar");
     this.menuBar.BackColor = System.Drawing.Color.Maroon;
     this.menuBar.Name      = "menuBar";
     this.menuBar.TabStop   = false;
     //
     // lblXinChao
     //
     resources.ApplyResources(this.lblXinChao, "lblXinChao");
     this.lblXinChao.Name = "lblXinChao";
     //
     // bgMain
     //
     resources.ApplyResources(this.bgMain, "bgMain");
     this.bgMain.BackColor = System.Drawing.Color.Azure;
     this.bgMain.Name      = "bgMain";
     this.bgMain.TabStop   = false;
     this.bgMain.Click    += new System.EventHandler(this.pictureBox3_Click);
     //
     // gb_thongtincanhan
     //
     resources.ApplyResources(this.gb_thongtincanhan, "gb_thongtincanhan");
     this.gb_thongtincanhan.Controls.Add(this.lb_diachi);
     this.gb_thongtincanhan.Controls.Add(this.label12);
     this.gb_thongtincanhan.Controls.Add(this.lb_socmnd);
     this.gb_thongtincanhan.Controls.Add(this.label10);
     this.gb_thongtincanhan.Controls.Add(this.lb_sodt);
     this.gb_thongtincanhan.Controls.Add(this.label8);
     this.gb_thongtincanhan.Controls.Add(this.lb_gioitinh);
     this.gb_thongtincanhan.Controls.Add(this.label6);
     this.gb_thongtincanhan.Controls.Add(this.lb_namsinh);
     this.gb_thongtincanhan.Controls.Add(this.label3);
     this.gb_thongtincanhan.Controls.Add(this.lb_hoten);
     this.gb_thongtincanhan.Controls.Add(this.label1);
     this.gb_thongtincanhan.Name    = "gb_thongtincanhan";
     this.gb_thongtincanhan.TabStop = false;
     //
     // lb_diachi
     //
     resources.ApplyResources(this.lb_diachi, "lb_diachi");
     this.lb_diachi.BackColor = System.Drawing.SystemColors.ButtonHighlight;
     this.lb_diachi.Name      = "lb_diachi";
     //
     // label12
     //
     resources.ApplyResources(this.label12, "label12");
     this.label12.Name = "label12";
     //
     // lb_socmnd
     //
     resources.ApplyResources(this.lb_socmnd, "lb_socmnd");
     this.lb_socmnd.BackColor = System.Drawing.SystemColors.ButtonHighlight;
     this.lb_socmnd.Name      = "lb_socmnd";
     this.lb_socmnd.Click    += new System.EventHandler(this.label11_Click);
     //
     // label10
     //
     resources.ApplyResources(this.label10, "label10");
     this.label10.Name = "label10";
     //
     // lb_sodt
     //
     resources.ApplyResources(this.lb_sodt, "lb_sodt");
     this.lb_sodt.BackColor = System.Drawing.SystemColors.ButtonHighlight;
     this.lb_sodt.Name      = "lb_sodt";
     //
     // label8
     //
     resources.ApplyResources(this.label8, "label8");
     this.label8.Name = "label8";
     //
     // lb_gioitinh
     //
     resources.ApplyResources(this.lb_gioitinh, "lb_gioitinh");
     this.lb_gioitinh.BackColor = System.Drawing.SystemColors.ButtonHighlight;
     this.lb_gioitinh.Name      = "lb_gioitinh";
     //
     // label6
     //
     resources.ApplyResources(this.label6, "label6");
     this.label6.Name = "label6";
     //
     // lb_namsinh
     //
     resources.ApplyResources(this.lb_namsinh, "lb_namsinh");
     this.lb_namsinh.BackColor = System.Drawing.SystemColors.ButtonHighlight;
     this.lb_namsinh.Name      = "lb_namsinh";
     //
     // label3
     //
     resources.ApplyResources(this.label3, "label3");
     this.label3.Name   = "label3";
     this.label3.Click += new System.EventHandler(this.label3_Click_1);
     //
     // lb_hoten
     //
     resources.ApplyResources(this.lb_hoten, "lb_hoten");
     this.lb_hoten.BackColor = System.Drawing.SystemColors.ButtonHighlight;
     this.lb_hoten.Name      = "lb_hoten";
     //
     // label1
     //
     resources.ApplyResources(this.label1, "label1");
     this.label1.Name = "label1";
     //
     // gb_quyensudung
     //
     resources.ApplyResources(this.gb_quyensudung, "gb_quyensudung");
     this.gb_quyensudung.BackColor = System.Drawing.Color.LavenderBlush;
     this.gb_quyensudung.Controls.Add(this.comboBox1);
     this.gb_quyensudung.Controls.Add(this.label22);
     this.gb_quyensudung.Controls.Add(this.lb_quyensudung);
     this.gb_quyensudung.Controls.Add(this.label20);
     this.gb_quyensudung.Name    = "gb_quyensudung";
     this.gb_quyensudung.TabStop = false;
     //
     // comboBox1
     //
     this.comboBox1.FormattingEnabled = true;
     resources.ApplyResources(this.comboBox1, "comboBox1");
     this.comboBox1.Name = "comboBox1";
     //
     // label22
     //
     resources.ApplyResources(this.label22, "label22");
     this.label22.Name = "label22";
     //
     // lb_quyensudung
     //
     resources.ApplyResources(this.lb_quyensudung, "lb_quyensudung");
     this.lb_quyensudung.BackColor = System.Drawing.SystemColors.ButtonHighlight;
     this.lb_quyensudung.Name      = "lb_quyensudung";
     //
     // label20
     //
     resources.ApplyResources(this.label20, "label20");
     this.label20.Name = "label20";
     //
     // gb_thongtinnoilam
     //
     resources.ApplyResources(this.gb_thongtinnoilam, "gb_thongtinnoilam");
     this.gb_thongtinnoilam.BackColor = System.Drawing.Color.Lavender;
     this.gb_thongtinnoilam.Controls.Add(this.lb_vaolam);
     this.gb_thongtinnoilam.Controls.Add(this.label18);
     this.gb_thongtinnoilam.Controls.Add(this.lb_chucvu);
     this.gb_thongtinnoilam.Controls.Add(this.label16);
     this.gb_thongtinnoilam.Controls.Add(this.lb_manv);
     this.gb_thongtinnoilam.Controls.Add(this.label14);
     this.gb_thongtinnoilam.Name    = "gb_thongtinnoilam";
     this.gb_thongtinnoilam.TabStop = false;
     //
     // lb_vaolam
     //
     resources.ApplyResources(this.lb_vaolam, "lb_vaolam");
     this.lb_vaolam.BackColor = System.Drawing.SystemColors.ButtonHighlight;
     this.lb_vaolam.Name      = "lb_vaolam";
     //
     // label18
     //
     resources.ApplyResources(this.label18, "label18");
     this.label18.Name = "label18";
     //
     // lb_chucvu
     //
     resources.ApplyResources(this.lb_chucvu, "lb_chucvu");
     this.lb_chucvu.BackColor = System.Drawing.SystemColors.ButtonHighlight;
     this.lb_chucvu.Name      = "lb_chucvu";
     //
     // label16
     //
     resources.ApplyResources(this.label16, "label16");
     this.label16.Name = "label16";
     //
     // lb_manv
     //
     resources.ApplyResources(this.lb_manv, "lb_manv");
     this.lb_manv.BackColor = System.Drawing.SystemColors.ButtonHighlight;
     this.lb_manv.Name      = "lb_manv";
     //
     // label14
     //
     resources.ApplyResources(this.label14, "label14");
     this.label14.Name = "label14";
     //
     // ptb_anhnv
     //
     resources.ApplyResources(this.ptb_anhnv, "ptb_anhnv");
     this.ptb_anhnv.Name    = "ptb_anhnv";
     this.ptb_anhnv.TabStop = false;
     //
     // fm_inDex_Main
     //
     resources.ApplyResources(this, "$this");
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
     this.Controls.Add(this.ptb_anhnv);
     this.Controls.Add(this.gb_thongtinnoilam);
     this.Controls.Add(this.gb_quyensudung);
     this.Controls.Add(this.gb_thongtincanhan);
     this.Controls.Add(this.bgMain);
     this.Controls.Add(this.lblXinChao);
     this.Controls.Add(this.menuBar);
     this.Controls.Add(flMenu);
     this.Name        = "fm_inDex_Main";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load       += new System.EventHandler(this.inDex_Main_Load);
     flMenu.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.menuBar)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bgMain)).EndInit();
     this.gb_thongtincanhan.ResumeLayout(false);
     this.gb_thongtincanhan.PerformLayout();
     this.gb_quyensudung.ResumeLayout(false);
     this.gb_quyensudung.PerformLayout();
     this.gb_thongtinnoilam.ResumeLayout(false);
     this.gb_thongtinnoilam.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ptb_anhnv)).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()
        {
            this.components = new System.ComponentModel.Container();
            System.Windows.Forms.ToolStripLabel toolStripLabel1;
            System.Windows.Forms.TableLayoutPanel toolstripTable;
            TreelistView.TreeListColumn treeListColumn199 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Slot", "Slot")));
            TreelistView.TreeListColumn treeListColumn200 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Buffer", "Buffer")));
            TreelistView.TreeListColumn treeListColumn201 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Stride", "Stride")));
            TreelistView.TreeListColumn treeListColumn202 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Offset", "Offset")));
            TreelistView.TreeListColumn treeListColumn203 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("bytelen", "Byte Len")));
            TreelistView.TreeListColumn treeListColumn204 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Go", "Go")));
            System.Windows.Forms.GroupBox groupBox2;
            TreelistView.TreeListColumn treeListColumn205 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Slot", "Slot")));
            TreelistView.TreeListColumn treeListColumn206 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Semantic Name", "Semantic")));
            TreelistView.TreeListColumn treeListColumn207 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Index", "Index")));
            TreelistView.TreeListColumn treeListColumn208 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Format", "Format")));
            TreelistView.TreeListColumn treeListColumn209 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Input Slot", "Input Slot")));
            TreelistView.TreeListColumn treeListColumn210 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Offset", "Offset")));
            TreelistView.TreeListColumn treeListColumn211 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Class", "Class")));
            TreelistView.TreeListColumn treeListColumn212 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Step Rate", "Step Rate")));
            TreelistView.TreeListColumn treeListColumn213 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Go", "Go")));
            System.Windows.Forms.GroupBox groupBox39;
            System.Windows.Forms.FlowLayoutPanel flowLayoutPanel9;
            System.Windows.Forms.GroupBox groupBox44;
            System.Windows.Forms.Label label28;
            System.Windows.Forms.Label label26;
            System.Windows.Forms.Label label27;
            TreelistView.TreeListColumn treeListColumn214 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Slot", "Slot")));
            TreelistView.TreeListColumn treeListColumn215 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Interface", "Interface")));
            TreelistView.TreeListColumn treeListColumn216 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Instance", "Instance")));
            TreelistView.TreeListColumn treeListColumn217 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Slot", "Slot")));
            TreelistView.TreeListColumn treeListColumn218 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Resource", "Resource")));
            TreelistView.TreeListColumn treeListColumn219 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Type", "Type")));
            TreelistView.TreeListColumn treeListColumn220 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Width", "Width")));
            TreelistView.TreeListColumn treeListColumn221 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Height", "Height")));
            TreelistView.TreeListColumn treeListColumn222 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Depth", "Depth")));
            TreelistView.TreeListColumn treeListColumn223 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Array Size", "Array Size")));
            TreelistView.TreeListColumn treeListColumn224 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Format", "Format")));
            TreelistView.TreeListColumn treeListColumn225 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Go", "Go")));
            TreelistView.TreeListColumn treeListColumn226 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Slot", "Slot")));
            TreelistView.TreeListColumn treeListColumn227 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Addressing", "Addressing")));
            TreelistView.TreeListColumn treeListColumn228 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Filter", "Filter")));
            TreelistView.TreeListColumn treeListColumn229 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("LOD Clamp", "LOD Clamp")));
            TreelistView.TreeListColumn treeListColumn230 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Mip Bias", "Mip Bias")));
            TreelistView.TreeListColumn treeListColumn231 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Slot", "Slot")));
            TreelistView.TreeListColumn treeListColumn232 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Buffer", "Buffer")));
            TreelistView.TreeListColumn treeListColumn233 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Vec4 Range", "Vec4 Range")));
            TreelistView.TreeListColumn treeListColumn234 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Size", "Size")));
            TreelistView.TreeListColumn treeListColumn235 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Go", "Go")));
            System.Windows.Forms.Label label29;
            System.Windows.Forms.Label label30;
            System.Windows.Forms.Label label31;
            TreelistView.TreeListColumn treeListColumn236 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Slot", "Slot")));
            TreelistView.TreeListColumn treeListColumn237 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Interface", "Interface")));
            TreelistView.TreeListColumn treeListColumn238 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Instance", "Instance")));
            TreelistView.TreeListColumn treeListColumn239 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Slot", "Slot")));
            TreelistView.TreeListColumn treeListColumn240 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Resource", "Resource")));
            TreelistView.TreeListColumn treeListColumn241 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Type", "Type")));
            TreelistView.TreeListColumn treeListColumn242 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Width", "Width")));
            TreelistView.TreeListColumn treeListColumn243 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Height", "Height")));
            TreelistView.TreeListColumn treeListColumn244 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Depth", "Depth")));
            TreelistView.TreeListColumn treeListColumn245 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Array Size", "Array Size")));
            TreelistView.TreeListColumn treeListColumn246 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Format", "Format")));
            TreelistView.TreeListColumn treeListColumn247 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Go", "Go")));
            TreelistView.TreeListColumn treeListColumn248 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Slot", "Slot")));
            TreelistView.TreeListColumn treeListColumn249 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Addressing", "Addressing")));
            TreelistView.TreeListColumn treeListColumn250 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Filter", "Filter")));
            TreelistView.TreeListColumn treeListColumn251 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("LOD Clamp", "LOD Clamp")));
            TreelistView.TreeListColumn treeListColumn252 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Mip Bias", "Mip Bias")));
            TreelistView.TreeListColumn treeListColumn253 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Slot", "Slot")));
            TreelistView.TreeListColumn treeListColumn254 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Buffer", "Buffer")));
            TreelistView.TreeListColumn treeListColumn255 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Vec4 Range", "Vec4 Range")));
            TreelistView.TreeListColumn treeListColumn256 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Size", "Size")));
            TreelistView.TreeListColumn treeListColumn257 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Go", "Go")));
            System.Windows.Forms.Label label32;
            System.Windows.Forms.Label label33;
            System.Windows.Forms.Label label34;
            TreelistView.TreeListColumn treeListColumn258 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Slot", "Slot")));
            TreelistView.TreeListColumn treeListColumn259 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Interface", "Interface")));
            TreelistView.TreeListColumn treeListColumn260 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Instance", "Instance")));
            TreelistView.TreeListColumn treeListColumn261 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Slot", "Slot")));
            TreelistView.TreeListColumn treeListColumn262 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Resource", "Resource")));
            TreelistView.TreeListColumn treeListColumn263 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Type", "Type")));
            TreelistView.TreeListColumn treeListColumn264 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Width", "Width")));
            TreelistView.TreeListColumn treeListColumn265 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Height", "Height")));
            TreelistView.TreeListColumn treeListColumn266 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Depth", "Depth")));
            TreelistView.TreeListColumn treeListColumn267 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Array Size", "Array Size")));
            TreelistView.TreeListColumn treeListColumn268 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Format", "Format")));
            TreelistView.TreeListColumn treeListColumn269 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Go", "Go")));
            TreelistView.TreeListColumn treeListColumn270 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Slot", "Slot")));
            TreelistView.TreeListColumn treeListColumn271 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Addressing", "Addressing")));
            TreelistView.TreeListColumn treeListColumn272 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Filter", "Filter")));
            TreelistView.TreeListColumn treeListColumn273 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("LOD Clamp", "LOD Clamp")));
            TreelistView.TreeListColumn treeListColumn274 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Mip Bias", "Mip Bias")));
            TreelistView.TreeListColumn treeListColumn275 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Slot", "Slot")));
            TreelistView.TreeListColumn treeListColumn276 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Buffer", "Buffer")));
            TreelistView.TreeListColumn treeListColumn277 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Vec4 Range", "Vec4 Range")));
            TreelistView.TreeListColumn treeListColumn278 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Size", "Size")));
            TreelistView.TreeListColumn treeListColumn279 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Go", "Go")));
            System.Windows.Forms.GroupBox groupBox45;
            TreelistView.TreeListColumn treeListColumn280 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Slot", "Slot")));
            TreelistView.TreeListColumn treeListColumn281 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Buffer", "Buffer")));
            TreelistView.TreeListColumn treeListColumn282 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Length", "Length")));
            TreelistView.TreeListColumn treeListColumn283 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Offset", "Offset")));
            TreelistView.TreeListColumn treeListColumn284 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Go", "Go")));
            System.Windows.Forms.Label label35;
            System.Windows.Forms.Label label36;
            System.Windows.Forms.Label label37;
            TreelistView.TreeListColumn treeListColumn285 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Slot", "Slot")));
            TreelistView.TreeListColumn treeListColumn286 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Interface", "Interface")));
            TreelistView.TreeListColumn treeListColumn287 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Instance", "Instance")));
            TreelistView.TreeListColumn treeListColumn288 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Slot", "Slot")));
            TreelistView.TreeListColumn treeListColumn289 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Resource", "Resource")));
            TreelistView.TreeListColumn treeListColumn290 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Type", "Type")));
            TreelistView.TreeListColumn treeListColumn291 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Width", "Width")));
            TreelistView.TreeListColumn treeListColumn292 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Height", "Height")));
            TreelistView.TreeListColumn treeListColumn293 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Depth", "Depth")));
            TreelistView.TreeListColumn treeListColumn294 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Array Size", "Array Size")));
            TreelistView.TreeListColumn treeListColumn295 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Format", "Format")));
            TreelistView.TreeListColumn treeListColumn296 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Go", "Go")));
            TreelistView.TreeListColumn treeListColumn297 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Slot", "Slot")));
            TreelistView.TreeListColumn treeListColumn298 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Addressing", "Addressing")));
            TreelistView.TreeListColumn treeListColumn299 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Filter", "Filter")));
            TreelistView.TreeListColumn treeListColumn300 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("LOD Clamp", "LOD Clamp")));
            TreelistView.TreeListColumn treeListColumn301 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Mip Bias", "Mip Bias")));
            TreelistView.TreeListColumn treeListColumn302 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Slot", "Slot")));
            TreelistView.TreeListColumn treeListColumn303 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Buffer", "Buffer")));
            TreelistView.TreeListColumn treeListColumn304 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Vec4 Range", "Vec4 Range")));
            TreelistView.TreeListColumn treeListColumn305 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Size", "Size")));
            TreelistView.TreeListColumn treeListColumn306 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Go", "Go")));
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(D3D11PipelineStateViewer));
            System.Windows.Forms.Label label1;
            System.Windows.Forms.Label label15;
            System.Windows.Forms.Label label16;
            System.Windows.Forms.Label label17;
            System.Windows.Forms.Label label25;
            TreelistView.TreeListColumn treeListColumn307 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Slot", "Slot")));
            TreelistView.TreeListColumn treeListColumn308 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("X", "X")));
            TreelistView.TreeListColumn treeListColumn309 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Y", "Y")));
            TreelistView.TreeListColumn treeListColumn310 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Width", "Width")));
            TreelistView.TreeListColumn treeListColumn311 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Height", "Height")));
            TreelistView.TreeListColumn treeListColumn312 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("MinDepth", "MinDepth")));
            TreelistView.TreeListColumn treeListColumn313 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("MaxDepth", "MaxDepth")));
            System.Windows.Forms.GroupBox groupBox42;
            TreelistView.TreeListColumn treeListColumn314 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Slot", "Slot")));
            TreelistView.TreeListColumn treeListColumn315 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("X", "X")));
            TreelistView.TreeListColumn treeListColumn316 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Y", "Y")));
            TreelistView.TreeListColumn treeListColumn317 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Width", "Width")));
            TreelistView.TreeListColumn treeListColumn318 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Height", "Height")));
            System.Windows.Forms.Label label38;
            System.Windows.Forms.Label label39;
            System.Windows.Forms.Label label40;
            TreelistView.TreeListColumn treeListColumn319 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Slot", "Slot")));
            TreelistView.TreeListColumn treeListColumn320 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Interface", "Interface")));
            TreelistView.TreeListColumn treeListColumn321 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Instance", "Instance")));
            TreelistView.TreeListColumn treeListColumn322 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Slot", "Slot")));
            TreelistView.TreeListColumn treeListColumn323 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Resource", "Resource")));
            TreelistView.TreeListColumn treeListColumn324 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Type", "Type")));
            TreelistView.TreeListColumn treeListColumn325 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Width", "Width")));
            TreelistView.TreeListColumn treeListColumn326 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Height", "Height")));
            TreelistView.TreeListColumn treeListColumn327 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Depth", "Depth")));
            TreelistView.TreeListColumn treeListColumn328 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Array Size", "Array Size")));
            TreelistView.TreeListColumn treeListColumn329 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Format", "Format")));
            TreelistView.TreeListColumn treeListColumn330 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Go", "Go")));
            TreelistView.TreeListColumn treeListColumn331 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Slot", "Slot")));
            TreelistView.TreeListColumn treeListColumn332 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Addressing", "Addressing")));
            TreelistView.TreeListColumn treeListColumn333 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Filter", "Filter")));
            TreelistView.TreeListColumn treeListColumn334 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("LOD Clamp", "LOD Clamp")));
            TreelistView.TreeListColumn treeListColumn335 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Mip Bias", "Mip Bias")));
            TreelistView.TreeListColumn treeListColumn336 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Slot", "Slot")));
            TreelistView.TreeListColumn treeListColumn337 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Buffer", "Buffer")));
            TreelistView.TreeListColumn treeListColumn338 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Vec4 Range", "Vec4 Range")));
            TreelistView.TreeListColumn treeListColumn339 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Size", "Size")));
            TreelistView.TreeListColumn treeListColumn340 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Go", "Go")));
            TreelistView.TreeListColumn treeListColumn341 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Slot", "Slot")));
            TreelistView.TreeListColumn treeListColumn342 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Resource", "Resource")));
            TreelistView.TreeListColumn treeListColumn343 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Type", "Type")));
            TreelistView.TreeListColumn treeListColumn344 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Width", "Width")));
            TreelistView.TreeListColumn treeListColumn345 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Height", "Height")));
            TreelistView.TreeListColumn treeListColumn346 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Depth", "Depth")));
            TreelistView.TreeListColumn treeListColumn347 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Array Size", "Array Size")));
            TreelistView.TreeListColumn treeListColumn348 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Format", "Format")));
            TreelistView.TreeListColumn treeListColumn349 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Go", "Go")));
            TreelistView.TreeListColumn treeListColumn350 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Slot", "Slot")));
            TreelistView.TreeListColumn treeListColumn351 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Enabled", "Enabled")));
            TreelistView.TreeListColumn treeListColumn352 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Logic", "Logic")));
            TreelistView.TreeListColumn treeListColumn353 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Colour Src", "Colour Src")));
            TreelistView.TreeListColumn treeListColumn354 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Colour Dst", "Colour Dst")));
            TreelistView.TreeListColumn treeListColumn355 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Colour Op", "Colour Op")));
            TreelistView.TreeListColumn treeListColumn356 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Alpha Src", "Alpha Src")));
            TreelistView.TreeListColumn treeListColumn357 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Alpha Dst", "Alpha Dst")));
            TreelistView.TreeListColumn treeListColumn358 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Alpha Op", "Alpha Op")));
            TreelistView.TreeListColumn treeListColumn359 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Logic Op", "Logic Op")));
            TreelistView.TreeListColumn treeListColumn360 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Write Mask", "Write Mask")));
            TreelistView.TreeListColumn treeListColumn361 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Face", "Face")));
            TreelistView.TreeListColumn treeListColumn362 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Func", "Func")));
            TreelistView.TreeListColumn treeListColumn363 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Fail Op", "Fail Op")));
            TreelistView.TreeListColumn treeListColumn364 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Depth Fail Op", "Depth Fail Op")));
            TreelistView.TreeListColumn treeListColumn365 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Pass Op", "Pass Op")));
            TreelistView.TreeListColumn treeListColumn366 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Slot", "Slot")));
            TreelistView.TreeListColumn treeListColumn367 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Resource", "Resource")));
            TreelistView.TreeListColumn treeListColumn368 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Type", "Type")));
            TreelistView.TreeListColumn treeListColumn369 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Width", "Width")));
            TreelistView.TreeListColumn treeListColumn370 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Height", "Height")));
            TreelistView.TreeListColumn treeListColumn371 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Depth", "Depth")));
            TreelistView.TreeListColumn treeListColumn372 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Array Size", "Array Size")));
            TreelistView.TreeListColumn treeListColumn373 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Format", "Format")));
            TreelistView.TreeListColumn treeListColumn374 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Go", "Go")));
            TreelistView.TreeListColumn treeListColumn375 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Slot", "Slot")));
            TreelistView.TreeListColumn treeListColumn376 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Interface", "Interface")));
            TreelistView.TreeListColumn treeListColumn377 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Instance", "Instance")));
            System.Windows.Forms.Label label41;
            System.Windows.Forms.Label label42;
            System.Windows.Forms.Label label43;
            TreelistView.TreeListColumn treeListColumn378 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Slot", "Slot")));
            TreelistView.TreeListColumn treeListColumn379 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Resource", "Resource")));
            TreelistView.TreeListColumn treeListColumn380 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Type", "Type")));
            TreelistView.TreeListColumn treeListColumn381 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Width", "Width")));
            TreelistView.TreeListColumn treeListColumn382 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Height", "Height")));
            TreelistView.TreeListColumn treeListColumn383 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Depth", "Depth")));
            TreelistView.TreeListColumn treeListColumn384 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Array Size", "Array Size")));
            TreelistView.TreeListColumn treeListColumn385 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Format", "Format")));
            TreelistView.TreeListColumn treeListColumn386 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Go", "Go")));
            TreelistView.TreeListColumn treeListColumn387 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Slot", "Slot")));
            TreelistView.TreeListColumn treeListColumn388 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Addressing", "Addressing")));
            TreelistView.TreeListColumn treeListColumn389 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Filter", "Filter")));
            TreelistView.TreeListColumn treeListColumn390 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("LOD Clamp", "LOD Clamp")));
            TreelistView.TreeListColumn treeListColumn391 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Mip Bias", "Mip Bias")));
            TreelistView.TreeListColumn treeListColumn392 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Slot", "Slot")));
            TreelistView.TreeListColumn treeListColumn393 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Buffer", "Buffer")));
            TreelistView.TreeListColumn treeListColumn394 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Vec4 Range", "Vec4 Range")));
            TreelistView.TreeListColumn treeListColumn395 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Size", "Size")));
            TreelistView.TreeListColumn treeListColumn396 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Go", "Go")));
            this.pipeFlow = new renderdocui.Controls.PipelineFlowchart();
            this.flowLayoutPanel6 = new System.Windows.Forms.FlowLayoutPanel();
            this.toolStrip1 = new System.Windows.Forms.ToolStrip();
            this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
            this.showDisabledToolitem = new System.Windows.Forms.ToolStripButton();
            this.showEmptyToolitem = new System.Windows.Forms.ToolStripButton();
            this.export = new System.Windows.Forms.ToolStripButton();
            this.stageTabControl = new renderdocui.Controls.TablessControl();
            this.tabIA = new System.Windows.Forms.TabPage();
            this.panel1 = new System.Windows.Forms.Panel();
            this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
            this.groupBox1 = new System.Windows.Forms.GroupBox();
            this.tableLayoutPanel13 = new System.Windows.Forms.TableLayoutPanel();
            this.topologyDiagram = new System.Windows.Forms.PictureBox();
            this.topology = new System.Windows.Forms.Label();
            this.groupBox4 = new System.Windows.Forms.GroupBox();
            this.iabuffers = new TreelistView.TreeListView();
            this.inputLayouts = new TreelistView.TreeListView();
            this.iaBytecode = new System.Windows.Forms.Label();
            this.iaBytecodeCog = new System.Windows.Forms.PictureBox();
            this.iaBytecodeMismatch = new System.Windows.Forms.Label();
            this.meshView = new System.Windows.Forms.PictureBox();
            this.tabVS = new System.Windows.Forms.TabPage();
            this.panel2 = new System.Windows.Forms.Panel();
            this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
            this.groupBox3 = new System.Windows.Forms.GroupBox();
            this.flowLayoutPanel3 = new System.Windows.Forms.FlowLayoutPanel();
            this.vsShader = new System.Windows.Forms.Label();
            this.vsShaderCog = new System.Windows.Forms.PictureBox();
            this.vsShaderEdit = new System.Windows.Forms.PictureBox();
            this.vsShaderSave = new System.Windows.Forms.PictureBox();
            this.groupBox5 = new System.Windows.Forms.GroupBox();
            this.vsClasses = new TreelistView.TreeListView();
            this.groupBox7 = new System.Windows.Forms.GroupBox();
            this.vsResources = new TreelistView.TreeListView();
            this.groupBox8 = new System.Windows.Forms.GroupBox();
            this.vsSamplers = new TreelistView.TreeListView();
            this.groupBox9 = new System.Windows.Forms.GroupBox();
            this.vsCBuffers = new TreelistView.TreeListView();
            this.tabHS = new System.Windows.Forms.TabPage();
            this.panel3 = new System.Windows.Forms.Panel();
            this.tableLayoutPanel3 = new System.Windows.Forms.TableLayoutPanel();
            this.groupBox10 = new System.Windows.Forms.GroupBox();
            this.flowLayoutPanel4 = new System.Windows.Forms.FlowLayoutPanel();
            this.hsShader = new System.Windows.Forms.Label();
            this.hsShaderCog = new System.Windows.Forms.PictureBox();
            this.hsShaderEdit = new System.Windows.Forms.PictureBox();
            this.hsShaderSave = new System.Windows.Forms.PictureBox();
            this.groupBox11 = new System.Windows.Forms.GroupBox();
            this.hsClasses = new TreelistView.TreeListView();
            this.groupBox12 = new System.Windows.Forms.GroupBox();
            this.hsResources = new TreelistView.TreeListView();
            this.groupBox14 = new System.Windows.Forms.GroupBox();
            this.hsSamplers = new TreelistView.TreeListView();
            this.groupBox15 = new System.Windows.Forms.GroupBox();
            this.hsCBuffers = new TreelistView.TreeListView();
            this.tabDS = new System.Windows.Forms.TabPage();
            this.panel4 = new System.Windows.Forms.Panel();
            this.tableLayoutPanel4 = new System.Windows.Forms.TableLayoutPanel();
            this.groupBox16 = new System.Windows.Forms.GroupBox();
            this.flowLayoutPanel5 = new System.Windows.Forms.FlowLayoutPanel();
            this.dsShader = new System.Windows.Forms.Label();
            this.dsShaderCog = new System.Windows.Forms.PictureBox();
            this.dsShaderEdit = new System.Windows.Forms.PictureBox();
            this.dsShaderSave = new System.Windows.Forms.PictureBox();
            this.groupBox17 = new System.Windows.Forms.GroupBox();
            this.dsClasses = new TreelistView.TreeListView();
            this.groupBox18 = new System.Windows.Forms.GroupBox();
            this.dsResources = new TreelistView.TreeListView();
            this.groupBox20 = new System.Windows.Forms.GroupBox();
            this.dsSamplers = new TreelistView.TreeListView();
            this.groupBox21 = new System.Windows.Forms.GroupBox();
            this.dsCBuffers = new TreelistView.TreeListView();
            this.tabGS = new System.Windows.Forms.TabPage();
            this.panel5 = new System.Windows.Forms.Panel();
            this.geomTableLayout = new System.Windows.Forms.TableLayoutPanel();
            this.gsStreams = new TreelistView.TreeListView();
            this.groupBox22 = new System.Windows.Forms.GroupBox();
            this.flowLayoutPanel2 = new System.Windows.Forms.FlowLayoutPanel();
            this.gsShader = new System.Windows.Forms.Label();
            this.gsShaderCog = new System.Windows.Forms.PictureBox();
            this.gsShaderEdit = new System.Windows.Forms.PictureBox();
            this.gsShaderSave = new System.Windows.Forms.PictureBox();
            this.geomClassGroupBox = new System.Windows.Forms.GroupBox();
            this.gsClasses = new TreelistView.TreeListView();
            this.groupBox24 = new System.Windows.Forms.GroupBox();
            this.gsResources = new TreelistView.TreeListView();
            this.groupBox25 = new System.Windows.Forms.GroupBox();
            this.gsSamplers = new TreelistView.TreeListView();
            this.geomCBufGroupBox = new System.Windows.Forms.GroupBox();
            this.gsCBuffers = new TreelistView.TreeListView();
            this.tabRS = new System.Windows.Forms.TabPage();
            this.panel8 = new System.Windows.Forms.Panel();
            this.tableLayoutPanel14 = new System.Windows.Forms.TableLayoutPanel();
            this.groupBox31 = new System.Windows.Forms.GroupBox();
            this.tableLayoutPanel8 = new System.Windows.Forms.TableLayoutPanel();
            this.forcedSampleCount = new System.Windows.Forms.Label();
            this.label14 = new System.Windows.Forms.Label();
            this.frontCCW = new System.Windows.Forms.PictureBox();
            this.cullMode = new System.Windows.Forms.Label();
            this.label2 = new System.Windows.Forms.Label();
            this.label5 = new System.Windows.Forms.Label();
            this.depthBias = new System.Windows.Forms.Label();
            this.depthBiasClamp = new System.Windows.Forms.Label();
            this.slopeScaledBias = new System.Windows.Forms.Label();
            this.label18 = new System.Windows.Forms.Label();
            this.label19 = new System.Windows.Forms.Label();
            this.label20 = new System.Windows.Forms.Label();
            this.depthClip = new System.Windows.Forms.PictureBox();
            this.fillMode = new System.Windows.Forms.Label();
            this.multisampleEnable = new System.Windows.Forms.PictureBox();
            this.scissorEnable = new System.Windows.Forms.PictureBox();
            this.lineAAEnable = new System.Windows.Forms.PictureBox();
            this.label23 = new System.Windows.Forms.Label();
            this.conservativeRaster = new System.Windows.Forms.PictureBox();
            this.groupBox32 = new System.Windows.Forms.GroupBox();
            this.viewports = new TreelistView.TreeListView();
            this.scissors = new TreelistView.TreeListView();
            this.tabPS = new System.Windows.Forms.TabPage();
            this.panel6 = new System.Windows.Forms.Panel();
            this.pixelTableLayout = new System.Windows.Forms.TableLayoutPanel();
            this.groupBox13 = new System.Windows.Forms.GroupBox();
            this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
            this.psShader = new System.Windows.Forms.Label();
            this.psShaderCog = new System.Windows.Forms.PictureBox();
            this.psShaderEdit = new System.Windows.Forms.PictureBox();
            this.psShaderSave = new System.Windows.Forms.PictureBox();
            this.pixelClassGroupBox = new System.Windows.Forms.GroupBox();
            this.psClasses = new TreelistView.TreeListView();
            this.groupBox28 = new System.Windows.Forms.GroupBox();
            this.psResources = new TreelistView.TreeListView();
            this.groupBox29 = new System.Windows.Forms.GroupBox();
            this.psSamplers = new TreelistView.TreeListView();
            this.pixelCBufGroupBox = new System.Windows.Forms.GroupBox();
            this.psCBuffers = new TreelistView.TreeListView();
            this.tabOM = new System.Windows.Forms.TabPage();
            this.panel9 = new System.Windows.Forms.Panel();
            this.tableLayoutPanel9 = new System.Windows.Forms.TableLayoutPanel();
            this.groupBox33 = new System.Windows.Forms.GroupBox();
            this.targetOutputs = new TreelistView.TreeListView();
            this.groupBox37 = new System.Windows.Forms.GroupBox();
            this.blendOperations = new TreelistView.TreeListView();
            this.tableLayoutPanel10 = new System.Windows.Forms.TableLayoutPanel();
            this.groupBox40 = new System.Windows.Forms.GroupBox();
            this.tableLayoutPanel11 = new System.Windows.Forms.TableLayoutPanel();
            this.sampleMask = new System.Windows.Forms.Label();
            this.independentBlend = new System.Windows.Forms.PictureBox();
            this.label3 = new System.Windows.Forms.Label();
            this.label6 = new System.Windows.Forms.Label();
            this.label7 = new System.Windows.Forms.Label();
            this.alphaToCoverage = new System.Windows.Forms.PictureBox();
            this.blendFactor = new System.Windows.Forms.Label();
            this.label4 = new System.Windows.Forms.Label();
            this.groupBox41 = new System.Windows.Forms.GroupBox();
            this.tableLayoutPanel12 = new System.Windows.Forms.TableLayoutPanel();
            this.depthEnable = new System.Windows.Forms.PictureBox();
            this.label21 = new System.Windows.Forms.Label();
            this.depthWrite = new System.Windows.Forms.PictureBox();
            this.label11 = new System.Windows.Forms.Label();
            this.label13 = new System.Windows.Forms.Label();
            this.depthFunc = new System.Windows.Forms.Label();
            this.groupBox43 = new System.Windows.Forms.GroupBox();
            this.flowLayoutPanel8 = new System.Windows.Forms.FlowLayoutPanel();
            this.tableLayoutPanel15 = new System.Windows.Forms.TableLayoutPanel();
            this.stencilRef = new System.Windows.Forms.Label();
            this.stencilReadMask = new System.Windows.Forms.Label();
            this.stencilEnable = new System.Windows.Forms.PictureBox();
            this.label12 = new System.Windows.Forms.Label();
            this.label22 = new System.Windows.Forms.Label();
            this.stencilWriteMask = new System.Windows.Forms.Label();
            this.label24 = new System.Windows.Forms.Label();
            this.label8 = new System.Windows.Forms.Label();
            this.stencilFuncs = new TreelistView.TreeListView();
            this.tabCS = new System.Windows.Forms.TabPage();
            this.panel7 = new System.Windows.Forms.Panel();
            this.tableLayoutPanel7 = new System.Windows.Forms.TableLayoutPanel();
            this.groupBox38 = new System.Windows.Forms.GroupBox();
            this.csUAVs = new TreelistView.TreeListView();
            this.groupBox27 = new System.Windows.Forms.GroupBox();
            this.csClasses = new TreelistView.TreeListView();
            this.groupBox6 = new System.Windows.Forms.GroupBox();
            this.flowLayoutPanel7 = new System.Windows.Forms.FlowLayoutPanel();
            this.csShader = new System.Windows.Forms.Label();
            this.csShaderCog = new System.Windows.Forms.PictureBox();
            this.csShaderEdit = new System.Windows.Forms.PictureBox();
            this.csShaderSave = new System.Windows.Forms.PictureBox();
            this.computeDebugControls = new System.Windows.Forms.FlowLayoutPanel();
            this.label9 = new System.Windows.Forms.Label();
            this.groupX = new System.Windows.Forms.TextBox();
            this.groupY = new System.Windows.Forms.TextBox();
            this.groupZ = new System.Windows.Forms.TextBox();
            this.label10 = new System.Windows.Forms.Label();
            this.threadX = new System.Windows.Forms.TextBox();
            this.threadY = new System.Windows.Forms.TextBox();
            this.threadZ = new System.Windows.Forms.TextBox();
            this.csDebug = new System.Windows.Forms.Button();
            this.groupBox34 = new System.Windows.Forms.GroupBox();
            this.csResources = new TreelistView.TreeListView();
            this.groupBox35 = new System.Windows.Forms.GroupBox();
            this.csSamplers = new TreelistView.TreeListView();
            this.groupBox36 = new System.Windows.Forms.GroupBox();
            this.csCBuffers = new TreelistView.TreeListView();
            this.rightclickMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.showDisabled = new System.Windows.Forms.ToolStripMenuItem();
            this.showEmpty = new System.Windows.Forms.ToolStripMenuItem();
            this.toolTip = new System.Windows.Forms.ToolTip(this.components);
            this.pipeExportDialog = new System.Windows.Forms.SaveFileDialog();
            this.shaderSaveDialog = new System.Windows.Forms.SaveFileDialog();
            toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
            toolstripTable = new System.Windows.Forms.TableLayoutPanel();
            groupBox2 = new System.Windows.Forms.GroupBox();
            groupBox39 = new System.Windows.Forms.GroupBox();
            flowLayoutPanel9 = new System.Windows.Forms.FlowLayoutPanel();
            groupBox44 = new System.Windows.Forms.GroupBox();
            label28 = new System.Windows.Forms.Label();
            label26 = new System.Windows.Forms.Label();
            label27 = 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();
            groupBox45 = new System.Windows.Forms.GroupBox();
            label35 = new System.Windows.Forms.Label();
            label36 = new System.Windows.Forms.Label();
            label37 = new System.Windows.Forms.Label();
            label1 = new System.Windows.Forms.Label();
            label15 = new System.Windows.Forms.Label();
            label16 = new System.Windows.Forms.Label();
            label17 = new System.Windows.Forms.Label();
            label25 = new System.Windows.Forms.Label();
            groupBox42 = new System.Windows.Forms.GroupBox();
            label38 = new System.Windows.Forms.Label();
            label39 = new System.Windows.Forms.Label();
            label40 = new System.Windows.Forms.Label();
            label41 = new System.Windows.Forms.Label();
            label42 = new System.Windows.Forms.Label();
            label43 = new System.Windows.Forms.Label();
            toolstripTable.SuspendLayout();
            this.flowLayoutPanel6.SuspendLayout();
            this.toolStrip1.SuspendLayout();
            this.stageTabControl.SuspendLayout();
            this.tabIA.SuspendLayout();
            this.panel1.SuspendLayout();
            this.tableLayoutPanel1.SuspendLayout();
            this.groupBox1.SuspendLayout();
            this.tableLayoutPanel13.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.topologyDiagram)).BeginInit();
            this.groupBox4.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.iabuffers)).BeginInit();
            groupBox2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.inputLayouts)).BeginInit();
            groupBox39.SuspendLayout();
            flowLayoutPanel9.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.iaBytecodeCog)).BeginInit();
            groupBox44.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.meshView)).BeginInit();
            this.tabVS.SuspendLayout();
            this.panel2.SuspendLayout();
            this.tableLayoutPanel2.SuspendLayout();
            this.groupBox3.SuspendLayout();
            this.flowLayoutPanel3.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.vsShaderCog)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.vsShaderEdit)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.vsShaderSave)).BeginInit();
            this.groupBox5.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.vsClasses)).BeginInit();
            this.groupBox7.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.vsResources)).BeginInit();
            this.groupBox8.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.vsSamplers)).BeginInit();
            this.groupBox9.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.vsCBuffers)).BeginInit();
            this.tabHS.SuspendLayout();
            this.panel3.SuspendLayout();
            this.tableLayoutPanel3.SuspendLayout();
            this.groupBox10.SuspendLayout();
            this.flowLayoutPanel4.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.hsShaderCog)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.hsShaderEdit)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.hsShaderSave)).BeginInit();
            this.groupBox11.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.hsClasses)).BeginInit();
            this.groupBox12.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.hsResources)).BeginInit();
            this.groupBox14.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.hsSamplers)).BeginInit();
            this.groupBox15.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.hsCBuffers)).BeginInit();
            this.tabDS.SuspendLayout();
            this.panel4.SuspendLayout();
            this.tableLayoutPanel4.SuspendLayout();
            this.groupBox16.SuspendLayout();
            this.flowLayoutPanel5.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dsShaderCog)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dsShaderEdit)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dsShaderSave)).BeginInit();
            this.groupBox17.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dsClasses)).BeginInit();
            this.groupBox18.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dsResources)).BeginInit();
            this.groupBox20.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dsSamplers)).BeginInit();
            this.groupBox21.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dsCBuffers)).BeginInit();
            this.tabGS.SuspendLayout();
            this.panel5.SuspendLayout();
            this.geomTableLayout.SuspendLayout();
            groupBox45.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gsStreams)).BeginInit();
            this.groupBox22.SuspendLayout();
            this.flowLayoutPanel2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gsShaderCog)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gsShaderEdit)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gsShaderSave)).BeginInit();
            this.geomClassGroupBox.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gsClasses)).BeginInit();
            this.groupBox24.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gsResources)).BeginInit();
            this.groupBox25.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gsSamplers)).BeginInit();
            this.geomCBufGroupBox.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gsCBuffers)).BeginInit();
            this.tabRS.SuspendLayout();
            this.panel8.SuspendLayout();
            this.tableLayoutPanel14.SuspendLayout();
            this.groupBox31.SuspendLayout();
            this.tableLayoutPanel8.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.frontCCW)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.depthClip)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.multisampleEnable)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.scissorEnable)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.lineAAEnable)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.conservativeRaster)).BeginInit();
            this.groupBox32.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.viewports)).BeginInit();
            groupBox42.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.scissors)).BeginInit();
            this.tabPS.SuspendLayout();
            this.panel6.SuspendLayout();
            this.pixelTableLayout.SuspendLayout();
            this.groupBox13.SuspendLayout();
            this.flowLayoutPanel1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.psShaderCog)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.psShaderEdit)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.psShaderSave)).BeginInit();
            this.pixelClassGroupBox.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.psClasses)).BeginInit();
            this.groupBox28.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.psResources)).BeginInit();
            this.groupBox29.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.psSamplers)).BeginInit();
            this.pixelCBufGroupBox.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.psCBuffers)).BeginInit();
            this.tabOM.SuspendLayout();
            this.panel9.SuspendLayout();
            this.tableLayoutPanel9.SuspendLayout();
            this.groupBox33.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.targetOutputs)).BeginInit();
            this.groupBox37.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.blendOperations)).BeginInit();
            this.tableLayoutPanel10.SuspendLayout();
            this.groupBox40.SuspendLayout();
            this.tableLayoutPanel11.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.independentBlend)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.alphaToCoverage)).BeginInit();
            this.groupBox41.SuspendLayout();
            this.tableLayoutPanel12.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.depthEnable)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.depthWrite)).BeginInit();
            this.groupBox43.SuspendLayout();
            this.flowLayoutPanel8.SuspendLayout();
            this.tableLayoutPanel15.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.stencilEnable)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.stencilFuncs)).BeginInit();
            this.tabCS.SuspendLayout();
            this.panel7.SuspendLayout();
            this.tableLayoutPanel7.SuspendLayout();
            this.groupBox38.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.csUAVs)).BeginInit();
            this.groupBox27.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.csClasses)).BeginInit();
            this.groupBox6.SuspendLayout();
            this.flowLayoutPanel7.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.csShaderCog)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.csShaderEdit)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.csShaderSave)).BeginInit();
            this.computeDebugControls.SuspendLayout();
            this.groupBox34.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.csResources)).BeginInit();
            this.groupBox35.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.csSamplers)).BeginInit();
            this.groupBox36.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.csCBuffers)).BeginInit();
            this.rightclickMenu.SuspendLayout();
            this.SuspendLayout();
            // 
            // toolStripLabel1
            // 
            toolStripLabel1.Name = "toolStripLabel1";
            toolStripLabel1.Size = new System.Drawing.Size(84, 22);
            toolStripLabel1.Text = "Display Controls";
            // 
            // toolstripTable
            // 
            toolstripTable.ColumnCount = 1;
            toolstripTable.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
            toolstripTable.Controls.Add(this.pipeFlow, 0, 1);
            toolstripTable.Controls.Add(this.flowLayoutPanel6, 0, 0);
            toolstripTable.Controls.Add(this.stageTabControl, 0, 2);
            toolstripTable.Dock = System.Windows.Forms.DockStyle.Fill;
            toolstripTable.Location = new System.Drawing.Point(0, 0);
            toolstripTable.Name = "toolstripTable";
            toolstripTable.RowCount = 3;
            toolstripTable.RowStyles.Add(new System.Windows.Forms.RowStyle());
            toolstripTable.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F));
            toolstripTable.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 90F));
            toolstripTable.Size = new System.Drawing.Size(1023, 738);
            toolstripTable.TabIndex = 2;
            // 
            // pipeFlow
            // 
            this.pipeFlow.BackColor = System.Drawing.Color.Transparent;
            this.pipeFlow.Dock = System.Windows.Forms.DockStyle.Fill;
            this.pipeFlow.Font = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.pipeFlow.Location = new System.Drawing.Point(4, 35);
            this.pipeFlow.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
            this.pipeFlow.Name = "pipeFlow";
            this.pipeFlow.SelectedStage = 0;
            this.pipeFlow.Size = new System.Drawing.Size(1015, 62);
            this.pipeFlow.TabIndex = 0;
            this.pipeFlow.SelectedStageChanged += new System.EventHandler<System.EventArgs>(this.pipeFlow_SelectedStageChanged);
            // 
            // flowLayoutPanel6
            // 
            this.flowLayoutPanel6.AutoSize = true;
            this.flowLayoutPanel6.Controls.Add(this.toolStrip1);
            this.flowLayoutPanel6.Location = new System.Drawing.Point(3, 3);
            this.flowLayoutPanel6.Name = "flowLayoutPanel6";
            this.flowLayoutPanel6.Size = new System.Drawing.Size(394, 25);
            this.flowLayoutPanel6.TabIndex = 1;
            // 
            // toolStrip1
            // 
            this.toolStrip1.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
            this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            toolStripLabel1,
            this.toolStripSeparator2,
            this.showDisabledToolitem,
            this.showEmptyToolitem,
            this.export});
            this.toolStrip1.Location = new System.Drawing.Point(0, 0);
            this.toolStrip1.Name = "toolStrip1";
            this.toolStrip1.Size = new System.Drawing.Size(394, 25);
            this.toolStrip1.TabIndex = 0;
            this.toolStrip1.Text = "toolStrip1";
            // 
            // toolStripSeparator2
            // 
            this.toolStripSeparator2.Name = "toolStripSeparator2";
            this.toolStripSeparator2.Size = new System.Drawing.Size(6, 25);
            // 
            // showDisabledToolitem
            // 
            this.showDisabledToolitem.CheckOnClick = true;
            this.showDisabledToolitem.Image = global::renderdocui.Properties.Resources.page_white_delete;
            this.showDisabledToolitem.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.showDisabledToolitem.Name = "showDisabledToolitem";
            this.showDisabledToolitem.Size = new System.Drawing.Size(126, 22);
            this.showDisabledToolitem.Text = "Show Disabled Items";
            this.showDisabledToolitem.Click += new System.EventHandler(this.hideDisabled_Click);
            // 
            // showEmptyToolitem
            // 
            this.showEmptyToolitem.CheckOnClick = true;
            this.showEmptyToolitem.Image = global::renderdocui.Properties.Resources.page_white_database;
            this.showEmptyToolitem.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.showEmptyToolitem.Name = "showEmptyToolitem";
            this.showEmptyToolitem.Size = new System.Drawing.Size(116, 22);
            this.showEmptyToolitem.Text = "Show Empty Items";
            this.showEmptyToolitem.Click += new System.EventHandler(this.hideEmpty_Click);
            // 
            // export
            // 
            this.export.Image = global::renderdocui.Properties.Resources.save;
            this.export.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.export.Name = "export";
            this.export.Size = new System.Drawing.Size(59, 22);
            this.export.Text = "Export";
            this.export.Click += new System.EventHandler(this.export_Click);
            // 
            // stageTabControl
            // 
            this.stageTabControl.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.stageTabControl.Controls.Add(this.tabIA);
            this.stageTabControl.Controls.Add(this.tabVS);
            this.stageTabControl.Controls.Add(this.tabHS);
            this.stageTabControl.Controls.Add(this.tabDS);
            this.stageTabControl.Controls.Add(this.tabGS);
            this.stageTabControl.Controls.Add(this.tabRS);
            this.stageTabControl.Controls.Add(this.tabPS);
            this.stageTabControl.Controls.Add(this.tabOM);
            this.stageTabControl.Controls.Add(this.tabCS);
            this.stageTabControl.HotTrack = true;
            this.stageTabControl.Location = new System.Drawing.Point(3, 104);
            this.stageTabControl.Multiline = true;
            this.stageTabControl.Name = "stageTabControl";
            this.stageTabControl.SelectedIndex = 0;
            this.stageTabControl.Size = new System.Drawing.Size(1017, 631);
            this.stageTabControl.TabIndex = 0;
            // 
            // tabIA
            // 
            this.tabIA.Controls.Add(this.panel1);
            this.tabIA.Location = new System.Drawing.Point(4, 22);
            this.tabIA.Name = "tabIA";
            this.tabIA.Size = new System.Drawing.Size(1009, 605);
            this.tabIA.TabIndex = 0;
            this.tabIA.Text = "Input Assembler";
            this.tabIA.UseVisualStyleBackColor = true;
            // 
            // panel1
            // 
            this.panel1.AutoScroll = true;
            this.panel1.AutoScrollMinSize = new System.Drawing.Size(280, 400);
            this.panel1.Controls.Add(this.tableLayoutPanel1);
            this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panel1.Location = new System.Drawing.Point(0, 0);
            this.panel1.Margin = new System.Windows.Forms.Padding(0);
            this.panel1.Name = "panel1";
            this.panel1.Size = new System.Drawing.Size(1009, 605);
            this.panel1.TabIndex = 0;
            // 
            // tableLayoutPanel1
            // 
            this.tableLayoutPanel1.ColumnCount = 3;
            this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
            this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 20F));
            this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 30F));
            this.tableLayoutPanel1.Controls.Add(this.groupBox1, 2, 2);
            this.tableLayoutPanel1.Controls.Add(this.groupBox4, 0, 2);
            this.tableLayoutPanel1.Controls.Add(groupBox2, 0, 0);
            this.tableLayoutPanel1.Controls.Add(groupBox39, 0, 1);
            this.tableLayoutPanel1.Controls.Add(groupBox44, 1, 2);
            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 = 3;
            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 50F));
            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
            this.tableLayoutPanel1.Size = new System.Drawing.Size(1009, 605);
            this.tableLayoutPanel1.TabIndex = 9;
            // 
            // groupBox1
            // 
            this.groupBox1.Controls.Add(this.tableLayoutPanel13);
            this.groupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.groupBox1.Location = new System.Drawing.Point(708, 330);
            this.groupBox1.Name = "groupBox1";
            this.groupBox1.Size = new System.Drawing.Size(298, 272);
            this.groupBox1.TabIndex = 6;
            this.groupBox1.TabStop = false;
            this.groupBox1.Text = "Primitive Topology";
            // 
            // tableLayoutPanel13
            // 
            this.tableLayoutPanel13.ColumnCount = 1;
            this.tableLayoutPanel13.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
            this.tableLayoutPanel13.Controls.Add(this.topologyDiagram, 0, 1);
            this.tableLayoutPanel13.Controls.Add(this.topology, 0, 0);
            this.tableLayoutPanel13.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tableLayoutPanel13.Location = new System.Drawing.Point(3, 16);
            this.tableLayoutPanel13.Name = "tableLayoutPanel13";
            this.tableLayoutPanel13.RowCount = 2;
            this.tableLayoutPanel13.RowStyles.Add(new System.Windows.Forms.RowStyle());
            this.tableLayoutPanel13.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
            this.tableLayoutPanel13.Size = new System.Drawing.Size(292, 253);
            this.tableLayoutPanel13.TabIndex = 2;
            // 
            // topologyDiagram
            // 
            this.topologyDiagram.Dock = System.Windows.Forms.DockStyle.Fill;
            this.topologyDiagram.Image = global::renderdocui.Properties.Resources.topo_trilist;
            this.topologyDiagram.Location = new System.Drawing.Point(3, 26);
            this.topologyDiagram.Name = "topologyDiagram";
            this.topologyDiagram.Size = new System.Drawing.Size(286, 224);
            this.topologyDiagram.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
            this.topologyDiagram.TabIndex = 1;
            this.topologyDiagram.TabStop = false;
            // 
            // topology
            // 
            this.topology.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.topology.AutoSize = true;
            this.topology.BackColor = System.Drawing.Color.Transparent;
            this.topology.Font = new System.Drawing.Font("Tahoma", 14.25F);
            this.topology.Location = new System.Drawing.Point(3, 0);
            this.topology.Name = "topology";
            this.topology.Size = new System.Drawing.Size(286, 23);
            this.topology.TabIndex = 0;
            this.topology.Text = "Triangle List";
            this.topology.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            // 
            // groupBox4
            // 
            this.groupBox4.Controls.Add(this.iabuffers);
            this.groupBox4.Dock = System.Windows.Forms.DockStyle.Fill;
            this.groupBox4.Location = new System.Drawing.Point(3, 330);
            this.groupBox4.Name = "groupBox4";
            this.groupBox4.Size = new System.Drawing.Size(498, 272);
            this.groupBox4.TabIndex = 8;
            this.groupBox4.TabStop = false;
            this.groupBox4.Text = "Buffers";
            // 
            // iabuffers
            // 
            treeListColumn199.AutoSizeMinSize = 0;
            treeListColumn199.Width = 60;
            treeListColumn200.AutoSize = true;
            treeListColumn200.AutoSizeMinSize = 100;
            treeListColumn200.Width = 50;
            treeListColumn201.AutoSizeMinSize = 0;
            treeListColumn201.Width = 75;
            treeListColumn202.AutoSizeMinSize = 0;
            treeListColumn202.Width = 75;
            treeListColumn203.AutoSizeMinSize = 0;
            treeListColumn203.Width = 80;
            treeListColumn204.AutoSizeMinSize = 0;
            treeListColumn204.Width = 25;
            this.iabuffers.Columns.AddRange(new TreelistView.TreeListColumn[] {
            treeListColumn199,
            treeListColumn200,
            treeListColumn201,
            treeListColumn202,
            treeListColumn203,
            treeListColumn204});
            this.iabuffers.Cursor = System.Windows.Forms.Cursors.VSplit;
            this.iabuffers.Dock = System.Windows.Forms.DockStyle.Fill;
            this.iabuffers.GridLineColour = System.Drawing.SystemColors.ControlDark;
            this.iabuffers.Location = new System.Drawing.Point(3, 16);
            this.iabuffers.MultiSelect = false;
            this.iabuffers.Name = "iabuffers";
            this.iabuffers.RowOptions.ItemHeight = 20;
            this.iabuffers.RowOptions.ShowHeader = false;
            this.iabuffers.Size = new System.Drawing.Size(492, 253);
            this.iabuffers.TabIndex = 10;
            this.iabuffers.Text = "treeListView1";
            this.iabuffers.TreeColumn = 5;
            this.iabuffers.ViewOptions.Indent = 0;
            this.iabuffers.ViewOptions.ShowLine = false;
            this.iabuffers.ViewOptions.ShowPlusMinus = false;
            this.iabuffers.NodeDoubleClicked += new TreelistView.TreeListView.NodeDoubleClickedHandler(this.iabuffers_NodeDoubleClicked);
            this.iabuffers.NodeClicked += new TreelistView.TreeListView.NodeClickedHandler(this.iabuffers_NodeDoubleClicked);
            this.iabuffers.KeyDown += new System.Windows.Forms.KeyEventHandler(this.defaultCopyPaste_KeyDown);
            this.iabuffers.Leave += new System.EventHandler(this.disableSelection_Leave);
            this.iabuffers.MouseClick += new System.Windows.Forms.MouseEventHandler(this.hideDisabledEmpty_MouseClick);
            this.iabuffers.MouseLeave += new System.EventHandler(this.ia_MouseLeave);
            this.iabuffers.MouseMove += new System.Windows.Forms.MouseEventHandler(this.iabuffers_MouseMove);
            // 
            // groupBox2
            // 
            this.tableLayoutPanel1.SetColumnSpan(groupBox2, 3);
            groupBox2.Controls.Add(this.inputLayouts);
            groupBox2.Dock = System.Windows.Forms.DockStyle.Fill;
            groupBox2.Location = new System.Drawing.Point(3, 3);
            groupBox2.Name = "groupBox2";
            groupBox2.Size = new System.Drawing.Size(1003, 271);
            groupBox2.TabIndex = 9;
            groupBox2.TabStop = false;
            groupBox2.Text = "Input Layouts";
            // 
            // inputLayouts
            // 
            treeListColumn205.AutoSizeMinSize = 0;
            treeListColumn205.Width = 40;
            treeListColumn206.AutoSizeMinSize = 0;
            treeListColumn206.Width = 200;
            treeListColumn207.AutoSize = true;
            treeListColumn207.AutoSizeMinSize = 50;
            treeListColumn207.Width = 75;
            treeListColumn208.AutoSizeMinSize = 0;
            treeListColumn208.Width = 150;
            treeListColumn209.AutoSizeMinSize = 0;
            treeListColumn209.Width = 80;
            treeListColumn210.AutoSizeMinSize = 0;
            treeListColumn210.Width = 150;
            treeListColumn211.AutoSizeMinSize = 0;
            treeListColumn211.Width = 90;
            treeListColumn212.AutoSizeMinSize = 0;
            treeListColumn212.Width = 75;
            treeListColumn213.AutoSizeMinSize = 0;
            treeListColumn213.Width = 25;
            this.inputLayouts.Columns.AddRange(new TreelistView.TreeListColumn[] {
            treeListColumn205,
            treeListColumn206,
            treeListColumn207,
            treeListColumn208,
            treeListColumn209,
            treeListColumn210,
            treeListColumn211,
            treeListColumn212,
            treeListColumn213});
            this.inputLayouts.Cursor = System.Windows.Forms.Cursors.Arrow;
            this.inputLayouts.Dock = System.Windows.Forms.DockStyle.Fill;
            this.inputLayouts.GridLineColour = System.Drawing.SystemColors.ControlDark;
            this.inputLayouts.Location = new System.Drawing.Point(3, 16);
            this.inputLayouts.MultiSelect = false;
            this.inputLayouts.Name = "inputLayouts";
            this.inputLayouts.RowOptions.ItemHeight = 20;
            this.inputLayouts.RowOptions.ShowHeader = false;
            this.inputLayouts.Size = new System.Drawing.Size(997, 252);
            this.inputLayouts.TabIndex = 12;
            this.inputLayouts.Text = "Input Layouts";
            this.inputLayouts.TreeColumn = 8;
            this.inputLayouts.ViewOptions.Indent = 0;
            this.inputLayouts.ViewOptions.ShowLine = false;
            this.inputLayouts.ViewOptions.ShowPlusMinus = false;
            this.inputLayouts.NodeDoubleClicked += new TreelistView.TreeListView.NodeDoubleClickedHandler(this.inputLayouts_NodeDoubleClick);
            this.inputLayouts.NodeClicked += new TreelistView.TreeListView.NodeClickedHandler(this.inputLayouts_NodeDoubleClick);
            this.inputLayouts.KeyDown += new System.Windows.Forms.KeyEventHandler(this.defaultCopyPaste_KeyDown);
            this.inputLayouts.Leave += new System.EventHandler(this.disableSelection_Leave);
            this.inputLayouts.MouseClick += new System.Windows.Forms.MouseEventHandler(this.hideDisabledEmpty_MouseClick);
            this.inputLayouts.MouseLeave += new System.EventHandler(this.ia_MouseLeave);
            this.inputLayouts.MouseMove += new System.Windows.Forms.MouseEventHandler(this.inputLayouts_MouseMove);
            // 
            // groupBox39
            // 
            groupBox39.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.tableLayoutPanel1.SetColumnSpan(groupBox39, 3);
            groupBox39.Controls.Add(flowLayoutPanel9);
            groupBox39.Location = new System.Drawing.Point(3, 280);
            groupBox39.Name = "groupBox39";
            groupBox39.Size = new System.Drawing.Size(1003, 44);
            groupBox39.TabIndex = 10;
            groupBox39.TabStop = false;
            groupBox39.Text = "Input Layout Bytecode";
            // 
            // flowLayoutPanel9
            // 
            flowLayoutPanel9.Controls.Add(this.iaBytecode);
            flowLayoutPanel9.Controls.Add(this.iaBytecodeCog);
            flowLayoutPanel9.Controls.Add(this.iaBytecodeMismatch);
            flowLayoutPanel9.Dock = System.Windows.Forms.DockStyle.Fill;
            flowLayoutPanel9.Location = new System.Drawing.Point(3, 16);
            flowLayoutPanel9.Name = "flowLayoutPanel9";
            flowLayoutPanel9.Size = new System.Drawing.Size(997, 25);
            flowLayoutPanel9.TabIndex = 26;
            // 
            // iaBytecode
            // 
            this.iaBytecode.Anchor = System.Windows.Forms.AnchorStyles.Left;
            this.iaBytecode.AutoSize = true;
            this.iaBytecode.BackColor = System.Drawing.SystemColors.Info;
            this.iaBytecode.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.iaBytecode.Cursor = System.Windows.Forms.Cursors.Hand;
            this.iaBytecode.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
            this.iaBytecode.ForeColor = System.Drawing.SystemColors.InfoText;
            this.iaBytecode.Location = new System.Drawing.Point(3, 3);
            this.iaBytecode.MinimumSize = new System.Drawing.Size(300, 2);
            this.iaBytecode.Name = "iaBytecode";
            this.iaBytecode.Size = new System.Drawing.Size(300, 15);
            this.iaBytecode.TabIndex = 24;
            this.iaBytecode.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            this.iaBytecode.Click += new System.EventHandler(this.shader_Click);
            this.iaBytecode.MouseEnter += new System.EventHandler(this.shaderCog_MouseEnter);
            this.iaBytecode.MouseLeave += new System.EventHandler(this.shaderCog_MouseLeave);
            // 
            // iaBytecodeCog
            // 
            this.iaBytecodeCog.Cursor = System.Windows.Forms.Cursors.Hand;
            this.iaBytecodeCog.Image = global::renderdocui.Properties.Resources.action;
            this.iaBytecodeCog.Location = new System.Drawing.Point(309, 3);
            this.iaBytecodeCog.Name = "iaBytecodeCog";
            this.iaBytecodeCog.Size = new System.Drawing.Size(16, 16);
            this.iaBytecodeCog.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
            this.iaBytecodeCog.TabIndex = 25;
            this.iaBytecodeCog.TabStop = false;
            this.iaBytecodeCog.Click += new System.EventHandler(this.shader_Click);
            this.iaBytecodeCog.MouseEnter += new System.EventHandler(this.shaderCog_MouseEnter);
            this.iaBytecodeCog.MouseLeave += new System.EventHandler(this.shaderCog_MouseLeave);
            // 
            // iaBytecodeMismatch
            // 
            this.iaBytecodeMismatch.Anchor = System.Windows.Forms.AnchorStyles.Left;
            this.iaBytecodeMismatch.AutoSize = true;
            this.iaBytecodeMismatch.BackColor = System.Drawing.Color.White;
            this.iaBytecodeMismatch.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.iaBytecodeMismatch.ForeColor = System.Drawing.Color.Red;
            this.iaBytecodeMismatch.Location = new System.Drawing.Point(331, 2);
            this.iaBytecodeMismatch.Name = "iaBytecodeMismatch";
            this.iaBytecodeMismatch.Padding = new System.Windows.Forms.Padding(0, 1, 0, 1);
            this.iaBytecodeMismatch.Size = new System.Drawing.Size(145, 17);
            this.iaBytecodeMismatch.TabIndex = 26;
            this.iaBytecodeMismatch.Text = "Warning: Mismatch detected";
            // 
            // groupBox44
            // 
            groupBox44.Controls.Add(this.meshView);
            groupBox44.Dock = System.Windows.Forms.DockStyle.Fill;
            groupBox44.Location = new System.Drawing.Point(507, 330);
            groupBox44.Name = "groupBox44";
            groupBox44.Size = new System.Drawing.Size(195, 272);
            groupBox44.TabIndex = 11;
            groupBox44.TabStop = false;
            groupBox44.Text = "Mesh View";
            // 
            // meshView
            // 
            this.meshView.Cursor = System.Windows.Forms.Cursors.Hand;
            this.meshView.Dock = System.Windows.Forms.DockStyle.Fill;
            this.meshView.Image = global::renderdocui.Properties.Resources.wireframe_mesh;
            this.meshView.Location = new System.Drawing.Point(3, 16);
            this.meshView.Name = "meshView";
            this.meshView.Size = new System.Drawing.Size(189, 253);
            this.meshView.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
            this.meshView.TabIndex = 0;
            this.meshView.TabStop = false;
            this.toolTip.SetToolTip(this.meshView, "View the mesh");
            this.meshView.Click += new System.EventHandler(this.meshView_Click);
            this.meshView.MouseEnter += new System.EventHandler(this.meshView_MouseEnter);
            this.meshView.MouseLeave += new System.EventHandler(this.meshView_MouseLeave);
            // 
            // tabVS
            // 
            this.tabVS.Controls.Add(this.panel2);
            this.tabVS.Location = new System.Drawing.Point(4, 22);
            this.tabVS.Name = "tabVS";
            this.tabVS.Size = new System.Drawing.Size(1009, 605);
            this.tabVS.TabIndex = 1;
            this.tabVS.Text = "Vertex Shader";
            this.tabVS.UseVisualStyleBackColor = true;
            // 
            // panel2
            // 
            this.panel2.AutoScroll = true;
            this.panel2.AutoScrollMinSize = new System.Drawing.Size(0, 500);
            this.panel2.Controls.Add(this.tableLayoutPanel2);
            this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panel2.Location = new System.Drawing.Point(0, 0);
            this.panel2.Name = "panel2";
            this.panel2.Size = new System.Drawing.Size(1009, 605);
            this.panel2.TabIndex = 4;
            // 
            // tableLayoutPanel2
            // 
            this.tableLayoutPanel2.ColumnCount = 2;
            this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
            this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
            this.tableLayoutPanel2.Controls.Add(this.groupBox3, 0, 0);
            this.tableLayoutPanel2.Controls.Add(this.groupBox5, 1, 3);
            this.tableLayoutPanel2.Controls.Add(this.groupBox7, 0, 1);
            this.tableLayoutPanel2.Controls.Add(this.groupBox8, 0, 2);
            this.tableLayoutPanel2.Controls.Add(this.groupBox9, 0, 3);
            this.tableLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tableLayoutPanel2.Location = new System.Drawing.Point(0, 0);
            this.tableLayoutPanel2.Name = "tableLayoutPanel2";
            this.tableLayoutPanel2.RowCount = 4;
            this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 50F));
            this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
            this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
            this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
            this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
            this.tableLayoutPanel2.Size = new System.Drawing.Size(1009, 605);
            this.tableLayoutPanel2.TabIndex = 1;
            // 
            // groupBox3
            // 
            this.tableLayoutPanel2.SetColumnSpan(this.groupBox3, 2);
            this.groupBox3.Controls.Add(this.flowLayoutPanel3);
            this.groupBox3.Dock = System.Windows.Forms.DockStyle.Fill;
            this.groupBox3.Location = new System.Drawing.Point(3, 3);
            this.groupBox3.Name = "groupBox3";
            this.groupBox3.Size = new System.Drawing.Size(1003, 44);
            this.groupBox3.TabIndex = 17;
            this.groupBox3.TabStop = false;
            this.groupBox3.Text = "Shader";
            // 
            // flowLayoutPanel3
            // 
            this.flowLayoutPanel3.Controls.Add(this.vsShader);
            this.flowLayoutPanel3.Controls.Add(this.vsShaderCog);
            this.flowLayoutPanel3.Controls.Add(label28);
            this.flowLayoutPanel3.Controls.Add(this.vsShaderEdit);
            this.flowLayoutPanel3.Controls.Add(label26);
            this.flowLayoutPanel3.Controls.Add(this.vsShaderSave);
            this.flowLayoutPanel3.Controls.Add(label27);
            this.flowLayoutPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
            this.flowLayoutPanel3.Location = new System.Drawing.Point(3, 16);
            this.flowLayoutPanel3.Name = "flowLayoutPanel3";
            this.flowLayoutPanel3.Size = new System.Drawing.Size(997, 25);
            this.flowLayoutPanel3.TabIndex = 25;
            // 
            // vsShader
            // 
            this.vsShader.Anchor = System.Windows.Forms.AnchorStyles.Left;
            this.vsShader.AutoSize = true;
            this.vsShader.BackColor = System.Drawing.SystemColors.Info;
            this.vsShader.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.vsShader.Cursor = System.Windows.Forms.Cursors.Hand;
            this.vsShader.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
            this.vsShader.ForeColor = System.Drawing.SystemColors.InfoText;
            this.vsShader.Location = new System.Drawing.Point(3, 3);
            this.vsShader.MinimumSize = new System.Drawing.Size(300, 2);
            this.vsShader.Name = "vsShader";
            this.vsShader.Size = new System.Drawing.Size(300, 15);
            this.vsShader.TabIndex = 24;
            this.vsShader.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            this.vsShader.Click += new System.EventHandler(this.shader_Click);
            this.vsShader.MouseEnter += new System.EventHandler(this.shaderCog_MouseEnter);
            this.vsShader.MouseLeave += new System.EventHandler(this.shaderCog_MouseLeave);
            // 
            // vsShaderCog
            // 
            this.vsShaderCog.Cursor = System.Windows.Forms.Cursors.Hand;
            this.vsShaderCog.Image = global::renderdocui.Properties.Resources.action;
            this.vsShaderCog.Location = new System.Drawing.Point(309, 3);
            this.vsShaderCog.Margin = new System.Windows.Forms.Padding(3, 3, 0, 3);
            this.vsShaderCog.Name = "vsShaderCog";
            this.vsShaderCog.Size = new System.Drawing.Size(16, 16);
            this.vsShaderCog.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
            this.vsShaderCog.TabIndex = 25;
            this.vsShaderCog.TabStop = false;
            this.vsShaderCog.Click += new System.EventHandler(this.shader_Click);
            this.vsShaderCog.MouseEnter += new System.EventHandler(this.shaderCog_MouseEnter);
            this.vsShaderCog.MouseLeave += new System.EventHandler(this.shaderCog_MouseLeave);
            // 
            // label28
            // 
            label28.Anchor = System.Windows.Forms.AnchorStyles.Left;
            label28.AutoSize = true;
            label28.Cursor = System.Windows.Forms.Cursors.Hand;
            label28.Location = new System.Drawing.Point(325, 4);
            label28.Margin = new System.Windows.Forms.Padding(0, 0, 6, 0);
            label28.Name = "label28";
            label28.Size = new System.Drawing.Size(30, 13);
            label28.TabIndex = 30;
            label28.Text = "View";
            label28.Click += new System.EventHandler(this.shader_Click);
            label28.MouseEnter += new System.EventHandler(this.shaderCog_MouseEnter);
            label28.MouseLeave += new System.EventHandler(this.shaderCog_MouseLeave);
            // 
            // vsShaderEdit
            // 
            this.vsShaderEdit.Cursor = System.Windows.Forms.Cursors.Hand;
            this.vsShaderEdit.Image = global::renderdocui.Properties.Resources.page_white_edit;
            this.vsShaderEdit.Location = new System.Drawing.Point(364, 3);
            this.vsShaderEdit.Margin = new System.Windows.Forms.Padding(3, 3, 0, 3);
            this.vsShaderEdit.Name = "vsShaderEdit";
            this.vsShaderEdit.Size = new System.Drawing.Size(16, 16);
            this.vsShaderEdit.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
            this.vsShaderEdit.TabIndex = 26;
            this.vsShaderEdit.TabStop = false;
            this.toolTip.SetToolTip(this.vsShaderEdit, "HLSL edit and replace this shader");
            this.vsShaderEdit.Click += new System.EventHandler(this.shaderedit_Click);
            // 
            // label26
            // 
            label26.Anchor = System.Windows.Forms.AnchorStyles.Left;
            label26.AutoSize = true;
            label26.Cursor = System.Windows.Forms.Cursors.Hand;
            label26.Location = new System.Drawing.Point(380, 4);
            label26.Margin = new System.Windows.Forms.Padding(0, 0, 6, 0);
            label26.Name = "label26";
            label26.Size = new System.Drawing.Size(25, 13);
            label26.TabIndex = 28;
            label26.Text = "Edit";
            this.toolTip.SetToolTip(label26, "HLSL edit and replace this shader");
            label26.Click += new System.EventHandler(this.shaderedit_Click);
            // 
            // vsShaderSave
            // 
            this.vsShaderSave.Cursor = System.Windows.Forms.Cursors.Hand;
            this.vsShaderSave.Image = global::renderdocui.Properties.Resources.save;
            this.vsShaderSave.Location = new System.Drawing.Point(414, 3);
            this.vsShaderSave.Margin = new System.Windows.Forms.Padding(3, 3, 0, 3);
            this.vsShaderSave.Name = "vsShaderSave";
            this.vsShaderSave.Size = new System.Drawing.Size(16, 16);
            this.vsShaderSave.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
            this.vsShaderSave.TabIndex = 27;
            this.vsShaderSave.TabStop = false;
            this.toolTip.SetToolTip(this.vsShaderSave, "Save the bytecode blob to disk");
            this.vsShaderSave.Click += new System.EventHandler(this.shaderSave_Click);
            // 
            // label27
            // 
            label27.Anchor = System.Windows.Forms.AnchorStyles.Left;
            label27.AutoSize = true;
            label27.Cursor = System.Windows.Forms.Cursors.Hand;
            label27.Location = new System.Drawing.Point(430, 4);
            label27.Margin = new System.Windows.Forms.Padding(0, 0, 6, 0);
            label27.Name = "label27";
            label27.Size = new System.Drawing.Size(32, 13);
            label27.TabIndex = 29;
            label27.Text = "Save";
            this.toolTip.SetToolTip(label27, "Save the bytecode blob to disk");
            label27.Click += new System.EventHandler(this.shaderSave_Click);
            // 
            // groupBox5
            // 
            this.tableLayoutPanel2.SetColumnSpan(this.groupBox5, 2);
            this.groupBox5.Controls.Add(this.vsClasses);
            this.groupBox5.Dock = System.Windows.Forms.DockStyle.Fill;
            this.groupBox5.Location = new System.Drawing.Point(3, 467);
            this.groupBox5.Name = "groupBox5";
            this.groupBox5.Size = new System.Drawing.Size(1003, 135);
            this.groupBox5.TabIndex = 16;
            this.groupBox5.TabStop = false;
            this.groupBox5.Text = "Class Instances";
            // 
            // vsClasses
            // 
            treeListColumn214.AutoSizeMinSize = 0;
            treeListColumn214.Width = 50;
            treeListColumn215.AutoSizeMinSize = 0;
            treeListColumn215.Width = 200;
            treeListColumn216.AutoSize = true;
            treeListColumn216.AutoSizeMinSize = 50;
            treeListColumn216.Width = 60;
            this.vsClasses.Columns.AddRange(new TreelistView.TreeListColumn[] {
            treeListColumn214,
            treeListColumn215,
            treeListColumn216});
            this.vsClasses.Cursor = System.Windows.Forms.Cursors.Arrow;
            this.vsClasses.Dock = System.Windows.Forms.DockStyle.Fill;
            this.vsClasses.Location = new System.Drawing.Point(3, 16);
            this.vsClasses.Name = "vsClasses";
            this.vsClasses.RowOptions.ItemHeight = 20;
            this.vsClasses.RowOptions.ShowHeader = false;
            this.vsClasses.Size = new System.Drawing.Size(997, 116);
            this.vsClasses.TabIndex = 4;
            this.vsClasses.Text = "Class Instances";
            this.vsClasses.TreeColumn = -1;
            this.vsClasses.ViewOptions.ShowLine = false;
            this.vsClasses.ViewOptions.ShowPlusMinus = false;
            this.vsClasses.KeyDown += new System.Windows.Forms.KeyEventHandler(this.defaultCopyPaste_KeyDown);
            this.vsClasses.Leave += new System.EventHandler(this.disableSelection_Leave);
            this.vsClasses.MouseClick += new System.Windows.Forms.MouseEventHandler(this.hideDisabledEmpty_MouseClick);
            // 
            // groupBox7
            // 
            this.tableLayoutPanel2.SetColumnSpan(this.groupBox7, 2);
            this.groupBox7.Controls.Add(this.vsResources);
            this.groupBox7.Dock = System.Windows.Forms.DockStyle.Fill;
            this.groupBox7.Location = new System.Drawing.Point(3, 53);
            this.groupBox7.Name = "groupBox7";
            this.groupBox7.Size = new System.Drawing.Size(1003, 132);
            this.groupBox7.TabIndex = 14;
            this.groupBox7.TabStop = false;
            this.groupBox7.Text = "Resources";
            // 
            // vsResources
            // 
            treeListColumn217.AutoSizeMinSize = 0;
            treeListColumn217.Width = 120;
            treeListColumn218.AutoSize = true;
            treeListColumn218.AutoSizeMinSize = 150;
            treeListColumn218.Width = 50;
            treeListColumn219.AutoSizeMinSize = 0;
            treeListColumn219.Width = 85;
            treeListColumn220.AutoSizeMinSize = 0;
            treeListColumn220.Width = 50;
            treeListColumn221.AutoSizeMinSize = 0;
            treeListColumn221.Width = 50;
            treeListColumn222.AutoSizeMinSize = 0;
            treeListColumn222.Width = 50;
            treeListColumn223.AutoSizeMinSize = 0;
            treeListColumn223.Width = 85;
            treeListColumn224.AutoSizeMinSize = 0;
            treeListColumn224.Width = 200;
            treeListColumn225.AutoSizeMinSize = 0;
            treeListColumn225.Width = 25;
            this.vsResources.Columns.AddRange(new TreelistView.TreeListColumn[] {
            treeListColumn217,
            treeListColumn218,
            treeListColumn219,
            treeListColumn220,
            treeListColumn221,
            treeListColumn222,
            treeListColumn223,
            treeListColumn224,
            treeListColumn225});
            this.vsResources.Cursor = System.Windows.Forms.Cursors.Arrow;
            this.vsResources.Dock = System.Windows.Forms.DockStyle.Fill;
            this.vsResources.GridLineColour = System.Drawing.SystemColors.ControlDark;
            this.vsResources.Location = new System.Drawing.Point(3, 16);
            this.vsResources.MultiSelect = false;
            this.vsResources.Name = "vsResources";
            this.vsResources.RowOptions.HoverHighlight = true;
            this.vsResources.RowOptions.ItemHeight = 20;
            this.vsResources.RowOptions.ShowHeader = false;
            this.vsResources.Size = new System.Drawing.Size(997, 113);
            this.vsResources.TabIndex = 1;
            this.vsResources.Text = "Resources";
            this.vsResources.TreeColumn = 8;
            this.vsResources.ViewOptions.Indent = 0;
            this.vsResources.ViewOptions.ShowLine = false;
            this.vsResources.ViewOptions.ShowPlusMinus = false;
            this.vsResources.NodeDoubleClicked += new TreelistView.TreeListView.NodeDoubleClickedHandler(this.textureCell_CellDoubleClick);
            this.vsResources.NodeClicked += new TreelistView.TreeListView.NodeClickedHandler(this.textureCell_CellDoubleClick);
            this.vsResources.KeyDown += new System.Windows.Forms.KeyEventHandler(this.defaultCopyPaste_KeyDown);
            this.vsResources.Leave += new System.EventHandler(this.disableSelection_Leave);
            this.vsResources.MouseClick += new System.Windows.Forms.MouseEventHandler(this.hideDisabledEmpty_MouseClick);
            this.vsResources.MouseLeave += new System.EventHandler(this.textureCell_MouseLeave);
            this.vsResources.MouseMove += new System.Windows.Forms.MouseEventHandler(this.textureCell_MouseMove);
            // 
            // groupBox8
            // 
            this.tableLayoutPanel2.SetColumnSpan(this.groupBox8, 2);
            this.groupBox8.Controls.Add(this.vsSamplers);
            this.groupBox8.Dock = System.Windows.Forms.DockStyle.Fill;
            this.groupBox8.Location = new System.Drawing.Point(3, 191);
            this.groupBox8.Name = "groupBox8";
            this.groupBox8.Size = new System.Drawing.Size(1003, 132);
            this.groupBox8.TabIndex = 13;
            this.groupBox8.TabStop = false;
            this.groupBox8.Text = "Samplers";
            // 
            // vsSamplers
            // 
            treeListColumn226.AutoSizeMinSize = 0;
            treeListColumn226.Width = 120;
            treeListColumn227.AutoSizeMinSize = 100;
            treeListColumn227.Width = 200;
            treeListColumn228.AutoSizeMinSize = 0;
            treeListColumn228.Width = 250;
            treeListColumn229.AutoSizeMinSize = 0;
            treeListColumn229.Width = 90;
            treeListColumn230.AutoSize = true;
            treeListColumn230.AutoSizeMinSize = 50;
            treeListColumn230.Width = 50;
            this.vsSamplers.Columns.AddRange(new TreelistView.TreeListColumn[] {
            treeListColumn226,
            treeListColumn227,
            treeListColumn228,
            treeListColumn229,
            treeListColumn230});
            this.vsSamplers.Cursor = System.Windows.Forms.Cursors.Arrow;
            this.vsSamplers.Dock = System.Windows.Forms.DockStyle.Fill;
            this.vsSamplers.GridLineColour = System.Drawing.SystemColors.ControlDark;
            this.vsSamplers.Location = new System.Drawing.Point(3, 16);
            this.vsSamplers.MultiSelect = false;
            this.vsSamplers.Name = "vsSamplers";
            this.vsSamplers.RowOptions.HoverHighlight = true;
            this.vsSamplers.RowOptions.ItemHeight = 20;
            this.vsSamplers.RowOptions.ShowHeader = false;
            this.vsSamplers.Size = new System.Drawing.Size(997, 113);
            this.vsSamplers.TabIndex = 12;
            this.vsSamplers.Text = "Samplers";
            this.vsSamplers.TreeColumn = -1;
            this.vsSamplers.ViewOptions.Indent = 0;
            this.vsSamplers.ViewOptions.ShowLine = false;
            this.vsSamplers.ViewOptions.ShowPlusMinus = false;
            this.vsSamplers.KeyDown += new System.Windows.Forms.KeyEventHandler(this.defaultCopyPaste_KeyDown);
            this.vsSamplers.Leave += new System.EventHandler(this.disableSelection_Leave);
            this.vsSamplers.MouseClick += new System.Windows.Forms.MouseEventHandler(this.hideDisabledEmpty_MouseClick);
            // 
            // groupBox9
            // 
            this.tableLayoutPanel2.SetColumnSpan(this.groupBox9, 2);
            this.groupBox9.Controls.Add(this.vsCBuffers);
            this.groupBox9.Dock = System.Windows.Forms.DockStyle.Fill;
            this.groupBox9.Location = new System.Drawing.Point(3, 329);
            this.groupBox9.Name = "groupBox9";
            this.groupBox9.Size = new System.Drawing.Size(1003, 132);
            this.groupBox9.TabIndex = 12;
            this.groupBox9.TabStop = false;
            this.groupBox9.Text = "Constant Buffers";
            // 
            // vsCBuffers
            // 
            treeListColumn231.AutoSizeMinSize = 0;
            treeListColumn231.Width = 120;
            treeListColumn232.AutoSize = true;
            treeListColumn232.AutoSizeMinSize = 100;
            treeListColumn232.Width = 50;
            treeListColumn233.AutoSizeMinSize = 0;
            treeListColumn233.Width = 85;
            treeListColumn234.AutoSizeMinSize = 0;
            treeListColumn234.Width = 250;
            treeListColumn235.AutoSizeMinSize = 0;
            treeListColumn235.Width = 25;
            this.vsCBuffers.Columns.AddRange(new TreelistView.TreeListColumn[] {
            treeListColumn231,
            treeListColumn232,
            treeListColumn233,
            treeListColumn234,
            treeListColumn235});
            this.vsCBuffers.Cursor = System.Windows.Forms.Cursors.Arrow;
            this.vsCBuffers.Dock = System.Windows.Forms.DockStyle.Fill;
            this.vsCBuffers.GridLineColour = System.Drawing.SystemColors.ControlDark;
            this.vsCBuffers.Location = new System.Drawing.Point(3, 16);
            this.vsCBuffers.MultiSelect = false;
            this.vsCBuffers.Name = "vsCBuffers";
            this.vsCBuffers.RowOptions.HoverHighlight = true;
            this.vsCBuffers.RowOptions.ItemHeight = 20;
            this.vsCBuffers.RowOptions.ShowHeader = false;
            this.vsCBuffers.Size = new System.Drawing.Size(997, 113);
            this.vsCBuffers.TabIndex = 11;
            this.vsCBuffers.Text = "Constant Buffers";
            this.vsCBuffers.TreeColumn = 4;
            this.vsCBuffers.ViewOptions.Indent = 0;
            this.vsCBuffers.ViewOptions.ShowLine = false;
            this.vsCBuffers.ViewOptions.ShowPlusMinus = false;
            this.vsCBuffers.NodeDoubleClicked += new TreelistView.TreeListView.NodeDoubleClickedHandler(this.cbuffers_NodeDoubleClicked);
            this.vsCBuffers.NodeClicked += new TreelistView.TreeListView.NodeClickedHandler(this.cbuffers_NodeDoubleClicked);
            this.vsCBuffers.KeyDown += new System.Windows.Forms.KeyEventHandler(this.defaultCopyPaste_KeyDown);
            this.vsCBuffers.Leave += new System.EventHandler(this.disableSelection_Leave);
            this.vsCBuffers.MouseClick += new System.Windows.Forms.MouseEventHandler(this.hideDisabledEmpty_MouseClick);
            // 
            // tabHS
            // 
            this.tabHS.Controls.Add(this.panel3);
            this.tabHS.Location = new System.Drawing.Point(4, 22);
            this.tabHS.Name = "tabHS";
            this.tabHS.Size = new System.Drawing.Size(1009, 605);
            this.tabHS.TabIndex = 2;
            this.tabHS.Text = "Hull Shader";
            this.tabHS.UseVisualStyleBackColor = true;
            // 
            // panel3
            // 
            this.panel3.AutoScroll = true;
            this.panel3.AutoScrollMinSize = new System.Drawing.Size(0, 500);
            this.panel3.Controls.Add(this.tableLayoutPanel3);
            this.panel3.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panel3.Location = new System.Drawing.Point(0, 0);
            this.panel3.Name = "panel3";
            this.panel3.Size = new System.Drawing.Size(1009, 605);
            this.panel3.TabIndex = 4;
            // 
            // tableLayoutPanel3
            // 
            this.tableLayoutPanel3.ColumnCount = 2;
            this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
            this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
            this.tableLayoutPanel3.Controls.Add(this.groupBox10, 0, 0);
            this.tableLayoutPanel3.Controls.Add(this.groupBox11, 1, 3);
            this.tableLayoutPanel3.Controls.Add(this.groupBox12, 0, 1);
            this.tableLayoutPanel3.Controls.Add(this.groupBox14, 0, 2);
            this.tableLayoutPanel3.Controls.Add(this.groupBox15, 0, 3);
            this.tableLayoutPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tableLayoutPanel3.Location = new System.Drawing.Point(0, 0);
            this.tableLayoutPanel3.Name = "tableLayoutPanel3";
            this.tableLayoutPanel3.RowCount = 4;
            this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 50F));
            this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
            this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
            this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
            this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
            this.tableLayoutPanel3.Size = new System.Drawing.Size(1009, 605);
            this.tableLayoutPanel3.TabIndex = 1;
            // 
            // groupBox10
            // 
            this.tableLayoutPanel3.SetColumnSpan(this.groupBox10, 2);
            this.groupBox10.Controls.Add(this.flowLayoutPanel4);
            this.groupBox10.Dock = System.Windows.Forms.DockStyle.Fill;
            this.groupBox10.Location = new System.Drawing.Point(3, 3);
            this.groupBox10.Name = "groupBox10";
            this.groupBox10.Size = new System.Drawing.Size(1003, 44);
            this.groupBox10.TabIndex = 17;
            this.groupBox10.TabStop = false;
            this.groupBox10.Text = "Shader";
            // 
            // flowLayoutPanel4
            // 
            this.flowLayoutPanel4.Controls.Add(this.hsShader);
            this.flowLayoutPanel4.Controls.Add(this.hsShaderCog);
            this.flowLayoutPanel4.Controls.Add(label29);
            this.flowLayoutPanel4.Controls.Add(this.hsShaderEdit);
            this.flowLayoutPanel4.Controls.Add(label30);
            this.flowLayoutPanel4.Controls.Add(this.hsShaderSave);
            this.flowLayoutPanel4.Controls.Add(label31);
            this.flowLayoutPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
            this.flowLayoutPanel4.Location = new System.Drawing.Point(3, 16);
            this.flowLayoutPanel4.Name = "flowLayoutPanel4";
            this.flowLayoutPanel4.Size = new System.Drawing.Size(997, 25);
            this.flowLayoutPanel4.TabIndex = 25;
            // 
            // hsShader
            // 
            this.hsShader.Anchor = System.Windows.Forms.AnchorStyles.Left;
            this.hsShader.AutoSize = true;
            this.hsShader.BackColor = System.Drawing.SystemColors.Info;
            this.hsShader.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.hsShader.Cursor = System.Windows.Forms.Cursors.Hand;
            this.hsShader.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
            this.hsShader.ForeColor = System.Drawing.SystemColors.InfoText;
            this.hsShader.Location = new System.Drawing.Point(3, 3);
            this.hsShader.MinimumSize = new System.Drawing.Size(300, 2);
            this.hsShader.Name = "hsShader";
            this.hsShader.Size = new System.Drawing.Size(300, 15);
            this.hsShader.TabIndex = 24;
            this.hsShader.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            this.hsShader.Click += new System.EventHandler(this.shader_Click);
            this.hsShader.MouseEnter += new System.EventHandler(this.shaderCog_MouseEnter);
            this.hsShader.MouseLeave += new System.EventHandler(this.shaderCog_MouseLeave);
            // 
            // hsShaderCog
            // 
            this.hsShaderCog.Cursor = System.Windows.Forms.Cursors.Hand;
            this.hsShaderCog.Image = global::renderdocui.Properties.Resources.action;
            this.hsShaderCog.Location = new System.Drawing.Point(309, 3);
            this.hsShaderCog.Margin = new System.Windows.Forms.Padding(3, 3, 0, 3);
            this.hsShaderCog.Name = "hsShaderCog";
            this.hsShaderCog.Size = new System.Drawing.Size(16, 16);
            this.hsShaderCog.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
            this.hsShaderCog.TabIndex = 25;
            this.hsShaderCog.TabStop = false;
            this.hsShaderCog.Click += new System.EventHandler(this.shader_Click);
            this.hsShaderCog.MouseEnter += new System.EventHandler(this.shaderCog_MouseEnter);
            this.hsShaderCog.MouseLeave += new System.EventHandler(this.shaderCog_MouseLeave);
            // 
            // label29
            // 
            label29.Anchor = System.Windows.Forms.AnchorStyles.Left;
            label29.AutoSize = true;
            label29.Cursor = System.Windows.Forms.Cursors.Hand;
            label29.Location = new System.Drawing.Point(325, 4);
            label29.Margin = new System.Windows.Forms.Padding(0, 0, 6, 0);
            label29.Name = "label29";
            label29.Size = new System.Drawing.Size(30, 13);
            label29.TabIndex = 33;
            label29.Text = "View";
            label29.Click += new System.EventHandler(this.shader_Click);
            label29.MouseEnter += new System.EventHandler(this.shaderCog_MouseEnter);
            label29.MouseLeave += new System.EventHandler(this.shaderCog_MouseLeave);
            // 
            // hsShaderEdit
            // 
            this.hsShaderEdit.Cursor = System.Windows.Forms.Cursors.Hand;
            this.hsShaderEdit.Image = global::renderdocui.Properties.Resources.page_white_edit;
            this.hsShaderEdit.Location = new System.Drawing.Point(364, 3);
            this.hsShaderEdit.Margin = new System.Windows.Forms.Padding(3, 3, 0, 3);
            this.hsShaderEdit.Name = "hsShaderEdit";
            this.hsShaderEdit.Size = new System.Drawing.Size(16, 16);
            this.hsShaderEdit.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
            this.hsShaderEdit.TabIndex = 27;
            this.hsShaderEdit.TabStop = false;
            this.toolTip.SetToolTip(this.hsShaderEdit, "HLSL edit and replace this shader");
            this.hsShaderEdit.Click += new System.EventHandler(this.shaderedit_Click);
            // 
            // label30
            // 
            label30.Anchor = System.Windows.Forms.AnchorStyles.Left;
            label30.AutoSize = true;
            label30.Cursor = System.Windows.Forms.Cursors.Hand;
            label30.Location = new System.Drawing.Point(380, 4);
            label30.Margin = new System.Windows.Forms.Padding(0, 0, 6, 0);
            label30.Name = "label30";
            label30.Size = new System.Drawing.Size(25, 13);
            label30.TabIndex = 31;
            label30.Text = "Edit";
            this.toolTip.SetToolTip(label30, "HLSL edit and replace this shader");
            label30.Click += new System.EventHandler(this.shaderedit_Click);
            // 
            // hsShaderSave
            // 
            this.hsShaderSave.Cursor = System.Windows.Forms.Cursors.Hand;
            this.hsShaderSave.Image = global::renderdocui.Properties.Resources.save;
            this.hsShaderSave.Location = new System.Drawing.Point(414, 3);
            this.hsShaderSave.Margin = new System.Windows.Forms.Padding(3, 3, 0, 3);
            this.hsShaderSave.Name = "hsShaderSave";
            this.hsShaderSave.Size = new System.Drawing.Size(16, 16);
            this.hsShaderSave.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
            this.hsShaderSave.TabIndex = 34;
            this.hsShaderSave.TabStop = false;
            this.toolTip.SetToolTip(this.hsShaderSave, "Save the bytecode blob to disk");
            this.hsShaderSave.Click += new System.EventHandler(this.shaderSave_Click);
            // 
            // label31
            // 
            label31.Anchor = System.Windows.Forms.AnchorStyles.Left;
            label31.AutoSize = true;
            label31.Cursor = System.Windows.Forms.Cursors.Hand;
            label31.Location = new System.Drawing.Point(430, 4);
            label31.Margin = new System.Windows.Forms.Padding(0, 0, 6, 0);
            label31.Name = "label31";
            label31.Size = new System.Drawing.Size(32, 13);
            label31.TabIndex = 32;
            label31.Text = "Save";
            this.toolTip.SetToolTip(label31, "Save the bytecode blob to disk");
            label31.Click += new System.EventHandler(this.shaderSave_Click);
            // 
            // groupBox11
            // 
            this.tableLayoutPanel3.SetColumnSpan(this.groupBox11, 2);
            this.groupBox11.Controls.Add(this.hsClasses);
            this.groupBox11.Dock = System.Windows.Forms.DockStyle.Fill;
            this.groupBox11.Location = new System.Drawing.Point(3, 467);
            this.groupBox11.Name = "groupBox11";
            this.groupBox11.Size = new System.Drawing.Size(1003, 135);
            this.groupBox11.TabIndex = 16;
            this.groupBox11.TabStop = false;
            this.groupBox11.Text = "Class Instances";
            // 
            // hsClasses
            // 
            treeListColumn236.AutoSizeMinSize = 0;
            treeListColumn236.Width = 50;
            treeListColumn237.AutoSizeMinSize = 0;
            treeListColumn237.Width = 200;
            treeListColumn238.AutoSize = true;
            treeListColumn238.AutoSizeMinSize = 50;
            treeListColumn238.Width = 60;
            this.hsClasses.Columns.AddRange(new TreelistView.TreeListColumn[] {
            treeListColumn236,
            treeListColumn237,
            treeListColumn238});
            this.hsClasses.Cursor = System.Windows.Forms.Cursors.Arrow;
            this.hsClasses.Dock = System.Windows.Forms.DockStyle.Fill;
            this.hsClasses.Location = new System.Drawing.Point(3, 16);
            this.hsClasses.Name = "hsClasses";
            this.hsClasses.RowOptions.ItemHeight = 20;
            this.hsClasses.RowOptions.ShowHeader = false;
            this.hsClasses.Size = new System.Drawing.Size(997, 116);
            this.hsClasses.TabIndex = 4;
            this.hsClasses.Text = "Class Instances";
            this.hsClasses.TreeColumn = -1;
            this.hsClasses.ViewOptions.ShowLine = false;
            this.hsClasses.ViewOptions.ShowPlusMinus = false;
            this.hsClasses.KeyDown += new System.Windows.Forms.KeyEventHandler(this.defaultCopyPaste_KeyDown);
            this.hsClasses.Leave += new System.EventHandler(this.disableSelection_Leave);
            this.hsClasses.MouseClick += new System.Windows.Forms.MouseEventHandler(this.hideDisabledEmpty_MouseClick);
            // 
            // groupBox12
            // 
            this.tableLayoutPanel3.SetColumnSpan(this.groupBox12, 2);
            this.groupBox12.Controls.Add(this.hsResources);
            this.groupBox12.Dock = System.Windows.Forms.DockStyle.Fill;
            this.groupBox12.Location = new System.Drawing.Point(3, 53);
            this.groupBox12.Name = "groupBox12";
            this.groupBox12.Size = new System.Drawing.Size(1003, 132);
            this.groupBox12.TabIndex = 14;
            this.groupBox12.TabStop = false;
            this.groupBox12.Text = "Resources";
            // 
            // hsResources
            // 
            treeListColumn239.AutoSizeMinSize = 0;
            treeListColumn239.Width = 120;
            treeListColumn240.AutoSize = true;
            treeListColumn240.AutoSizeMinSize = 150;
            treeListColumn240.Width = 50;
            treeListColumn241.AutoSizeMinSize = 0;
            treeListColumn241.Width = 85;
            treeListColumn242.AutoSizeMinSize = 0;
            treeListColumn242.Width = 50;
            treeListColumn243.AutoSizeMinSize = 0;
            treeListColumn243.Width = 50;
            treeListColumn244.AutoSizeMinSize = 0;
            treeListColumn244.Width = 50;
            treeListColumn245.AutoSizeMinSize = 0;
            treeListColumn245.Width = 85;
            treeListColumn246.AutoSizeMinSize = 0;
            treeListColumn246.Width = 200;
            treeListColumn247.AutoSizeMinSize = 0;
            treeListColumn247.Width = 25;
            this.hsResources.Columns.AddRange(new TreelistView.TreeListColumn[] {
            treeListColumn239,
            treeListColumn240,
            treeListColumn241,
            treeListColumn242,
            treeListColumn243,
            treeListColumn244,
            treeListColumn245,
            treeListColumn246,
            treeListColumn247});
            this.hsResources.Cursor = System.Windows.Forms.Cursors.Arrow;
            this.hsResources.Dock = System.Windows.Forms.DockStyle.Fill;
            this.hsResources.GridLineColour = System.Drawing.SystemColors.ControlDark;
            this.hsResources.Location = new System.Drawing.Point(3, 16);
            this.hsResources.MultiSelect = false;
            this.hsResources.Name = "hsResources";
            this.hsResources.RowOptions.HoverHighlight = true;
            this.hsResources.RowOptions.ItemHeight = 20;
            this.hsResources.RowOptions.ShowHeader = false;
            this.hsResources.Size = new System.Drawing.Size(997, 113);
            this.hsResources.TabIndex = 1;
            this.hsResources.Text = "Outputs";
            this.hsResources.TreeColumn = 8;
            this.hsResources.ViewOptions.Indent = 0;
            this.hsResources.ViewOptions.ShowLine = false;
            this.hsResources.ViewOptions.ShowPlusMinus = false;
            this.hsResources.NodeDoubleClicked += new TreelistView.TreeListView.NodeDoubleClickedHandler(this.textureCell_CellDoubleClick);
            this.hsResources.NodeClicked += new TreelistView.TreeListView.NodeClickedHandler(this.textureCell_CellDoubleClick);
            this.hsResources.KeyDown += new System.Windows.Forms.KeyEventHandler(this.defaultCopyPaste_KeyDown);
            this.hsResources.Leave += new System.EventHandler(this.disableSelection_Leave);
            this.hsResources.MouseClick += new System.Windows.Forms.MouseEventHandler(this.hideDisabledEmpty_MouseClick);
            this.hsResources.MouseLeave += new System.EventHandler(this.textureCell_MouseLeave);
            this.hsResources.MouseMove += new System.Windows.Forms.MouseEventHandler(this.textureCell_MouseMove);
            // 
            // groupBox14
            // 
            this.tableLayoutPanel3.SetColumnSpan(this.groupBox14, 2);
            this.groupBox14.Controls.Add(this.hsSamplers);
            this.groupBox14.Dock = System.Windows.Forms.DockStyle.Fill;
            this.groupBox14.Location = new System.Drawing.Point(3, 191);
            this.groupBox14.Name = "groupBox14";
            this.groupBox14.Size = new System.Drawing.Size(1003, 132);
            this.groupBox14.TabIndex = 13;
            this.groupBox14.TabStop = false;
            this.groupBox14.Text = "Samplers";
            // 
            // hsSamplers
            // 
            treeListColumn248.AutoSizeMinSize = 0;
            treeListColumn248.Width = 120;
            treeListColumn249.AutoSizeMinSize = 100;
            treeListColumn249.Width = 200;
            treeListColumn250.AutoSizeMinSize = 0;
            treeListColumn250.Width = 250;
            treeListColumn251.AutoSizeMinSize = 0;
            treeListColumn251.Width = 90;
            treeListColumn252.AutoSize = true;
            treeListColumn252.AutoSizeMinSize = 50;
            treeListColumn252.Width = 50;
            this.hsSamplers.Columns.AddRange(new TreelistView.TreeListColumn[] {
            treeListColumn248,
            treeListColumn249,
            treeListColumn250,
            treeListColumn251,
            treeListColumn252});
            this.hsSamplers.Cursor = System.Windows.Forms.Cursors.Arrow;
            this.hsSamplers.Dock = System.Windows.Forms.DockStyle.Fill;
            this.hsSamplers.GridLineColour = System.Drawing.SystemColors.ControlDark;
            this.hsSamplers.Location = new System.Drawing.Point(3, 16);
            this.hsSamplers.MultiSelect = false;
            this.hsSamplers.Name = "hsSamplers";
            this.hsSamplers.RowOptions.HoverHighlight = true;
            this.hsSamplers.RowOptions.ItemHeight = 20;
            this.hsSamplers.RowOptions.ShowHeader = false;
            this.hsSamplers.Size = new System.Drawing.Size(997, 113);
            this.hsSamplers.TabIndex = 12;
            this.hsSamplers.Text = "Samplers";
            this.hsSamplers.TreeColumn = -1;
            this.hsSamplers.ViewOptions.Indent = 0;
            this.hsSamplers.ViewOptions.ShowLine = false;
            this.hsSamplers.ViewOptions.ShowPlusMinus = false;
            this.hsSamplers.KeyDown += new System.Windows.Forms.KeyEventHandler(this.defaultCopyPaste_KeyDown);
            this.hsSamplers.Leave += new System.EventHandler(this.disableSelection_Leave);
            this.hsSamplers.MouseClick += new System.Windows.Forms.MouseEventHandler(this.hideDisabledEmpty_MouseClick);
            // 
            // groupBox15
            // 
            this.tableLayoutPanel3.SetColumnSpan(this.groupBox15, 2);
            this.groupBox15.Controls.Add(this.hsCBuffers);
            this.groupBox15.Dock = System.Windows.Forms.DockStyle.Fill;
            this.groupBox15.Location = new System.Drawing.Point(3, 329);
            this.groupBox15.Name = "groupBox15";
            this.groupBox15.Size = new System.Drawing.Size(1003, 132);
            this.groupBox15.TabIndex = 12;
            this.groupBox15.TabStop = false;
            this.groupBox15.Text = "Constant Buffers";
            // 
            // hsCBuffers
            // 
            treeListColumn253.AutoSizeMinSize = 0;
            treeListColumn253.Width = 120;
            treeListColumn254.AutoSize = true;
            treeListColumn254.AutoSizeMinSize = 100;
            treeListColumn254.Width = 50;
            treeListColumn255.AutoSizeMinSize = 0;
            treeListColumn255.Width = 85;
            treeListColumn256.AutoSizeMinSize = 0;
            treeListColumn256.Width = 250;
            treeListColumn257.AutoSizeMinSize = 0;
            treeListColumn257.Width = 25;
            this.hsCBuffers.Columns.AddRange(new TreelistView.TreeListColumn[] {
            treeListColumn253,
            treeListColumn254,
            treeListColumn255,
            treeListColumn256,
            treeListColumn257});
            this.hsCBuffers.Cursor = System.Windows.Forms.Cursors.Arrow;
            this.hsCBuffers.Dock = System.Windows.Forms.DockStyle.Fill;
            this.hsCBuffers.GridLineColour = System.Drawing.SystemColors.ControlDark;
            this.hsCBuffers.Location = new System.Drawing.Point(3, 16);
            this.hsCBuffers.MultiSelect = false;
            this.hsCBuffers.Name = "hsCBuffers";
            this.hsCBuffers.RowOptions.HoverHighlight = true;
            this.hsCBuffers.RowOptions.ItemHeight = 20;
            this.hsCBuffers.RowOptions.ShowHeader = false;
            this.hsCBuffers.Size = new System.Drawing.Size(997, 113);
            this.hsCBuffers.TabIndex = 11;
            this.hsCBuffers.Text = "Constant Buffers";
            this.hsCBuffers.TreeColumn = 4;
            this.hsCBuffers.ViewOptions.Indent = 0;
            this.hsCBuffers.ViewOptions.ShowLine = false;
            this.hsCBuffers.ViewOptions.ShowPlusMinus = false;
            this.hsCBuffers.NodeDoubleClicked += new TreelistView.TreeListView.NodeDoubleClickedHandler(this.cbuffers_NodeDoubleClicked);
            this.hsCBuffers.NodeClicked += new TreelistView.TreeListView.NodeClickedHandler(this.cbuffers_NodeDoubleClicked);
            this.hsCBuffers.KeyDown += new System.Windows.Forms.KeyEventHandler(this.defaultCopyPaste_KeyDown);
            this.hsCBuffers.Leave += new System.EventHandler(this.disableSelection_Leave);
            this.hsCBuffers.MouseClick += new System.Windows.Forms.MouseEventHandler(this.hideDisabledEmpty_MouseClick);
            // 
            // tabDS
            // 
            this.tabDS.Controls.Add(this.panel4);
            this.tabDS.Location = new System.Drawing.Point(4, 22);
            this.tabDS.Name = "tabDS";
            this.tabDS.Size = new System.Drawing.Size(1009, 605);
            this.tabDS.TabIndex = 3;
            this.tabDS.Text = "Domain Shader";
            this.tabDS.UseVisualStyleBackColor = true;
            // 
            // panel4
            // 
            this.panel4.AutoScroll = true;
            this.panel4.AutoScrollMinSize = new System.Drawing.Size(0, 500);
            this.panel4.Controls.Add(this.tableLayoutPanel4);
            this.panel4.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panel4.Location = new System.Drawing.Point(0, 0);
            this.panel4.Name = "panel4";
            this.panel4.Size = new System.Drawing.Size(1009, 605);
            this.panel4.TabIndex = 4;
            // 
            // tableLayoutPanel4
            // 
            this.tableLayoutPanel4.ColumnCount = 2;
            this.tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
            this.tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
            this.tableLayoutPanel4.Controls.Add(this.groupBox16, 0, 0);
            this.tableLayoutPanel4.Controls.Add(this.groupBox17, 1, 3);
            this.tableLayoutPanel4.Controls.Add(this.groupBox18, 0, 1);
            this.tableLayoutPanel4.Controls.Add(this.groupBox20, 0, 2);
            this.tableLayoutPanel4.Controls.Add(this.groupBox21, 0, 3);
            this.tableLayoutPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tableLayoutPanel4.Location = new System.Drawing.Point(0, 0);
            this.tableLayoutPanel4.Name = "tableLayoutPanel4";
            this.tableLayoutPanel4.RowCount = 4;
            this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 50F));
            this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
            this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
            this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
            this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
            this.tableLayoutPanel4.Size = new System.Drawing.Size(1009, 605);
            this.tableLayoutPanel4.TabIndex = 1;
            // 
            // groupBox16
            // 
            this.tableLayoutPanel4.SetColumnSpan(this.groupBox16, 2);
            this.groupBox16.Controls.Add(this.flowLayoutPanel5);
            this.groupBox16.Dock = System.Windows.Forms.DockStyle.Fill;
            this.groupBox16.Location = new System.Drawing.Point(3, 3);
            this.groupBox16.Name = "groupBox16";
            this.groupBox16.Size = new System.Drawing.Size(1003, 44);
            this.groupBox16.TabIndex = 17;
            this.groupBox16.TabStop = false;
            this.groupBox16.Text = "Shader";
            // 
            // flowLayoutPanel5
            // 
            this.flowLayoutPanel5.Controls.Add(this.dsShader);
            this.flowLayoutPanel5.Controls.Add(this.dsShaderCog);
            this.flowLayoutPanel5.Controls.Add(label32);
            this.flowLayoutPanel5.Controls.Add(this.dsShaderEdit);
            this.flowLayoutPanel5.Controls.Add(label33);
            this.flowLayoutPanel5.Controls.Add(this.dsShaderSave);
            this.flowLayoutPanel5.Controls.Add(label34);
            this.flowLayoutPanel5.Dock = System.Windows.Forms.DockStyle.Fill;
            this.flowLayoutPanel5.Location = new System.Drawing.Point(3, 16);
            this.flowLayoutPanel5.Name = "flowLayoutPanel5";
            this.flowLayoutPanel5.Size = new System.Drawing.Size(997, 25);
            this.flowLayoutPanel5.TabIndex = 25;
            // 
            // dsShader
            // 
            this.dsShader.Anchor = System.Windows.Forms.AnchorStyles.Left;
            this.dsShader.AutoSize = true;
            this.dsShader.BackColor = System.Drawing.SystemColors.Info;
            this.dsShader.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.dsShader.Cursor = System.Windows.Forms.Cursors.Hand;
            this.dsShader.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
            this.dsShader.ForeColor = System.Drawing.SystemColors.InfoText;
            this.dsShader.Location = new System.Drawing.Point(3, 3);
            this.dsShader.MinimumSize = new System.Drawing.Size(300, 2);
            this.dsShader.Name = "dsShader";
            this.dsShader.Size = new System.Drawing.Size(300, 15);
            this.dsShader.TabIndex = 24;
            this.dsShader.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            this.dsShader.Click += new System.EventHandler(this.shader_Click);
            this.dsShader.MouseEnter += new System.EventHandler(this.shaderCog_MouseEnter);
            this.dsShader.MouseLeave += new System.EventHandler(this.shaderCog_MouseLeave);
            // 
            // dsShaderCog
            // 
            this.dsShaderCog.Cursor = System.Windows.Forms.Cursors.Hand;
            this.dsShaderCog.Image = global::renderdocui.Properties.Resources.action;
            this.dsShaderCog.Location = new System.Drawing.Point(309, 3);
            this.dsShaderCog.Margin = new System.Windows.Forms.Padding(3, 3, 0, 3);
            this.dsShaderCog.Name = "dsShaderCog";
            this.dsShaderCog.Size = new System.Drawing.Size(16, 16);
            this.dsShaderCog.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
            this.dsShaderCog.TabIndex = 25;
            this.dsShaderCog.TabStop = false;
            this.dsShaderCog.Click += new System.EventHandler(this.shader_Click);
            this.dsShaderCog.MouseEnter += new System.EventHandler(this.shaderCog_MouseEnter);
            this.dsShaderCog.MouseLeave += new System.EventHandler(this.shaderCog_MouseLeave);
            // 
            // label32
            // 
            label32.Anchor = System.Windows.Forms.AnchorStyles.Left;
            label32.AutoSize = true;
            label32.Cursor = System.Windows.Forms.Cursors.Hand;
            label32.Location = new System.Drawing.Point(325, 4);
            label32.Margin = new System.Windows.Forms.Padding(0, 0, 6, 0);
            label32.Name = "label32";
            label32.Size = new System.Drawing.Size(30, 13);
            label32.TabIndex = 33;
            label32.Text = "View";
            label32.Click += new System.EventHandler(this.shader_Click);
            label32.MouseEnter += new System.EventHandler(this.shaderCog_MouseEnter);
            label32.MouseLeave += new System.EventHandler(this.shaderCog_MouseLeave);
            // 
            // dsShaderEdit
            // 
            this.dsShaderEdit.Cursor = System.Windows.Forms.Cursors.Hand;
            this.dsShaderEdit.Image = global::renderdocui.Properties.Resources.page_white_edit;
            this.dsShaderEdit.Location = new System.Drawing.Point(364, 3);
            this.dsShaderEdit.Margin = new System.Windows.Forms.Padding(3, 3, 0, 3);
            this.dsShaderEdit.Name = "dsShaderEdit";
            this.dsShaderEdit.Size = new System.Drawing.Size(16, 16);
            this.dsShaderEdit.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
            this.dsShaderEdit.TabIndex = 28;
            this.dsShaderEdit.TabStop = false;
            this.toolTip.SetToolTip(this.dsShaderEdit, "HLSL edit and replace this shader");
            this.dsShaderEdit.Click += new System.EventHandler(this.shaderedit_Click);
            // 
            // label33
            // 
            label33.Anchor = System.Windows.Forms.AnchorStyles.Left;
            label33.AutoSize = true;
            label33.Cursor = System.Windows.Forms.Cursors.Hand;
            label33.Location = new System.Drawing.Point(380, 4);
            label33.Margin = new System.Windows.Forms.Padding(0, 0, 6, 0);
            label33.Name = "label33";
            label33.Size = new System.Drawing.Size(25, 13);
            label33.TabIndex = 31;
            label33.Text = "Edit";
            this.toolTip.SetToolTip(label33, "HLSL edit and replace this shader");
            label33.Click += new System.EventHandler(this.shaderedit_Click);
            // 
            // dsShaderSave
            // 
            this.dsShaderSave.Cursor = System.Windows.Forms.Cursors.Hand;
            this.dsShaderSave.Image = global::renderdocui.Properties.Resources.save;
            this.dsShaderSave.Location = new System.Drawing.Point(414, 3);
            this.dsShaderSave.Margin = new System.Windows.Forms.Padding(3, 3, 0, 3);
            this.dsShaderSave.Name = "dsShaderSave";
            this.dsShaderSave.Size = new System.Drawing.Size(16, 16);
            this.dsShaderSave.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
            this.dsShaderSave.TabIndex = 34;
            this.dsShaderSave.TabStop = false;
            this.toolTip.SetToolTip(this.dsShaderSave, "Save the bytecode blob to disk");
            this.dsShaderSave.Click += new System.EventHandler(this.shaderSave_Click);
            // 
            // label34
            // 
            label34.Anchor = System.Windows.Forms.AnchorStyles.Left;
            label34.AutoSize = true;
            label34.Cursor = System.Windows.Forms.Cursors.Hand;
            label34.Location = new System.Drawing.Point(430, 4);
            label34.Margin = new System.Windows.Forms.Padding(0, 0, 6, 0);
            label34.Name = "label34";
            label34.Size = new System.Drawing.Size(32, 13);
            label34.TabIndex = 32;
            label34.Text = "Save";
            this.toolTip.SetToolTip(label34, "Save the bytecode blob to disk");
            label34.Click += new System.EventHandler(this.shaderSave_Click);
            // 
            // groupBox17
            // 
            this.tableLayoutPanel4.SetColumnSpan(this.groupBox17, 2);
            this.groupBox17.Controls.Add(this.dsClasses);
            this.groupBox17.Dock = System.Windows.Forms.DockStyle.Fill;
            this.groupBox17.Location = new System.Drawing.Point(3, 467);
            this.groupBox17.Name = "groupBox17";
            this.groupBox17.Size = new System.Drawing.Size(1003, 135);
            this.groupBox17.TabIndex = 16;
            this.groupBox17.TabStop = false;
            this.groupBox17.Text = "Class Instances";
            // 
            // dsClasses
            // 
            treeListColumn258.AutoSizeMinSize = 0;
            treeListColumn258.Width = 50;
            treeListColumn259.AutoSizeMinSize = 0;
            treeListColumn259.Width = 200;
            treeListColumn260.AutoSize = true;
            treeListColumn260.AutoSizeMinSize = 50;
            treeListColumn260.Width = 60;
            this.dsClasses.Columns.AddRange(new TreelistView.TreeListColumn[] {
            treeListColumn258,
            treeListColumn259,
            treeListColumn260});
            this.dsClasses.Cursor = System.Windows.Forms.Cursors.Arrow;
            this.dsClasses.Dock = System.Windows.Forms.DockStyle.Fill;
            this.dsClasses.Location = new System.Drawing.Point(3, 16);
            this.dsClasses.Name = "dsClasses";
            this.dsClasses.RowOptions.ItemHeight = 20;
            this.dsClasses.RowOptions.ShowHeader = false;
            this.dsClasses.Size = new System.Drawing.Size(997, 116);
            this.dsClasses.TabIndex = 4;
            this.dsClasses.Text = "Class Instances";
            this.dsClasses.TreeColumn = -1;
            this.dsClasses.ViewOptions.ShowLine = false;
            this.dsClasses.ViewOptions.ShowPlusMinus = false;
            this.dsClasses.KeyDown += new System.Windows.Forms.KeyEventHandler(this.defaultCopyPaste_KeyDown);
            this.dsClasses.Leave += new System.EventHandler(this.disableSelection_Leave);
            this.dsClasses.MouseClick += new System.Windows.Forms.MouseEventHandler(this.hideDisabledEmpty_MouseClick);
            // 
            // groupBox18
            // 
            this.tableLayoutPanel4.SetColumnSpan(this.groupBox18, 2);
            this.groupBox18.Controls.Add(this.dsResources);
            this.groupBox18.Dock = System.Windows.Forms.DockStyle.Fill;
            this.groupBox18.Location = new System.Drawing.Point(3, 53);
            this.groupBox18.Name = "groupBox18";
            this.groupBox18.Size = new System.Drawing.Size(1003, 132);
            this.groupBox18.TabIndex = 14;
            this.groupBox18.TabStop = false;
            this.groupBox18.Text = "Resources";
            // 
            // dsResources
            // 
            treeListColumn261.AutoSizeMinSize = 0;
            treeListColumn261.Width = 120;
            treeListColumn262.AutoSize = true;
            treeListColumn262.AutoSizeMinSize = 150;
            treeListColumn262.Width = 50;
            treeListColumn263.AutoSizeMinSize = 0;
            treeListColumn263.Width = 85;
            treeListColumn264.AutoSizeMinSize = 0;
            treeListColumn264.Width = 50;
            treeListColumn265.AutoSizeMinSize = 0;
            treeListColumn265.Width = 50;
            treeListColumn266.AutoSizeMinSize = 0;
            treeListColumn266.Width = 50;
            treeListColumn267.AutoSizeMinSize = 0;
            treeListColumn267.Width = 85;
            treeListColumn268.AutoSizeMinSize = 0;
            treeListColumn268.Width = 200;
            treeListColumn269.AutoSizeMinSize = 0;
            treeListColumn269.Width = 25;
            this.dsResources.Columns.AddRange(new TreelistView.TreeListColumn[] {
            treeListColumn261,
            treeListColumn262,
            treeListColumn263,
            treeListColumn264,
            treeListColumn265,
            treeListColumn266,
            treeListColumn267,
            treeListColumn268,
            treeListColumn269});
            this.dsResources.Cursor = System.Windows.Forms.Cursors.Arrow;
            this.dsResources.Dock = System.Windows.Forms.DockStyle.Fill;
            this.dsResources.GridLineColour = System.Drawing.SystemColors.ControlDark;
            this.dsResources.Location = new System.Drawing.Point(3, 16);
            this.dsResources.MultiSelect = false;
            this.dsResources.Name = "dsResources";
            this.dsResources.RowOptions.HoverHighlight = true;
            this.dsResources.RowOptions.ItemHeight = 20;
            this.dsResources.RowOptions.ShowHeader = false;
            this.dsResources.Size = new System.Drawing.Size(997, 113);
            this.dsResources.TabIndex = 1;
            this.dsResources.Text = "Outputs";
            this.dsResources.TreeColumn = 8;
            this.dsResources.ViewOptions.Indent = 0;
            this.dsResources.ViewOptions.ShowLine = false;
            this.dsResources.ViewOptions.ShowPlusMinus = false;
            this.dsResources.NodeDoubleClicked += new TreelistView.TreeListView.NodeDoubleClickedHandler(this.textureCell_CellDoubleClick);
            this.dsResources.NodeClicked += new TreelistView.TreeListView.NodeClickedHandler(this.textureCell_CellDoubleClick);
            this.dsResources.KeyDown += new System.Windows.Forms.KeyEventHandler(this.defaultCopyPaste_KeyDown);
            this.dsResources.Leave += new System.EventHandler(this.disableSelection_Leave);
            this.dsResources.MouseClick += new System.Windows.Forms.MouseEventHandler(this.hideDisabledEmpty_MouseClick);
            this.dsResources.MouseLeave += new System.EventHandler(this.textureCell_MouseLeave);
            this.dsResources.MouseMove += new System.Windows.Forms.MouseEventHandler(this.textureCell_MouseMove);
            // 
            // groupBox20
            // 
            this.tableLayoutPanel4.SetColumnSpan(this.groupBox20, 2);
            this.groupBox20.Controls.Add(this.dsSamplers);
            this.groupBox20.Dock = System.Windows.Forms.DockStyle.Fill;
            this.groupBox20.Location = new System.Drawing.Point(3, 191);
            this.groupBox20.Name = "groupBox20";
            this.groupBox20.Size = new System.Drawing.Size(1003, 132);
            this.groupBox20.TabIndex = 13;
            this.groupBox20.TabStop = false;
            this.groupBox20.Text = "Samplers";
            // 
            // dsSamplers
            // 
            treeListColumn270.AutoSizeMinSize = 0;
            treeListColumn270.Width = 120;
            treeListColumn271.AutoSizeMinSize = 100;
            treeListColumn271.Width = 200;
            treeListColumn272.AutoSizeMinSize = 0;
            treeListColumn272.Width = 250;
            treeListColumn273.AutoSizeMinSize = 0;
            treeListColumn273.Width = 90;
            treeListColumn274.AutoSize = true;
            treeListColumn274.AutoSizeMinSize = 50;
            treeListColumn274.Width = 50;
            this.dsSamplers.Columns.AddRange(new TreelistView.TreeListColumn[] {
            treeListColumn270,
            treeListColumn271,
            treeListColumn272,
            treeListColumn273,
            treeListColumn274});
            this.dsSamplers.Cursor = System.Windows.Forms.Cursors.Arrow;
            this.dsSamplers.Dock = System.Windows.Forms.DockStyle.Fill;
            this.dsSamplers.GridLineColour = System.Drawing.SystemColors.ControlDark;
            this.dsSamplers.Location = new System.Drawing.Point(3, 16);
            this.dsSamplers.MultiSelect = false;
            this.dsSamplers.Name = "dsSamplers";
            this.dsSamplers.RowOptions.HoverHighlight = true;
            this.dsSamplers.RowOptions.ItemHeight = 20;
            this.dsSamplers.RowOptions.ShowHeader = false;
            this.dsSamplers.Size = new System.Drawing.Size(997, 113);
            this.dsSamplers.TabIndex = 12;
            this.dsSamplers.Text = "Samplers";
            this.dsSamplers.TreeColumn = -1;
            this.dsSamplers.ViewOptions.Indent = 0;
            this.dsSamplers.ViewOptions.ShowLine = false;
            this.dsSamplers.ViewOptions.ShowPlusMinus = false;
            this.dsSamplers.KeyDown += new System.Windows.Forms.KeyEventHandler(this.defaultCopyPaste_KeyDown);
            this.dsSamplers.Leave += new System.EventHandler(this.disableSelection_Leave);
            this.dsSamplers.MouseClick += new System.Windows.Forms.MouseEventHandler(this.hideDisabledEmpty_MouseClick);
            // 
            // groupBox21
            // 
            this.tableLayoutPanel4.SetColumnSpan(this.groupBox21, 2);
            this.groupBox21.Controls.Add(this.dsCBuffers);
            this.groupBox21.Dock = System.Windows.Forms.DockStyle.Fill;
            this.groupBox21.Location = new System.Drawing.Point(3, 329);
            this.groupBox21.Name = "groupBox21";
            this.groupBox21.Size = new System.Drawing.Size(1003, 132);
            this.groupBox21.TabIndex = 12;
            this.groupBox21.TabStop = false;
            this.groupBox21.Text = "Constant Buffers";
            // 
            // dsCBuffers
            // 
            treeListColumn275.AutoSizeMinSize = 0;
            treeListColumn275.Width = 120;
            treeListColumn276.AutoSize = true;
            treeListColumn276.AutoSizeMinSize = 100;
            treeListColumn276.Width = 50;
            treeListColumn277.AutoSizeMinSize = 0;
            treeListColumn277.Width = 85;
            treeListColumn278.AutoSizeMinSize = 0;
            treeListColumn278.Width = 250;
            treeListColumn279.AutoSizeMinSize = 0;
            treeListColumn279.Width = 25;
            this.dsCBuffers.Columns.AddRange(new TreelistView.TreeListColumn[] {
            treeListColumn275,
            treeListColumn276,
            treeListColumn277,
            treeListColumn278,
            treeListColumn279});
            this.dsCBuffers.Cursor = System.Windows.Forms.Cursors.Arrow;
            this.dsCBuffers.Dock = System.Windows.Forms.DockStyle.Fill;
            this.dsCBuffers.GridLineColour = System.Drawing.SystemColors.ControlDark;
            this.dsCBuffers.Location = new System.Drawing.Point(3, 16);
            this.dsCBuffers.MultiSelect = false;
            this.dsCBuffers.Name = "dsCBuffers";
            this.dsCBuffers.RowOptions.HoverHighlight = true;
            this.dsCBuffers.RowOptions.ItemHeight = 20;
            this.dsCBuffers.RowOptions.ShowHeader = false;
            this.dsCBuffers.Size = new System.Drawing.Size(997, 113);
            this.dsCBuffers.TabIndex = 11;
            this.dsCBuffers.Text = "Constant Buffers";
            this.dsCBuffers.TreeColumn = 4;
            this.dsCBuffers.ViewOptions.Indent = 0;
            this.dsCBuffers.ViewOptions.ShowLine = false;
            this.dsCBuffers.ViewOptions.ShowPlusMinus = false;
            this.dsCBuffers.NodeDoubleClicked += new TreelistView.TreeListView.NodeDoubleClickedHandler(this.cbuffers_NodeDoubleClicked);
            this.dsCBuffers.NodeClicked += new TreelistView.TreeListView.NodeClickedHandler(this.cbuffers_NodeDoubleClicked);
            this.dsCBuffers.KeyDown += new System.Windows.Forms.KeyEventHandler(this.defaultCopyPaste_KeyDown);
            this.dsCBuffers.Leave += new System.EventHandler(this.disableSelection_Leave);
            this.dsCBuffers.MouseClick += new System.Windows.Forms.MouseEventHandler(this.hideDisabledEmpty_MouseClick);
            // 
            // tabGS
            // 
            this.tabGS.Controls.Add(this.panel5);
            this.tabGS.Location = new System.Drawing.Point(4, 22);
            this.tabGS.Name = "tabGS";
            this.tabGS.Size = new System.Drawing.Size(1009, 605);
            this.tabGS.TabIndex = 4;
            this.tabGS.Text = "Geometry Shader";
            this.tabGS.UseVisualStyleBackColor = true;
            // 
            // panel5
            // 
            this.panel5.AutoScroll = true;
            this.panel5.AutoScrollMinSize = new System.Drawing.Size(0, 500);
            this.panel5.Controls.Add(this.geomTableLayout);
            this.panel5.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panel5.Location = new System.Drawing.Point(0, 0);
            this.panel5.Name = "panel5";
            this.panel5.Size = new System.Drawing.Size(1009, 605);
            this.panel5.TabIndex = 4;
            // 
            // geomTableLayout
            // 
            this.geomTableLayout.ColumnCount = 2;
            this.geomTableLayout.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
            this.geomTableLayout.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
            this.geomTableLayout.Controls.Add(groupBox45, 1, 3);
            this.geomTableLayout.Controls.Add(this.groupBox22, 0, 0);
            this.geomTableLayout.Controls.Add(this.geomClassGroupBox, 0, 4);
            this.geomTableLayout.Controls.Add(this.groupBox24, 0, 1);
            this.geomTableLayout.Controls.Add(this.groupBox25, 0, 2);
            this.geomTableLayout.Controls.Add(this.geomCBufGroupBox, 0, 3);
            this.geomTableLayout.Dock = System.Windows.Forms.DockStyle.Fill;
            this.geomTableLayout.Location = new System.Drawing.Point(0, 0);
            this.geomTableLayout.Name = "geomTableLayout";
            this.geomTableLayout.RowCount = 4;
            this.geomTableLayout.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 50F));
            this.geomTableLayout.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
            this.geomTableLayout.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
            this.geomTableLayout.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
            this.geomTableLayout.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
            this.geomTableLayout.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
            this.geomTableLayout.Size = new System.Drawing.Size(1009, 605);
            this.geomTableLayout.TabIndex = 1;
            // 
            // groupBox45
            // 
            groupBox45.Controls.Add(this.gsStreams);
            groupBox45.Dock = System.Windows.Forms.DockStyle.Fill;
            groupBox45.Location = new System.Drawing.Point(507, 329);
            groupBox45.Name = "groupBox45";
            groupBox45.Size = new System.Drawing.Size(499, 132);
            groupBox45.TabIndex = 20;
            groupBox45.TabStop = false;
            groupBox45.Text = "Stream Out";
            // 
            // gsStreams
            // 
            treeListColumn280.AutoSizeMinSize = 0;
            treeListColumn280.Width = 60;
            treeListColumn281.AutoSize = true;
            treeListColumn281.AutoSizeMinSize = 100;
            treeListColumn281.Width = 50;
            treeListColumn282.AutoSizeMinSize = 0;
            treeListColumn282.Width = 75;
            treeListColumn283.AutoSizeMinSize = 0;
            treeListColumn283.Width = 75;
            treeListColumn284.AutoSizeMinSize = 0;
            treeListColumn284.Width = 25;
            this.gsStreams.Columns.AddRange(new TreelistView.TreeListColumn[] {
            treeListColumn280,
            treeListColumn281,
            treeListColumn282,
            treeListColumn283,
            treeListColumn284});
            this.gsStreams.Cursor = System.Windows.Forms.Cursors.Arrow;
            this.gsStreams.Dock = System.Windows.Forms.DockStyle.Fill;
            this.gsStreams.GridLineColour = System.Drawing.SystemColors.ControlDark;
            this.gsStreams.Location = new System.Drawing.Point(3, 16);
            this.gsStreams.MultiSelect = false;
            this.gsStreams.Name = "gsStreams";
            this.gsStreams.RowOptions.HoverHighlight = true;
            this.gsStreams.RowOptions.ItemHeight = 20;
            this.gsStreams.RowOptions.ShowHeader = false;
            this.gsStreams.Size = new System.Drawing.Size(493, 113);
            this.gsStreams.TabIndex = 19;
            this.gsStreams.Text = "treeListView1";
            this.gsStreams.TreeColumn = 4;
            this.gsStreams.ViewOptions.Indent = 0;
            this.gsStreams.ViewOptions.ShowLine = false;
            this.gsStreams.ViewOptions.ShowPlusMinus = false;
            this.gsStreams.NodeDoubleClicked += new TreelistView.TreeListView.NodeDoubleClickedHandler(this.textureCell_CellDoubleClick);
            this.gsStreams.NodeClicked += new TreelistView.TreeListView.NodeClickedHandler(this.textureCell_CellDoubleClick);
            this.gsStreams.KeyDown += new System.Windows.Forms.KeyEventHandler(this.defaultCopyPaste_KeyDown);
            this.gsStreams.Leave += new System.EventHandler(this.disableSelection_Leave);
            this.gsStreams.MouseClick += new System.Windows.Forms.MouseEventHandler(this.hideDisabledEmpty_MouseClick);
            this.gsStreams.MouseLeave += new System.EventHandler(this.textureCell_MouseLeave);
            this.gsStreams.MouseMove += new System.Windows.Forms.MouseEventHandler(this.textureCell_MouseMove);
            // 
            // groupBox22
            // 
            this.geomTableLayout.SetColumnSpan(this.groupBox22, 2);
            this.groupBox22.Controls.Add(this.flowLayoutPanel2);
            this.groupBox22.Dock = System.Windows.Forms.DockStyle.Fill;
            this.groupBox22.Location = new System.Drawing.Point(3, 3);
            this.groupBox22.Name = "groupBox22";
            this.groupBox22.Size = new System.Drawing.Size(1003, 44);
            this.groupBox22.TabIndex = 17;
            this.groupBox22.TabStop = false;
            this.groupBox22.Text = "Shader";
            // 
            // flowLayoutPanel2
            // 
            this.flowLayoutPanel2.Controls.Add(this.gsShader);
            this.flowLayoutPanel2.Controls.Add(this.gsShaderCog);
            this.flowLayoutPanel2.Controls.Add(label35);
            this.flowLayoutPanel2.Controls.Add(this.gsShaderEdit);
            this.flowLayoutPanel2.Controls.Add(label36);
            this.flowLayoutPanel2.Controls.Add(this.gsShaderSave);
            this.flowLayoutPanel2.Controls.Add(label37);
            this.flowLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
            this.flowLayoutPanel2.Location = new System.Drawing.Point(3, 16);
            this.flowLayoutPanel2.Name = "flowLayoutPanel2";
            this.flowLayoutPanel2.Size = new System.Drawing.Size(997, 25);
            this.flowLayoutPanel2.TabIndex = 25;
            // 
            // gsShader
            // 
            this.gsShader.Anchor = System.Windows.Forms.AnchorStyles.Left;
            this.gsShader.AutoSize = true;
            this.gsShader.BackColor = System.Drawing.SystemColors.Info;
            this.gsShader.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.gsShader.Cursor = System.Windows.Forms.Cursors.Hand;
            this.gsShader.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
            this.gsShader.ForeColor = System.Drawing.SystemColors.InfoText;
            this.gsShader.Location = new System.Drawing.Point(3, 3);
            this.gsShader.MinimumSize = new System.Drawing.Size(300, 2);
            this.gsShader.Name = "gsShader";
            this.gsShader.Size = new System.Drawing.Size(300, 15);
            this.gsShader.TabIndex = 24;
            this.gsShader.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            this.gsShader.Click += new System.EventHandler(this.shader_Click);
            this.gsShader.MouseEnter += new System.EventHandler(this.shaderCog_MouseEnter);
            this.gsShader.MouseLeave += new System.EventHandler(this.shaderCog_MouseLeave);
            // 
            // gsShaderCog
            // 
            this.gsShaderCog.Cursor = System.Windows.Forms.Cursors.Hand;
            this.gsShaderCog.Image = global::renderdocui.Properties.Resources.action;
            this.gsShaderCog.Location = new System.Drawing.Point(309, 3);
            this.gsShaderCog.Margin = new System.Windows.Forms.Padding(3, 3, 0, 3);
            this.gsShaderCog.Name = "gsShaderCog";
            this.gsShaderCog.Size = new System.Drawing.Size(16, 16);
            this.gsShaderCog.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
            this.gsShaderCog.TabIndex = 25;
            this.gsShaderCog.TabStop = false;
            this.gsShaderCog.Click += new System.EventHandler(this.shader_Click);
            this.gsShaderCog.MouseEnter += new System.EventHandler(this.shaderCog_MouseEnter);
            this.gsShaderCog.MouseLeave += new System.EventHandler(this.shaderCog_MouseLeave);
            // 
            // label35
            // 
            label35.Anchor = System.Windows.Forms.AnchorStyles.Left;
            label35.AutoSize = true;
            label35.Cursor = System.Windows.Forms.Cursors.Hand;
            label35.Location = new System.Drawing.Point(325, 4);
            label35.Margin = new System.Windows.Forms.Padding(0, 0, 6, 0);
            label35.Name = "label35";
            label35.Size = new System.Drawing.Size(30, 13);
            label35.TabIndex = 33;
            label35.Text = "View";
            label35.Click += new System.EventHandler(this.shader_Click);
            label35.MouseEnter += new System.EventHandler(this.shaderCog_MouseEnter);
            label35.MouseLeave += new System.EventHandler(this.shaderCog_MouseLeave);
            // 
            // gsShaderEdit
            // 
            this.gsShaderEdit.Cursor = System.Windows.Forms.Cursors.Hand;
            this.gsShaderEdit.Image = global::renderdocui.Properties.Resources.page_white_edit;
            this.gsShaderEdit.Location = new System.Drawing.Point(364, 3);
            this.gsShaderEdit.Margin = new System.Windows.Forms.Padding(3, 3, 0, 3);
            this.gsShaderEdit.Name = "gsShaderEdit";
            this.gsShaderEdit.Size = new System.Drawing.Size(16, 16);
            this.gsShaderEdit.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
            this.gsShaderEdit.TabIndex = 28;
            this.gsShaderEdit.TabStop = false;
            this.toolTip.SetToolTip(this.gsShaderEdit, "HLSL edit and replace this shader");
            this.gsShaderEdit.Click += new System.EventHandler(this.shaderedit_Click);
            // 
            // label36
            // 
            label36.Anchor = System.Windows.Forms.AnchorStyles.Left;
            label36.AutoSize = true;
            label36.Cursor = System.Windows.Forms.Cursors.Hand;
            label36.Location = new System.Drawing.Point(380, 4);
            label36.Margin = new System.Windows.Forms.Padding(0, 0, 6, 0);
            label36.Name = "label36";
            label36.Size = new System.Drawing.Size(25, 13);
            label36.TabIndex = 31;
            label36.Text = "Edit";
            this.toolTip.SetToolTip(label36, "HLSL edit and replace this shader");
            label36.Click += new System.EventHandler(this.shaderedit_Click);
            // 
            // gsShaderSave
            // 
            this.gsShaderSave.Cursor = System.Windows.Forms.Cursors.Hand;
            this.gsShaderSave.Image = global::renderdocui.Properties.Resources.save;
            this.gsShaderSave.Location = new System.Drawing.Point(414, 3);
            this.gsShaderSave.Margin = new System.Windows.Forms.Padding(3, 3, 0, 3);
            this.gsShaderSave.Name = "gsShaderSave";
            this.gsShaderSave.Size = new System.Drawing.Size(16, 16);
            this.gsShaderSave.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
            this.gsShaderSave.TabIndex = 34;
            this.gsShaderSave.TabStop = false;
            this.toolTip.SetToolTip(this.gsShaderSave, "Save the bytecode blob to disk");
            this.gsShaderSave.Click += new System.EventHandler(this.shaderSave_Click);
            // 
            // label37
            // 
            label37.Anchor = System.Windows.Forms.AnchorStyles.Left;
            label37.AutoSize = true;
            label37.Cursor = System.Windows.Forms.Cursors.Hand;
            label37.Location = new System.Drawing.Point(430, 4);
            label37.Margin = new System.Windows.Forms.Padding(0, 0, 6, 0);
            label37.Name = "label37";
            label37.Size = new System.Drawing.Size(32, 13);
            label37.TabIndex = 32;
            label37.Text = "Save";
            this.toolTip.SetToolTip(label37, "Save the bytecode blob to disk");
            label37.Click += new System.EventHandler(this.shaderSave_Click);
            // 
            // geomClassGroupBox
            // 
            this.geomTableLayout.SetColumnSpan(this.geomClassGroupBox, 2);
            this.geomClassGroupBox.Controls.Add(this.gsClasses);
            this.geomClassGroupBox.Dock = System.Windows.Forms.DockStyle.Fill;
            this.geomClassGroupBox.Location = new System.Drawing.Point(3, 467);
            this.geomClassGroupBox.Name = "geomClassGroupBox";
            this.geomClassGroupBox.Size = new System.Drawing.Size(1003, 135);
            this.geomClassGroupBox.TabIndex = 16;
            this.geomClassGroupBox.TabStop = false;
            this.geomClassGroupBox.Text = "Class Instances";
            // 
            // gsClasses
            // 
            treeListColumn285.AutoSizeMinSize = 0;
            treeListColumn285.Width = 50;
            treeListColumn286.AutoSizeMinSize = 0;
            treeListColumn286.Width = 200;
            treeListColumn287.AutoSize = true;
            treeListColumn287.AutoSizeMinSize = 50;
            treeListColumn287.Width = 60;
            this.gsClasses.Columns.AddRange(new TreelistView.TreeListColumn[] {
            treeListColumn285,
            treeListColumn286,
            treeListColumn287});
            this.gsClasses.Cursor = System.Windows.Forms.Cursors.Arrow;
            this.gsClasses.Dock = System.Windows.Forms.DockStyle.Fill;
            this.gsClasses.Location = new System.Drawing.Point(3, 16);
            this.gsClasses.Name = "gsClasses";
            this.gsClasses.RowOptions.ItemHeight = 20;
            this.gsClasses.RowOptions.ShowHeader = false;
            this.gsClasses.Size = new System.Drawing.Size(997, 116);
            this.gsClasses.TabIndex = 4;
            this.gsClasses.Text = "Class Instances";
            this.gsClasses.TreeColumn = -1;
            this.gsClasses.ViewOptions.ShowLine = false;
            this.gsClasses.ViewOptions.ShowPlusMinus = false;
            this.gsClasses.KeyDown += new System.Windows.Forms.KeyEventHandler(this.defaultCopyPaste_KeyDown);
            this.gsClasses.Leave += new System.EventHandler(this.disableSelection_Leave);
            this.gsClasses.MouseClick += new System.Windows.Forms.MouseEventHandler(this.hideDisabledEmpty_MouseClick);
            // 
            // groupBox24
            // 
            this.geomTableLayout.SetColumnSpan(this.groupBox24, 2);
            this.groupBox24.Controls.Add(this.gsResources);
            this.groupBox24.Dock = System.Windows.Forms.DockStyle.Fill;
            this.groupBox24.Location = new System.Drawing.Point(3, 53);
            this.groupBox24.Name = "groupBox24";
            this.groupBox24.Size = new System.Drawing.Size(1003, 132);
            this.groupBox24.TabIndex = 14;
            this.groupBox24.TabStop = false;
            this.groupBox24.Text = "Resources";
            // 
            // gsResources
            // 
            treeListColumn288.AutoSizeMinSize = 0;
            treeListColumn288.Width = 120;
            treeListColumn289.AutoSize = true;
            treeListColumn289.AutoSizeMinSize = 150;
            treeListColumn289.Width = 50;
            treeListColumn290.AutoSizeMinSize = 0;
            treeListColumn290.Width = 85;
            treeListColumn291.AutoSizeMinSize = 0;
            treeListColumn291.Width = 50;
            treeListColumn292.AutoSizeMinSize = 0;
            treeListColumn292.Width = 50;
            treeListColumn293.AutoSizeMinSize = 0;
            treeListColumn293.Width = 50;
            treeListColumn294.AutoSizeMinSize = 0;
            treeListColumn294.Width = 85;
            treeListColumn295.AutoSizeMinSize = 0;
            treeListColumn295.Width = 200;
            treeListColumn296.AutoSizeMinSize = 0;
            treeListColumn296.Width = 25;
            this.gsResources.Columns.AddRange(new TreelistView.TreeListColumn[] {
            treeListColumn288,
            treeListColumn289,
            treeListColumn290,
            treeListColumn291,
            treeListColumn292,
            treeListColumn293,
            treeListColumn294,
            treeListColumn295,
            treeListColumn296});
            this.gsResources.Cursor = System.Windows.Forms.Cursors.Arrow;
            this.gsResources.Dock = System.Windows.Forms.DockStyle.Fill;
            this.gsResources.GridLineColour = System.Drawing.SystemColors.ControlDark;
            this.gsResources.Location = new System.Drawing.Point(3, 16);
            this.gsResources.MultiSelect = false;
            this.gsResources.Name = "gsResources";
            this.gsResources.RowOptions.HoverHighlight = true;
            this.gsResources.RowOptions.ItemHeight = 20;
            this.gsResources.RowOptions.ShowHeader = false;
            this.gsResources.Size = new System.Drawing.Size(997, 113);
            this.gsResources.TabIndex = 1;
            this.gsResources.Text = "Outputs";
            this.gsResources.TreeColumn = 8;
            this.gsResources.ViewOptions.Indent = 0;
            this.gsResources.ViewOptions.ShowLine = false;
            this.gsResources.ViewOptions.ShowPlusMinus = false;
            this.gsResources.NodeDoubleClicked += new TreelistView.TreeListView.NodeDoubleClickedHandler(this.textureCell_CellDoubleClick);
            this.gsResources.NodeClicked += new TreelistView.TreeListView.NodeClickedHandler(this.textureCell_CellDoubleClick);
            this.gsResources.KeyDown += new System.Windows.Forms.KeyEventHandler(this.defaultCopyPaste_KeyDown);
            this.gsResources.Leave += new System.EventHandler(this.disableSelection_Leave);
            this.gsResources.MouseClick += new System.Windows.Forms.MouseEventHandler(this.hideDisabledEmpty_MouseClick);
            this.gsResources.MouseLeave += new System.EventHandler(this.textureCell_MouseLeave);
            this.gsResources.MouseMove += new System.Windows.Forms.MouseEventHandler(this.textureCell_MouseMove);
            // 
            // groupBox25
            // 
            this.geomTableLayout.SetColumnSpan(this.groupBox25, 2);
            this.groupBox25.Controls.Add(this.gsSamplers);
            this.groupBox25.Dock = System.Windows.Forms.DockStyle.Fill;
            this.groupBox25.Location = new System.Drawing.Point(3, 191);
            this.groupBox25.Name = "groupBox25";
            this.groupBox25.Size = new System.Drawing.Size(1003, 132);
            this.groupBox25.TabIndex = 13;
            this.groupBox25.TabStop = false;
            this.groupBox25.Text = "Samplers";
            // 
            // gsSamplers
            // 
            treeListColumn297.AutoSizeMinSize = 0;
            treeListColumn297.Width = 120;
            treeListColumn298.AutoSizeMinSize = 100;
            treeListColumn298.Width = 200;
            treeListColumn299.AutoSizeMinSize = 0;
            treeListColumn299.Width = 250;
            treeListColumn300.AutoSizeMinSize = 0;
            treeListColumn300.Width = 90;
            treeListColumn301.AutoSize = true;
            treeListColumn301.AutoSizeMinSize = 50;
            treeListColumn301.Width = 50;
            this.gsSamplers.Columns.AddRange(new TreelistView.TreeListColumn[] {
            treeListColumn297,
            treeListColumn298,
            treeListColumn299,
            treeListColumn300,
            treeListColumn301});
            this.gsSamplers.Cursor = System.Windows.Forms.Cursors.Arrow;
            this.gsSamplers.Dock = System.Windows.Forms.DockStyle.Fill;
            this.gsSamplers.GridLineColour = System.Drawing.SystemColors.ControlDark;
            this.gsSamplers.Location = new System.Drawing.Point(3, 16);
            this.gsSamplers.MultiSelect = false;
            this.gsSamplers.Name = "gsSamplers";
            this.gsSamplers.RowOptions.HoverHighlight = true;
            this.gsSamplers.RowOptions.ItemHeight = 20;
            this.gsSamplers.RowOptions.ShowHeader = false;
            this.gsSamplers.Size = new System.Drawing.Size(997, 113);
            this.gsSamplers.TabIndex = 12;
            this.gsSamplers.Text = "Samplers";
            this.gsSamplers.TreeColumn = -1;
            this.gsSamplers.ViewOptions.Indent = 0;
            this.gsSamplers.ViewOptions.ShowLine = false;
            this.gsSamplers.ViewOptions.ShowPlusMinus = false;
            this.gsSamplers.KeyDown += new System.Windows.Forms.KeyEventHandler(this.defaultCopyPaste_KeyDown);
            this.gsSamplers.Leave += new System.EventHandler(this.disableSelection_Leave);
            this.gsSamplers.MouseClick += new System.Windows.Forms.MouseEventHandler(this.hideDisabledEmpty_MouseClick);
            // 
            // geomCBufGroupBox
            // 
            this.geomCBufGroupBox.Controls.Add(this.gsCBuffers);
            this.geomCBufGroupBox.Dock = System.Windows.Forms.DockStyle.Fill;
            this.geomCBufGroupBox.Location = new System.Drawing.Point(3, 329);
            this.geomCBufGroupBox.Name = "geomCBufGroupBox";
            this.geomCBufGroupBox.Size = new System.Drawing.Size(498, 132);
            this.geomCBufGroupBox.TabIndex = 12;
            this.geomCBufGroupBox.TabStop = false;
            this.geomCBufGroupBox.Text = "Constant Buffers";
            // 
            // gsCBuffers
            // 
            treeListColumn302.AutoSizeMinSize = 0;
            treeListColumn302.Width = 120;
            treeListColumn303.AutoSize = true;
            treeListColumn303.AutoSizeMinSize = 100;
            treeListColumn303.Width = 50;
            treeListColumn304.AutoSizeMinSize = 0;
            treeListColumn304.Width = 75;
            treeListColumn305.AutoSizeMinSize = 0;
            treeListColumn305.Width = 250;
            treeListColumn306.AutoSizeMinSize = 0;
            treeListColumn306.Width = 25;
            this.gsCBuffers.Columns.AddRange(new TreelistView.TreeListColumn[] {
            treeListColumn302,
            treeListColumn303,
            treeListColumn304,
            treeListColumn305,
            treeListColumn306});
            this.gsCBuffers.Cursor = System.Windows.Forms.Cursors.Arrow;
            this.gsCBuffers.Dock = System.Windows.Forms.DockStyle.Fill;
            this.gsCBuffers.GridLineColour = System.Drawing.SystemColors.ControlDark;
            this.gsCBuffers.Location = new System.Drawing.Point(3, 16);
            this.gsCBuffers.MultiSelect = false;
            this.gsCBuffers.Name = "gsCBuffers";
            this.gsCBuffers.RowOptions.HoverHighlight = true;
            this.gsCBuffers.RowOptions.ItemHeight = 20;
            this.gsCBuffers.RowOptions.ShowHeader = false;
            this.gsCBuffers.Size = new System.Drawing.Size(492, 113);
            this.gsCBuffers.TabIndex = 11;
            this.gsCBuffers.Text = "Samplers";
            this.gsCBuffers.TreeColumn = 4;
            this.gsCBuffers.ViewOptions.Indent = 0;
            this.gsCBuffers.ViewOptions.ShowLine = false;
            this.gsCBuffers.ViewOptions.ShowPlusMinus = false;
            this.gsCBuffers.NodeDoubleClicked += new TreelistView.TreeListView.NodeDoubleClickedHandler(this.cbuffers_NodeDoubleClicked);
            this.gsCBuffers.NodeClicked += new TreelistView.TreeListView.NodeClickedHandler(this.cbuffers_NodeDoubleClicked);
            this.gsCBuffers.KeyDown += new System.Windows.Forms.KeyEventHandler(this.defaultCopyPaste_KeyDown);
            this.gsCBuffers.Leave += new System.EventHandler(this.disableSelection_Leave);
            this.gsCBuffers.MouseClick += new System.Windows.Forms.MouseEventHandler(this.hideDisabledEmpty_MouseClick);
            // 
            // tabRS
            // 
            this.tabRS.Controls.Add(this.panel8);
            this.tabRS.Location = new System.Drawing.Point(4, 22);
            this.tabRS.Name = "tabRS";
            this.tabRS.Size = new System.Drawing.Size(1009, 605);
            this.tabRS.TabIndex = 5;
            this.tabRS.Text = "Rasterizer";
            this.tabRS.UseVisualStyleBackColor = true;
            // 
            // panel8
            // 
            this.panel8.AutoScroll = true;
            this.panel8.AutoScrollMinSize = new System.Drawing.Size(500, 220);
            this.panel8.Controls.Add(this.tableLayoutPanel14);
            this.panel8.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panel8.Location = new System.Drawing.Point(0, 0);
            this.panel8.Name = "panel8";
            this.panel8.Size = new System.Drawing.Size(1009, 605);
            this.panel8.TabIndex = 2;
            // 
            // tableLayoutPanel14
            // 
            this.tableLayoutPanel14.AutoScroll = true;
            this.tableLayoutPanel14.AutoScrollMinSize = new System.Drawing.Size(500, 0);
            this.tableLayoutPanel14.ColumnCount = 2;
            this.tableLayoutPanel14.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
            this.tableLayoutPanel14.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
            this.tableLayoutPanel14.Controls.Add(this.groupBox31, 0, 0);
            this.tableLayoutPanel14.Controls.Add(this.groupBox32, 0, 1);
            this.tableLayoutPanel14.Controls.Add(groupBox42, 1, 1);
            this.tableLayoutPanel14.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tableLayoutPanel14.Location = new System.Drawing.Point(0, 0);
            this.tableLayoutPanel14.Name = "tableLayoutPanel14";
            this.tableLayoutPanel14.RowCount = 2;
            this.tableLayoutPanel14.RowStyles.Add(new System.Windows.Forms.RowStyle());
            this.tableLayoutPanel14.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
            this.tableLayoutPanel14.Size = new System.Drawing.Size(1009, 605);
            this.tableLayoutPanel14.TabIndex = 1;
            // 
            // groupBox31
            // 
            this.groupBox31.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.tableLayoutPanel14.SetColumnSpan(this.groupBox31, 2);
            this.groupBox31.Controls.Add(this.tableLayoutPanel8);
            this.groupBox31.Location = new System.Drawing.Point(3, 3);
            this.groupBox31.MinimumSize = new System.Drawing.Size(500, 0);
            this.groupBox31.Name = "groupBox31";
            this.groupBox31.Size = new System.Drawing.Size(1003, 97);
            this.groupBox31.TabIndex = 0;
            this.groupBox31.TabStop = false;
            this.groupBox31.Text = "Rasterizer State";
            // 
            // tableLayoutPanel8
            // 
            this.tableLayoutPanel8.CellBorderStyle = System.Windows.Forms.TableLayoutPanelCellBorderStyle.Single;
            this.tableLayoutPanel8.ColumnCount = 9;
            this.tableLayoutPanel8.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
            this.tableLayoutPanel8.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
            this.tableLayoutPanel8.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
            this.tableLayoutPanel8.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
            this.tableLayoutPanel8.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
            this.tableLayoutPanel8.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
            this.tableLayoutPanel8.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
            this.tableLayoutPanel8.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
            this.tableLayoutPanel8.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 619F));
            this.tableLayoutPanel8.Controls.Add(this.forcedSampleCount, 7, 1);
            this.tableLayoutPanel8.Controls.Add(this.label14, 6, 1);
            this.tableLayoutPanel8.Controls.Add(this.frontCCW, 5, 0);
            this.tableLayoutPanel8.Controls.Add(this.cullMode, 3, 0);
            this.tableLayoutPanel8.Controls.Add(label1, 0, 1);
            this.tableLayoutPanel8.Controls.Add(this.label2, 2, 1);
            this.tableLayoutPanel8.Controls.Add(this.label5, 4, 1);
            this.tableLayoutPanel8.Controls.Add(this.depthBias, 1, 1);
            this.tableLayoutPanel8.Controls.Add(this.depthBiasClamp, 3, 1);
            this.tableLayoutPanel8.Controls.Add(this.slopeScaledBias, 5, 1);
            this.tableLayoutPanel8.Controls.Add(label15, 0, 0);
            this.tableLayoutPanel8.Controls.Add(label16, 2, 0);
            this.tableLayoutPanel8.Controls.Add(label17, 4, 0);
            this.tableLayoutPanel8.Controls.Add(this.label18, 0, 2);
            this.tableLayoutPanel8.Controls.Add(this.label19, 2, 2);
            this.tableLayoutPanel8.Controls.Add(this.label20, 4, 2);
            this.tableLayoutPanel8.Controls.Add(this.depthClip, 1, 2);
            this.tableLayoutPanel8.Controls.Add(this.fillMode, 1, 0);
            this.tableLayoutPanel8.Controls.Add(this.multisampleEnable, 5, 2);
            this.tableLayoutPanel8.Controls.Add(this.scissorEnable, 3, 2);
            this.tableLayoutPanel8.Controls.Add(this.lineAAEnable, 7, 2);
            this.tableLayoutPanel8.Controls.Add(this.label23, 6, 2);
            this.tableLayoutPanel8.Controls.Add(label25, 6, 0);
            this.tableLayoutPanel8.Controls.Add(this.conservativeRaster, 7, 0);
            this.tableLayoutPanel8.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tableLayoutPanel8.Location = new System.Drawing.Point(3, 16);
            this.tableLayoutPanel8.Name = "tableLayoutPanel8";
            this.tableLayoutPanel8.RowCount = 3;
            this.tableLayoutPanel8.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 33.33333F));
            this.tableLayoutPanel8.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 33.33333F));
            this.tableLayoutPanel8.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 33.33333F));
            this.tableLayoutPanel8.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
            this.tableLayoutPanel8.Size = new System.Drawing.Size(997, 78);
            this.tableLayoutPanel8.TabIndex = 0;
            // 
            // forcedSampleCount
            // 
            this.forcedSampleCount.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
            this.forcedSampleCount.AutoSize = true;
            this.forcedSampleCount.BackColor = System.Drawing.Color.Transparent;
            this.forcedSampleCount.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.forcedSampleCount.Location = new System.Drawing.Point(539, 28);
            this.forcedSampleCount.Name = "forcedSampleCount";
            this.forcedSampleCount.Size = new System.Drawing.Size(32, 19);
            this.forcedSampleCount.TabIndex = 24;
            this.forcedSampleCount.Text = "0";
            this.forcedSampleCount.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            // 
            // label14
            // 
            this.label14.Anchor = System.Windows.Forms.AnchorStyles.Right;
            this.label14.AutoSize = true;
            this.label14.Location = new System.Drawing.Point(420, 31);
            this.label14.Name = "label14";
            this.label14.Size = new System.Drawing.Size(112, 13);
            this.label14.TabIndex = 23;
            this.label14.Text = "Forced Sample Count:";
            // 
            // frontCCW
            // 
            this.frontCCW.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
            this.frontCCW.Image = ((System.Drawing.Image)(resources.GetObject("frontCCW.Image")));
            this.frontCCW.Location = new System.Drawing.Point(381, 5);
            this.frontCCW.Name = "frontCCW";
            this.frontCCW.Size = new System.Drawing.Size(32, 16);
            this.frontCCW.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
            this.frontCCW.TabIndex = 19;
            this.frontCCW.TabStop = false;
            // 
            // cullMode
            // 
            this.cullMode.Anchor = System.Windows.Forms.AnchorStyles.Left;
            this.cullMode.AutoSize = true;
            this.cullMode.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cullMode.Location = new System.Drawing.Point(225, 3);
            this.cullMode.Name = "cullMode";
            this.cullMode.Size = new System.Drawing.Size(46, 19);
            this.cullMode.TabIndex = 18;
            this.cullMode.Text = "Front";
            // 
            // label1
            // 
            label1.Anchor = System.Windows.Forms.AnchorStyles.Right;
            label1.AutoSize = true;
            label1.Location = new System.Drawing.Point(4, 31);
            label1.Name = "label1";
            label1.Size = new System.Drawing.Size(62, 13);
            label1.TabIndex = 0;
            label1.Text = "Depth Bias:";
            // 
            // label2
            // 
            this.label2.Anchor = System.Windows.Forms.AnchorStyles.Right;
            this.label2.AutoSize = true;
            this.label2.Location = new System.Drawing.Point(124, 31);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(94, 13);
            this.label2.TabIndex = 1;
            this.label2.Text = "Depth Bias Clamp:";
            // 
            // label5
            // 
            this.label5.Anchor = System.Windows.Forms.AnchorStyles.Right;
            this.label5.AutoSize = true;
            this.label5.Location = new System.Drawing.Point(278, 31);
            this.label5.Name = "label5";
            this.label5.Size = new System.Drawing.Size(96, 13);
            this.label5.TabIndex = 2;
            this.label5.Text = "Slope-Scaled Bias:";
            // 
            // depthBias
            // 
            this.depthBias.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
            this.depthBias.AutoSize = true;
            this.depthBias.BackColor = System.Drawing.Color.Transparent;
            this.depthBias.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.depthBias.Location = new System.Drawing.Point(73, 28);
            this.depthBias.Name = "depthBias";
            this.depthBias.Size = new System.Drawing.Size(44, 19);
            this.depthBias.TabIndex = 3;
            this.depthBias.Text = "0";
            this.depthBias.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            // 
            // depthBiasClamp
            // 
            this.depthBiasClamp.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
            this.depthBiasClamp.AutoSize = true;
            this.depthBiasClamp.BackColor = System.Drawing.Color.Transparent;
            this.depthBiasClamp.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.depthBiasClamp.Location = new System.Drawing.Point(225, 28);
            this.depthBiasClamp.Name = "depthBiasClamp";
            this.depthBiasClamp.Size = new System.Drawing.Size(46, 19);
            this.depthBiasClamp.TabIndex = 4;
            this.depthBiasClamp.Text = "0.0";
            this.depthBiasClamp.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            // 
            // slopeScaledBias
            // 
            this.slopeScaledBias.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
            this.slopeScaledBias.AutoSize = true;
            this.slopeScaledBias.BackColor = System.Drawing.Color.Transparent;
            this.slopeScaledBias.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.slopeScaledBias.Location = new System.Drawing.Point(381, 28);
            this.slopeScaledBias.Name = "slopeScaledBias";
            this.slopeScaledBias.Size = new System.Drawing.Size(32, 19);
            this.slopeScaledBias.TabIndex = 5;
            this.slopeScaledBias.Text = "0.0";
            this.slopeScaledBias.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            // 
            // label15
            // 
            label15.Anchor = System.Windows.Forms.AnchorStyles.Right;
            label15.AutoSize = true;
            label15.Location = new System.Drawing.Point(14, 6);
            label15.Name = "label15";
            label15.Size = new System.Drawing.Size(52, 13);
            label15.TabIndex = 6;
            label15.Text = "Fill Mode:";
            // 
            // label16
            // 
            label16.Anchor = System.Windows.Forms.AnchorStyles.Right;
            label16.AutoSize = true;
            label16.Location = new System.Drawing.Point(161, 6);
            label16.Name = "label16";
            label16.Size = new System.Drawing.Size(57, 13);
            label16.TabIndex = 7;
            label16.Text = "Cull Mode:";
            // 
            // label17
            // 
            label17.Anchor = System.Windows.Forms.AnchorStyles.Right;
            label17.AutoSize = true;
            label17.Location = new System.Drawing.Point(312, 6);
            label17.Name = "label17";
            label17.Size = new System.Drawing.Size(62, 13);
            label17.TabIndex = 8;
            label17.Text = "Front CCW:";
            // 
            // label18
            // 
            this.label18.Anchor = System.Windows.Forms.AnchorStyles.Right;
            this.label18.AutoSize = true;
            this.label18.Location = new System.Drawing.Point(7, 57);
            this.label18.Name = "label18";
            this.label18.Size = new System.Drawing.Size(59, 13);
            this.label18.TabIndex = 9;
            this.label18.Text = "Depth Clip:";
            // 
            // label19
            // 
            this.label19.Anchor = System.Windows.Forms.AnchorStyles.Right;
            this.label19.AutoSize = true;
            this.label19.Location = new System.Drawing.Point(174, 57);
            this.label19.Name = "label19";
            this.label19.Size = new System.Drawing.Size(44, 13);
            this.label19.TabIndex = 10;
            this.label19.Text = "Scissor:";
            // 
            // label20
            // 
            this.label20.Anchor = System.Windows.Forms.AnchorStyles.Right;
            this.label20.AutoSize = true;
            this.label20.Location = new System.Drawing.Point(309, 57);
            this.label20.Name = "label20";
            this.label20.Size = new System.Drawing.Size(65, 13);
            this.label20.TabIndex = 11;
            this.label20.Text = "Multisample:";
            // 
            // depthClip
            // 
            this.depthClip.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
            this.depthClip.Image = ((System.Drawing.Image)(resources.GetObject("depthClip.Image")));
            this.depthClip.Location = new System.Drawing.Point(73, 56);
            this.depthClip.Name = "depthClip";
            this.depthClip.Size = new System.Drawing.Size(44, 16);
            this.depthClip.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
            this.depthClip.TabIndex = 13;
            this.depthClip.TabStop = false;
            // 
            // fillMode
            // 
            this.fillMode.Anchor = System.Windows.Forms.AnchorStyles.Left;
            this.fillMode.AutoSize = true;
            this.fillMode.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fillMode.Location = new System.Drawing.Point(73, 3);
            this.fillMode.Name = "fillMode";
            this.fillMode.Size = new System.Drawing.Size(44, 19);
            this.fillMode.TabIndex = 17;
            this.fillMode.Text = "Solid";
            // 
            // multisampleEnable
            // 
            this.multisampleEnable.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
            this.multisampleEnable.Image = ((System.Drawing.Image)(resources.GetObject("multisampleEnable.Image")));
            this.multisampleEnable.Location = new System.Drawing.Point(381, 56);
            this.multisampleEnable.Name = "multisampleEnable";
            this.multisampleEnable.Size = new System.Drawing.Size(32, 16);
            this.multisampleEnable.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
            this.multisampleEnable.TabIndex = 21;
            this.multisampleEnable.TabStop = false;
            // 
            // scissorEnable
            // 
            this.scissorEnable.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
            this.scissorEnable.Image = ((System.Drawing.Image)(resources.GetObject("scissorEnable.Image")));
            this.scissorEnable.Location = new System.Drawing.Point(225, 56);
            this.scissorEnable.Name = "scissorEnable";
            this.scissorEnable.Size = new System.Drawing.Size(46, 16);
            this.scissorEnable.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
            this.scissorEnable.TabIndex = 22;
            this.scissorEnable.TabStop = false;
            // 
            // lineAAEnable
            // 
            this.lineAAEnable.Anchor = System.Windows.Forms.AnchorStyles.Left;
            this.lineAAEnable.Image = ((System.Drawing.Image)(resources.GetObject("lineAAEnable.Image")));
            this.lineAAEnable.Location = new System.Drawing.Point(539, 56);
            this.lineAAEnable.Name = "lineAAEnable";
            this.lineAAEnable.Size = new System.Drawing.Size(16, 16);
            this.lineAAEnable.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
            this.lineAAEnable.TabIndex = 20;
            this.lineAAEnable.TabStop = false;
            // 
            // label23
            // 
            this.label23.Anchor = System.Windows.Forms.AnchorStyles.Right;
            this.label23.AutoSize = true;
            this.label23.Location = new System.Drawing.Point(485, 57);
            this.label23.Name = "label23";
            this.label23.Size = new System.Drawing.Size(47, 13);
            this.label23.TabIndex = 12;
            this.label23.Text = "Line AA:";
            // 
            // label25
            // 
            label25.Anchor = System.Windows.Forms.AnchorStyles.Right;
            label25.AutoSize = true;
            label25.Location = new System.Drawing.Point(426, 6);
            label25.Name = "label25";
            label25.Size = new System.Drawing.Size(106, 13);
            label25.TabIndex = 25;
            label25.Text = "Conservative Raster:";
            // 
            // conservativeRaster
            // 
            this.conservativeRaster.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
            this.conservativeRaster.Image = ((System.Drawing.Image)(resources.GetObject("conservativeRaster.Image")));
            this.conservativeRaster.Location = new System.Drawing.Point(539, 5);
            this.conservativeRaster.Name = "conservativeRaster";
            this.conservativeRaster.Size = new System.Drawing.Size(32, 16);
            this.conservativeRaster.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
            this.conservativeRaster.TabIndex = 26;
            this.conservativeRaster.TabStop = false;
            // 
            // groupBox32
            // 
            this.groupBox32.Controls.Add(this.viewports);
            this.groupBox32.Dock = System.Windows.Forms.DockStyle.Fill;
            this.groupBox32.Location = new System.Drawing.Point(3, 106);
            this.groupBox32.Name = "groupBox32";
            this.groupBox32.Size = new System.Drawing.Size(498, 496);
            this.groupBox32.TabIndex = 1;
            this.groupBox32.TabStop = false;
            this.groupBox32.Text = "Viewports";
            // 
            // viewports
            // 
            treeListColumn307.AutoSizeMinSize = 0;
            treeListColumn307.Width = 50;
            treeListColumn308.AutoSizeMinSize = 0;
            treeListColumn308.Width = 50;
            treeListColumn309.AutoSizeMinSize = 0;
            treeListColumn309.Width = 50;
            treeListColumn310.AutoSizeMinSize = 0;
            treeListColumn310.Width = 50;
            treeListColumn311.AutoSizeMinSize = 0;
            treeListColumn311.Width = 50;
            treeListColumn312.AutoSizeMinSize = 0;
            treeListColumn312.Width = 70;
            treeListColumn313.AutoSize = true;
            treeListColumn313.AutoSizeMinSize = 60;
            treeListColumn313.Width = 60;
            this.viewports.Columns.AddRange(new TreelistView.TreeListColumn[] {
            treeListColumn307,
            treeListColumn308,
            treeListColumn309,
            treeListColumn310,
            treeListColumn311,
            treeListColumn312,
            treeListColumn313});
            this.viewports.Cursor = System.Windows.Forms.Cursors.Arrow;
            this.viewports.Dock = System.Windows.Forms.DockStyle.Fill;
            this.viewports.GridLineColour = System.Drawing.SystemColors.ControlDark;
            this.viewports.Location = new System.Drawing.Point(3, 16);
            this.viewports.MultiSelect = false;
            this.viewports.Name = "viewports";
            this.viewports.RowOptions.ItemHeight = 20;
            this.viewports.RowOptions.ShowHeader = false;
            this.viewports.Size = new System.Drawing.Size(492, 477);
            this.viewports.TabIndex = 0;
            this.viewports.Text = "Viewports";
            this.viewports.TreeColumn = -1;
            this.viewports.ViewOptions.ShowPlusMinus = false;
            this.viewports.KeyDown += new System.Windows.Forms.KeyEventHandler(this.defaultCopyPaste_KeyDown);
            this.viewports.Leave += new System.EventHandler(this.disableSelection_Leave);
            this.viewports.MouseClick += new System.Windows.Forms.MouseEventHandler(this.hideDisabledEmpty_MouseClick);
            // 
            // groupBox42
            // 
            groupBox42.Controls.Add(this.scissors);
            groupBox42.Dock = System.Windows.Forms.DockStyle.Fill;
            groupBox42.Location = new System.Drawing.Point(507, 106);
            groupBox42.Name = "groupBox42";
            groupBox42.Size = new System.Drawing.Size(499, 496);
            groupBox42.TabIndex = 2;
            groupBox42.TabStop = false;
            groupBox42.Text = "Scissor Regions";
            // 
            // scissors
            // 
            treeListColumn314.AutoSizeMinSize = 0;
            treeListColumn314.Width = 50;
            treeListColumn315.AutoSizeMinSize = 0;
            treeListColumn315.Width = 50;
            treeListColumn316.AutoSizeMinSize = 0;
            treeListColumn316.Width = 50;
            treeListColumn317.AutoSizeMinSize = 0;
            treeListColumn317.Width = 50;
            treeListColumn318.AutoSize = true;
            treeListColumn318.AutoSizeMinSize = 50;
            treeListColumn318.Width = 50;
            this.scissors.Columns.AddRange(new TreelistView.TreeListColumn[] {
            treeListColumn314,
            treeListColumn315,
            treeListColumn316,
            treeListColumn317,
            treeListColumn318});
            this.scissors.Cursor = System.Windows.Forms.Cursors.Arrow;
            this.scissors.Dock = System.Windows.Forms.DockStyle.Fill;
            this.scissors.GridLineColour = System.Drawing.SystemColors.ControlDark;
            this.scissors.Location = new System.Drawing.Point(3, 16);
            this.scissors.MultiSelect = false;
            this.scissors.Name = "scissors";
            this.scissors.RowOptions.ItemHeight = 20;
            this.scissors.RowOptions.ShowHeader = false;
            this.scissors.Size = new System.Drawing.Size(493, 477);
            this.scissors.TabIndex = 1;
            this.scissors.Text = "Scissor Regions";
            this.scissors.TreeColumn = -1;
            this.scissors.ViewOptions.ShowPlusMinus = false;
            this.scissors.KeyDown += new System.Windows.Forms.KeyEventHandler(this.defaultCopyPaste_KeyDown);
            this.scissors.Leave += new System.EventHandler(this.disableSelection_Leave);
            this.scissors.MouseClick += new System.Windows.Forms.MouseEventHandler(this.hideDisabledEmpty_MouseClick);
            // 
            // tabPS
            // 
            this.tabPS.Controls.Add(this.panel6);
            this.tabPS.Location = new System.Drawing.Point(4, 22);
            this.tabPS.Name = "tabPS";
            this.tabPS.Size = new System.Drawing.Size(1009, 605);
            this.tabPS.TabIndex = 6;
            this.tabPS.Text = "Pixel Shader";
            this.tabPS.UseVisualStyleBackColor = true;
            // 
            // panel6
            // 
            this.panel6.AutoScroll = true;
            this.panel6.AutoScrollMinSize = new System.Drawing.Size(0, 500);
            this.panel6.Controls.Add(this.pixelTableLayout);
            this.panel6.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panel6.Location = new System.Drawing.Point(0, 0);
            this.panel6.Name = "panel6";
            this.panel6.Size = new System.Drawing.Size(1009, 605);
            this.panel6.TabIndex = 3;
            // 
            // pixelTableLayout
            // 
            this.pixelTableLayout.ColumnCount = 2;
            this.pixelTableLayout.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
            this.pixelTableLayout.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
            this.pixelTableLayout.Controls.Add(this.groupBox13, 0, 0);
            this.pixelTableLayout.Controls.Add(this.pixelClassGroupBox, 1, 3);
            this.pixelTableLayout.Controls.Add(this.groupBox28, 0, 1);
            this.pixelTableLayout.Controls.Add(this.groupBox29, 0, 2);
            this.pixelTableLayout.Controls.Add(this.pixelCBufGroupBox, 0, 3);
            this.pixelTableLayout.Dock = System.Windows.Forms.DockStyle.Fill;
            this.pixelTableLayout.Location = new System.Drawing.Point(0, 0);
            this.pixelTableLayout.Name = "pixelTableLayout";
            this.pixelTableLayout.RowCount = 4;
            this.pixelTableLayout.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 50F));
            this.pixelTableLayout.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
            this.pixelTableLayout.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
            this.pixelTableLayout.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
            this.pixelTableLayout.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
            this.pixelTableLayout.Size = new System.Drawing.Size(1009, 605);
            this.pixelTableLayout.TabIndex = 1;
            // 
            // groupBox13
            // 
            this.pixelTableLayout.SetColumnSpan(this.groupBox13, 2);
            this.groupBox13.Controls.Add(this.flowLayoutPanel1);
            this.groupBox13.Dock = System.Windows.Forms.DockStyle.Fill;
            this.groupBox13.Location = new System.Drawing.Point(3, 3);
            this.groupBox13.Name = "groupBox13";
            this.groupBox13.Size = new System.Drawing.Size(1003, 44);
            this.groupBox13.TabIndex = 17;
            this.groupBox13.TabStop = false;
            this.groupBox13.Text = "Shader";
            // 
            // flowLayoutPanel1
            // 
            this.flowLayoutPanel1.Controls.Add(this.psShader);
            this.flowLayoutPanel1.Controls.Add(this.psShaderCog);
            this.flowLayoutPanel1.Controls.Add(label38);
            this.flowLayoutPanel1.Controls.Add(this.psShaderEdit);
            this.flowLayoutPanel1.Controls.Add(label39);
            this.flowLayoutPanel1.Controls.Add(this.psShaderSave);
            this.flowLayoutPanel1.Controls.Add(label40);
            this.flowLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.flowLayoutPanel1.Location = new System.Drawing.Point(3, 16);
            this.flowLayoutPanel1.Name = "flowLayoutPanel1";
            this.flowLayoutPanel1.Size = new System.Drawing.Size(997, 25);
            this.flowLayoutPanel1.TabIndex = 25;
            // 
            // psShader
            // 
            this.psShader.Anchor = System.Windows.Forms.AnchorStyles.Left;
            this.psShader.AutoSize = true;
            this.psShader.BackColor = System.Drawing.SystemColors.Info;
            this.psShader.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.psShader.Cursor = System.Windows.Forms.Cursors.Hand;
            this.psShader.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
            this.psShader.ForeColor = System.Drawing.SystemColors.InfoText;
            this.psShader.Location = new System.Drawing.Point(3, 3);
            this.psShader.MinimumSize = new System.Drawing.Size(300, 2);
            this.psShader.Name = "psShader";
            this.psShader.Size = new System.Drawing.Size(300, 15);
            this.psShader.TabIndex = 24;
            this.psShader.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            this.psShader.Click += new System.EventHandler(this.shader_Click);
            this.psShader.MouseEnter += new System.EventHandler(this.shaderCog_MouseEnter);
            this.psShader.MouseLeave += new System.EventHandler(this.shaderCog_MouseLeave);
            // 
            // psShaderCog
            // 
            this.psShaderCog.Cursor = System.Windows.Forms.Cursors.Hand;
            this.psShaderCog.Image = global::renderdocui.Properties.Resources.action;
            this.psShaderCog.Location = new System.Drawing.Point(309, 3);
            this.psShaderCog.Margin = new System.Windows.Forms.Padding(3, 3, 0, 3);
            this.psShaderCog.Name = "psShaderCog";
            this.psShaderCog.Size = new System.Drawing.Size(16, 16);
            this.psShaderCog.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
            this.psShaderCog.TabIndex = 25;
            this.psShaderCog.TabStop = false;
            this.psShaderCog.Click += new System.EventHandler(this.shader_Click);
            this.psShaderCog.MouseEnter += new System.EventHandler(this.shaderCog_MouseEnter);
            this.psShaderCog.MouseLeave += new System.EventHandler(this.shaderCog_MouseLeave);
            // 
            // label38
            // 
            label38.Anchor = System.Windows.Forms.AnchorStyles.Left;
            label38.AutoSize = true;
            label38.Cursor = System.Windows.Forms.Cursors.Hand;
            label38.Location = new System.Drawing.Point(325, 4);
            label38.Margin = new System.Windows.Forms.Padding(0, 0, 6, 0);
            label38.Name = "label38";
            label38.Size = new System.Drawing.Size(30, 13);
            label38.TabIndex = 33;
            label38.Text = "View";
            label38.Click += new System.EventHandler(this.shader_Click);
            label38.MouseEnter += new System.EventHandler(this.shaderCog_MouseEnter);
            label38.MouseLeave += new System.EventHandler(this.shaderCog_MouseLeave);
            // 
            // psShaderEdit
            // 
            this.psShaderEdit.Cursor = System.Windows.Forms.Cursors.Hand;
            this.psShaderEdit.Image = global::renderdocui.Properties.Resources.page_white_edit;
            this.psShaderEdit.Location = new System.Drawing.Point(364, 3);
            this.psShaderEdit.Margin = new System.Windows.Forms.Padding(3, 3, 0, 3);
            this.psShaderEdit.Name = "psShaderEdit";
            this.psShaderEdit.Size = new System.Drawing.Size(16, 16);
            this.psShaderEdit.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
            this.psShaderEdit.TabIndex = 29;
            this.psShaderEdit.TabStop = false;
            this.toolTip.SetToolTip(this.psShaderEdit, "HLSL edit and replace this shader");
            this.psShaderEdit.Click += new System.EventHandler(this.shaderedit_Click);
            // 
            // label39
            // 
            label39.Anchor = System.Windows.Forms.AnchorStyles.Left;
            label39.AutoSize = true;
            label39.Cursor = System.Windows.Forms.Cursors.Hand;
            label39.Location = new System.Drawing.Point(380, 4);
            label39.Margin = new System.Windows.Forms.Padding(0, 0, 6, 0);
            label39.Name = "label39";
            label39.Size = new System.Drawing.Size(25, 13);
            label39.TabIndex = 31;
            label39.Text = "Edit";
            this.toolTip.SetToolTip(label39, "HLSL edit and replace this shader");
            label39.Click += new System.EventHandler(this.shaderedit_Click);
            // 
            // psShaderSave
            // 
            this.psShaderSave.Cursor = System.Windows.Forms.Cursors.Hand;
            this.psShaderSave.Image = global::renderdocui.Properties.Resources.save;
            this.psShaderSave.Location = new System.Drawing.Point(414, 3);
            this.psShaderSave.Margin = new System.Windows.Forms.Padding(3, 3, 0, 3);
            this.psShaderSave.Name = "psShaderSave";
            this.psShaderSave.Size = new System.Drawing.Size(16, 16);
            this.psShaderSave.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
            this.psShaderSave.TabIndex = 34;
            this.psShaderSave.TabStop = false;
            this.toolTip.SetToolTip(this.psShaderSave, "Save the bytecode blob to disk");
            this.psShaderSave.Click += new System.EventHandler(this.shaderSave_Click);
            // 
            // label40
            // 
            label40.Anchor = System.Windows.Forms.AnchorStyles.Left;
            label40.AutoSize = true;
            label40.Cursor = System.Windows.Forms.Cursors.Hand;
            label40.Location = new System.Drawing.Point(430, 4);
            label40.Margin = new System.Windows.Forms.Padding(0, 0, 6, 0);
            label40.Name = "label40";
            label40.Size = new System.Drawing.Size(32, 13);
            label40.TabIndex = 32;
            label40.Text = "Save";
            this.toolTip.SetToolTip(label40, "Save the bytecode blob to disk");
            label40.Click += new System.EventHandler(this.shaderSave_Click);
            // 
            // pixelClassGroupBox
            // 
            this.pixelTableLayout.SetColumnSpan(this.pixelClassGroupBox, 2);
            this.pixelClassGroupBox.Controls.Add(this.psClasses);
            this.pixelClassGroupBox.Dock = System.Windows.Forms.DockStyle.Fill;
            this.pixelClassGroupBox.Location = new System.Drawing.Point(3, 467);
            this.pixelClassGroupBox.Name = "pixelClassGroupBox";
            this.pixelClassGroupBox.Size = new System.Drawing.Size(1003, 135);
            this.pixelClassGroupBox.TabIndex = 16;
            this.pixelClassGroupBox.TabStop = false;
            this.pixelClassGroupBox.Text = "Class Instances";
            // 
            // psClasses
            // 
            treeListColumn319.AutoSizeMinSize = 0;
            treeListColumn319.Width = 50;
            treeListColumn320.AutoSizeMinSize = 0;
            treeListColumn320.Width = 200;
            treeListColumn321.AutoSize = true;
            treeListColumn321.AutoSizeMinSize = 50;
            treeListColumn321.Width = 60;
            this.psClasses.Columns.AddRange(new TreelistView.TreeListColumn[] {
            treeListColumn319,
            treeListColumn320,
            treeListColumn321});
            this.psClasses.Cursor = System.Windows.Forms.Cursors.Arrow;
            this.psClasses.Dock = System.Windows.Forms.DockStyle.Fill;
            this.psClasses.Location = new System.Drawing.Point(3, 16);
            this.psClasses.Name = "psClasses";
            this.psClasses.RowOptions.ItemHeight = 20;
            this.psClasses.RowOptions.ShowHeader = false;
            this.psClasses.Size = new System.Drawing.Size(997, 116);
            this.psClasses.TabIndex = 4;
            this.psClasses.Text = "Class Instances";
            this.psClasses.TreeColumn = -1;
            this.psClasses.ViewOptions.ShowLine = false;
            this.psClasses.ViewOptions.ShowPlusMinus = false;
            this.psClasses.KeyDown += new System.Windows.Forms.KeyEventHandler(this.defaultCopyPaste_KeyDown);
            this.psClasses.Leave += new System.EventHandler(this.disableSelection_Leave);
            this.psClasses.MouseClick += new System.Windows.Forms.MouseEventHandler(this.hideDisabledEmpty_MouseClick);
            // 
            // groupBox28
            // 
            this.pixelTableLayout.SetColumnSpan(this.groupBox28, 2);
            this.groupBox28.Controls.Add(this.psResources);
            this.groupBox28.Dock = System.Windows.Forms.DockStyle.Fill;
            this.groupBox28.Location = new System.Drawing.Point(3, 53);
            this.groupBox28.Name = "groupBox28";
            this.groupBox28.Size = new System.Drawing.Size(1003, 132);
            this.groupBox28.TabIndex = 14;
            this.groupBox28.TabStop = false;
            this.groupBox28.Text = "Resources";
            // 
            // psResources
            // 
            treeListColumn322.AutoSizeMinSize = 0;
            treeListColumn322.Width = 120;
            treeListColumn323.AutoSize = true;
            treeListColumn323.AutoSizeMinSize = 150;
            treeListColumn323.Width = 50;
            treeListColumn324.AutoSizeMinSize = 0;
            treeListColumn324.Width = 85;
            treeListColumn325.AutoSizeMinSize = 0;
            treeListColumn325.Width = 50;
            treeListColumn326.AutoSizeMinSize = 0;
            treeListColumn326.Width = 50;
            treeListColumn327.AutoSizeMinSize = 0;
            treeListColumn327.Width = 50;
            treeListColumn328.AutoSizeMinSize = 0;
            treeListColumn328.Width = 85;
            treeListColumn329.AutoSizeMinSize = 0;
            treeListColumn329.Width = 200;
            treeListColumn330.AutoSizeMinSize = 0;
            treeListColumn330.Width = 25;
            this.psResources.Columns.AddRange(new TreelistView.TreeListColumn[] {
            treeListColumn322,
            treeListColumn323,
            treeListColumn324,
            treeListColumn325,
            treeListColumn326,
            treeListColumn327,
            treeListColumn328,
            treeListColumn329,
            treeListColumn330});
            this.psResources.Cursor = System.Windows.Forms.Cursors.Arrow;
            this.psResources.Dock = System.Windows.Forms.DockStyle.Fill;
            this.psResources.GridLineColour = System.Drawing.SystemColors.ControlDark;
            this.psResources.Location = new System.Drawing.Point(3, 16);
            this.psResources.MultiSelect = false;
            this.psResources.Name = "psResources";
            this.psResources.RowOptions.HoverHighlight = true;
            this.psResources.RowOptions.ItemHeight = 20;
            this.psResources.RowOptions.ShowHeader = false;
            this.psResources.Size = new System.Drawing.Size(997, 113);
            this.psResources.TabIndex = 1;
            this.psResources.Text = "Outputs";
            this.psResources.TreeColumn = 8;
            this.psResources.ViewOptions.Indent = 0;
            this.psResources.ViewOptions.ShowLine = false;
            this.psResources.ViewOptions.ShowPlusMinus = false;
            this.psResources.NodeDoubleClicked += new TreelistView.TreeListView.NodeDoubleClickedHandler(this.textureCell_CellDoubleClick);
            this.psResources.NodeClicked += new TreelistView.TreeListView.NodeClickedHandler(this.textureCell_CellDoubleClick);
            this.psResources.KeyDown += new System.Windows.Forms.KeyEventHandler(this.defaultCopyPaste_KeyDown);
            this.psResources.Leave += new System.EventHandler(this.disableSelection_Leave);
            this.psResources.MouseClick += new System.Windows.Forms.MouseEventHandler(this.hideDisabledEmpty_MouseClick);
            this.psResources.MouseLeave += new System.EventHandler(this.textureCell_MouseLeave);
            this.psResources.MouseMove += new System.Windows.Forms.MouseEventHandler(this.textureCell_MouseMove);
            // 
            // groupBox29
            // 
            this.pixelTableLayout.SetColumnSpan(this.groupBox29, 2);
            this.groupBox29.Controls.Add(this.psSamplers);
            this.groupBox29.Dock = System.Windows.Forms.DockStyle.Fill;
            this.groupBox29.Location = new System.Drawing.Point(3, 191);
            this.groupBox29.Name = "groupBox29";
            this.groupBox29.Size = new System.Drawing.Size(1003, 132);
            this.groupBox29.TabIndex = 13;
            this.groupBox29.TabStop = false;
            this.groupBox29.Text = "Samplers";
            // 
            // psSamplers
            // 
            treeListColumn331.AutoSizeMinSize = 0;
            treeListColumn331.Width = 120;
            treeListColumn332.AutoSizeMinSize = 100;
            treeListColumn332.Width = 200;
            treeListColumn333.AutoSizeMinSize = 0;
            treeListColumn333.Width = 250;
            treeListColumn334.AutoSizeMinSize = 0;
            treeListColumn334.Width = 90;
            treeListColumn335.AutoSize = true;
            treeListColumn335.AutoSizeMinSize = 50;
            treeListColumn335.Width = 50;
            this.psSamplers.Columns.AddRange(new TreelistView.TreeListColumn[] {
            treeListColumn331,
            treeListColumn332,
            treeListColumn333,
            treeListColumn334,
            treeListColumn335});
            this.psSamplers.Cursor = System.Windows.Forms.Cursors.Arrow;
            this.psSamplers.Dock = System.Windows.Forms.DockStyle.Fill;
            this.psSamplers.GridLineColour = System.Drawing.SystemColors.ControlDark;
            this.psSamplers.Location = new System.Drawing.Point(3, 16);
            this.psSamplers.MultiSelect = false;
            this.psSamplers.Name = "psSamplers";
            this.psSamplers.RowOptions.HoverHighlight = true;
            this.psSamplers.RowOptions.ItemHeight = 20;
            this.psSamplers.RowOptions.ShowHeader = false;
            this.psSamplers.Size = new System.Drawing.Size(997, 113);
            this.psSamplers.TabIndex = 12;
            this.psSamplers.Text = "Samplers";
            this.psSamplers.TreeColumn = -1;
            this.psSamplers.ViewOptions.Indent = 0;
            this.psSamplers.ViewOptions.ShowLine = false;
            this.psSamplers.ViewOptions.ShowPlusMinus = false;
            this.psSamplers.KeyDown += new System.Windows.Forms.KeyEventHandler(this.defaultCopyPaste_KeyDown);
            this.psSamplers.Leave += new System.EventHandler(this.disableSelection_Leave);
            this.psSamplers.MouseClick += new System.Windows.Forms.MouseEventHandler(this.hideDisabledEmpty_MouseClick);
            // 
            // pixelCBufGroupBox
            // 
            this.pixelTableLayout.SetColumnSpan(this.pixelCBufGroupBox, 2);
            this.pixelCBufGroupBox.Controls.Add(this.psCBuffers);
            this.pixelCBufGroupBox.Dock = System.Windows.Forms.DockStyle.Fill;
            this.pixelCBufGroupBox.Location = new System.Drawing.Point(3, 329);
            this.pixelCBufGroupBox.Name = "pixelCBufGroupBox";
            this.pixelCBufGroupBox.Size = new System.Drawing.Size(1003, 132);
            this.pixelCBufGroupBox.TabIndex = 12;
            this.pixelCBufGroupBox.TabStop = false;
            this.pixelCBufGroupBox.Text = "Constant Buffers";
            // 
            // psCBuffers
            // 
            treeListColumn336.AutoSizeMinSize = 0;
            treeListColumn336.Width = 120;
            treeListColumn337.AutoSize = true;
            treeListColumn337.AutoSizeMinSize = 100;
            treeListColumn337.Width = 50;
            treeListColumn338.AutoSizeMinSize = 0;
            treeListColumn338.Width = 85;
            treeListColumn339.AutoSizeMinSize = 0;
            treeListColumn339.Width = 250;
            treeListColumn340.AutoSizeMinSize = 0;
            treeListColumn340.Width = 25;
            this.psCBuffers.Columns.AddRange(new TreelistView.TreeListColumn[] {
            treeListColumn336,
            treeListColumn337,
            treeListColumn338,
            treeListColumn339,
            treeListColumn340});
            this.psCBuffers.Cursor = System.Windows.Forms.Cursors.Arrow;
            this.psCBuffers.Dock = System.Windows.Forms.DockStyle.Fill;
            this.psCBuffers.GridLineColour = System.Drawing.SystemColors.ControlDark;
            this.psCBuffers.Location = new System.Drawing.Point(3, 16);
            this.psCBuffers.MultiSelect = false;
            this.psCBuffers.Name = "psCBuffers";
            this.psCBuffers.RowOptions.HoverHighlight = true;
            this.psCBuffers.RowOptions.ItemHeight = 20;
            this.psCBuffers.RowOptions.ShowHeader = false;
            this.psCBuffers.Size = new System.Drawing.Size(997, 113);
            this.psCBuffers.TabIndex = 11;
            this.psCBuffers.Text = "Constant Buffers";
            this.psCBuffers.TreeColumn = 4;
            this.psCBuffers.ViewOptions.Indent = 0;
            this.psCBuffers.ViewOptions.ShowLine = false;
            this.psCBuffers.ViewOptions.ShowPlusMinus = false;
            this.psCBuffers.NodeDoubleClicked += new TreelistView.TreeListView.NodeDoubleClickedHandler(this.cbuffers_NodeDoubleClicked);
            this.psCBuffers.NodeClicked += new TreelistView.TreeListView.NodeClickedHandler(this.cbuffers_NodeDoubleClicked);
            this.psCBuffers.KeyDown += new System.Windows.Forms.KeyEventHandler(this.defaultCopyPaste_KeyDown);
            this.psCBuffers.Leave += new System.EventHandler(this.disableSelection_Leave);
            this.psCBuffers.MouseClick += new System.Windows.Forms.MouseEventHandler(this.hideDisabledEmpty_MouseClick);
            // 
            // tabOM
            // 
            this.tabOM.Controls.Add(this.panel9);
            this.tabOM.Location = new System.Drawing.Point(4, 22);
            this.tabOM.Name = "tabOM";
            this.tabOM.Size = new System.Drawing.Size(1009, 605);
            this.tabOM.TabIndex = 7;
            this.tabOM.Text = "Output Merger";
            this.tabOM.UseVisualStyleBackColor = true;
            // 
            // panel9
            // 
            this.panel9.AutoScroll = true;
            this.panel9.AutoScrollMinSize = new System.Drawing.Size(930, 320);
            this.panel9.Controls.Add(this.tableLayoutPanel9);
            this.panel9.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panel9.Location = new System.Drawing.Point(0, 0);
            this.panel9.Name = "panel9";
            this.panel9.Size = new System.Drawing.Size(1009, 605);
            this.panel9.TabIndex = 1;
            // 
            // tableLayoutPanel9
            // 
            this.tableLayoutPanel9.AutoScroll = true;
            this.tableLayoutPanel9.ColumnCount = 1;
            this.tableLayoutPanel9.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
            this.tableLayoutPanel9.Controls.Add(this.groupBox33, 0, 0);
            this.tableLayoutPanel9.Controls.Add(this.groupBox37, 0, 1);
            this.tableLayoutPanel9.Controls.Add(this.tableLayoutPanel10, 0, 2);
            this.tableLayoutPanel9.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tableLayoutPanel9.Location = new System.Drawing.Point(0, 0);
            this.tableLayoutPanel9.Name = "tableLayoutPanel9";
            this.tableLayoutPanel9.RowCount = 3;
            this.tableLayoutPanel9.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 60F));
            this.tableLayoutPanel9.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 40F));
            this.tableLayoutPanel9.RowStyles.Add(new System.Windows.Forms.RowStyle());
            this.tableLayoutPanel9.Size = new System.Drawing.Size(1009, 605);
            this.tableLayoutPanel9.TabIndex = 0;
            // 
            // groupBox33
            // 
            this.groupBox33.Controls.Add(this.targetOutputs);
            this.groupBox33.Dock = System.Windows.Forms.DockStyle.Fill;
            this.groupBox33.Location = new System.Drawing.Point(3, 3);
            this.groupBox33.Name = "groupBox33";
            this.groupBox33.Size = new System.Drawing.Size(1003, 270);
            this.groupBox33.TabIndex = 15;
            this.groupBox33.TabStop = false;
            this.groupBox33.Text = "Render Targets && UAVs";
            // 
            // targetOutputs
            // 
            treeListColumn341.AutoSizeMinSize = 0;
            treeListColumn341.Width = 50;
            treeListColumn342.AutoSize = true;
            treeListColumn342.AutoSizeMinSize = 150;
            treeListColumn342.Width = 50;
            treeListColumn343.AutoSizeMinSize = 0;
            treeListColumn343.Width = 75;
            treeListColumn344.AutoSizeMinSize = 0;
            treeListColumn344.Width = 50;
            treeListColumn345.AutoSizeMinSize = 0;
            treeListColumn345.Width = 50;
            treeListColumn346.AutoSizeMinSize = 0;
            treeListColumn346.Width = 50;
            treeListColumn347.AutoSizeMinSize = 0;
            treeListColumn347.Width = 85;
            treeListColumn348.AutoSizeMinSize = 0;
            treeListColumn348.Width = 200;
            treeListColumn349.AutoSizeMinSize = 0;
            treeListColumn349.Width = 25;
            this.targetOutputs.Columns.AddRange(new TreelistView.TreeListColumn[] {
            treeListColumn341,
            treeListColumn342,
            treeListColumn343,
            treeListColumn344,
            treeListColumn345,
            treeListColumn346,
            treeListColumn347,
            treeListColumn348,
            treeListColumn349});
            this.targetOutputs.Cursor = System.Windows.Forms.Cursors.Arrow;
            this.targetOutputs.Dock = System.Windows.Forms.DockStyle.Fill;
            this.targetOutputs.GridLineColour = System.Drawing.SystemColors.ControlDark;
            this.targetOutputs.Location = new System.Drawing.Point(3, 16);
            this.targetOutputs.MultiSelect = false;
            this.targetOutputs.Name = "targetOutputs";
            this.targetOutputs.RowOptions.HoverHighlight = true;
            this.targetOutputs.RowOptions.ItemHeight = 20;
            this.targetOutputs.RowOptions.ShowHeader = false;
            this.targetOutputs.Size = new System.Drawing.Size(997, 251);
            this.targetOutputs.TabIndex = 0;
            this.targetOutputs.Text = "Outputs";
            this.targetOutputs.TreeColumn = 8;
            this.targetOutputs.ViewOptions.Indent = 0;
            this.targetOutputs.ViewOptions.ShowLine = false;
            this.targetOutputs.ViewOptions.ShowPlusMinus = false;
            this.targetOutputs.NodeDoubleClicked += new TreelistView.TreeListView.NodeDoubleClickedHandler(this.textureCell_CellDoubleClick);
            this.targetOutputs.NodeClicked += new TreelistView.TreeListView.NodeClickedHandler(this.textureCell_CellDoubleClick);
            this.targetOutputs.KeyDown += new System.Windows.Forms.KeyEventHandler(this.defaultCopyPaste_KeyDown);
            this.targetOutputs.Leave += new System.EventHandler(this.disableSelection_Leave);
            this.targetOutputs.MouseClick += new System.Windows.Forms.MouseEventHandler(this.hideDisabledEmpty_MouseClick);
            this.targetOutputs.MouseLeave += new System.EventHandler(this.textureCell_MouseLeave);
            this.targetOutputs.MouseMove += new System.Windows.Forms.MouseEventHandler(this.textureCell_MouseMove);
            // 
            // groupBox37
            // 
            this.groupBox37.Controls.Add(this.blendOperations);
            this.groupBox37.Dock = System.Windows.Forms.DockStyle.Fill;
            this.groupBox37.Location = new System.Drawing.Point(3, 279);
            this.groupBox37.Name = "groupBox37";
            this.groupBox37.Size = new System.Drawing.Size(1003, 178);
            this.groupBox37.TabIndex = 16;
            this.groupBox37.TabStop = false;
            this.groupBox37.Text = "Target Blends";
            // 
            // blendOperations
            // 
            treeListColumn350.AutoSizeMinSize = 0;
            treeListColumn350.Width = 50;
            treeListColumn351.AutoSizeMinSize = 0;
            treeListColumn351.Width = 60;
            treeListColumn352.AutoSizeMinSize = 0;
            treeListColumn352.Width = 50;
            treeListColumn353.AutoSizeMinSize = 0;
            treeListColumn353.Width = 100;
            treeListColumn354.AutoSizeMinSize = 0;
            treeListColumn354.Width = 100;
            treeListColumn355.AutoSizeMinSize = 0;
            treeListColumn355.Width = 135;
            treeListColumn356.AutoSizeMinSize = 0;
            treeListColumn356.Width = 100;
            treeListColumn357.AutoSizeMinSize = 0;
            treeListColumn357.Width = 100;
            treeListColumn358.AutoSizeMinSize = 0;
            treeListColumn358.Width = 100;
            treeListColumn359.AutoSizeMinSize = 0;
            treeListColumn359.Width = 80;
            treeListColumn360.AutoSize = true;
            treeListColumn360.AutoSizeMinSize = 60;
            treeListColumn360.Width = 60;
            this.blendOperations.Columns.AddRange(new TreelistView.TreeListColumn[] {
            treeListColumn350,
            treeListColumn351,
            treeListColumn352,
            treeListColumn353,
            treeListColumn354,
            treeListColumn355,
            treeListColumn356,
            treeListColumn357,
            treeListColumn358,
            treeListColumn359,
            treeListColumn360});
            this.blendOperations.Cursor = System.Windows.Forms.Cursors.Arrow;
            this.blendOperations.Dock = System.Windows.Forms.DockStyle.Fill;
            this.blendOperations.GridLineColour = System.Drawing.SystemColors.ControlDark;
            this.blendOperations.Location = new System.Drawing.Point(3, 16);
            this.blendOperations.MultiSelect = false;
            this.blendOperations.Name = "blendOperations";
            this.blendOperations.RowOptions.HoverHighlight = true;
            this.blendOperations.RowOptions.ItemHeight = 20;
            this.blendOperations.RowOptions.ShowHeader = false;
            this.blendOperations.Size = new System.Drawing.Size(997, 159);
            this.blendOperations.TabIndex = 32;
            this.blendOperations.Text = "Outputs";
            this.blendOperations.TreeColumn = 7;
            this.blendOperations.ViewOptions.Indent = 0;
            this.blendOperations.ViewOptions.ShowLine = false;
            this.blendOperations.ViewOptions.ShowPlusMinus = false;
            // 
            // tableLayoutPanel10
            // 
            this.tableLayoutPanel10.ColumnCount = 3;
            this.tableLayoutPanel10.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
            this.tableLayoutPanel10.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
            this.tableLayoutPanel10.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
            this.tableLayoutPanel10.Controls.Add(this.groupBox40, 0, 0);
            this.tableLayoutPanel10.Controls.Add(this.groupBox41, 1, 0);
            this.tableLayoutPanel10.Controls.Add(this.groupBox43, 2, 0);
            this.tableLayoutPanel10.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tableLayoutPanel10.Location = new System.Drawing.Point(3, 463);
            this.tableLayoutPanel10.MinimumSize = new System.Drawing.Size(0, 130);
            this.tableLayoutPanel10.Name = "tableLayoutPanel10";
            this.tableLayoutPanel10.RowCount = 1;
            this.tableLayoutPanel10.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
            this.tableLayoutPanel10.Size = new System.Drawing.Size(1003, 139);
            this.tableLayoutPanel10.TabIndex = 17;
            // 
            // groupBox40
            // 
            this.groupBox40.AutoSize = true;
            this.groupBox40.Controls.Add(this.tableLayoutPanel11);
            this.groupBox40.Dock = System.Windows.Forms.DockStyle.Fill;
            this.groupBox40.Location = new System.Drawing.Point(3, 3);
            this.groupBox40.MinimumSize = new System.Drawing.Size(270, 0);
            this.groupBox40.Name = "groupBox40";
            this.groupBox40.Size = new System.Drawing.Size(339, 133);
            this.groupBox40.TabIndex = 0;
            this.groupBox40.TabStop = false;
            this.groupBox40.Text = "Blend State";
            // 
            // tableLayoutPanel11
            // 
            this.tableLayoutPanel11.AutoSize = true;
            this.tableLayoutPanel11.CellBorderStyle = System.Windows.Forms.TableLayoutPanelCellBorderStyle.Single;
            this.tableLayoutPanel11.ColumnCount = 4;
            this.tableLayoutPanel11.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 50F));
            this.tableLayoutPanel11.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
            this.tableLayoutPanel11.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 75F));
            this.tableLayoutPanel11.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
            this.tableLayoutPanel11.Controls.Add(this.sampleMask, 1, 1);
            this.tableLayoutPanel11.Controls.Add(this.independentBlend, 3, 0);
            this.tableLayoutPanel11.Controls.Add(this.label3, 0, 0);
            this.tableLayoutPanel11.Controls.Add(this.label6, 0, 1);
            this.tableLayoutPanel11.Controls.Add(this.label7, 2, 1);
            this.tableLayoutPanel11.Controls.Add(this.alphaToCoverage, 3, 1);
            this.tableLayoutPanel11.Controls.Add(this.blendFactor, 1, 0);
            this.tableLayoutPanel11.Controls.Add(this.label4, 2, 0);
            this.tableLayoutPanel11.Location = new System.Drawing.Point(3, 16);
            this.tableLayoutPanel11.Name = "tableLayoutPanel11";
            this.tableLayoutPanel11.RowCount = 2;
            this.tableLayoutPanel11.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
            this.tableLayoutPanel11.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
            this.tableLayoutPanel11.Size = new System.Drawing.Size(330, 106);
            this.tableLayoutPanel11.TabIndex = 0;
            // 
            // sampleMask
            // 
            this.sampleMask.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
            this.sampleMask.AutoSize = true;
            this.sampleMask.BackColor = System.Drawing.Color.Transparent;
            this.sampleMask.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.sampleMask.Location = new System.Drawing.Point(55, 69);
            this.sampleMask.Name = "sampleMask";
            this.sampleMask.Size = new System.Drawing.Size(167, 19);
            this.sampleMask.TabIndex = 23;
            this.sampleMask.Text = "FFFFFFFF";
            this.sampleMask.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            // 
            // independentBlend
            // 
            this.independentBlend.Anchor = System.Windows.Forms.AnchorStyles.Left;
            this.independentBlend.Image = ((System.Drawing.Image)(resources.GetObject("independentBlend.Image")));
            this.independentBlend.Location = new System.Drawing.Point(305, 18);
            this.independentBlend.Name = "independentBlend";
            this.independentBlend.Size = new System.Drawing.Size(16, 16);
            this.independentBlend.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
            this.independentBlend.TabIndex = 22;
            this.independentBlend.TabStop = false;
            // 
            // label3
            // 
            this.label3.Anchor = System.Windows.Forms.AnchorStyles.Right;
            this.label3.AutoSize = true;
            this.label3.Location = new System.Drawing.Point(8, 13);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(40, 26);
            this.label3.TabIndex = 0;
            this.label3.Text = "Blend Factor:";
            this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // label6
            // 
            this.label6.Anchor = System.Windows.Forms.AnchorStyles.Right;
            this.label6.AutoSize = true;
            this.label6.Location = new System.Drawing.Point(6, 66);
            this.label6.Name = "label6";
            this.label6.Size = new System.Drawing.Size(42, 26);
            this.label6.TabIndex = 2;
            this.label6.Text = "Sample Mask:";
            this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // label7
            // 
            this.label7.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
            this.label7.AutoSize = true;
            this.label7.Location = new System.Drawing.Point(229, 66);
            this.label7.Name = "label7";
            this.label7.Size = new System.Drawing.Size(69, 26);
            this.label7.TabIndex = 3;
            this.label7.Text = "Alpha to Coverage:";
            this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // alphaToCoverage
            // 
            this.alphaToCoverage.Anchor = System.Windows.Forms.AnchorStyles.Left;
            this.alphaToCoverage.Image = ((System.Drawing.Image)(resources.GetObject("alphaToCoverage.Image")));
            this.alphaToCoverage.Location = new System.Drawing.Point(305, 71);
            this.alphaToCoverage.Name = "alphaToCoverage";
            this.alphaToCoverage.Size = new System.Drawing.Size(16, 16);
            this.alphaToCoverage.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
            this.alphaToCoverage.TabIndex = 21;
            this.alphaToCoverage.TabStop = false;
            // 
            // blendFactor
            // 
            this.blendFactor.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
            this.blendFactor.AutoSize = true;
            this.blendFactor.BackColor = System.Drawing.Color.Transparent;
            this.blendFactor.Font = new System.Drawing.Font("Tahoma", 12F);
            this.blendFactor.Location = new System.Drawing.Point(55, 17);
            this.blendFactor.Name = "blendFactor";
            this.blendFactor.Size = new System.Drawing.Size(167, 19);
            this.blendFactor.TabIndex = 24;
            this.blendFactor.Text = "0.00, 0.00, 0.00, 0.00";
            this.blendFactor.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            // 
            // label4
            // 
            this.label4.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
            this.label4.AutoSize = true;
            this.label4.Location = new System.Drawing.Point(229, 13);
            this.label4.Name = "label4";
            this.label4.Size = new System.Drawing.Size(69, 26);
            this.label4.TabIndex = 1;
            this.label4.Text = "Independent Blend:";
            this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // groupBox41
            // 
            this.groupBox41.AutoSize = true;
            this.groupBox41.Controls.Add(this.tableLayoutPanel12);
            this.groupBox41.Dock = System.Windows.Forms.DockStyle.Fill;
            this.groupBox41.Location = new System.Drawing.Point(348, 3);
            this.groupBox41.MinimumSize = new System.Drawing.Size(165, 0);
            this.groupBox41.Name = "groupBox41";
            this.groupBox41.Size = new System.Drawing.Size(217, 133);
            this.groupBox41.TabIndex = 1;
            this.groupBox41.TabStop = false;
            this.groupBox41.Text = "Depth State";
            // 
            // tableLayoutPanel12
            // 
            this.tableLayoutPanel12.AutoSize = true;
            this.tableLayoutPanel12.CellBorderStyle = System.Windows.Forms.TableLayoutPanelCellBorderStyle.Single;
            this.tableLayoutPanel12.ColumnCount = 2;
            this.tableLayoutPanel12.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 60F));
            this.tableLayoutPanel12.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
            this.tableLayoutPanel12.Controls.Add(this.depthEnable, 1, 0);
            this.tableLayoutPanel12.Controls.Add(this.label21, 0, 0);
            this.tableLayoutPanel12.Controls.Add(this.depthWrite, 1, 1);
            this.tableLayoutPanel12.Controls.Add(this.label11, 0, 1);
            this.tableLayoutPanel12.Controls.Add(this.label13, 0, 2);
            this.tableLayoutPanel12.Controls.Add(this.depthFunc, 1, 2);
            this.tableLayoutPanel12.Location = new System.Drawing.Point(3, 16);
            this.tableLayoutPanel12.Name = "tableLayoutPanel12";
            this.tableLayoutPanel12.RowCount = 3;
            this.tableLayoutPanel12.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 33.33333F));
            this.tableLayoutPanel12.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 33.33333F));
            this.tableLayoutPanel12.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 33.33333F));
            this.tableLayoutPanel12.Size = new System.Drawing.Size(208, 102);
            this.tableLayoutPanel12.TabIndex = 1;
            // 
            // depthEnable
            // 
            this.depthEnable.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
            this.depthEnable.Image = ((System.Drawing.Image)(resources.GetObject("depthEnable.Image")));
            this.depthEnable.Location = new System.Drawing.Point(65, 9);
            this.depthEnable.Name = "depthEnable";
            this.depthEnable.Size = new System.Drawing.Size(139, 16);
            this.depthEnable.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
            this.depthEnable.TabIndex = 22;
            this.depthEnable.TabStop = false;
            // 
            // label21
            // 
            this.label21.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
            this.label21.AutoSize = true;
            this.label21.Location = new System.Drawing.Point(4, 10);
            this.label21.Name = "label21";
            this.label21.Size = new System.Drawing.Size(54, 13);
            this.label21.TabIndex = 1;
            this.label21.Text = "Enabled:";
            this.label21.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // depthWrite
            // 
            this.depthWrite.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
            this.depthWrite.Image = ((System.Drawing.Image)(resources.GetObject("depthWrite.Image")));
            this.depthWrite.Location = new System.Drawing.Point(65, 42);
            this.depthWrite.Name = "depthWrite";
            this.depthWrite.Size = new System.Drawing.Size(139, 16);
            this.depthWrite.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
            this.depthWrite.TabIndex = 25;
            this.depthWrite.TabStop = false;
            // 
            // label11
            // 
            this.label11.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
            this.label11.AutoSize = true;
            this.label11.Location = new System.Drawing.Point(4, 43);
            this.label11.Name = "label11";
            this.label11.Size = new System.Drawing.Size(54, 13);
            this.label11.TabIndex = 24;
            this.label11.Text = "Write:";
            this.label11.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // label13
            // 
            this.label13.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
            this.label13.AutoSize = true;
            this.label13.Location = new System.Drawing.Point(4, 77);
            this.label13.Name = "label13";
            this.label13.Size = new System.Drawing.Size(54, 13);
            this.label13.TabIndex = 3;
            this.label13.Text = "Func:";
            this.label13.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // depthFunc
            // 
            this.depthFunc.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
            this.depthFunc.AutoSize = true;
            this.depthFunc.BackColor = System.Drawing.Color.Transparent;
            this.depthFunc.Font = new System.Drawing.Font("Tahoma", 12F);
            this.depthFunc.Location = new System.Drawing.Point(65, 74);
            this.depthFunc.Name = "depthFunc";
            this.depthFunc.Size = new System.Drawing.Size(139, 19);
            this.depthFunc.TabIndex = 23;
            this.depthFunc.Text = "GREATER_EQUAL";
            this.depthFunc.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            // 
            // groupBox43
            // 
            this.groupBox43.Controls.Add(this.flowLayoutPanel8);
            this.groupBox43.Dock = System.Windows.Forms.DockStyle.Fill;
            this.groupBox43.Location = new System.Drawing.Point(571, 3);
            this.groupBox43.Name = "groupBox43";
            this.groupBox43.Size = new System.Drawing.Size(577, 133);
            this.groupBox43.TabIndex = 2;
            this.groupBox43.TabStop = false;
            this.groupBox43.Text = "Stencil State";
            // 
            // flowLayoutPanel8
            // 
            this.flowLayoutPanel8.Controls.Add(this.tableLayoutPanel15);
            this.flowLayoutPanel8.Controls.Add(this.stencilFuncs);
            this.flowLayoutPanel8.Dock = System.Windows.Forms.DockStyle.Fill;
            this.flowLayoutPanel8.FlowDirection = System.Windows.Forms.FlowDirection.TopDown;
            this.flowLayoutPanel8.Location = new System.Drawing.Point(3, 16);
            this.flowLayoutPanel8.Name = "flowLayoutPanel8";
            this.flowLayoutPanel8.Size = new System.Drawing.Size(571, 114);
            this.flowLayoutPanel8.TabIndex = 4;
            // 
            // tableLayoutPanel15
            // 
            this.tableLayoutPanel15.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.tableLayoutPanel15.AutoSize = true;
            this.tableLayoutPanel15.CellBorderStyle = System.Windows.Forms.TableLayoutPanelCellBorderStyle.Single;
            this.tableLayoutPanel15.ColumnCount = 8;
            this.tableLayoutPanel15.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
            this.tableLayoutPanel15.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
            this.tableLayoutPanel15.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
            this.tableLayoutPanel15.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
            this.tableLayoutPanel15.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
            this.tableLayoutPanel15.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
            this.tableLayoutPanel15.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
            this.tableLayoutPanel15.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
            this.tableLayoutPanel15.Controls.Add(this.stencilRef, 7, 0);
            this.tableLayoutPanel15.Controls.Add(this.stencilReadMask, 5, 0);
            this.tableLayoutPanel15.Controls.Add(this.stencilEnable, 1, 0);
            this.tableLayoutPanel15.Controls.Add(this.label12, 0, 0);
            this.tableLayoutPanel15.Controls.Add(this.label22, 2, 0);
            this.tableLayoutPanel15.Controls.Add(this.stencilWriteMask, 3, 0);
            this.tableLayoutPanel15.Controls.Add(this.label24, 4, 0);
            this.tableLayoutPanel15.Controls.Add(this.label8, 6, 0);
            this.tableLayoutPanel15.Location = new System.Drawing.Point(3, 3);
            this.tableLayoutPanel15.Name = "tableLayoutPanel15";
            this.tableLayoutPanel15.RowCount = 1;
            this.tableLayoutPanel15.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
            this.tableLayoutPanel15.Size = new System.Drawing.Size(347, 24);
            this.tableLayoutPanel15.TabIndex = 2;
            // 
            // stencilRef
            // 
            this.stencilRef.Anchor = System.Windows.Forms.AnchorStyles.Left;
            this.stencilRef.AutoSize = true;
            this.stencilRef.BackColor = System.Drawing.Color.Transparent;
            this.stencilRef.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.stencilRef.Location = new System.Drawing.Point(318, 2);
            this.stencilRef.Name = "stencilRef";
            this.stencilRef.Size = new System.Drawing.Size(25, 19);
            this.stencilRef.TabIndex = 28;
            this.stencilRef.Text = "FF";
            this.stencilRef.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            // 
            // stencilReadMask
            // 
            this.stencilReadMask.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
            this.stencilReadMask.AutoSize = true;
            this.stencilReadMask.BackColor = System.Drawing.Color.Transparent;
            this.stencilReadMask.Font = new System.Drawing.Font("Tahoma", 12F);
            this.stencilReadMask.Location = new System.Drawing.Point(252, 2);
            this.stencilReadMask.Name = "stencilReadMask";
            this.stencilReadMask.Size = new System.Drawing.Size(25, 19);
            this.stencilReadMask.TabIndex = 26;
            this.stencilReadMask.Text = "FF";
            this.stencilReadMask.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            // 
            // stencilEnable
            // 
            this.stencilEnable.Anchor = System.Windows.Forms.AnchorStyles.Left;
            this.stencilEnable.Image = ((System.Drawing.Image)(resources.GetObject("stencilEnable.Image")));
            this.stencilEnable.Location = new System.Drawing.Point(54, 4);
            this.stencilEnable.Name = "stencilEnable";
            this.stencilEnable.Size = new System.Drawing.Size(16, 16);
            this.stencilEnable.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
            this.stencilEnable.TabIndex = 22;
            this.stencilEnable.TabStop = false;
            // 
            // label12
            // 
            this.label12.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
            this.label12.AutoSize = true;
            this.label12.Location = new System.Drawing.Point(4, 5);
            this.label12.Name = "label12";
            this.label12.Size = new System.Drawing.Size(43, 13);
            this.label12.TabIndex = 1;
            this.label12.Text = "Enable:";
            this.label12.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // label22
            // 
            this.label22.Anchor = System.Windows.Forms.AnchorStyles.Right;
            this.label22.AutoSize = true;
            this.label22.Location = new System.Drawing.Point(77, 5);
            this.label22.Name = "label22";
            this.label22.Size = new System.Drawing.Size(64, 13);
            this.label22.TabIndex = 24;
            this.label22.Text = "Write Mask:";
            this.label22.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // stencilWriteMask
            // 
            this.stencilWriteMask.Anchor = System.Windows.Forms.AnchorStyles.Left;
            this.stencilWriteMask.AutoSize = true;
            this.stencilWriteMask.BackColor = System.Drawing.Color.Transparent;
            this.stencilWriteMask.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.stencilWriteMask.Location = new System.Drawing.Point(148, 2);
            this.stencilWriteMask.Name = "stencilWriteMask";
            this.stencilWriteMask.Size = new System.Drawing.Size(25, 19);
            this.stencilWriteMask.TabIndex = 23;
            this.stencilWriteMask.Text = "FF";
            this.stencilWriteMask.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            // 
            // label24
            // 
            this.label24.Anchor = System.Windows.Forms.AnchorStyles.Right;
            this.label24.AutoSize = true;
            this.label24.Location = new System.Drawing.Point(180, 5);
            this.label24.Name = "label24";
            this.label24.Size = new System.Drawing.Size(65, 13);
            this.label24.TabIndex = 25;
            this.label24.Text = "Read Mask:";
            this.label24.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // label8
            // 
            this.label8.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
            this.label8.AutoSize = true;
            this.label8.Location = new System.Drawing.Point(284, 5);
            this.label8.Name = "label8";
            this.label8.Size = new System.Drawing.Size(27, 13);
            this.label8.TabIndex = 27;
            this.label8.Text = "Ref:";
            this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // stencilFuncs
            // 
            treeListColumn361.AutoSizeMinSize = 0;
            treeListColumn361.Width = 50;
            treeListColumn362.AutoSizeMinSize = 0;
            treeListColumn362.Width = 60;
            treeListColumn363.AutoSizeMinSize = 0;
            treeListColumn363.Width = 75;
            treeListColumn364.AutoSizeMinSize = 0;
            treeListColumn364.Width = 75;
            treeListColumn365.AutoSize = true;
            treeListColumn365.AutoSizeMinSize = 50;
            treeListColumn365.Width = 75;
            this.stencilFuncs.Columns.AddRange(new TreelistView.TreeListColumn[] {
            treeListColumn361,
            treeListColumn362,
            treeListColumn363,
            treeListColumn364,
            treeListColumn365});
            this.stencilFuncs.Cursor = System.Windows.Forms.Cursors.Arrow;
            this.stencilFuncs.Location = new System.Drawing.Point(3, 33);
            this.stencilFuncs.Name = "stencilFuncs";
            this.stencilFuncs.RowOptions.ItemHeight = 20;
            this.stencilFuncs.RowOptions.ShowHeader = false;
            this.stencilFuncs.Size = new System.Drawing.Size(347, 78);
            this.stencilFuncs.TabIndex = 3;
            this.stencilFuncs.Text = "treeListView1";
            this.stencilFuncs.TreeColumn = -1;
            this.stencilFuncs.ViewOptions.ShowLine = false;
            this.stencilFuncs.ViewOptions.ShowPlusMinus = false;
            // 
            // tabCS
            // 
            this.tabCS.Controls.Add(this.panel7);
            this.tabCS.Location = new System.Drawing.Point(4, 22);
            this.tabCS.Name = "tabCS";
            this.tabCS.Size = new System.Drawing.Size(1009, 605);
            this.tabCS.TabIndex = 8;
            this.tabCS.Text = "Compute Shader";
            this.tabCS.UseVisualStyleBackColor = true;
            // 
            // panel7
            // 
            this.panel7.AutoScroll = true;
            this.panel7.AutoScrollMinSize = new System.Drawing.Size(0, 500);
            this.panel7.Controls.Add(this.tableLayoutPanel7);
            this.panel7.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panel7.Location = new System.Drawing.Point(0, 0);
            this.panel7.Name = "panel7";
            this.panel7.Size = new System.Drawing.Size(1009, 605);
            this.panel7.TabIndex = 4;
            // 
            // tableLayoutPanel7
            // 
            this.tableLayoutPanel7.ColumnCount = 1;
            this.tableLayoutPanel7.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
            this.tableLayoutPanel7.Controls.Add(this.groupBox38, 0, 2);
            this.tableLayoutPanel7.Controls.Add(this.groupBox27, 0, 5);
            this.tableLayoutPanel7.Controls.Add(this.groupBox6, 0, 0);
            this.tableLayoutPanel7.Controls.Add(this.groupBox34, 0, 1);
            this.tableLayoutPanel7.Controls.Add(this.groupBox35, 0, 3);
            this.tableLayoutPanel7.Controls.Add(this.groupBox36, 0, 4);
            this.tableLayoutPanel7.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tableLayoutPanel7.Location = new System.Drawing.Point(0, 0);
            this.tableLayoutPanel7.Name = "tableLayoutPanel7";
            this.tableLayoutPanel7.RowCount = 5;
            this.tableLayoutPanel7.RowStyles.Add(new System.Windows.Forms.RowStyle());
            this.tableLayoutPanel7.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 20F));
            this.tableLayoutPanel7.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 20F));
            this.tableLayoutPanel7.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 20F));
            this.tableLayoutPanel7.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 20F));
            this.tableLayoutPanel7.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 20F));
            this.tableLayoutPanel7.Size = new System.Drawing.Size(1009, 605);
            this.tableLayoutPanel7.TabIndex = 1;
            // 
            // groupBox38
            // 
            this.groupBox38.Controls.Add(this.csUAVs);
            this.groupBox38.Dock = System.Windows.Forms.DockStyle.Fill;
            this.groupBox38.Location = new System.Drawing.Point(3, 182);
            this.groupBox38.Name = "groupBox38";
            this.groupBox38.Size = new System.Drawing.Size(1003, 100);
            this.groupBox38.TabIndex = 19;
            this.groupBox38.TabStop = false;
            this.groupBox38.Text = "UAVs";
            // 
            // csUAVs
            // 
            treeListColumn366.AutoSizeMinSize = 0;
            treeListColumn366.Width = 120;
            treeListColumn367.AutoSize = true;
            treeListColumn367.AutoSizeMinSize = 150;
            treeListColumn367.Width = 50;
            treeListColumn368.AutoSizeMinSize = 0;
            treeListColumn368.Width = 75;
            treeListColumn369.AutoSizeMinSize = 0;
            treeListColumn369.Width = 50;
            treeListColumn370.AutoSizeMinSize = 0;
            treeListColumn370.Width = 50;
            treeListColumn371.AutoSizeMinSize = 0;
            treeListColumn371.Width = 50;
            treeListColumn372.AutoSizeMinSize = 0;
            treeListColumn372.Width = 85;
            treeListColumn373.AutoSizeMinSize = 0;
            treeListColumn373.Width = 200;
            treeListColumn374.AutoSizeMinSize = 0;
            treeListColumn374.Width = 25;
            this.csUAVs.Columns.AddRange(new TreelistView.TreeListColumn[] {
            treeListColumn366,
            treeListColumn367,
            treeListColumn368,
            treeListColumn369,
            treeListColumn370,
            treeListColumn371,
            treeListColumn372,
            treeListColumn373,
            treeListColumn374});
            this.csUAVs.Cursor = System.Windows.Forms.Cursors.Arrow;
            this.csUAVs.Dock = System.Windows.Forms.DockStyle.Fill;
            this.csUAVs.GridLineColour = System.Drawing.SystemColors.ControlDark;
            this.csUAVs.Location = new System.Drawing.Point(3, 16);
            this.csUAVs.MultiSelect = false;
            this.csUAVs.Name = "csUAVs";
            this.csUAVs.RowOptions.HoverHighlight = true;
            this.csUAVs.RowOptions.ItemHeight = 20;
            this.csUAVs.RowOptions.ShowHeader = false;
            this.csUAVs.Size = new System.Drawing.Size(997, 81);
            this.csUAVs.TabIndex = 1;
            this.csUAVs.Text = "Outputs";
            this.csUAVs.TreeColumn = 8;
            this.csUAVs.ViewOptions.Indent = 0;
            this.csUAVs.ViewOptions.ShowLine = false;
            this.csUAVs.ViewOptions.ShowPlusMinus = false;
            this.csUAVs.NodeDoubleClicked += new TreelistView.TreeListView.NodeDoubleClickedHandler(this.textureCell_CellDoubleClick);
            this.csUAVs.NodeClicked += new TreelistView.TreeListView.NodeClickedHandler(this.textureCell_CellDoubleClick);
            this.csUAVs.KeyDown += new System.Windows.Forms.KeyEventHandler(this.defaultCopyPaste_KeyDown);
            this.csUAVs.Leave += new System.EventHandler(this.disableSelection_Leave);
            this.csUAVs.MouseClick += new System.Windows.Forms.MouseEventHandler(this.hideDisabledEmpty_MouseClick);
            this.csUAVs.MouseLeave += new System.EventHandler(this.textureCell_MouseLeave);
            this.csUAVs.MouseMove += new System.Windows.Forms.MouseEventHandler(this.textureCell_MouseMove);
            // 
            // groupBox27
            // 
            this.tableLayoutPanel7.SetColumnSpan(this.groupBox27, 2);
            this.groupBox27.Controls.Add(this.csClasses);
            this.groupBox27.Dock = System.Windows.Forms.DockStyle.Fill;
            this.groupBox27.Location = new System.Drawing.Point(3, 500);
            this.groupBox27.Name = "groupBox27";
            this.groupBox27.Size = new System.Drawing.Size(1003, 102);
            this.groupBox27.TabIndex = 18;
            this.groupBox27.TabStop = false;
            this.groupBox27.Text = "Class Instances";
            // 
            // csClasses
            // 
            treeListColumn375.AutoSizeMinSize = 0;
            treeListColumn375.Width = 50;
            treeListColumn376.AutoSizeMinSize = 0;
            treeListColumn376.Width = 200;
            treeListColumn377.AutoSize = true;
            treeListColumn377.AutoSizeMinSize = 50;
            treeListColumn377.Width = 60;
            this.csClasses.Columns.AddRange(new TreelistView.TreeListColumn[] {
            treeListColumn375,
            treeListColumn376,
            treeListColumn377});
            this.csClasses.Cursor = System.Windows.Forms.Cursors.Arrow;
            this.csClasses.Dock = System.Windows.Forms.DockStyle.Fill;
            this.csClasses.Location = new System.Drawing.Point(3, 16);
            this.csClasses.Name = "csClasses";
            this.csClasses.RowOptions.ItemHeight = 20;
            this.csClasses.RowOptions.ShowHeader = false;
            this.csClasses.Size = new System.Drawing.Size(997, 83);
            this.csClasses.TabIndex = 4;
            this.csClasses.Text = "Class Instances";
            this.csClasses.TreeColumn = -1;
            this.csClasses.ViewOptions.ShowLine = false;
            this.csClasses.ViewOptions.ShowPlusMinus = false;
            this.csClasses.KeyDown += new System.Windows.Forms.KeyEventHandler(this.defaultCopyPaste_KeyDown);
            this.csClasses.Leave += new System.EventHandler(this.disableSelection_Leave);
            this.csClasses.MouseClick += new System.Windows.Forms.MouseEventHandler(this.hideDisabledEmpty_MouseClick);
            // 
            // groupBox6
            // 
            this.groupBox6.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.groupBox6.AutoSize = true;
            this.groupBox6.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            this.groupBox6.Controls.Add(this.flowLayoutPanel7);
            this.groupBox6.Location = new System.Drawing.Point(3, 3);
            this.groupBox6.Name = "groupBox6";
            this.groupBox6.Padding = new System.Windows.Forms.Padding(3, 3, 3, 0);
            this.groupBox6.Size = new System.Drawing.Size(1003, 67);
            this.groupBox6.TabIndex = 17;
            this.groupBox6.TabStop = false;
            this.groupBox6.Text = "Shader";
            // 
            // flowLayoutPanel7
            // 
            this.flowLayoutPanel7.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.flowLayoutPanel7.AutoSize = true;
            this.flowLayoutPanel7.Controls.Add(this.csShader);
            this.flowLayoutPanel7.Controls.Add(this.csShaderCog);
            this.flowLayoutPanel7.Controls.Add(label41);
            this.flowLayoutPanel7.Controls.Add(this.csShaderEdit);
            this.flowLayoutPanel7.Controls.Add(label42);
            this.flowLayoutPanel7.Controls.Add(this.csShaderSave);
            this.flowLayoutPanel7.Controls.Add(label43);
            this.flowLayoutPanel7.Controls.Add(this.computeDebugControls);
            this.flowLayoutPanel7.Location = new System.Drawing.Point(3, 16);
            this.flowLayoutPanel7.Margin = new System.Windows.Forms.Padding(3, 3, 3, 0);
            this.flowLayoutPanel7.Name = "flowLayoutPanel7";
            this.flowLayoutPanel7.Size = new System.Drawing.Size(997, 38);
            this.flowLayoutPanel7.TabIndex = 25;
            // 
            // csShader
            // 
            this.csShader.Anchor = System.Windows.Forms.AnchorStyles.Left;
            this.csShader.AutoSize = true;
            this.csShader.BackColor = System.Drawing.SystemColors.Info;
            this.csShader.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.csShader.Cursor = System.Windows.Forms.Cursors.Hand;
            this.csShader.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
            this.csShader.ForeColor = System.Drawing.SystemColors.InfoText;
            this.csShader.Location = new System.Drawing.Point(3, 11);
            this.csShader.MinimumSize = new System.Drawing.Size(300, 2);
            this.csShader.Name = "csShader";
            this.csShader.Size = new System.Drawing.Size(300, 15);
            this.csShader.TabIndex = 24;
            this.csShader.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            this.csShader.Click += new System.EventHandler(this.shader_Click);
            this.csShader.MouseEnter += new System.EventHandler(this.shaderCog_MouseEnter);
            this.csShader.MouseLeave += new System.EventHandler(this.shaderCog_MouseLeave);
            // 
            // csShaderCog
            // 
            this.csShaderCog.Anchor = System.Windows.Forms.AnchorStyles.Left;
            this.csShaderCog.Cursor = System.Windows.Forms.Cursors.Hand;
            this.csShaderCog.Image = global::renderdocui.Properties.Resources.action;
            this.csShaderCog.Location = new System.Drawing.Point(309, 11);
            this.csShaderCog.Margin = new System.Windows.Forms.Padding(3, 3, 0, 3);
            this.csShaderCog.Name = "csShaderCog";
            this.csShaderCog.Size = new System.Drawing.Size(16, 16);
            this.csShaderCog.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
            this.csShaderCog.TabIndex = 25;
            this.csShaderCog.TabStop = false;
            this.csShaderCog.Click += new System.EventHandler(this.shader_Click);
            this.csShaderCog.MouseEnter += new System.EventHandler(this.shaderCog_MouseEnter);
            this.csShaderCog.MouseLeave += new System.EventHandler(this.shaderCog_MouseLeave);
            // 
            // label41
            // 
            label41.Anchor = System.Windows.Forms.AnchorStyles.Left;
            label41.AutoSize = true;
            label41.Cursor = System.Windows.Forms.Cursors.Hand;
            label41.Location = new System.Drawing.Point(325, 12);
            label41.Margin = new System.Windows.Forms.Padding(0, 0, 6, 0);
            label41.Name = "label41";
            label41.Size = new System.Drawing.Size(30, 13);
            label41.TabIndex = 39;
            label41.Text = "View";
            label41.Click += new System.EventHandler(this.shader_Click);
            label41.MouseEnter += new System.EventHandler(this.shaderCog_MouseEnter);
            label41.MouseLeave += new System.EventHandler(this.shaderCog_MouseLeave);
            // 
            // csShaderEdit
            // 
            this.csShaderEdit.Anchor = System.Windows.Forms.AnchorStyles.Left;
            this.csShaderEdit.Cursor = System.Windows.Forms.Cursors.Hand;
            this.csShaderEdit.Image = global::renderdocui.Properties.Resources.page_white_edit;
            this.csShaderEdit.Location = new System.Drawing.Point(364, 11);
            this.csShaderEdit.Margin = new System.Windows.Forms.Padding(3, 3, 0, 3);
            this.csShaderEdit.Name = "csShaderEdit";
            this.csShaderEdit.Size = new System.Drawing.Size(16, 16);
            this.csShaderEdit.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
            this.csShaderEdit.TabIndex = 36;
            this.csShaderEdit.TabStop = false;
            this.toolTip.SetToolTip(this.csShaderEdit, "HLSL edit and replace this shader");
            this.csShaderEdit.Click += new System.EventHandler(this.shaderedit_Click);
            // 
            // label42
            // 
            label42.Anchor = System.Windows.Forms.AnchorStyles.Left;
            label42.AutoSize = true;
            label42.Cursor = System.Windows.Forms.Cursors.Hand;
            label42.Location = new System.Drawing.Point(380, 12);
            label42.Margin = new System.Windows.Forms.Padding(0, 0, 6, 0);
            label42.Name = "label42";
            label42.Size = new System.Drawing.Size(25, 13);
            label42.TabIndex = 37;
            label42.Text = "Edit";
            this.toolTip.SetToolTip(label42, "HLSL edit and replace this shader");
            label42.Click += new System.EventHandler(this.shaderedit_Click);
            // 
            // csShaderSave
            // 
            this.csShaderSave.Anchor = System.Windows.Forms.AnchorStyles.Left;
            this.csShaderSave.Cursor = System.Windows.Forms.Cursors.Hand;
            this.csShaderSave.Image = global::renderdocui.Properties.Resources.save;
            this.csShaderSave.Location = new System.Drawing.Point(414, 11);
            this.csShaderSave.Margin = new System.Windows.Forms.Padding(3, 3, 0, 3);
            this.csShaderSave.Name = "csShaderSave";
            this.csShaderSave.Size = new System.Drawing.Size(16, 16);
            this.csShaderSave.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
            this.csShaderSave.TabIndex = 40;
            this.csShaderSave.TabStop = false;
            this.toolTip.SetToolTip(this.csShaderSave, "Save the bytecode blob to disk");
            this.csShaderSave.Click += new System.EventHandler(this.shaderSave_Click);
            // 
            // label43
            // 
            label43.Anchor = System.Windows.Forms.AnchorStyles.Left;
            label43.AutoSize = true;
            label43.Cursor = System.Windows.Forms.Cursors.Hand;
            label43.Location = new System.Drawing.Point(430, 12);
            label43.Margin = new System.Windows.Forms.Padding(0, 0, 6, 0);
            label43.Name = "label43";
            label43.Size = new System.Drawing.Size(32, 13);
            label43.TabIndex = 38;
            label43.Text = "Save";
            this.toolTip.SetToolTip(label43, "Save the bytecode blob to disk");
            label43.Click += new System.EventHandler(this.shaderSave_Click);
            // 
            // computeDebugControls
            // 
            this.computeDebugControls.Controls.Add(this.label9);
            this.computeDebugControls.Controls.Add(this.groupX);
            this.computeDebugControls.Controls.Add(this.groupY);
            this.computeDebugControls.Controls.Add(this.groupZ);
            this.computeDebugControls.Controls.Add(this.label10);
            this.computeDebugControls.Controls.Add(this.threadX);
            this.computeDebugControls.Controls.Add(this.threadY);
            this.computeDebugControls.Controls.Add(this.threadZ);
            this.computeDebugControls.Controls.Add(this.csDebug);
            this.computeDebugControls.Location = new System.Drawing.Point(471, 3);
            this.computeDebugControls.Name = "computeDebugControls";
            this.computeDebugControls.Size = new System.Drawing.Size(498, 32);
            this.computeDebugControls.TabIndex = 35;
            // 
            // label9
            // 
            this.label9.Anchor = System.Windows.Forms.AnchorStyles.Left;
            this.label9.Location = new System.Drawing.Point(3, 4);
            this.label9.Name = "label9";
            this.label9.Size = new System.Drawing.Size(78, 23);
            this.label9.TabIndex = 30;
            this.label9.Text = "Debug Group:";
            this.label9.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // groupX
            // 
            this.groupX.Anchor = System.Windows.Forms.AnchorStyles.Left;
            this.groupX.Location = new System.Drawing.Point(87, 5);
            this.groupX.Name = "groupX";
            this.groupX.Size = new System.Drawing.Size(46, 20);
            this.groupX.TabIndex = 26;
            this.groupX.Text = "0";
            // 
            // groupY
            // 
            this.groupY.Anchor = System.Windows.Forms.AnchorStyles.Left;
            this.groupY.Location = new System.Drawing.Point(139, 5);
            this.groupY.Name = "groupY";
            this.groupY.Size = new System.Drawing.Size(49, 20);
            this.groupY.TabIndex = 27;
            this.groupY.Text = "0";
            // 
            // groupZ
            // 
            this.groupZ.Anchor = System.Windows.Forms.AnchorStyles.Left;
            this.groupZ.Location = new System.Drawing.Point(194, 5);
            this.groupZ.Name = "groupZ";
            this.groupZ.Size = new System.Drawing.Size(52, 20);
            this.groupZ.TabIndex = 28;
            this.groupZ.Text = "0";
            // 
            // label10
            // 
            this.label10.Anchor = System.Windows.Forms.AnchorStyles.Left;
            this.label10.Location = new System.Drawing.Point(252, 4);
            this.label10.Name = "label10";
            this.label10.Size = new System.Drawing.Size(47, 23);
            this.label10.TabIndex = 34;
            this.label10.Text = "Thread:";
            this.label10.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // threadX
            // 
            this.threadX.Anchor = System.Windows.Forms.AnchorStyles.Left;
            this.threadX.Location = new System.Drawing.Point(305, 5);
            this.threadX.Name = "threadX";
            this.threadX.Size = new System.Drawing.Size(46, 20);
            this.threadX.TabIndex = 31;
            this.threadX.Text = "0";
            // 
            // threadY
            // 
            this.threadY.Anchor = System.Windows.Forms.AnchorStyles.Left;
            this.threadY.Location = new System.Drawing.Point(357, 5);
            this.threadY.Name = "threadY";
            this.threadY.Size = new System.Drawing.Size(49, 20);
            this.threadY.TabIndex = 32;
            this.threadY.Text = "0";
            // 
            // threadZ
            // 
            this.threadZ.Anchor = System.Windows.Forms.AnchorStyles.Left;
            this.threadZ.Location = new System.Drawing.Point(412, 5);
            this.threadZ.Name = "threadZ";
            this.threadZ.Size = new System.Drawing.Size(52, 20);
            this.threadZ.TabIndex = 33;
            this.threadZ.Text = "0";
            // 
            // csDebug
            // 
            this.csDebug.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.csDebug.Image = global::renderdocui.Properties.Resources.wrench;
            this.csDebug.Location = new System.Drawing.Point(470, 3);
            this.csDebug.Name = "csDebug";
            this.csDebug.Size = new System.Drawing.Size(25, 25);
            this.csDebug.TabIndex = 29;
            this.toolTip.SetToolTip(this.csDebug, "Debug Compute Shader");
            this.csDebug.UseVisualStyleBackColor = true;
            this.csDebug.Click += new System.EventHandler(this.csDebug_Click);
            // 
            // groupBox34
            // 
            this.groupBox34.Controls.Add(this.csResources);
            this.groupBox34.Dock = System.Windows.Forms.DockStyle.Fill;
            this.groupBox34.Location = new System.Drawing.Point(3, 76);
            this.groupBox34.Name = "groupBox34";
            this.groupBox34.Size = new System.Drawing.Size(1003, 100);
            this.groupBox34.TabIndex = 14;
            this.groupBox34.TabStop = false;
            this.groupBox34.Text = "Resources";
            // 
            // csResources
            // 
            treeListColumn378.AutoSizeMinSize = 0;
            treeListColumn378.Width = 120;
            treeListColumn379.AutoSize = true;
            treeListColumn379.AutoSizeMinSize = 150;
            treeListColumn379.Width = 50;
            treeListColumn380.AutoSizeMinSize = 0;
            treeListColumn380.Width = 85;
            treeListColumn381.AutoSizeMinSize = 0;
            treeListColumn381.Width = 50;
            treeListColumn382.AutoSizeMinSize = 0;
            treeListColumn382.Width = 50;
            treeListColumn383.AutoSizeMinSize = 0;
            treeListColumn383.Width = 50;
            treeListColumn384.AutoSizeMinSize = 0;
            treeListColumn384.Width = 85;
            treeListColumn385.AutoSizeMinSize = 0;
            treeListColumn385.Width = 200;
            treeListColumn386.AutoSizeMinSize = 0;
            treeListColumn386.Width = 25;
            this.csResources.Columns.AddRange(new TreelistView.TreeListColumn[] {
            treeListColumn378,
            treeListColumn379,
            treeListColumn380,
            treeListColumn381,
            treeListColumn382,
            treeListColumn383,
            treeListColumn384,
            treeListColumn385,
            treeListColumn386});
            this.csResources.Cursor = System.Windows.Forms.Cursors.Arrow;
            this.csResources.Dock = System.Windows.Forms.DockStyle.Fill;
            this.csResources.GridLineColour = System.Drawing.SystemColors.ControlDark;
            this.csResources.Location = new System.Drawing.Point(3, 16);
            this.csResources.MultiSelect = false;
            this.csResources.Name = "csResources";
            this.csResources.RowOptions.HoverHighlight = true;
            this.csResources.RowOptions.ItemHeight = 20;
            this.csResources.RowOptions.ShowHeader = false;
            this.csResources.Size = new System.Drawing.Size(997, 81);
            this.csResources.TabIndex = 1;
            this.csResources.Text = "Outputs";
            this.csResources.TreeColumn = 8;
            this.csResources.ViewOptions.Indent = 0;
            this.csResources.ViewOptions.ShowLine = false;
            this.csResources.ViewOptions.ShowPlusMinus = false;
            this.csResources.NodeDoubleClicked += new TreelistView.TreeListView.NodeDoubleClickedHandler(this.textureCell_CellDoubleClick);
            this.csResources.NodeClicked += new TreelistView.TreeListView.NodeClickedHandler(this.textureCell_CellDoubleClick);
            this.csResources.KeyDown += new System.Windows.Forms.KeyEventHandler(this.defaultCopyPaste_KeyDown);
            this.csResources.Leave += new System.EventHandler(this.disableSelection_Leave);
            this.csResources.MouseClick += new System.Windows.Forms.MouseEventHandler(this.hideDisabledEmpty_MouseClick);
            this.csResources.MouseLeave += new System.EventHandler(this.textureCell_MouseLeave);
            this.csResources.MouseMove += new System.Windows.Forms.MouseEventHandler(this.textureCell_MouseMove);
            // 
            // groupBox35
            // 
            this.groupBox35.Controls.Add(this.csSamplers);
            this.groupBox35.Dock = System.Windows.Forms.DockStyle.Fill;
            this.groupBox35.Location = new System.Drawing.Point(3, 288);
            this.groupBox35.Name = "groupBox35";
            this.groupBox35.Size = new System.Drawing.Size(1003, 100);
            this.groupBox35.TabIndex = 13;
            this.groupBox35.TabStop = false;
            this.groupBox35.Text = "Samplers";
            // 
            // csSamplers
            // 
            treeListColumn387.AutoSizeMinSize = 0;
            treeListColumn387.Width = 120;
            treeListColumn388.AutoSizeMinSize = 100;
            treeListColumn388.Width = 200;
            treeListColumn389.AutoSizeMinSize = 0;
            treeListColumn389.Width = 250;
            treeListColumn390.AutoSizeMinSize = 0;
            treeListColumn390.Width = 90;
            treeListColumn391.AutoSize = true;
            treeListColumn391.AutoSizeMinSize = 50;
            treeListColumn391.Width = 50;
            this.csSamplers.Columns.AddRange(new TreelistView.TreeListColumn[] {
            treeListColumn387,
            treeListColumn388,
            treeListColumn389,
            treeListColumn390,
            treeListColumn391});
            this.csSamplers.Cursor = System.Windows.Forms.Cursors.Arrow;
            this.csSamplers.Dock = System.Windows.Forms.DockStyle.Fill;
            this.csSamplers.GridLineColour = System.Drawing.SystemColors.ControlDark;
            this.csSamplers.Location = new System.Drawing.Point(3, 16);
            this.csSamplers.MultiSelect = false;
            this.csSamplers.Name = "csSamplers";
            this.csSamplers.RowOptions.HoverHighlight = true;
            this.csSamplers.RowOptions.ItemHeight = 20;
            this.csSamplers.RowOptions.ShowHeader = false;
            this.csSamplers.Size = new System.Drawing.Size(997, 81);
            this.csSamplers.TabIndex = 12;
            this.csSamplers.Text = "Samplers";
            this.csSamplers.TreeColumn = -1;
            this.csSamplers.ViewOptions.Indent = 0;
            this.csSamplers.ViewOptions.ShowLine = false;
            this.csSamplers.ViewOptions.ShowPlusMinus = false;
            this.csSamplers.KeyDown += new System.Windows.Forms.KeyEventHandler(this.defaultCopyPaste_KeyDown);
            this.csSamplers.Leave += new System.EventHandler(this.disableSelection_Leave);
            this.csSamplers.MouseClick += new System.Windows.Forms.MouseEventHandler(this.hideDisabledEmpty_MouseClick);
            // 
            // groupBox36
            // 
            this.groupBox36.Controls.Add(this.csCBuffers);
            this.groupBox36.Dock = System.Windows.Forms.DockStyle.Fill;
            this.groupBox36.Location = new System.Drawing.Point(3, 394);
            this.groupBox36.Name = "groupBox36";
            this.groupBox36.Size = new System.Drawing.Size(1003, 100);
            this.groupBox36.TabIndex = 12;
            this.groupBox36.TabStop = false;
            this.groupBox36.Text = "Constant Buffers";
            // 
            // csCBuffers
            // 
            treeListColumn392.AutoSizeMinSize = 0;
            treeListColumn392.Width = 120;
            treeListColumn393.AutoSize = true;
            treeListColumn393.AutoSizeMinSize = 100;
            treeListColumn393.Width = 50;
            treeListColumn394.AutoSizeMinSize = 0;
            treeListColumn394.Width = 85;
            treeListColumn395.AutoSizeMinSize = 0;
            treeListColumn395.Width = 250;
            treeListColumn396.AutoSizeMinSize = 0;
            treeListColumn396.Width = 25;
            this.csCBuffers.Columns.AddRange(new TreelistView.TreeListColumn[] {
            treeListColumn392,
            treeListColumn393,
            treeListColumn394,
            treeListColumn395,
            treeListColumn396});
            this.csCBuffers.Cursor = System.Windows.Forms.Cursors.Arrow;
            this.csCBuffers.Dock = System.Windows.Forms.DockStyle.Fill;
            this.csCBuffers.GridLineColour = System.Drawing.SystemColors.ControlDark;
            this.csCBuffers.Location = new System.Drawing.Point(3, 16);
            this.csCBuffers.MultiSelect = false;
            this.csCBuffers.Name = "csCBuffers";
            this.csCBuffers.RowOptions.HoverHighlight = true;
            this.csCBuffers.RowOptions.ItemHeight = 20;
            this.csCBuffers.RowOptions.ShowHeader = false;
            this.csCBuffers.Size = new System.Drawing.Size(997, 81);
            this.csCBuffers.TabIndex = 11;
            this.csCBuffers.Text = "Constant Buffers";
            this.csCBuffers.TreeColumn = 4;
            this.csCBuffers.ViewOptions.Indent = 0;
            this.csCBuffers.ViewOptions.ShowLine = false;
            this.csCBuffers.ViewOptions.ShowPlusMinus = false;
            this.csCBuffers.NodeDoubleClicked += new TreelistView.TreeListView.NodeDoubleClickedHandler(this.cbuffers_NodeDoubleClicked);
            this.csCBuffers.NodeClicked += new TreelistView.TreeListView.NodeClickedHandler(this.cbuffers_NodeDoubleClicked);
            this.csCBuffers.KeyDown += new System.Windows.Forms.KeyEventHandler(this.defaultCopyPaste_KeyDown);
            this.csCBuffers.Leave += new System.EventHandler(this.disableSelection_Leave);
            this.csCBuffers.MouseClick += new System.Windows.Forms.MouseEventHandler(this.hideDisabledEmpty_MouseClick);
            // 
            // rightclickMenu
            // 
            this.rightclickMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.showDisabled,
            this.showEmpty});
            this.rightclickMenu.Name = "rightclickMenu";
            this.rightclickMenu.Size = new System.Drawing.Size(144, 48);
            // 
            // showDisabled
            // 
            this.showDisabled.Image = global::renderdocui.Properties.Resources.page_white_delete;
            this.showDisabled.Name = "showDisabled";
            this.showDisabled.Size = new System.Drawing.Size(143, 22);
            this.showDisabled.Text = "Show Disabled";
            this.showDisabled.Click += new System.EventHandler(this.hideDisabled_Click);
            // 
            // showEmpty
            // 
            this.showEmpty.Image = global::renderdocui.Properties.Resources.page_white_database;
            this.showEmpty.Name = "showEmpty";
            this.showEmpty.Size = new System.Drawing.Size(143, 22);
            this.showEmpty.Text = "Show Empty";
            this.showEmpty.Click += new System.EventHandler(this.hideEmpty_Click);
            // 
            // toolTip
            // 
            this.toolTip.UseAnimation = false;
            this.toolTip.UseFading = false;
            // 
            // pipeExportDialog
            // 
            this.pipeExportDialog.DefaultExt = "html";
            this.pipeExportDialog.Filter = "HTML Files (*.html)|*.html";
            this.pipeExportDialog.Title = "Export pipeline state as HTML";
            // 
            // shaderSaveDialog
            // 
            this.shaderSaveDialog.DefaultExt = "dxbc";
            this.shaderSaveDialog.Filter = "DXBC Shader Files (*.dxbc)|*.dxbc|Shader Binary Files (*.bin)|*.bin|All Files (*." +
    "*)|*.*";
            this.shaderSaveDialog.Title = "Save shader bytecode to file";
            // 
            // D3D11PipelineStateViewer
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(toolstripTable);
            this.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Name = "D3D11PipelineStateViewer";
            this.Size = new System.Drawing.Size(1023, 738);
            toolstripTable.ResumeLayout(false);
            toolstripTable.PerformLayout();
            this.flowLayoutPanel6.ResumeLayout(false);
            this.flowLayoutPanel6.PerformLayout();
            this.toolStrip1.ResumeLayout(false);
            this.toolStrip1.PerformLayout();
            this.stageTabControl.ResumeLayout(false);
            this.tabIA.ResumeLayout(false);
            this.panel1.ResumeLayout(false);
            this.tableLayoutPanel1.ResumeLayout(false);
            this.groupBox1.ResumeLayout(false);
            this.tableLayoutPanel13.ResumeLayout(false);
            this.tableLayoutPanel13.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.topologyDiagram)).EndInit();
            this.groupBox4.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.iabuffers)).EndInit();
            groupBox2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.inputLayouts)).EndInit();
            groupBox39.ResumeLayout(false);
            flowLayoutPanel9.ResumeLayout(false);
            flowLayoutPanel9.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.iaBytecodeCog)).EndInit();
            groupBox44.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.meshView)).EndInit();
            this.tabVS.ResumeLayout(false);
            this.panel2.ResumeLayout(false);
            this.tableLayoutPanel2.ResumeLayout(false);
            this.groupBox3.ResumeLayout(false);
            this.flowLayoutPanel3.ResumeLayout(false);
            this.flowLayoutPanel3.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.vsShaderCog)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.vsShaderEdit)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.vsShaderSave)).EndInit();
            this.groupBox5.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.vsClasses)).EndInit();
            this.groupBox7.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.vsResources)).EndInit();
            this.groupBox8.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.vsSamplers)).EndInit();
            this.groupBox9.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.vsCBuffers)).EndInit();
            this.tabHS.ResumeLayout(false);
            this.panel3.ResumeLayout(false);
            this.tableLayoutPanel3.ResumeLayout(false);
            this.groupBox10.ResumeLayout(false);
            this.flowLayoutPanel4.ResumeLayout(false);
            this.flowLayoutPanel4.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.hsShaderCog)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.hsShaderEdit)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.hsShaderSave)).EndInit();
            this.groupBox11.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.hsClasses)).EndInit();
            this.groupBox12.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.hsResources)).EndInit();
            this.groupBox14.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.hsSamplers)).EndInit();
            this.groupBox15.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.hsCBuffers)).EndInit();
            this.tabDS.ResumeLayout(false);
            this.panel4.ResumeLayout(false);
            this.tableLayoutPanel4.ResumeLayout(false);
            this.groupBox16.ResumeLayout(false);
            this.flowLayoutPanel5.ResumeLayout(false);
            this.flowLayoutPanel5.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dsShaderCog)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dsShaderEdit)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dsShaderSave)).EndInit();
            this.groupBox17.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.dsClasses)).EndInit();
            this.groupBox18.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.dsResources)).EndInit();
            this.groupBox20.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.dsSamplers)).EndInit();
            this.groupBox21.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.dsCBuffers)).EndInit();
            this.tabGS.ResumeLayout(false);
            this.panel5.ResumeLayout(false);
            this.geomTableLayout.ResumeLayout(false);
            groupBox45.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.gsStreams)).EndInit();
            this.groupBox22.ResumeLayout(false);
            this.flowLayoutPanel2.ResumeLayout(false);
            this.flowLayoutPanel2.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gsShaderCog)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gsShaderEdit)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gsShaderSave)).EndInit();
            this.geomClassGroupBox.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.gsClasses)).EndInit();
            this.groupBox24.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.gsResources)).EndInit();
            this.groupBox25.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.gsSamplers)).EndInit();
            this.geomCBufGroupBox.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.gsCBuffers)).EndInit();
            this.tabRS.ResumeLayout(false);
            this.panel8.ResumeLayout(false);
            this.tableLayoutPanel14.ResumeLayout(false);
            this.groupBox31.ResumeLayout(false);
            this.tableLayoutPanel8.ResumeLayout(false);
            this.tableLayoutPanel8.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.frontCCW)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.depthClip)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.multisampleEnable)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.scissorEnable)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.lineAAEnable)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.conservativeRaster)).EndInit();
            this.groupBox32.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.viewports)).EndInit();
            groupBox42.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.scissors)).EndInit();
            this.tabPS.ResumeLayout(false);
            this.panel6.ResumeLayout(false);
            this.pixelTableLayout.ResumeLayout(false);
            this.groupBox13.ResumeLayout(false);
            this.flowLayoutPanel1.ResumeLayout(false);
            this.flowLayoutPanel1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.psShaderCog)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.psShaderEdit)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.psShaderSave)).EndInit();
            this.pixelClassGroupBox.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.psClasses)).EndInit();
            this.groupBox28.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.psResources)).EndInit();
            this.groupBox29.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.psSamplers)).EndInit();
            this.pixelCBufGroupBox.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.psCBuffers)).EndInit();
            this.tabOM.ResumeLayout(false);
            this.panel9.ResumeLayout(false);
            this.tableLayoutPanel9.ResumeLayout(false);
            this.groupBox33.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.targetOutputs)).EndInit();
            this.groupBox37.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.blendOperations)).EndInit();
            this.tableLayoutPanel10.ResumeLayout(false);
            this.tableLayoutPanel10.PerformLayout();
            this.groupBox40.ResumeLayout(false);
            this.groupBox40.PerformLayout();
            this.tableLayoutPanel11.ResumeLayout(false);
            this.tableLayoutPanel11.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.independentBlend)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.alphaToCoverage)).EndInit();
            this.groupBox41.ResumeLayout(false);
            this.groupBox41.PerformLayout();
            this.tableLayoutPanel12.ResumeLayout(false);
            this.tableLayoutPanel12.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.depthEnable)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.depthWrite)).EndInit();
            this.groupBox43.ResumeLayout(false);
            this.flowLayoutPanel8.ResumeLayout(false);
            this.flowLayoutPanel8.PerformLayout();
            this.tableLayoutPanel15.ResumeLayout(false);
            this.tableLayoutPanel15.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.stencilEnable)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.stencilFuncs)).EndInit();
            this.tabCS.ResumeLayout(false);
            this.panel7.ResumeLayout(false);
            this.tableLayoutPanel7.ResumeLayout(false);
            this.tableLayoutPanel7.PerformLayout();
            this.groupBox38.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.csUAVs)).EndInit();
            this.groupBox27.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.csClasses)).EndInit();
            this.groupBox6.ResumeLayout(false);
            this.groupBox6.PerformLayout();
            this.flowLayoutPanel7.ResumeLayout(false);
            this.flowLayoutPanel7.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.csShaderCog)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.csShaderEdit)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.csShaderSave)).EndInit();
            this.computeDebugControls.ResumeLayout(false);
            this.computeDebugControls.PerformLayout();
            this.groupBox34.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.csResources)).EndInit();
            this.groupBox35.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.csSamplers)).EndInit();
            this.groupBox36.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.csCBuffers)).EndInit();
            this.rightclickMenu.ResumeLayout(false);
            this.ResumeLayout(false);

        }
Example #59
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.FlowLayoutPanel panel1;
			System.Windows.Forms.BindingSource possibleAssignmentsBindingSource;
			System.Windows.Forms.BindingSource actionsAvailableBindingSource;
			System.Windows.Forms.Label label6;
			System.Windows.Forms.BindingSource filtersBindingSource;
			System.Windows.Forms.Label label2;
			System.Windows.Forms.Label label3;
			System.Windows.Forms.BindingSource statusFilterBindingSource;
			System.Windows.Forms.Label label1;
			System.Windows.Forms.Label label4;
			System.Windows.Forms.BindingSource assignmentFilterBindingSource;
			System.Windows.Forms.ColumnHeader hdrId;
			System.Windows.Forms.ColumnHeader hdrSummary;
			System.Windows.Forms.ColumnHeader hdrAssignedTo;
			System.Windows.Forms.ColumnHeader hdrReportedBy;
			System.Windows.Forms.ColumnHeader hdrLastMod;
			System.Windows.Forms.ColumnHeader hdrCreated;
			System.Windows.Forms.ColumnHeader hdrStatus;
			System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(IssuesList));
			this._showHideMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
			this.showTimeTrackingToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
			this.cancelButton = new System.Windows.Forms.Button();
			this.okButton = new System.Windows.Forms.Button();
			this._binding = new System.Windows.Forms.BindingSource(this.components);
			this._filterGroup = new System.Windows.Forms.GroupBox();
			this.tableLayoutPanel3 = new System.Windows.Forms.TableLayoutPanel();
			this._filters = new JiraSVN.Plugin.UI.BindingComboBox();
			this._search = new System.Windows.Forms.TextBox();
			this._status = new JiraSVN.Plugin.UI.BindingComboBox();
			this._assigned = new JiraSVN.Plugin.UI.BindingComboBox();
			this._issuesGroup = new System.Windows.Forms.GroupBox();
			this._listView = new System.Windows.Forms.ListView();
			this._contextMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
			this.viewIssueToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
			this.refreshIssueToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
			this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
			this.statusGroup = new System.Windows.Forms.GroupBox();
			this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
			this._doTakeAction = new System.Windows.Forms.CheckBox();
			this._assignTo = new JiraSVN.Plugin.UI.BindingComboBox();
			this._takeAction = new JiraSVN.Plugin.UI.BindingComboBox();
			this._doAssignTo = new System.Windows.Forms.CheckBox();
			this._commentGroup = new System.Windows.Forms.GroupBox();
			this._comment = new System.Windows.Forms.TextBox();
			this._addWorklog = new System.Windows.Forms.CheckBox();
			this._worklogAction = new JiraSVN.Plugin.UI.BindingComboBox();
			this.remainingEstimateBindingSource = new System.Windows.Forms.BindingSource(this.components);
			this._worklog = new System.Windows.Forms.TextBox();
			this.textBox1 = new System.Windows.Forms.TextBox();
			this._worklogGroup = new System.Windows.Forms.GroupBox();
			this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
			this._splitter = new System.Windows.Forms.SplitContainer();
			panel1 = new System.Windows.Forms.FlowLayoutPanel();
			possibleAssignmentsBindingSource = new System.Windows.Forms.BindingSource(this.components);
			actionsAvailableBindingSource = new System.Windows.Forms.BindingSource(this.components);
			label6 = new System.Windows.Forms.Label();
			filtersBindingSource = new System.Windows.Forms.BindingSource(this.components);
			label2 = new System.Windows.Forms.Label();
			label3 = new System.Windows.Forms.Label();
			statusFilterBindingSource = new System.Windows.Forms.BindingSource(this.components);
			label1 = new System.Windows.Forms.Label();
			label4 = new System.Windows.Forms.Label();
			assignmentFilterBindingSource = new System.Windows.Forms.BindingSource(this.components);
			hdrId = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
			hdrSummary = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
			hdrAssignedTo = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
			hdrReportedBy = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
			hdrLastMod = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
			hdrCreated = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
			hdrStatus = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
			panel1.SuspendLayout();
			this._showHideMenu.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(possibleAssignmentsBindingSource)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this._binding)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(actionsAvailableBindingSource)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(filtersBindingSource)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(statusFilterBindingSource)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(assignmentFilterBindingSource)).BeginInit();
			this._filterGroup.SuspendLayout();
			this.tableLayoutPanel3.SuspendLayout();
			this._issuesGroup.SuspendLayout();
			this._contextMenu.SuspendLayout();
			this.statusGroup.SuspendLayout();
			this.tableLayoutPanel2.SuspendLayout();
			this._commentGroup.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.remainingEstimateBindingSource)).BeginInit();
			this._worklogGroup.SuspendLayout();
			this.tableLayoutPanel1.SuspendLayout();
			this._splitter.Panel1.SuspendLayout();
			this._splitter.Panel2.SuspendLayout();
			this._splitter.SuspendLayout();
			this.SuspendLayout();
			// 
			// panel1
			// 
			panel1.AutoSize = true;
			panel1.ContextMenuStrip = this._showHideMenu;
			panel1.Controls.Add(this.cancelButton);
			panel1.Controls.Add(this.okButton);
			panel1.Dock = System.Windows.Forms.DockStyle.Bottom;
			panel1.FlowDirection = System.Windows.Forms.FlowDirection.RightToLeft;
			panel1.Location = new System.Drawing.Point(8, 455);
			panel1.Name = "panel1";
			panel1.Padding = new System.Windows.Forms.Padding(2, 2, 0, 2);
			panel1.Size = new System.Drawing.Size(636, 33);
			panel1.TabIndex = 2;
			// 
			// _showHideMenu
			// 
			this._showHideMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.showTimeTrackingToolStripMenuItem});
			this._showHideMenu.Name = "_showHideMenu";
			this._showHideMenu.Size = new System.Drawing.Size(177, 26);
			// 
			// showTimeTrackingToolStripMenuItem
			// 
			this.showTimeTrackingToolStripMenuItem.Checked = true;
			this.showTimeTrackingToolStripMenuItem.CheckOnClick = true;
			this.showTimeTrackingToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
			this.showTimeTrackingToolStripMenuItem.Name = "showTimeTrackingToolStripMenuItem";
			this.showTimeTrackingToolStripMenuItem.Size = new System.Drawing.Size(176, 22);
			this.showTimeTrackingToolStripMenuItem.Text = "Show time tracking";
			this.showTimeTrackingToolStripMenuItem.Click += new System.EventHandler(this.showTimeTrackingToolStripMenuItem_Click);
			// 
			// cancelButton
			// 
			this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
			this.cancelButton.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.cancelButton.Location = new System.Drawing.Point(559, 5);
			this.cancelButton.Margin = new System.Windows.Forms.Padding(3, 3, 0, 3);
			this.cancelButton.Name = "cancelButton";
			this.cancelButton.Size = new System.Drawing.Size(75, 23);
			this.cancelButton.TabIndex = 11;
			this.cancelButton.Text = "Cancel";
			this.cancelButton.UseVisualStyleBackColor = true;
			// 
			// okButton
			// 
			this.okButton.DialogResult = System.Windows.Forms.DialogResult.OK;
			this.okButton.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.okButton.Location = new System.Drawing.Point(478, 5);
			this.okButton.Name = "okButton";
			this.okButton.Size = new System.Drawing.Size(75, 23);
			this.okButton.TabIndex = 10;
			this.okButton.Text = "OK";
			this.okButton.UseVisualStyleBackColor = true;
			this.okButton.Click += new System.EventHandler(this.okButton_Click);
			// 
			// possibleAssignmentsBindingSource
			// 
			possibleAssignmentsBindingSource.DataMember = "PossibleAssignments";
			possibleAssignmentsBindingSource.DataSource = this._binding;
			// 
			// _binding
			// 
			this._binding.DataSource = typeof(JiraSVN.Plugin.UI.IssuesListView);
			// 
			// actionsAvailableBindingSource
			// 
			actionsAvailableBindingSource.DataMember = "ActionsAvailable";
			actionsAvailableBindingSource.DataSource = this._binding;
			// 
			// label6
			// 
			label6.Anchor = System.Windows.Forms.AnchorStyles.Left;
			label6.AutoSize = true;
			label6.DataBindings.Add(new System.Windows.Forms.Binding("Enabled", this._binding, "AddWorklog", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
			label6.Location = new System.Drawing.Point(294, 8);
			label6.Margin = new System.Windows.Forms.Padding(3, 3, 3, 0);
			label6.Name = "label6";
			label6.Size = new System.Drawing.Size(106, 13);
			label6.TabIndex = 2;
			label6.Text = "and update estimate:";
			// 
			// filtersBindingSource
			// 
			filtersBindingSource.DataMember = "Filters";
			filtersBindingSource.DataSource = this._binding;
			// 
			// label2
			// 
			label2.Anchor = System.Windows.Forms.AnchorStyles.Left;
			label2.AutoSize = true;
			label2.Location = new System.Drawing.Point(3, 7);
			label2.Name = "label2";
			label2.Size = new System.Drawing.Size(61, 13);
			label2.TabIndex = 0;
			label2.Text = "Apply Filter:";
			// 
			// label3
			// 
			label3.Anchor = System.Windows.Forms.AnchorStyles.Right;
			label3.AutoSize = true;
			label3.Location = new System.Drawing.Point(423, 35);
			label3.Margin = new System.Windows.Forms.Padding(3, 3, 3, 0);
			label3.Name = "label3";
			label3.Size = new System.Drawing.Size(51, 13);
			label3.TabIndex = 6;
			label3.Text = "Contains:";
			// 
			// statusFilterBindingSource
			// 
			statusFilterBindingSource.DataMember = "StatusFilter";
			statusFilterBindingSource.DataSource = this._binding;
			// 
			// label1
			// 
			label1.Anchor = System.Windows.Forms.AnchorStyles.Left;
			label1.AutoSize = true;
			label1.Location = new System.Drawing.Point(3, 35);
			label1.Margin = new System.Windows.Forms.Padding(3, 3, 3, 0);
			label1.Name = "label1";
			label1.Size = new System.Drawing.Size(65, 13);
			label1.TabIndex = 2;
			label1.Text = "Assigned to:";
			// 
			// label4
			// 
			label4.Anchor = System.Windows.Forms.AnchorStyles.Right;
			label4.AutoSize = true;
			label4.Location = new System.Drawing.Point(237, 35);
			label4.Margin = new System.Windows.Forms.Padding(3, 3, 3, 0);
			label4.Name = "label4";
			label4.Size = new System.Drawing.Size(40, 13);
			label4.TabIndex = 4;
			label4.Text = "Status:";
			// 
			// assignmentFilterBindingSource
			// 
			assignmentFilterBindingSource.DataMember = "AssignmentFilter";
			assignmentFilterBindingSource.DataSource = this._binding;
			// 
			// hdrId
			// 
			hdrId.Text = "Id";
			// 
			// hdrSummary
			// 
			hdrSummary.Text = "Summary";
			hdrSummary.Width = 400;
			// 
			// hdrAssignedTo
			// 
			hdrAssignedTo.Text = "Assigned To";
			hdrAssignedTo.Width = 100;
			// 
			// hdrReportedBy
			// 
			hdrReportedBy.Text = "Reported By";
			hdrReportedBy.Width = 100;
			// 
			// hdrLastMod
			// 
			hdrLastMod.Text = "Last Modified";
			hdrLastMod.Width = 100;
			// 
			// hdrCreated
			// 
			hdrCreated.Text = "Created On";
			hdrCreated.Width = 100;
			// 
			// hdrStatus
			// 
			hdrStatus.Text = "Status";
			hdrStatus.Width = 100;
			// 
			// _filterGroup
			// 
			this._filterGroup.AutoSize = true;
			this._filterGroup.Controls.Add(this.tableLayoutPanel3);
			this._filterGroup.Dock = System.Windows.Forms.DockStyle.Top;
			this._filterGroup.Location = new System.Drawing.Point(8, 8);
			this._filterGroup.Name = "_filterGroup";
			this._filterGroup.Size = new System.Drawing.Size(636, 73);
			this._filterGroup.TabIndex = 0;
			this._filterGroup.TabStop = false;
			this._filterGroup.Text = "Filter";
			// 
			// tableLayoutPanel3
			// 
			this.tableLayoutPanel3.AutoSize = true;
			this.tableLayoutPanel3.ColumnCount = 6;
			this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 76F));
			this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 33.31667F));
			this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 60F));
			this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 31.70082F));
			this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 60F));
			this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 34.98251F));
			this.tableLayoutPanel3.Controls.Add(this._filters, 1, 0);
			this.tableLayoutPanel3.Controls.Add(this._search, 5, 1);
			this.tableLayoutPanel3.Controls.Add(label2, 0, 0);
			this.tableLayoutPanel3.Controls.Add(label3, 4, 1);
			this.tableLayoutPanel3.Controls.Add(this._status, 3, 1);
			this.tableLayoutPanel3.Controls.Add(label1, 0, 1);
			this.tableLayoutPanel3.Controls.Add(label4, 2, 1);
			this.tableLayoutPanel3.Controls.Add(this._assigned, 1, 1);
			this.tableLayoutPanel3.Dock = System.Windows.Forms.DockStyle.Top;
			this.tableLayoutPanel3.Location = new System.Drawing.Point(3, 16);
			this.tableLayoutPanel3.Name = "tableLayoutPanel3";
			this.tableLayoutPanel3.RowCount = 2;
			this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
			this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
			this.tableLayoutPanel3.Size = new System.Drawing.Size(630, 54);
			this.tableLayoutPanel3.TabIndex = 8;
			// 
			// _filters
			// 
			this._filters.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
			this.tableLayoutPanel3.SetColumnSpan(this._filters, 5);
			this._filters.DataBindings.Add(new System.Windows.Forms.Binding("IndexSelected", this._binding, "SelectedFilter", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
			this._filters.DataSource = filtersBindingSource;
			this._filters.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this._filters.FormattingEnabled = true;
			this._filters.IndexSelected = -1;
			this._filters.Location = new System.Drawing.Point(79, 3);
			this._filters.Name = "_filters";
			this._filters.Size = new System.Drawing.Size(548, 21);
			this._filters.TabIndex = 1;
			// 
			// _search
			// 
			this._search.DataBindings.Add(new System.Windows.Forms.Binding("Text", this._binding, "TextFilter", true, System.Windows.Forms.DataSourceUpdateMode.Never));
			this._search.Dock = System.Windows.Forms.DockStyle.Fill;
			this._search.Location = new System.Drawing.Point(480, 30);
			this._search.Name = "_search";
			this._search.Size = new System.Drawing.Size(147, 20);
			this._search.TabIndex = 7;
			this._search.TextChanged += new System.EventHandler(this._search_TextChanged);
			// 
			// _status
			// 
			this._status.DataBindings.Add(new System.Windows.Forms.Binding("IndexSelected", this._binding, "SelectedStatusFilter", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
			this._status.DataSource = statusFilterBindingSource;
			this._status.Dock = System.Windows.Forms.DockStyle.Fill;
			this._status.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this._status.FormattingEnabled = true;
			this._status.IndexSelected = -1;
			this._status.Location = new System.Drawing.Point(283, 30);
			this._status.Name = "_status";
			this._status.Size = new System.Drawing.Size(131, 21);
			this._status.TabIndex = 5;
			// 
			// _assigned
			// 
			this._assigned.DataBindings.Add(new System.Windows.Forms.Binding("IndexSelected", this._binding, "SelectedAssignmentFilter", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
			this._assigned.DataSource = assignmentFilterBindingSource;
			this._assigned.Dock = System.Windows.Forms.DockStyle.Fill;
			this._assigned.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this._assigned.FormattingEnabled = true;
			this._assigned.IndexSelected = -1;
			this._assigned.Location = new System.Drawing.Point(79, 30);
			this._assigned.Name = "_assigned";
			this._assigned.Size = new System.Drawing.Size(138, 21);
			this._assigned.TabIndex = 3;
			// 
			// _issuesGroup
			// 
			this._issuesGroup.Controls.Add(this._listView);
			this._issuesGroup.Dock = System.Windows.Forms.DockStyle.Fill;
			this._issuesGroup.Location = new System.Drawing.Point(0, 0);
			this._issuesGroup.Name = "_issuesGroup";
			this._issuesGroup.Size = new System.Drawing.Size(636, 201);
			this._issuesGroup.TabIndex = 1;
			this._issuesGroup.TabStop = false;
			this._issuesGroup.Text = "Issues";
			// 
			// _listView
			// 
			this._listView.CheckBoxes = true;
			this._listView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            hdrId,
            hdrSummary,
            hdrStatus,
            hdrAssignedTo,
            hdrReportedBy,
            hdrLastMod,
            hdrCreated});
			this._listView.ContextMenuStrip = this._contextMenu;
			this._listView.Dock = System.Windows.Forms.DockStyle.Fill;
			this._listView.FullRowSelect = true;
			this._listView.Location = new System.Drawing.Point(3, 16);
			this._listView.Name = "_listView";
			this._listView.Size = new System.Drawing.Size(630, 182);
			this._listView.Sorting = System.Windows.Forms.SortOrder.Ascending;
			this._listView.TabIndex = 0;
			this._listView.UseCompatibleStateImageBehavior = false;
			this._listView.View = System.Windows.Forms.View.Details;
			this._listView.ItemChecked += new System.Windows.Forms.ItemCheckedEventHandler(this.listView_ItemChecked);
			this._listView.ItemMouseHover += new System.Windows.Forms.ListViewItemMouseHoverEventHandler(this._listView_ItemMouseHover);
			this._listView.MouseDown += new System.Windows.Forms.MouseEventHandler(this.listView_MouseDown);
			this._listView.MouseMove += new System.Windows.Forms.MouseEventHandler(this._listView_MouseMove);
			// 
			// _contextMenu
			// 
			this._contextMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.viewIssueToolStripMenuItem,
            this.refreshIssueToolStripMenuItem,
            this.toolStripSeparator1});
			this._contextMenu.Name = "_contextMenu";
			this._contextMenu.Size = new System.Drawing.Size(169, 54);
			this._contextMenu.Opening += new System.ComponentModel.CancelEventHandler(this.contextMenu_Opening);
			// 
			// viewIssueToolStripMenuItem
			// 
			this.viewIssueToolStripMenuItem.Name = "viewIssueToolStripMenuItem";
			this.viewIssueToolStripMenuItem.Size = new System.Drawing.Size(168, 22);
			this.viewIssueToolStripMenuItem.Text = "&View Issue...";
			this.viewIssueToolStripMenuItem.ToolTipText = "Open the issue in the default viewer.";
			this.viewIssueToolStripMenuItem.Click += new System.EventHandler(this.listView_ViewSelectedItem);
			// 
			// refreshIssueToolStripMenuItem
			// 
			this.refreshIssueToolStripMenuItem.Name = "refreshIssueToolStripMenuItem";
			this.refreshIssueToolStripMenuItem.Size = new System.Drawing.Size(168, 22);
			this.refreshIssueToolStripMenuItem.Text = "&Refresh Issues List";
			this.refreshIssueToolStripMenuItem.ToolTipText = "Requery the server and refresh the list.";
			this.refreshIssueToolStripMenuItem.Click += new System.EventHandler(this.RefreshContents);
			// 
			// toolStripSeparator1
			// 
			this.toolStripSeparator1.Name = "toolStripSeparator1";
			this.toolStripSeparator1.Size = new System.Drawing.Size(165, 6);
			// 
			// statusGroup
			// 
			this.statusGroup.AutoSize = true;
			this.statusGroup.Controls.Add(this.tableLayoutPanel2);
			this.statusGroup.Dock = System.Windows.Forms.DockStyle.Bottom;
			this.statusGroup.Location = new System.Drawing.Point(0, 123);
			this.statusGroup.Name = "statusGroup";
			this.statusGroup.Size = new System.Drawing.Size(636, 46);
			this.statusGroup.TabIndex = 10;
			this.statusGroup.TabStop = false;
			this.statusGroup.Text = "Status";
			// 
			// tableLayoutPanel2
			// 
			this.tableLayoutPanel2.AutoSize = true;
			this.tableLayoutPanel2.ColumnCount = 4;
			this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 76F));
			this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50.15783F));
			this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 124F));
			this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 49.84217F));
			this.tableLayoutPanel2.Controls.Add(this._doTakeAction, 0, 0);
			this.tableLayoutPanel2.Controls.Add(this._assignTo, 3, 0);
			this.tableLayoutPanel2.Controls.Add(this._takeAction, 1, 0);
			this.tableLayoutPanel2.Controls.Add(this._doAssignTo, 2, 0);
			this.tableLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Top;
			this.tableLayoutPanel2.Location = new System.Drawing.Point(3, 16);
			this.tableLayoutPanel2.Name = "tableLayoutPanel2";
			this.tableLayoutPanel2.RowCount = 1;
			this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
			this.tableLayoutPanel2.Size = new System.Drawing.Size(630, 27);
			this.tableLayoutPanel2.TabIndex = 10;
			// 
			// _doTakeAction
			// 
			this._doTakeAction.AutoSize = true;
			this._doTakeAction.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this._binding, "PerformAction", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
			this._doTakeAction.DataBindings.Add(new System.Windows.Forms.Binding("Enabled", this._binding, "CanPerformActions", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
			this._doTakeAction.Dock = System.Windows.Forms.DockStyle.Fill;
			this._doTakeAction.Location = new System.Drawing.Point(3, 5);
			this._doTakeAction.Margin = new System.Windows.Forms.Padding(3, 5, 3, 3);
			this._doTakeAction.Name = "_doTakeAction";
			this._doTakeAction.Size = new System.Drawing.Size(70, 19);
			this._doTakeAction.TabIndex = 6;
			this._doTakeAction.Text = "Set:";
			this._doTakeAction.UseVisualStyleBackColor = true;
			// 
			// _assignTo
			// 
			this._assignTo.DataBindings.Add(new System.Windows.Forms.Binding("IndexSelected", this._binding, "SelectedAssignee", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
			this._assignTo.DataBindings.Add(new System.Windows.Forms.Binding("Enabled", this._binding, "CanAssignTo", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
			this._assignTo.DataSource = possibleAssignmentsBindingSource;
			this._assignTo.Dock = System.Windows.Forms.DockStyle.Fill;
			this._assignTo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this._assignTo.FormattingEnabled = true;
			this._assignTo.IndexSelected = -1;
			this._assignTo.Location = new System.Drawing.Point(418, 3);
			this._assignTo.Name = "_assignTo";
			this._assignTo.Size = new System.Drawing.Size(209, 21);
			this._assignTo.TabIndex = 9;
			// 
			// _takeAction
			// 
			this._takeAction.DataBindings.Add(new System.Windows.Forms.Binding("IndexSelected", this._binding, "SelectedAction", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
			this._takeAction.DataBindings.Add(new System.Windows.Forms.Binding("Enabled", this._binding, "PerformAction", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
			this._takeAction.DataSource = actionsAvailableBindingSource;
			this._takeAction.Dock = System.Windows.Forms.DockStyle.Fill;
			this._takeAction.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this._takeAction.FormattingEnabled = true;
			this._takeAction.IndexSelected = -1;
			this._takeAction.Location = new System.Drawing.Point(79, 3);
			this._takeAction.Name = "_takeAction";
			this._takeAction.Size = new System.Drawing.Size(209, 21);
			this._takeAction.TabIndex = 7;
			// 
			// _doAssignTo
			// 
			this._doAssignTo.AutoSize = true;
			this._doAssignTo.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this._binding, "AssignTo", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
			this._doAssignTo.DataBindings.Add(new System.Windows.Forms.Binding("Enabled", this._binding, "PerformAction", true));
			this._doAssignTo.Dock = System.Windows.Forms.DockStyle.Fill;
			this._doAssignTo.Location = new System.Drawing.Point(294, 5);
			this._doAssignTo.Margin = new System.Windows.Forms.Padding(3, 5, 3, 3);
			this._doAssignTo.Name = "_doAssignTo";
			this._doAssignTo.Size = new System.Drawing.Size(118, 19);
			this._doAssignTo.TabIndex = 8;
			this._doAssignTo.Text = "and assign to:";
			this._doAssignTo.UseVisualStyleBackColor = true;
			// 
			// _commentGroup
			// 
			this._commentGroup.AutoSize = true;
			this._commentGroup.Controls.Add(this._comment);
			this._commentGroup.Dock = System.Windows.Forms.DockStyle.Fill;
			this._commentGroup.Location = new System.Drawing.Point(0, 0);
			this._commentGroup.Name = "_commentGroup";
			this._commentGroup.Size = new System.Drawing.Size(636, 77);
			this._commentGroup.TabIndex = 11;
			this._commentGroup.TabStop = false;
			this._commentGroup.Text = "Comment";
			// 
			// _comment
			// 
			this._comment.AcceptsReturn = true;
			this._comment.DataBindings.Add(new System.Windows.Forms.Binding("Text", this._binding, "Comments", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
			this._comment.Dock = System.Windows.Forms.DockStyle.Fill;
			this._comment.Font = new System.Drawing.Font("Courier New", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
			this._comment.Location = new System.Drawing.Point(3, 16);
			this._comment.Multiline = true;
			this._comment.Name = "_comment";
			this._comment.Size = new System.Drawing.Size(630, 58);
			this._comment.TabIndex = 1;
			// 
			// _addWorklog
			// 
			this._addWorklog.Anchor = System.Windows.Forms.AnchorStyles.Left;
			this._addWorklog.AutoSize = true;
			this._addWorklog.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this._binding, "AddWorklog", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
			this._addWorklog.DataBindings.Add(new System.Windows.Forms.Binding("Enabled", this._binding, "CanAddWorklog", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
			this._addWorklog.Location = new System.Drawing.Point(3, 6);
			this._addWorklog.Margin = new System.Windows.Forms.Padding(3, 5, 3, 3);
			this._addWorklog.Name = "_addWorklog";
			this._addWorklog.Size = new System.Drawing.Size(69, 17);
			this._addWorklog.TabIndex = 0;
			this._addWorklog.Text = "Log time:";
			this._addWorklog.UseVisualStyleBackColor = true;
			// 
			// _worklogAction
			// 
			this._worklogAction.DataBindings.Add(new System.Windows.Forms.Binding("Enabled", this._binding, "AddWorklog", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
			this._worklogAction.DataBindings.Add(new System.Windows.Forms.Binding("IndexSelected", this._binding, "TimeEstimateRecalcualation", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
			this._worklogAction.DataSource = this.remainingEstimateBindingSource;
			this._worklogAction.Dock = System.Windows.Forms.DockStyle.Fill;
			this._worklogAction.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this._worklogAction.FormattingEnabled = true;
			this._worklogAction.IndexSelected = -1;
			this._worklogAction.Location = new System.Drawing.Point(418, 3);
			this._worklogAction.Name = "_worklogAction";
			this._worklogAction.Size = new System.Drawing.Size(126, 21);
			this._worklogAction.TabIndex = 3;
			// 
			// remainingEstimateBindingSource
			// 
			this.remainingEstimateBindingSource.DataMember = "TimeEstimateMethodsAvailable";
			this.remainingEstimateBindingSource.DataSource = this._binding;
			// 
			// _worklog
			// 
			this._worklog.DataBindings.Add(new System.Windows.Forms.Binding("Enabled", this._binding, "AddWorklog", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
			this._worklog.DataBindings.Add(new System.Windows.Forms.Binding("Text", this._binding, "TimeSpent", true));
			this._worklog.Dock = System.Windows.Forms.DockStyle.Fill;
			this._worklog.Location = new System.Drawing.Point(79, 3);
			this._worklog.Name = "_worklog";
			this._worklog.Size = new System.Drawing.Size(209, 20);
			this._worklog.TabIndex = 1;
			// 
			// textBox1
			// 
			this.textBox1.DataBindings.Add(new System.Windows.Forms.Binding("Text", this._binding, "NewTimeEstimate", true));
			this.textBox1.DataBindings.Add(new System.Windows.Forms.Binding("Enabled", this._binding, "CanSpecifyNewEstimate", true));
			this.textBox1.Dock = System.Windows.Forms.DockStyle.Fill;
			this.textBox1.Location = new System.Drawing.Point(550, 3);
			this.textBox1.Name = "textBox1";
			this.textBox1.Size = new System.Drawing.Size(77, 20);
			this.textBox1.TabIndex = 4;
			// 
			// _worklogGroup
			// 
			this._worklogGroup.AccessibleDescription = "";
			this._worklogGroup.AutoSize = true;
			this._worklogGroup.Controls.Add(this.tableLayoutPanel1);
			this._worklogGroup.DataBindings.Add(new System.Windows.Forms.Binding("Enabled", this._binding, "CanAddWorklog", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
			this._worklogGroup.Dock = System.Windows.Forms.DockStyle.Bottom;
			this._worklogGroup.Location = new System.Drawing.Point(0, 77);
			this._worklogGroup.Name = "_worklogGroup";
			this._worklogGroup.Size = new System.Drawing.Size(636, 46);
			this._worklogGroup.TabIndex = 6;
			this._worklogGroup.TabStop = false;
			this._worklogGroup.Text = "Time tracking";
			// 
			// tableLayoutPanel1
			// 
			this.tableLayoutPanel1.AutoSize = true;
			this.tableLayoutPanel1.ColumnCount = 5;
			this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 76F));
			this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
			this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 124F));
			this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 30.85586F));
			this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 19.14414F));
			this.tableLayoutPanel1.Controls.Add(this.textBox1, 4, 0);
			this.tableLayoutPanel1.Controls.Add(this._worklog, 1, 0);
			this.tableLayoutPanel1.Controls.Add(this._worklogAction, 3, 0);
			this.tableLayoutPanel1.Controls.Add(label6, 2, 0);
			this.tableLayoutPanel1.Controls.Add(this._addWorklog, 0, 0);
			this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Top;
			this.tableLayoutPanel1.Location = new System.Drawing.Point(3, 16);
			this.tableLayoutPanel1.Name = "tableLayoutPanel1";
			this.tableLayoutPanel1.RowCount = 1;
			this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
			this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 27F));
			this.tableLayoutPanel1.Size = new System.Drawing.Size(630, 27);
			this.tableLayoutPanel1.TabIndex = 5;
			// 
			// _splitter
			// 
			this._splitter.Dock = System.Windows.Forms.DockStyle.Fill;
			this._splitter.Location = new System.Drawing.Point(8, 81);
			this._splitter.Name = "_splitter";
			this._splitter.Orientation = System.Windows.Forms.Orientation.Horizontal;
			// 
			// _splitter.Panel1
			// 
			this._splitter.Panel1.Controls.Add(this._issuesGroup);
			// 
			// _splitter.Panel2
			// 
			this._splitter.Panel2.Controls.Add(this._commentGroup);
			this._splitter.Panel2.Controls.Add(this._worklogGroup);
			this._splitter.Panel2.Controls.Add(this.statusGroup);
			this._splitter.Size = new System.Drawing.Size(636, 374);
			this._splitter.SplitterDistance = 201;
			this._splitter.TabIndex = 1;
			// 
			// IssuesList
			// 
			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(652, 496);
			this.ContextMenuStrip = this._showHideMenu;
			this.Controls.Add(this._splitter);
			this.Controls.Add(this._filterGroup);
			this.Controls.Add(panel1);
			this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
			this.MaximizeBox = false;
			this.MinimizeBox = false;
			this.MinimumSize = new System.Drawing.Size(650, 450);
			this.Name = "IssuesList";
			this.Padding = new System.Windows.Forms.Padding(8);
			this.ShowInTaskbar = false;
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
			this.Text = "Select Issue(s)";
			this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Form_Closing);
			this.Load += new System.EventHandler(this.Form_Load);
			this.Shown += new System.EventHandler(this.Form_Shown);
			panel1.ResumeLayout(false);
			this._showHideMenu.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(possibleAssignmentsBindingSource)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this._binding)).EndInit();
			((System.ComponentModel.ISupportInitialize)(actionsAvailableBindingSource)).EndInit();
			((System.ComponentModel.ISupportInitialize)(filtersBindingSource)).EndInit();
			((System.ComponentModel.ISupportInitialize)(statusFilterBindingSource)).EndInit();
			((System.ComponentModel.ISupportInitialize)(assignmentFilterBindingSource)).EndInit();
			this._filterGroup.ResumeLayout(false);
			this._filterGroup.PerformLayout();
			this.tableLayoutPanel3.ResumeLayout(false);
			this.tableLayoutPanel3.PerformLayout();
			this._issuesGroup.ResumeLayout(false);
			this._contextMenu.ResumeLayout(false);
			this.statusGroup.ResumeLayout(false);
			this.statusGroup.PerformLayout();
			this.tableLayoutPanel2.ResumeLayout(false);
			this.tableLayoutPanel2.PerformLayout();
			this._commentGroup.ResumeLayout(false);
			this._commentGroup.PerformLayout();
			((System.ComponentModel.ISupportInitialize)(this.remainingEstimateBindingSource)).EndInit();
			this._worklogGroup.ResumeLayout(false);
			this._worklogGroup.PerformLayout();
			this.tableLayoutPanel1.ResumeLayout(false);
			this.tableLayoutPanel1.PerformLayout();
			this._splitter.Panel1.ResumeLayout(false);
			this._splitter.Panel2.ResumeLayout(false);
			this._splitter.Panel2.PerformLayout();
			this._splitter.ResumeLayout(false);
			this.ResumeLayout(false);
			this.PerformLayout();

        }
Example #60
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.FlowLayoutPanel           panel1;
     System.Windows.Forms.BindingSource             possibleAssignmentsBindingSource;
     System.Windows.Forms.BindingSource             actionsAvailableBindingSource;
     System.Windows.Forms.Label                     label6;
     System.Windows.Forms.BindingSource             filtersBindingSource;
     System.Windows.Forms.Label                     label2;
     System.Windows.Forms.Label                     label3;
     System.Windows.Forms.BindingSource             statusFilterBindingSource;
     System.Windows.Forms.Label                     label1;
     System.Windows.Forms.Label                     label4;
     System.Windows.Forms.BindingSource             assignmentFilterBindingSource;
     System.Windows.Forms.ColumnHeader              hdrId;
     System.Windows.Forms.ColumnHeader              hdrSummary;
     System.Windows.Forms.ColumnHeader              hdrAssignedTo;
     System.Windows.Forms.ColumnHeader              hdrReportedBy;
     System.Windows.Forms.ColumnHeader              hdrLastMod;
     System.Windows.Forms.ColumnHeader              hdrCreated;
     System.Windows.Forms.ColumnHeader              hdrStatus;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(IssuesList));
     this._showHideMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.showTimeTrackingToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.cancelButton                   = new System.Windows.Forms.Button();
     this.okButton                       = new System.Windows.Forms.Button();
     this._binding                       = new System.Windows.Forms.BindingSource(this.components);
     this._filterGroup                   = new System.Windows.Forms.GroupBox();
     this.tableLayoutPanel3              = new System.Windows.Forms.TableLayoutPanel();
     this._filters                       = new JiraSVN.Plugin.UI.BindingComboBox();
     this._search                        = new System.Windows.Forms.TextBox();
     this._status                        = new JiraSVN.Plugin.UI.BindingComboBox();
     this._assigned                      = new JiraSVN.Plugin.UI.BindingComboBox();
     this._issuesGroup                   = new System.Windows.Forms.GroupBox();
     this._listView                      = new System.Windows.Forms.ListView();
     this._contextMenu                   = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.viewIssueToolStripMenuItem     = new System.Windows.Forms.ToolStripMenuItem();
     this.refreshIssueToolStripMenuItem  = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator1            = new System.Windows.Forms.ToolStripSeparator();
     this.statusGroup                    = new System.Windows.Forms.GroupBox();
     this.tableLayoutPanel2              = new System.Windows.Forms.TableLayoutPanel();
     this._doTakeAction                  = new System.Windows.Forms.CheckBox();
     this._assignTo                      = new JiraSVN.Plugin.UI.BindingComboBox();
     this._takeAction                    = new JiraSVN.Plugin.UI.BindingComboBox();
     this._doAssignTo                    = new System.Windows.Forms.CheckBox();
     this._commentGroup                  = new System.Windows.Forms.GroupBox();
     this._comment                       = new System.Windows.Forms.TextBox();
     this._addWorklog                    = new System.Windows.Forms.CheckBox();
     this._worklogAction                 = new JiraSVN.Plugin.UI.BindingComboBox();
     this.remainingEstimateBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this._worklog                       = new System.Windows.Forms.TextBox();
     this.textBox1                       = new System.Windows.Forms.TextBox();
     this._worklogGroup                  = new System.Windows.Forms.GroupBox();
     this.tableLayoutPanel1              = new System.Windows.Forms.TableLayoutPanel();
     this._splitter                      = new System.Windows.Forms.SplitContainer();
     panel1 = new System.Windows.Forms.FlowLayoutPanel();
     possibleAssignmentsBindingSource = new System.Windows.Forms.BindingSource(this.components);
     actionsAvailableBindingSource    = new System.Windows.Forms.BindingSource(this.components);
     label6 = new System.Windows.Forms.Label();
     filtersBindingSource = new System.Windows.Forms.BindingSource(this.components);
     label2 = new System.Windows.Forms.Label();
     label3 = new System.Windows.Forms.Label();
     statusFilterBindingSource = new System.Windows.Forms.BindingSource(this.components);
     label1 = new System.Windows.Forms.Label();
     label4 = new System.Windows.Forms.Label();
     assignmentFilterBindingSource = new System.Windows.Forms.BindingSource(this.components);
     hdrId         = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     hdrSummary    = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     hdrAssignedTo = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     hdrReportedBy = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     hdrLastMod    = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     hdrCreated    = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     hdrStatus     = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     panel1.SuspendLayout();
     this._showHideMenu.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(possibleAssignmentsBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this._binding)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(actionsAvailableBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(filtersBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(statusFilterBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(assignmentFilterBindingSource)).BeginInit();
     this._filterGroup.SuspendLayout();
     this.tableLayoutPanel3.SuspendLayout();
     this._issuesGroup.SuspendLayout();
     this._contextMenu.SuspendLayout();
     this.statusGroup.SuspendLayout();
     this.tableLayoutPanel2.SuspendLayout();
     this._commentGroup.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.remainingEstimateBindingSource)).BeginInit();
     this._worklogGroup.SuspendLayout();
     this.tableLayoutPanel1.SuspendLayout();
     this._splitter.Panel1.SuspendLayout();
     this._splitter.Panel2.SuspendLayout();
     this._splitter.SuspendLayout();
     this.SuspendLayout();
     //
     // panel1
     //
     panel1.AutoSize         = true;
     panel1.ContextMenuStrip = this._showHideMenu;
     panel1.Controls.Add(this.cancelButton);
     panel1.Controls.Add(this.okButton);
     panel1.Dock          = System.Windows.Forms.DockStyle.Bottom;
     panel1.FlowDirection = System.Windows.Forms.FlowDirection.RightToLeft;
     panel1.Location      = new System.Drawing.Point(8, 455);
     panel1.Name          = "panel1";
     panel1.Padding       = new System.Windows.Forms.Padding(2, 2, 0, 2);
     panel1.Size          = new System.Drawing.Size(636, 33);
     panel1.TabIndex      = 2;
     //
     // _showHideMenu
     //
     this._showHideMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.showTimeTrackingToolStripMenuItem
     });
     this._showHideMenu.Name = "_showHideMenu";
     this._showHideMenu.Size = new System.Drawing.Size(177, 26);
     //
     // showTimeTrackingToolStripMenuItem
     //
     this.showTimeTrackingToolStripMenuItem.Checked      = true;
     this.showTimeTrackingToolStripMenuItem.CheckOnClick = true;
     this.showTimeTrackingToolStripMenuItem.CheckState   = System.Windows.Forms.CheckState.Checked;
     this.showTimeTrackingToolStripMenuItem.Name         = "showTimeTrackingToolStripMenuItem";
     this.showTimeTrackingToolStripMenuItem.Size         = new System.Drawing.Size(176, 22);
     this.showTimeTrackingToolStripMenuItem.Text         = "Show time tracking";
     this.showTimeTrackingToolStripMenuItem.Click       += new System.EventHandler(this.showTimeTrackingToolStripMenuItem_Click);
     //
     // cancelButton
     //
     this.cancelButton.DialogResult            = System.Windows.Forms.DialogResult.Cancel;
     this.cancelButton.FlatStyle               = System.Windows.Forms.FlatStyle.System;
     this.cancelButton.Location                = new System.Drawing.Point(559, 5);
     this.cancelButton.Margin                  = new System.Windows.Forms.Padding(3, 3, 0, 3);
     this.cancelButton.Name                    = "cancelButton";
     this.cancelButton.Size                    = new System.Drawing.Size(75, 23);
     this.cancelButton.TabIndex                = 11;
     this.cancelButton.Text                    = "Cancel";
     this.cancelButton.UseVisualStyleBackColor = true;
     //
     // okButton
     //
     this.okButton.DialogResult            = System.Windows.Forms.DialogResult.OK;
     this.okButton.FlatStyle               = System.Windows.Forms.FlatStyle.System;
     this.okButton.Location                = new System.Drawing.Point(478, 5);
     this.okButton.Name                    = "okButton";
     this.okButton.Size                    = new System.Drawing.Size(75, 23);
     this.okButton.TabIndex                = 10;
     this.okButton.Text                    = "OK";
     this.okButton.UseVisualStyleBackColor = true;
     this.okButton.Click                  += new System.EventHandler(this.okButton_Click);
     //
     // possibleAssignmentsBindingSource
     //
     possibleAssignmentsBindingSource.DataMember = "PossibleAssignments";
     possibleAssignmentsBindingSource.DataSource = this._binding;
     //
     // _binding
     //
     this._binding.DataSource = typeof(JiraSVN.Plugin.UI.IssuesListView);
     //
     // actionsAvailableBindingSource
     //
     actionsAvailableBindingSource.DataMember = "ActionsAvailable";
     actionsAvailableBindingSource.DataSource = this._binding;
     //
     // label6
     //
     label6.Anchor   = System.Windows.Forms.AnchorStyles.Left;
     label6.AutoSize = true;
     label6.DataBindings.Add(new System.Windows.Forms.Binding("Enabled", this._binding, "AddWorklog", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     label6.Location = new System.Drawing.Point(294, 8);
     label6.Margin   = new System.Windows.Forms.Padding(3, 3, 3, 0);
     label6.Name     = "label6";
     label6.Size     = new System.Drawing.Size(106, 13);
     label6.TabIndex = 2;
     label6.Text     = "and update estimate:";
     //
     // filtersBindingSource
     //
     filtersBindingSource.DataMember = "Filters";
     filtersBindingSource.DataSource = this._binding;
     //
     // label2
     //
     label2.Anchor   = System.Windows.Forms.AnchorStyles.Left;
     label2.AutoSize = true;
     label2.Location = new System.Drawing.Point(3, 7);
     label2.Name     = "label2";
     label2.Size     = new System.Drawing.Size(61, 13);
     label2.TabIndex = 0;
     label2.Text     = "Apply Filter:";
     //
     // label3
     //
     label3.Anchor   = System.Windows.Forms.AnchorStyles.Right;
     label3.AutoSize = true;
     label3.Location = new System.Drawing.Point(423, 35);
     label3.Margin   = new System.Windows.Forms.Padding(3, 3, 3, 0);
     label3.Name     = "label3";
     label3.Size     = new System.Drawing.Size(51, 13);
     label3.TabIndex = 6;
     label3.Text     = "Contains:";
     //
     // statusFilterBindingSource
     //
     statusFilterBindingSource.DataMember = "StatusFilter";
     statusFilterBindingSource.DataSource = this._binding;
     //
     // label1
     //
     label1.Anchor   = System.Windows.Forms.AnchorStyles.Left;
     label1.AutoSize = true;
     label1.Location = new System.Drawing.Point(3, 35);
     label1.Margin   = new System.Windows.Forms.Padding(3, 3, 3, 0);
     label1.Name     = "label1";
     label1.Size     = new System.Drawing.Size(65, 13);
     label1.TabIndex = 2;
     label1.Text     = "Assigned to:";
     //
     // label4
     //
     label4.Anchor   = System.Windows.Forms.AnchorStyles.Right;
     label4.AutoSize = true;
     label4.Location = new System.Drawing.Point(237, 35);
     label4.Margin   = new System.Windows.Forms.Padding(3, 3, 3, 0);
     label4.Name     = "label4";
     label4.Size     = new System.Drawing.Size(40, 13);
     label4.TabIndex = 4;
     label4.Text     = "Status:";
     //
     // assignmentFilterBindingSource
     //
     assignmentFilterBindingSource.DataMember = "AssignmentFilter";
     assignmentFilterBindingSource.DataSource = this._binding;
     //
     // hdrId
     //
     hdrId.Text = "Id";
     //
     // hdrSummary
     //
     hdrSummary.Text  = "Summary";
     hdrSummary.Width = 400;
     //
     // hdrAssignedTo
     //
     hdrAssignedTo.Text  = "Assigned To";
     hdrAssignedTo.Width = 100;
     //
     // hdrReportedBy
     //
     hdrReportedBy.Text  = "Reported By";
     hdrReportedBy.Width = 100;
     //
     // hdrLastMod
     //
     hdrLastMod.Text  = "Last Modified";
     hdrLastMod.Width = 100;
     //
     // hdrCreated
     //
     hdrCreated.Text  = "Created On";
     hdrCreated.Width = 100;
     //
     // hdrStatus
     //
     hdrStatus.Text  = "Status";
     hdrStatus.Width = 100;
     //
     // _filterGroup
     //
     this._filterGroup.AutoSize = true;
     this._filterGroup.Controls.Add(this.tableLayoutPanel3);
     this._filterGroup.Dock     = System.Windows.Forms.DockStyle.Top;
     this._filterGroup.Location = new System.Drawing.Point(8, 8);
     this._filterGroup.Name     = "_filterGroup";
     this._filterGroup.Size     = new System.Drawing.Size(636, 73);
     this._filterGroup.TabIndex = 0;
     this._filterGroup.TabStop  = false;
     this._filterGroup.Text     = "Filter";
     //
     // tableLayoutPanel3
     //
     this.tableLayoutPanel3.AutoSize    = true;
     this.tableLayoutPanel3.ColumnCount = 6;
     this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 76F));
     this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 33.31667F));
     this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 60F));
     this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 31.70082F));
     this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 60F));
     this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 34.98251F));
     this.tableLayoutPanel3.Controls.Add(this._filters, 1, 0);
     this.tableLayoutPanel3.Controls.Add(this._search, 5, 1);
     this.tableLayoutPanel3.Controls.Add(label2, 0, 0);
     this.tableLayoutPanel3.Controls.Add(label3, 4, 1);
     this.tableLayoutPanel3.Controls.Add(this._status, 3, 1);
     this.tableLayoutPanel3.Controls.Add(label1, 0, 1);
     this.tableLayoutPanel3.Controls.Add(label4, 2, 1);
     this.tableLayoutPanel3.Controls.Add(this._assigned, 1, 1);
     this.tableLayoutPanel3.Dock     = System.Windows.Forms.DockStyle.Top;
     this.tableLayoutPanel3.Location = new System.Drawing.Point(3, 16);
     this.tableLayoutPanel3.Name     = "tableLayoutPanel3";
     this.tableLayoutPanel3.RowCount = 2;
     this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel3.Size     = new System.Drawing.Size(630, 54);
     this.tableLayoutPanel3.TabIndex = 8;
     //
     // _filters
     //
     this._filters.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                  | System.Windows.Forms.AnchorStyles.Right)));
     this.tableLayoutPanel3.SetColumnSpan(this._filters, 5);
     this._filters.DataBindings.Add(new System.Windows.Forms.Binding("IndexSelected", this._binding, "SelectedFilter", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this._filters.DataSource        = filtersBindingSource;
     this._filters.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this._filters.FormattingEnabled = true;
     this._filters.IndexSelected     = -1;
     this._filters.Location          = new System.Drawing.Point(79, 3);
     this._filters.Name     = "_filters";
     this._filters.Size     = new System.Drawing.Size(548, 21);
     this._filters.TabIndex = 1;
     //
     // _search
     //
     this._search.DataBindings.Add(new System.Windows.Forms.Binding("Text", this._binding, "TextFilter", true, System.Windows.Forms.DataSourceUpdateMode.Never));
     this._search.Dock         = System.Windows.Forms.DockStyle.Fill;
     this._search.Location     = new System.Drawing.Point(480, 30);
     this._search.Name         = "_search";
     this._search.Size         = new System.Drawing.Size(147, 20);
     this._search.TabIndex     = 7;
     this._search.TextChanged += new System.EventHandler(this._search_TextChanged);
     //
     // _status
     //
     this._status.DataBindings.Add(new System.Windows.Forms.Binding("IndexSelected", this._binding, "SelectedStatusFilter", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this._status.DataSource        = statusFilterBindingSource;
     this._status.Dock              = System.Windows.Forms.DockStyle.Fill;
     this._status.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this._status.FormattingEnabled = true;
     this._status.IndexSelected     = -1;
     this._status.Location          = new System.Drawing.Point(283, 30);
     this._status.Name              = "_status";
     this._status.Size              = new System.Drawing.Size(131, 21);
     this._status.TabIndex          = 5;
     //
     // _assigned
     //
     this._assigned.DataBindings.Add(new System.Windows.Forms.Binding("IndexSelected", this._binding, "SelectedAssignmentFilter", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this._assigned.DataSource        = assignmentFilterBindingSource;
     this._assigned.Dock              = System.Windows.Forms.DockStyle.Fill;
     this._assigned.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this._assigned.FormattingEnabled = true;
     this._assigned.IndexSelected     = -1;
     this._assigned.Location          = new System.Drawing.Point(79, 30);
     this._assigned.Name              = "_assigned";
     this._assigned.Size              = new System.Drawing.Size(138, 21);
     this._assigned.TabIndex          = 3;
     //
     // _issuesGroup
     //
     this._issuesGroup.Controls.Add(this._listView);
     this._issuesGroup.Dock     = System.Windows.Forms.DockStyle.Fill;
     this._issuesGroup.Location = new System.Drawing.Point(0, 0);
     this._issuesGroup.Name     = "_issuesGroup";
     this._issuesGroup.Size     = new System.Drawing.Size(636, 201);
     this._issuesGroup.TabIndex = 1;
     this._issuesGroup.TabStop  = false;
     this._issuesGroup.Text     = "Issues";
     //
     // _listView
     //
     this._listView.CheckBoxes = true;
     this._listView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         hdrId,
         hdrSummary,
         hdrStatus,
         hdrAssignedTo,
         hdrReportedBy,
         hdrLastMod,
         hdrCreated
     });
     this._listView.ContextMenuStrip = this._contextMenu;
     this._listView.Dock             = System.Windows.Forms.DockStyle.Fill;
     this._listView.FullRowSelect    = true;
     this._listView.Location         = new System.Drawing.Point(3, 16);
     this._listView.Name             = "_listView";
     this._listView.Size             = new System.Drawing.Size(630, 182);
     this._listView.Sorting          = System.Windows.Forms.SortOrder.Ascending;
     this._listView.TabIndex         = 0;
     this._listView.UseCompatibleStateImageBehavior = false;
     this._listView.View            = System.Windows.Forms.View.Details;
     this._listView.ItemChecked    += new System.Windows.Forms.ItemCheckedEventHandler(this.listView_ItemChecked);
     this._listView.ItemMouseHover += new System.Windows.Forms.ListViewItemMouseHoverEventHandler(this._listView_ItemMouseHover);
     this._listView.MouseDown      += new System.Windows.Forms.MouseEventHandler(this.listView_MouseDown);
     this._listView.MouseMove      += new System.Windows.Forms.MouseEventHandler(this._listView_MouseMove);
     //
     // _contextMenu
     //
     this._contextMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.viewIssueToolStripMenuItem,
         this.refreshIssueToolStripMenuItem,
         this.toolStripSeparator1
     });
     this._contextMenu.Name     = "_contextMenu";
     this._contextMenu.Size     = new System.Drawing.Size(169, 54);
     this._contextMenu.Opening += new System.ComponentModel.CancelEventHandler(this.contextMenu_Opening);
     //
     // viewIssueToolStripMenuItem
     //
     this.viewIssueToolStripMenuItem.Name        = "viewIssueToolStripMenuItem";
     this.viewIssueToolStripMenuItem.Size        = new System.Drawing.Size(168, 22);
     this.viewIssueToolStripMenuItem.Text        = "&View Issue...";
     this.viewIssueToolStripMenuItem.ToolTipText = "Open the issue in the default viewer.";
     this.viewIssueToolStripMenuItem.Click      += new System.EventHandler(this.listView_ViewSelectedItem);
     //
     // refreshIssueToolStripMenuItem
     //
     this.refreshIssueToolStripMenuItem.Name        = "refreshIssueToolStripMenuItem";
     this.refreshIssueToolStripMenuItem.Size        = new System.Drawing.Size(168, 22);
     this.refreshIssueToolStripMenuItem.Text        = "&Refresh Issues List";
     this.refreshIssueToolStripMenuItem.ToolTipText = "Requery the server and refresh the list.";
     this.refreshIssueToolStripMenuItem.Click      += new System.EventHandler(this.RefreshContents);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(165, 6);
     //
     // statusGroup
     //
     this.statusGroup.AutoSize = true;
     this.statusGroup.Controls.Add(this.tableLayoutPanel2);
     this.statusGroup.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.statusGroup.Location = new System.Drawing.Point(0, 123);
     this.statusGroup.Name     = "statusGroup";
     this.statusGroup.Size     = new System.Drawing.Size(636, 46);
     this.statusGroup.TabIndex = 10;
     this.statusGroup.TabStop  = false;
     this.statusGroup.Text     = "Status";
     //
     // tableLayoutPanel2
     //
     this.tableLayoutPanel2.AutoSize    = true;
     this.tableLayoutPanel2.ColumnCount = 4;
     this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 76F));
     this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50.15783F));
     this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 124F));
     this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 49.84217F));
     this.tableLayoutPanel2.Controls.Add(this._doTakeAction, 0, 0);
     this.tableLayoutPanel2.Controls.Add(this._assignTo, 3, 0);
     this.tableLayoutPanel2.Controls.Add(this._takeAction, 1, 0);
     this.tableLayoutPanel2.Controls.Add(this._doAssignTo, 2, 0);
     this.tableLayoutPanel2.Dock     = System.Windows.Forms.DockStyle.Top;
     this.tableLayoutPanel2.Location = new System.Drawing.Point(3, 16);
     this.tableLayoutPanel2.Name     = "tableLayoutPanel2";
     this.tableLayoutPanel2.RowCount = 1;
     this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel2.Size     = new System.Drawing.Size(630, 27);
     this.tableLayoutPanel2.TabIndex = 10;
     //
     // _doTakeAction
     //
     this._doTakeAction.AutoSize = true;
     this._doTakeAction.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this._binding, "PerformAction", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this._doTakeAction.DataBindings.Add(new System.Windows.Forms.Binding("Enabled", this._binding, "CanPerformActions", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this._doTakeAction.Dock     = System.Windows.Forms.DockStyle.Fill;
     this._doTakeAction.Location = new System.Drawing.Point(3, 5);
     this._doTakeAction.Margin   = new System.Windows.Forms.Padding(3, 5, 3, 3);
     this._doTakeAction.Name     = "_doTakeAction";
     this._doTakeAction.Size     = new System.Drawing.Size(70, 19);
     this._doTakeAction.TabIndex = 6;
     this._doTakeAction.Text     = "Set:";
     this._doTakeAction.UseVisualStyleBackColor = true;
     //
     // _assignTo
     //
     this._assignTo.DataBindings.Add(new System.Windows.Forms.Binding("IndexSelected", this._binding, "SelectedAssignee", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this._assignTo.DataBindings.Add(new System.Windows.Forms.Binding("Enabled", this._binding, "CanAssignTo", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this._assignTo.DataSource        = possibleAssignmentsBindingSource;
     this._assignTo.Dock              = System.Windows.Forms.DockStyle.Fill;
     this._assignTo.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this._assignTo.FormattingEnabled = true;
     this._assignTo.IndexSelected     = -1;
     this._assignTo.Location          = new System.Drawing.Point(418, 3);
     this._assignTo.Name              = "_assignTo";
     this._assignTo.Size              = new System.Drawing.Size(209, 21);
     this._assignTo.TabIndex          = 9;
     //
     // _takeAction
     //
     this._takeAction.DataBindings.Add(new System.Windows.Forms.Binding("IndexSelected", this._binding, "SelectedAction", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this._takeAction.DataBindings.Add(new System.Windows.Forms.Binding("Enabled", this._binding, "PerformAction", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this._takeAction.DataSource        = actionsAvailableBindingSource;
     this._takeAction.Dock              = System.Windows.Forms.DockStyle.Fill;
     this._takeAction.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this._takeAction.FormattingEnabled = true;
     this._takeAction.IndexSelected     = -1;
     this._takeAction.Location          = new System.Drawing.Point(79, 3);
     this._takeAction.Name              = "_takeAction";
     this._takeAction.Size              = new System.Drawing.Size(209, 21);
     this._takeAction.TabIndex          = 7;
     //
     // _doAssignTo
     //
     this._doAssignTo.AutoSize = true;
     this._doAssignTo.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this._binding, "AssignTo", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this._doAssignTo.DataBindings.Add(new System.Windows.Forms.Binding("Enabled", this._binding, "PerformAction", true));
     this._doAssignTo.Dock     = System.Windows.Forms.DockStyle.Fill;
     this._doAssignTo.Location = new System.Drawing.Point(294, 5);
     this._doAssignTo.Margin   = new System.Windows.Forms.Padding(3, 5, 3, 3);
     this._doAssignTo.Name     = "_doAssignTo";
     this._doAssignTo.Size     = new System.Drawing.Size(118, 19);
     this._doAssignTo.TabIndex = 8;
     this._doAssignTo.Text     = "and assign to:";
     this._doAssignTo.UseVisualStyleBackColor = true;
     //
     // _commentGroup
     //
     this._commentGroup.AutoSize = true;
     this._commentGroup.Controls.Add(this._comment);
     this._commentGroup.Dock     = System.Windows.Forms.DockStyle.Fill;
     this._commentGroup.Location = new System.Drawing.Point(0, 0);
     this._commentGroup.Name     = "_commentGroup";
     this._commentGroup.Size     = new System.Drawing.Size(636, 77);
     this._commentGroup.TabIndex = 11;
     this._commentGroup.TabStop  = false;
     this._commentGroup.Text     = "Comment";
     //
     // _comment
     //
     this._comment.AcceptsReturn = true;
     this._comment.DataBindings.Add(new System.Windows.Forms.Binding("Text", this._binding, "Comments", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this._comment.Dock      = System.Windows.Forms.DockStyle.Fill;
     this._comment.Font      = new System.Drawing.Font("Courier New", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this._comment.Location  = new System.Drawing.Point(3, 16);
     this._comment.Multiline = true;
     this._comment.Name      = "_comment";
     this._comment.Size      = new System.Drawing.Size(630, 58);
     this._comment.TabIndex  = 1;
     //
     // _addWorklog
     //
     this._addWorklog.Anchor   = System.Windows.Forms.AnchorStyles.Left;
     this._addWorklog.AutoSize = true;
     this._addWorklog.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this._binding, "AddWorklog", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this._addWorklog.DataBindings.Add(new System.Windows.Forms.Binding("Enabled", this._binding, "CanAddWorklog", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this._addWorklog.Location = new System.Drawing.Point(3, 6);
     this._addWorklog.Margin   = new System.Windows.Forms.Padding(3, 5, 3, 3);
     this._addWorklog.Name     = "_addWorklog";
     this._addWorklog.Size     = new System.Drawing.Size(69, 17);
     this._addWorklog.TabIndex = 0;
     this._addWorklog.Text     = "Log time:";
     this._addWorklog.UseVisualStyleBackColor = true;
     //
     // _worklogAction
     //
     this._worklogAction.DataBindings.Add(new System.Windows.Forms.Binding("Enabled", this._binding, "AddWorklog", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this._worklogAction.DataBindings.Add(new System.Windows.Forms.Binding("IndexSelected", this._binding, "TimeEstimateRecalcualation", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this._worklogAction.DataSource        = this.remainingEstimateBindingSource;
     this._worklogAction.Dock              = System.Windows.Forms.DockStyle.Fill;
     this._worklogAction.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this._worklogAction.FormattingEnabled = true;
     this._worklogAction.IndexSelected     = -1;
     this._worklogAction.Location          = new System.Drawing.Point(418, 3);
     this._worklogAction.Name              = "_worklogAction";
     this._worklogAction.Size              = new System.Drawing.Size(126, 21);
     this._worklogAction.TabIndex          = 3;
     //
     // remainingEstimateBindingSource
     //
     this.remainingEstimateBindingSource.DataMember = "TimeEstimateMethodsAvailable";
     this.remainingEstimateBindingSource.DataSource = this._binding;
     //
     // _worklog
     //
     this._worklog.DataBindings.Add(new System.Windows.Forms.Binding("Enabled", this._binding, "AddWorklog", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this._worklog.DataBindings.Add(new System.Windows.Forms.Binding("Text", this._binding, "TimeSpent", true));
     this._worklog.Dock     = System.Windows.Forms.DockStyle.Fill;
     this._worklog.Location = new System.Drawing.Point(79, 3);
     this._worklog.Name     = "_worklog";
     this._worklog.Size     = new System.Drawing.Size(209, 20);
     this._worklog.TabIndex = 1;
     //
     // textBox1
     //
     this.textBox1.DataBindings.Add(new System.Windows.Forms.Binding("Text", this._binding, "NewTimeEstimate", true));
     this.textBox1.DataBindings.Add(new System.Windows.Forms.Binding("Enabled", this._binding, "CanSpecifyNewEstimate", true));
     this.textBox1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.textBox1.Location = new System.Drawing.Point(550, 3);
     this.textBox1.Name     = "textBox1";
     this.textBox1.Size     = new System.Drawing.Size(77, 20);
     this.textBox1.TabIndex = 4;
     //
     // _worklogGroup
     //
     this._worklogGroup.AccessibleDescription = "";
     this._worklogGroup.AutoSize = true;
     this._worklogGroup.Controls.Add(this.tableLayoutPanel1);
     this._worklogGroup.DataBindings.Add(new System.Windows.Forms.Binding("Enabled", this._binding, "CanAddWorklog", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this._worklogGroup.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this._worklogGroup.Location = new System.Drawing.Point(0, 77);
     this._worklogGroup.Name     = "_worklogGroup";
     this._worklogGroup.Size     = new System.Drawing.Size(636, 46);
     this._worklogGroup.TabIndex = 6;
     this._worklogGroup.TabStop  = false;
     this._worklogGroup.Text     = "Time tracking";
     //
     // tableLayoutPanel1
     //
     this.tableLayoutPanel1.AutoSize    = true;
     this.tableLayoutPanel1.ColumnCount = 5;
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 76F));
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 124F));
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 30.85586F));
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 19.14414F));
     this.tableLayoutPanel1.Controls.Add(this.textBox1, 4, 0);
     this.tableLayoutPanel1.Controls.Add(this._worklog, 1, 0);
     this.tableLayoutPanel1.Controls.Add(this._worklogAction, 3, 0);
     this.tableLayoutPanel1.Controls.Add(label6, 2, 0);
     this.tableLayoutPanel1.Controls.Add(this._addWorklog, 0, 0);
     this.tableLayoutPanel1.Dock     = System.Windows.Forms.DockStyle.Top;
     this.tableLayoutPanel1.Location = new System.Drawing.Point(3, 16);
     this.tableLayoutPanel1.Name     = "tableLayoutPanel1";
     this.tableLayoutPanel1.RowCount = 1;
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 27F));
     this.tableLayoutPanel1.Size     = new System.Drawing.Size(630, 27);
     this.tableLayoutPanel1.TabIndex = 5;
     //
     // _splitter
     //
     this._splitter.Dock        = System.Windows.Forms.DockStyle.Fill;
     this._splitter.Location    = new System.Drawing.Point(8, 81);
     this._splitter.Name        = "_splitter";
     this._splitter.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // _splitter.Panel1
     //
     this._splitter.Panel1.Controls.Add(this._issuesGroup);
     //
     // _splitter.Panel2
     //
     this._splitter.Panel2.Controls.Add(this._commentGroup);
     this._splitter.Panel2.Controls.Add(this._worklogGroup);
     this._splitter.Panel2.Controls.Add(this.statusGroup);
     this._splitter.Size             = new System.Drawing.Size(636, 374);
     this._splitter.SplitterDistance = 201;
     this._splitter.TabIndex         = 1;
     //
     // IssuesList
     //
     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(652, 496);
     this.ContextMenuStrip    = this._showHideMenu;
     this.Controls.Add(this._splitter);
     this.Controls.Add(this._filterGroup);
     this.Controls.Add(panel1);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox   = false;
     this.MinimizeBox   = false;
     this.MinimumSize   = new System.Drawing.Size(650, 450);
     this.Name          = "IssuesList";
     this.Padding       = new System.Windows.Forms.Padding(8);
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text          = "Select Issue(s)";
     this.FormClosing  += new System.Windows.Forms.FormClosingEventHandler(this.Form_Closing);
     this.Load         += new System.EventHandler(this.Form_Load);
     this.Shown        += new System.EventHandler(this.Form_Shown);
     panel1.ResumeLayout(false);
     this._showHideMenu.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(possibleAssignmentsBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this._binding)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(actionsAvailableBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(filtersBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(statusFilterBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(assignmentFilterBindingSource)).EndInit();
     this._filterGroup.ResumeLayout(false);
     this._filterGroup.PerformLayout();
     this.tableLayoutPanel3.ResumeLayout(false);
     this.tableLayoutPanel3.PerformLayout();
     this._issuesGroup.ResumeLayout(false);
     this._contextMenu.ResumeLayout(false);
     this.statusGroup.ResumeLayout(false);
     this.statusGroup.PerformLayout();
     this.tableLayoutPanel2.ResumeLayout(false);
     this.tableLayoutPanel2.PerformLayout();
     this._commentGroup.ResumeLayout(false);
     this._commentGroup.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.remainingEstimateBindingSource)).EndInit();
     this._worklogGroup.ResumeLayout(false);
     this._worklogGroup.PerformLayout();
     this.tableLayoutPanel1.ResumeLayout(false);
     this.tableLayoutPanel1.PerformLayout();
     this._splitter.Panel1.ResumeLayout(false);
     this._splitter.Panel2.ResumeLayout(false);
     this._splitter.Panel2.PerformLayout();
     this._splitter.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }