/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(mainFrm)); statusStrip1 = new System.Windows.Forms.StatusStrip(); LB_LoadedIMG = new System.Windows.Forms.ToolStripStatusLabel(); tabControl1 = new System.Windows.Forms.TabControl(); tabPage1 = new System.Windows.Forms.TabPage(); pictureBox1 = new System.Windows.Forms.PictureBox(); Btn_LoadSpritesheet = new System.Windows.Forms.Button(); GB_Preview = new System.Windows.Forms.GroupBox(); Btn_PreviewMap = new System.Windows.Forms.Button(); label2 = new System.Windows.Forms.Label(); label1 = new System.Windows.Forms.Label(); NUM_Y = new System.Windows.Forms.NumericUpDown(); NUM_X = new System.Windows.Forms.NumericUpDown(); Btn_SplitSpriteSheet = new System.Windows.Forms.Button(); IMG_Spritesheet = new System.Windows.Forms.PictureBox(); tabPage2 = new System.Windows.Forms.TabPage(); menuStrip1 = new System.Windows.Forms.MenuStrip(); fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); statusStrip1.SuspendLayout(); tabControl1.SuspendLayout(); tabPage1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(pictureBox1)).BeginInit(); GB_Preview.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(NUM_Y)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(NUM_X)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(IMG_Spritesheet)).BeginInit(); menuStrip1.SuspendLayout(); SuspendLayout(); // // statusStrip1 // statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { LB_LoadedIMG }); statusStrip1.Location = new System.Drawing.Point(0, 372); statusStrip1.Name = "statusStrip1"; statusStrip1.Size = new System.Drawing.Size(531, 22); statusStrip1.SizingGrip = false; statusStrip1.TabIndex = 0; statusStrip1.Text = "statusStrip1"; // // LB_LoadedIMG // LB_LoadedIMG.Name = "LB_LoadedIMG"; LB_LoadedIMG.Size = new System.Drawing.Size(110, 17); LB_LoadedIMG.Text = "Loaded Image: N/A"; // // 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(531, 348); tabControl1.TabIndex = 1; // // tabPage1 // tabPage1.Controls.Add(pictureBox1); tabPage1.Controls.Add(Btn_LoadSpritesheet); tabPage1.Controls.Add(GB_Preview); tabPage1.Controls.Add(Btn_SplitSpriteSheet); tabPage1.Controls.Add(IMG_Spritesheet); 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(523, 322); tabPage1.TabIndex = 0; tabPage1.Text = "Sprite Tool"; tabPage1.UseVisualStyleBackColor = true; // // pictureBox1 // pictureBox1.Location = new System.Drawing.Point(270, 144); pictureBox1.Name = "pictureBox1"; pictureBox1.Size = new System.Drawing.Size(245, 143); pictureBox1.TabIndex = 4; pictureBox1.TabStop = false; // // Btn_LoadSpritesheet // Btn_LoadSpritesheet.Location = new System.Drawing.Point(116, 293); Btn_LoadSpritesheet.Name = "Btn_LoadSpritesheet"; Btn_LoadSpritesheet.Size = new System.Drawing.Size(102, 23); Btn_LoadSpritesheet.TabIndex = 3; Btn_LoadSpritesheet.Text = "Load Spritesheet"; Btn_LoadSpritesheet.UseVisualStyleBackColor = true; Btn_LoadSpritesheet.Click += new System.EventHandler(Btn_LoadSpritesheet_Click); // // GB_Preview // GB_Preview.Controls.Add(Btn_PreviewMap); GB_Preview.Controls.Add(label2); GB_Preview.Controls.Add(label1); GB_Preview.Controls.Add(NUM_Y); GB_Preview.Controls.Add(NUM_X); GB_Preview.Enabled = false; GB_Preview.Location = new System.Drawing.Point(270, 31); GB_Preview.Name = "GB_Preview"; GB_Preview.Size = new System.Drawing.Size(245, 107); GB_Preview.TabIndex = 2; GB_Preview.TabStop = false; GB_Preview.Text = "Preview"; // // Btn_PreviewMap // Btn_PreviewMap.Location = new System.Drawing.Point(6, 71); Btn_PreviewMap.Name = "Btn_PreviewMap"; Btn_PreviewMap.Size = new System.Drawing.Size(233, 23); Btn_PreviewMap.TabIndex = 4; Btn_PreviewMap.Text = "Generate Preview Map"; Btn_PreviewMap.UseVisualStyleBackColor = true; Btn_PreviewMap.Click += new System.EventHandler(Btn_PreviewMap_Click); // // label2 // label2.AutoSize = true; label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); label2.Location = new System.Drawing.Point(7, 48); label2.Name = "label2"; label2.Size = new System.Drawing.Size(17, 13); label2.TabIndex = 3; label2.Text = "Y:"; // // label1 // label1.AutoSize = true; label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); label1.Location = new System.Drawing.Point(7, 22); label1.Name = "label1"; label1.Size = new System.Drawing.Size(17, 13); label1.TabIndex = 2; label1.Text = "X:"; // // NUM_Y // NUM_Y.Location = new System.Drawing.Point(30, 45); NUM_Y.Maximum = new decimal(new int[] { 100000, 0, 0, 0 }); NUM_Y.Name = "NUM_Y"; NUM_Y.Size = new System.Drawing.Size(206, 20); NUM_Y.TabIndex = 1; NUM_Y.ValueChanged += new System.EventHandler(NUM_Y_ValueChanged); // // NUM_X // NUM_X.Location = new System.Drawing.Point(30, 19); NUM_X.Maximum = new decimal(new int[] { 100000, 0, 0, 0 }); NUM_X.Name = "NUM_X"; NUM_X.Size = new System.Drawing.Size(206, 20); NUM_X.TabIndex = 0; NUM_X.ValueChanged += new System.EventHandler(NUM_X_ValueChanged); // // Btn_SplitSpriteSheet // Btn_SplitSpriteSheet.Enabled = false; Btn_SplitSpriteSheet.Location = new System.Drawing.Point(8, 293); Btn_SplitSpriteSheet.Name = "Btn_SplitSpriteSheet"; Btn_SplitSpriteSheet.Size = new System.Drawing.Size(102, 23); Btn_SplitSpriteSheet.TabIndex = 1; Btn_SplitSpriteSheet.Text = "Split Spritesheet"; Btn_SplitSpriteSheet.UseVisualStyleBackColor = true; Btn_SplitSpriteSheet.Click += new System.EventHandler(Btn_SplitSpriteSheet_Click); // // IMG_Spritesheet // IMG_Spritesheet.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; IMG_Spritesheet.Image = global::Splat_Sprite_Slicer.Properties.Resources.Splat; IMG_Spritesheet.Location = new System.Drawing.Point(8, 31); IMG_Spritesheet.Name = "IMG_Spritesheet"; IMG_Spritesheet.Size = new System.Drawing.Size(256, 256); IMG_Spritesheet.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; IMG_Spritesheet.TabIndex = 0; IMG_Spritesheet.TabStop = false; // // tabPage2 // 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(523, 322); tabPage2.TabIndex = 1; tabPage2.Text = "About"; tabPage2.UseVisualStyleBackColor = true; // // menuStrip1 // menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { fileToolStripMenuItem }); menuStrip1.Location = new System.Drawing.Point(0, 0); menuStrip1.Name = "menuStrip1"; menuStrip1.Size = new System.Drawing.Size(531, 24); menuStrip1.TabIndex = 2; menuStrip1.Text = "menuStrip1"; // // fileToolStripMenuItem // fileToolStripMenuItem.Name = "fileToolStripMenuItem"; fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20); fileToolStripMenuItem.Text = "File"; // // mainFrm // AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; ClientSize = new System.Drawing.Size(531, 394); Controls.Add(tabControl1); Controls.Add(statusStrip1); Controls.Add(menuStrip1); FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D; Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); MainMenuStrip = menuStrip1; MaximizeBox = false; Name = "mainFrm"; StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; Text = "Splat Spritesheet Slicer"; Load += new System.EventHandler(mainFrm_Load); statusStrip1.ResumeLayout(false); statusStrip1.PerformLayout(); tabControl1.ResumeLayout(false); tabPage1.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(pictureBox1)).EndInit(); GB_Preview.ResumeLayout(false); GB_Preview.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(NUM_Y)).EndInit(); ((System.ComponentModel.ISupportInitialize)(NUM_X)).EndInit(); ((System.ComponentModel.ISupportInitialize)(IMG_Spritesheet)).EndInit(); menuStrip1.ResumeLayout(false); menuStrip1.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.Label label1; System.Windows.Forms.Label label2; System.Windows.Forms.StatusStrip SweepFreqL; System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabel5; System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabel6; System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabel7; System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabel8; System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabel1; System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabel2; System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabel3; System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabel4; System.Windows.Forms.Label label3; System.Windows.Forms.Label label4; System.Windows.Forms.Label label5; this.PortNameLabel = new System.Windows.Forms.ToolStripStatusLabel(); this.PortSpeedLabel = new System.Windows.Forms.ToolStripStatusLabel(); this.PortBitsLabel = new System.Windows.Forms.ToolStripStatusLabel(); this.PortParityLabel = new System.Windows.Forms.ToolStripStatusLabel(); this.PortStopBitsLabel = new System.Windows.Forms.ToolStripStatusLabel(); this.F1Label = new System.Windows.Forms.ToolStripStatusLabel(); this.F2Label = new System.Windows.Forms.ToolStripStatusLabel(); this.ResolutionLabel = new System.Windows.Forms.ToolStripStatusLabel(); this.SweepFreqLabel = new System.Windows.Forms.ToolStripStatusLabel(); this.modeBox = new System.Windows.Forms.GroupBox(); this.bnOff = new System.Windows.Forms.RadioButton(); this.bnSquareDiv2 = new System.Windows.Forms.RadioButton(); this.bnAFC = new System.Windows.Forms.RadioButton(); this.bnSine = new System.Windows.Forms.RadioButton(); this.bnTriangular = new System.Windows.Forms.RadioButton(); this.bnSquare = new System.Windows.Forms.RadioButton(); this.AFCPanel = new System.Windows.Forms.Panel(); this.bnExit = new System.Windows.Forms.Button(); this.bnFSet = new System.Windows.Forms.Button(); this.AFCBox = new System.Windows.Forms.GroupBox(); this.bxPointsCount = new classes.NumericBox(); this.bnStopAFC = new System.Windows.Forms.Button(); this.bnAFCSet = new System.Windows.Forms.Button(); this.bxSweepDelay = new classes.NumericBox(); this.bxResolution = new classes.NumericBox(); this.F2 = new classes.NumericBox(); this.F1 = new classes.NumericBox(); this.menuStrip = new System.Windows.Forms.MenuStrip(); this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); label1 = new System.Windows.Forms.Label(); label2 = new System.Windows.Forms.Label(); SweepFreqL = new System.Windows.Forms.StatusStrip(); toolStripStatusLabel5 = new System.Windows.Forms.ToolStripStatusLabel(); toolStripStatusLabel6 = new System.Windows.Forms.ToolStripStatusLabel(); toolStripStatusLabel7 = new System.Windows.Forms.ToolStripStatusLabel(); toolStripStatusLabel8 = new System.Windows.Forms.ToolStripStatusLabel(); toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel(); toolStripStatusLabel2 = new System.Windows.Forms.ToolStripStatusLabel(); toolStripStatusLabel3 = new System.Windows.Forms.ToolStripStatusLabel(); toolStripStatusLabel4 = new System.Windows.Forms.ToolStripStatusLabel(); label3 = new System.Windows.Forms.Label(); label4 = new System.Windows.Forms.Label(); label5 = new System.Windows.Forms.Label(); SweepFreqL.SuspendLayout(); this.modeBox.SuspendLayout(); this.AFCBox.SuspendLayout(); this.menuStrip.SuspendLayout(); this.SuspendLayout(); // // label1 // label1.AutoSize = true; label1.Location = new System.Drawing.Point(12, 35); label1.Name = "label1"; label1.Size = new System.Drawing.Size(19, 13); label1.TabIndex = 1; label1.Text = "F1"; // // label2 // label2.AutoSize = true; label2.Location = new System.Drawing.Point(145, 35); label2.Name = "label2"; label2.Size = new System.Drawing.Size(19, 13); label2.TabIndex = 2; label2.Text = "F2"; // // SweepFreqL // SweepFreqL.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.PortNameLabel, this.PortSpeedLabel, this.PortBitsLabel, this.PortParityLabel, this.PortStopBitsLabel, toolStripStatusLabel5, this.F1Label, toolStripStatusLabel6, toolStripStatusLabel7, this.F2Label, toolStripStatusLabel8, toolStripStatusLabel1, this.ResolutionLabel, toolStripStatusLabel2, toolStripStatusLabel3, this.SweepFreqLabel, toolStripStatusLabel4 }); SweepFreqL.Location = new System.Drawing.Point(0, 368); SweepFreqL.Name = "SweepFreqL"; SweepFreqL.Size = new System.Drawing.Size(913, 24); SweepFreqL.TabIndex = 0; SweepFreqL.Text = "10"; // // PortNameLabel // this.PortNameLabel.BorderSides = System.Windows.Forms.ToolStripStatusLabelBorderSides.Right; this.PortNameLabel.Name = "PortNameLabel"; this.PortNameLabel.Size = new System.Drawing.Size(53, 19); this.PortNameLabel.Text = "COMXX"; // // PortSpeedLabel // this.PortSpeedLabel.BorderSides = System.Windows.Forms.ToolStripStatusLabelBorderSides.Right; this.PortSpeedLabel.Name = "PortSpeedLabel"; this.PortSpeedLabel.Size = new System.Drawing.Size(41, 19); this.PortSpeedLabel.Text = "57600"; // // PortBitsLabel // this.PortBitsLabel.BorderSides = System.Windows.Forms.ToolStripStatusLabelBorderSides.Right; this.PortBitsLabel.Name = "PortBitsLabel"; this.PortBitsLabel.Size = new System.Drawing.Size(17, 19); this.PortBitsLabel.Text = "8"; // // PortParityLabel // this.PortParityLabel.BorderSides = System.Windows.Forms.ToolStripStatusLabelBorderSides.Right; this.PortParityLabel.Name = "PortParityLabel"; this.PortParityLabel.Size = new System.Drawing.Size(20, 19); this.PortParityLabel.Text = "N"; // // PortStopBitsLabel // this.PortStopBitsLabel.BorderSides = System.Windows.Forms.ToolStripStatusLabelBorderSides.Right; this.PortStopBitsLabel.Name = "PortStopBitsLabel"; this.PortStopBitsLabel.Size = new System.Drawing.Size(17, 19); this.PortStopBitsLabel.Text = "1"; // // toolStripStatusLabel5 // toolStripStatusLabel5.Name = "toolStripStatusLabel5"; toolStripStatusLabel5.Size = new System.Drawing.Size(22, 19); toolStripStatusLabel5.Text = "F1:"; // // F1Label // this.F1Label.Name = "F1Label"; this.F1Label.Size = new System.Drawing.Size(13, 19); this.F1Label.Text = "0"; // // toolStripStatusLabel6 // toolStripStatusLabel6.BorderSides = System.Windows.Forms.ToolStripStatusLabelBorderSides.Right; toolStripStatusLabel6.Name = "toolStripStatusLabel6"; toolStripStatusLabel6.Size = new System.Drawing.Size(25, 19); toolStripStatusLabel6.Text = "Hz"; // // toolStripStatusLabel7 // toolStripStatusLabel7.Name = "toolStripStatusLabel7"; toolStripStatusLabel7.Size = new System.Drawing.Size(22, 19); toolStripStatusLabel7.Text = "F2:"; // // F2Label // this.F2Label.Name = "F2Label"; this.F2Label.Size = new System.Drawing.Size(13, 19); this.F2Label.Text = "0"; // // toolStripStatusLabel8 // toolStripStatusLabel8.BorderSides = System.Windows.Forms.ToolStripStatusLabelBorderSides.Right; toolStripStatusLabel8.Name = "toolStripStatusLabel8"; toolStripStatusLabel8.Size = new System.Drawing.Size(25, 19); toolStripStatusLabel8.Text = "Hz"; // // toolStripStatusLabel1 // toolStripStatusLabel1.Name = "toolStripStatusLabel1"; toolStripStatusLabel1.Size = new System.Drawing.Size(66, 19); toolStripStatusLabel1.Text = "Resolution:"; // // ResolutionLabel // this.ResolutionLabel.Name = "ResolutionLabel"; this.ResolutionLabel.Size = new System.Drawing.Size(12, 19); this.ResolutionLabel.Text = "-"; // // toolStripStatusLabel2 // toolStripStatusLabel2.BorderSides = System.Windows.Forms.ToolStripStatusLabelBorderSides.Right; toolStripStatusLabel2.Name = "toolStripStatusLabel2"; toolStripStatusLabel2.Size = new System.Drawing.Size(25, 19); toolStripStatusLabel2.Text = "Hz"; // // toolStripStatusLabel3 // toolStripStatusLabel3.Name = "toolStripStatusLabel3"; toolStripStatusLabel3.Size = new System.Drawing.Size(64, 19); toolStripStatusLabel3.Text = "Step delay:"; // // SweepFreqLabel // this.SweepFreqLabel.Name = "SweepFreqLabel"; this.SweepFreqLabel.Size = new System.Drawing.Size(12, 19); this.SweepFreqLabel.Text = "-"; // // toolStripStatusLabel4 // toolStripStatusLabel4.BorderSides = System.Windows.Forms.ToolStripStatusLabelBorderSides.Right; toolStripStatusLabel4.Name = "toolStripStatusLabel4"; toolStripStatusLabel4.Size = new System.Drawing.Size(27, 19); toolStripStatusLabel4.Text = "ms"; // // label3 // label3.AutoSize = true; label3.Location = new System.Drawing.Point(7, 20); label3.Name = "label3"; label3.Size = new System.Drawing.Size(76, 13); label3.TabIndex = 0; label3.Text = "Resolution, Hz"; // // label4 // label4.AutoSize = true; label4.Location = new System.Drawing.Point(7, 71); label4.Name = "label4"; label4.Size = new System.Drawing.Size(76, 13); label4.TabIndex = 2; label4.Text = "Step delay, ms"; // // label5 // label5.AutoSize = true; label5.Location = new System.Drawing.Point(7, 46); label5.Name = "label5"; label5.Size = new System.Drawing.Size(66, 13); label5.TabIndex = 11; label5.Text = "Points count"; // // modeBox // this.modeBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.modeBox.Controls.Add(this.bnOff); this.modeBox.Controls.Add(this.bnSquareDiv2); this.modeBox.Controls.Add(this.bnAFC); this.modeBox.Controls.Add(this.bnSine); this.modeBox.Controls.Add(this.bnTriangular); this.modeBox.Controls.Add(this.bnSquare); this.modeBox.Enabled = false; this.modeBox.Location = new System.Drawing.Point(761, 24); this.modeBox.Name = "modeBox"; this.modeBox.Size = new System.Drawing.Size(140, 158); this.modeBox.TabIndex = 7; this.modeBox.TabStop = false; this.modeBox.Text = "Mode"; // // bnOff // this.bnOff.AutoSize = true; this.bnOff.Location = new System.Drawing.Point(7, 135); this.bnOff.Name = "bnOff"; this.bnOff.Size = new System.Drawing.Size(39, 17); this.bnOff.TabIndex = 5; this.bnOff.TabStop = true; this.bnOff.Text = "Off"; this.bnOff.UseVisualStyleBackColor = true; this.bnOff.CheckedChanged += new System.EventHandler(this.bnOff_CheckedChanged); // // bnSquareDiv2 // this.bnSquareDiv2.AutoSize = true; this.bnSquareDiv2.Location = new System.Drawing.Point(7, 43); this.bnSquareDiv2.Name = "bnSquareDiv2"; this.bnSquareDiv2.Size = new System.Drawing.Size(131, 17); this.bnSquareDiv2.TabIndex = 4; this.bnSquareDiv2.TabStop = true; this.bnSquareDiv2.Text = "Square wave (MSB/2)"; this.bnSquareDiv2.UseVisualStyleBackColor = true; this.bnSquareDiv2.CheckedChanged += new System.EventHandler(this.SquareDiv2_CheckedChanged); // // bnAFC // this.bnAFC.AutoSize = true; this.bnAFC.Location = new System.Drawing.Point(7, 112); this.bnAFC.Name = "bnAFC"; this.bnAFC.Size = new System.Drawing.Size(74, 17); this.bnAFC.TabIndex = 3; this.bnAFC.TabStop = true; this.bnAFC.Text = "AFC meter"; this.bnAFC.UseVisualStyleBackColor = true; this.bnAFC.CheckedChanged += new System.EventHandler(this.AFC_CheckedChanged); // // bnSine // this.bnSine.AutoSize = true; this.bnSine.Checked = true; this.bnSine.Location = new System.Drawing.Point(7, 89); this.bnSine.Name = "bnSine"; this.bnSine.Size = new System.Drawing.Size(75, 17); this.bnSine.TabIndex = 2; this.bnSine.TabStop = true; this.bnSine.Text = "Sine wave"; this.bnSine.UseVisualStyleBackColor = true; this.bnSine.CheckedChanged += new System.EventHandler(this.Sine_CheckedChanged); // // bnTriangular // this.bnTriangular.AutoSize = true; this.bnTriangular.Location = new System.Drawing.Point(7, 66); this.bnTriangular.Name = "bnTriangular"; this.bnTriangular.Size = new System.Drawing.Size(101, 17); this.bnTriangular.TabIndex = 1; this.bnTriangular.TabStop = true; this.bnTriangular.Text = "Triangular wave"; this.bnTriangular.UseVisualStyleBackColor = true; this.bnTriangular.CheckedChanged += new System.EventHandler(this.Triangular_CheckedChanged); // // bnSquare // this.bnSquare.AutoSize = true; this.bnSquare.Location = new System.Drawing.Point(7, 20); this.bnSquare.Name = "bnSquare"; this.bnSquare.Size = new System.Drawing.Size(120, 17); this.bnSquare.TabIndex = 0; this.bnSquare.TabStop = true; this.bnSquare.Text = "Square wave (MSB)"; this.bnSquare.UseVisualStyleBackColor = true; this.bnSquare.CheckedChanged += new System.EventHandler(this.Square_CheckedChanged); // // AFCPanel // this.AFCPanel.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.AFCPanel.BackColor = System.Drawing.SystemColors.Window; this.AFCPanel.Location = new System.Drawing.Point(0, 54); this.AFCPanel.Name = "AFCPanel"; this.AFCPanel.Size = new System.Drawing.Size(755, 313); this.AFCPanel.TabIndex = 5; this.AFCPanel.Paint += new System.Windows.Forms.PaintEventHandler(this.AFCPanel_Paint); this.AFCPanel.Resize += new System.EventHandler(this.AFCPanel_Resize); // // bnExit // this.bnExit.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.bnExit.Location = new System.Drawing.Point(761, 344); this.bnExit.Name = "bnExit"; this.bnExit.Size = new System.Drawing.Size(140, 23); this.bnExit.TabIndex = 6; this.bnExit.Text = "Exit"; this.bnExit.UseVisualStyleBackColor = true; this.bnExit.Click += new System.EventHandler(this.bnExit_Click); // // bnFSet // this.bnFSet.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.bnFSet.Enabled = false; this.bnFSet.Location = new System.Drawing.Point(276, 26); this.bnFSet.Name = "bnFSet"; this.bnFSet.Size = new System.Drawing.Size(479, 23); this.bnFSet.TabIndex = 8; this.bnFSet.Text = "Set"; this.bnFSet.UseVisualStyleBackColor = true; this.bnFSet.Click += new System.EventHandler(this.FSet_Click); // // AFCBox // this.AFCBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.AFCBox.Controls.Add(this.bxPointsCount); this.AFCBox.Controls.Add(label5); this.AFCBox.Controls.Add(this.bnStopAFC); this.AFCBox.Controls.Add(this.bnAFCSet); this.AFCBox.Controls.Add(this.bxSweepDelay); this.AFCBox.Controls.Add(label4); this.AFCBox.Controls.Add(this.bxResolution); this.AFCBox.Controls.Add(label3); this.AFCBox.Enabled = false; this.AFCBox.Location = new System.Drawing.Point(761, 188); this.AFCBox.Name = "AFCBox"; this.AFCBox.Size = new System.Drawing.Size(140, 150); this.AFCBox.TabIndex = 9; this.AFCBox.TabStop = false; this.AFCBox.Text = "AFC"; // // bxPointsCount // this.bxPointsCount.allowMinus = false; this.bxPointsCount.allowPoint = true; this.bxPointsCount.Location = new System.Drawing.Point(89, 38); this.bxPointsCount.Name = "bxPointsCount"; this.bxPointsCount.Size = new System.Drawing.Size(45, 20); this.bxPointsCount.TabIndex = 12; this.bxPointsCount.Text = "50"; this.bxPointsCount.TextChanged += new System.EventHandler(this.bxPointsCount_TextChanged); // // bnStopAFC // this.bnStopAFC.Enabled = false; this.bnStopAFC.Location = new System.Drawing.Point(3, 121); this.bnStopAFC.Name = "bnStopAFC"; this.bnStopAFC.Size = new System.Drawing.Size(131, 23); this.bnStopAFC.TabIndex = 10; this.bnStopAFC.Text = "Stop AFC"; this.bnStopAFC.UseVisualStyleBackColor = true; this.bnStopAFC.Click += new System.EventHandler(this.bnStopAFC_Click); // // bnAFCSet // this.bnAFCSet.Enabled = false; this.bnAFCSet.Location = new System.Drawing.Point(3, 92); this.bnAFCSet.Name = "bnAFCSet"; this.bnAFCSet.Size = new System.Drawing.Size(131, 23); this.bnAFCSet.TabIndex = 5; this.bnAFCSet.Text = "Set"; this.bnAFCSet.UseVisualStyleBackColor = true; this.bnAFCSet.Click += new System.EventHandler(this.AFCSet_Click); // // bxSweepDelay // this.bxSweepDelay.allowMinus = false; this.bxSweepDelay.allowPoint = false; this.bxSweepDelay.Location = new System.Drawing.Point(89, 64); this.bxSweepDelay.Name = "bxSweepDelay"; this.bxSweepDelay.Size = new System.Drawing.Size(45, 20); this.bxSweepDelay.TabIndex = 3; this.bxSweepDelay.Text = "1"; this.bxSweepDelay.TextChanged += new System.EventHandler(this.SweepFreq_TextChanged); // // bxResolution // this.bxResolution.allowMinus = false; this.bxResolution.allowPoint = true; this.bxResolution.Location = new System.Drawing.Point(89, 12); this.bxResolution.Name = "bxResolution"; this.bxResolution.Size = new System.Drawing.Size(45, 20); this.bxResolution.TabIndex = 1; this.bxResolution.TextChanged += new System.EventHandler(this.Resolution_TextChanged); // // F2 // this.F2.allowMinus = false; this.F2.allowPoint = true; this.F2.Enabled = false; this.F2.Location = new System.Drawing.Point(170, 28); this.F2.Name = "F2"; this.F2.Size = new System.Drawing.Size(100, 20); this.F2.TabIndex = 4; this.F2.TextChanged += new System.EventHandler(this.F2_TextChanged); // // F1 // this.F1.allowMinus = false; this.F1.allowPoint = true; this.F1.Enabled = false; this.F1.Location = new System.Drawing.Point(39, 28); this.F1.Name = "F1"; this.F1.Size = new System.Drawing.Size(100, 20); this.F1.TabIndex = 3; this.F1.TextChanged += new System.EventHandler(this.F1_TextChanged); // // menuStrip // this.menuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.fileToolStripMenuItem, this.aboutToolStripMenuItem }); this.menuStrip.Location = new System.Drawing.Point(0, 0); this.menuStrip.Name = "menuStrip"; this.menuStrip.Size = new System.Drawing.Size(913, 24); this.menuStrip.TabIndex = 10; this.menuStrip.Text = "menuStrip1"; // // fileToolStripMenuItem // this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.exitToolStripMenuItem }); this.fileToolStripMenuItem.Name = "fileToolStripMenuItem"; this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20); this.fileToolStripMenuItem.Text = "&File"; // // exitToolStripMenuItem // this.exitToolStripMenuItem.Name = "exitToolStripMenuItem"; this.exitToolStripMenuItem.Size = new System.Drawing.Size(92, 22); this.exitToolStripMenuItem.Text = "E&xit"; this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click); // // aboutToolStripMenuItem // this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem"; this.aboutToolStripMenuItem.Size = new System.Drawing.Size(52, 20); this.aboutToolStripMenuItem.Text = "&About"; this.aboutToolStripMenuItem.Click += new System.EventHandler(this.aboutToolStripMenuItem_Click); // // MainForm // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(913, 392); this.Controls.Add(this.AFCBox); this.Controls.Add(this.bnFSet); this.Controls.Add(this.modeBox); this.Controls.Add(this.bnExit); this.Controls.Add(this.AFCPanel); this.Controls.Add(this.F2); this.Controls.Add(this.F1); this.Controls.Add(label2); this.Controls.Add(label1); this.Controls.Add(SweepFreqL); this.Controls.Add(this.menuStrip); this.MainMenuStrip = this.menuStrip; this.Name = "MainForm"; this.Text = "Generator"; this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainForm_FormClosing); SweepFreqL.ResumeLayout(false); SweepFreqL.PerformLayout(); this.modeBox.ResumeLayout(false); this.modeBox.PerformLayout(); this.AFCBox.ResumeLayout(false); this.AFCBox.PerformLayout(); this.menuStrip.ResumeLayout(false); this.menuStrip.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.TableLayoutPanel tableMainForm; System.Windows.Forms.GroupBox groupMain; System.Windows.Forms.TableLayoutPanel tableMain; System.Windows.Forms.Label labelInputFile; System.Windows.Forms.Label labelOutputFile; System.Windows.Forms.Button buttonBrowseOut; System.Windows.Forms.TabControl tabControlOptions; System.Windows.Forms.TabPage tabProcessing; System.Windows.Forms.TableLayoutPanel tableProcessing; System.Windows.Forms.ToolStrip toolStripProcessing; System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm)); System.Windows.Forms.Panel panelProcessingInput; System.Windows.Forms.TabPage tabEncoding; System.Windows.Forms.TableLayoutPanel tableEncoding; System.Windows.Forms.GroupBox groupEncodingGeneral; System.Windows.Forms.TableLayoutPanel tableEncodingGeneral; System.Windows.Forms.Label labelGeneralModeVariableHint; System.Windows.Forms.Label labelGeneralModeConstantHint; System.Windows.Forms.Label labelGeneralMode; System.Windows.Forms.Label labelGeneralTitle; System.Windows.Forms.Label labelGeneralTitleHint; System.Windows.Forms.GroupBox groupEncodingVideo; System.Windows.Forms.Panel panelEncodingModeSwapper; System.Windows.Forms.Label labelVideoSizeLimit; System.Windows.Forms.Label labelVideoSizeLimitUnit; System.Windows.Forms.Label labelVideoSizeLimitHint; System.Windows.Forms.Label labelVideoBitrate; System.Windows.Forms.Label labelVideoBitrateUnit; System.Windows.Forms.Label labelVideoBitrateHint; System.Windows.Forms.Label labelVideoCrf; System.Windows.Forms.Label labelVideoCrfHint; System.Windows.Forms.Label labelVideoCrfTolerance; System.Windows.Forms.Label labelVideoCrfToleranceHint; System.Windows.Forms.Label labelVideoHQHint; System.Windows.Forms.GroupBox groupEncodingAudio; System.Windows.Forms.TableLayoutPanel tableEncodingAudio; System.Windows.Forms.Label labelAudioHint; System.Windows.Forms.Panel panelEncodingModeSwapperTwo; System.Windows.Forms.Label labelAudioBitrate; System.Windows.Forms.Label labelAudioBitrateUnit; System.Windows.Forms.Label labelAudioBitrateHint; System.Windows.Forms.Label labelAudioQuality; System.Windows.Forms.Label labelAudioQualityHint; System.Windows.Forms.TabPage tabAdvanced; System.Windows.Forms.TableLayoutPanel tableAdvanced; System.Windows.Forms.Label labelAdvancedWarning; System.Windows.Forms.GroupBox groupAdvancedProcessing; System.Windows.Forms.TableLayoutPanel tableAdvancedProcessing; System.Windows.Forms.Label labelProcessingLevels; System.Windows.Forms.Label labelProcessingLevelsHint; System.Windows.Forms.Label labelProcessingDeinterlaceHint; System.Windows.Forms.Label labelProcessingDenoiseHint; System.Windows.Forms.GroupBox groupAdvancedEncoding; System.Windows.Forms.TableLayoutPanel tableAdvancedEncoding; System.Windows.Forms.Label labelEncodingFrameRateHint; System.Windows.Forms.Label labelEncodingFrameRate; System.Windows.Forms.Label labelEncodingNGOVHint; System.Windows.Forms.Label labelEncodingThreads; System.Windows.Forms.Label labelEncodingThreadsHint; System.Windows.Forms.Label labelEncodingSlices; System.Windows.Forms.Label labelEncodingSlicesHint; System.Windows.Forms.Label labelEncodingArguments; System.Windows.Forms.StatusStrip statusStrip; this.textBoxIn = new System.Windows.Forms.TextBox(); this.buttonBrowseIn = new System.Windows.Forms.Button(); this.textBoxOut = new System.Windows.Forms.TextBox(); this.buttonGo = new System.Windows.Forms.Button(); this.buttonTrim = new System.Windows.Forms.ToolStripSplitButton(); this.buttonMultipleTrim = new System.Windows.Forms.ToolStripMenuItem(); this.buttonCrop = new System.Windows.Forms.ToolStripButton(); this.buttonResize = new System.Windows.Forms.ToolStripButton(); this.buttonSubtitle = new System.Windows.Forms.ToolStripButton(); this.buttonReverse = new System.Windows.Forms.ToolStripButton(); this.buttonOverlay = new System.Windows.Forms.ToolStripButton(); this.buttonCaption = new System.Windows.Forms.ToolStripButton(); this.boxAdvancedScripting = new System.Windows.Forms.ToolStripButton(); this.buttonExportProcessing = new System.Windows.Forms.ToolStripButton(); this.buttonPreview = new System.Windows.Forms.ToolStripButton(); this.buttonDub = new System.Windows.Forms.ToolStripButton(); this.listViewProcessingScript = new System.Windows.Forms.ListView(); this.imageListFilters = new System.Windows.Forms.ImageList(this.components); this.textBoxProcessingScript = new System.Windows.Forms.TextBox(); this.buttonVariableDefault = new System.Windows.Forms.Button(); this.boxTitle = new System.Windows.Forms.TextBox(); this.boxConstant = new System.Windows.Forms.RadioButton(); this.boxVariable = new System.Windows.Forms.RadioButton(); this.buttonConstantDefault = new System.Windows.Forms.Button(); this.tableLayoutPanelEncodingVideo = new System.Windows.Forms.TableLayoutPanel(); this.tableVideoConstantOptions = new System.Windows.Forms.TableLayoutPanel(); this.boxLimit = new System.Windows.Forms.TextBox(); this.boxBitrate = new System.Windows.Forms.TextBox(); this.tableVideoVariableOptions = new System.Windows.Forms.TableLayoutPanel(); this.numericCrf = new System.Windows.Forms.NumericUpDown(); this.numericCrfTolerance = new System.Windows.Forms.NumericUpDown(); this.boxHQ = new System.Windows.Forms.CheckBox(); this.buttonAudioEnabledDefault = new System.Windows.Forms.Button(); this.boxAudio = new System.Windows.Forms.CheckBox(); this.tableAudioConstantOptions = new System.Windows.Forms.TableLayoutPanel(); this.boxAudioBitrate = new System.Windows.Forms.TextBox(); this.tableAudioVariableOptions = new System.Windows.Forms.TableLayoutPanel(); this.numericAudioQuality = new System.Windows.Forms.NumericUpDown(); this.comboLevels = new System.Windows.Forms.ComboBox(); this.boxDeinterlace = new System.Windows.Forms.CheckBox(); this.boxDenoise = new System.Windows.Forms.CheckBox(); this.boxFrameRate = new System.Windows.Forms.TextBox(); this.boxNGOV = new System.Windows.Forms.CheckBox(); this.trackThreads = new System.Windows.Forms.TrackBar(); this.labelThreads = new System.Windows.Forms.Label(); this.trackSlices = new System.Windows.Forms.TrackBar(); this.labelSlices = new System.Windows.Forms.Label(); this.boxArguments = new System.Windows.Forms.TextBox(); this.toolStripStatusLabel = new System.Windows.Forms.ToolStripStatusLabel(); this.panelContainTheProgressBar = new System.Windows.Forms.Panel(); this.boxIndexingProgressDetails = new System.Windows.Forms.CheckBox(); this.boxIndexingProgress = new System.Windows.Forms.TextBox(); this.labelIndexingProgress = new System.Windows.Forms.Label(); this.progressBarIndexing = new System.Windows.Forms.ProgressBar(); this.panelHideTheOptions = new System.Windows.Forms.Panel(); this.buttonRate = new System.Windows.Forms.ToolStripButton(); tableMainForm = new System.Windows.Forms.TableLayoutPanel(); groupMain = new System.Windows.Forms.GroupBox(); tableMain = new System.Windows.Forms.TableLayoutPanel(); labelInputFile = new System.Windows.Forms.Label(); labelOutputFile = new System.Windows.Forms.Label(); buttonBrowseOut = new System.Windows.Forms.Button(); tabControlOptions = new System.Windows.Forms.TabControl(); tabProcessing = new System.Windows.Forms.TabPage(); tableProcessing = new System.Windows.Forms.TableLayoutPanel(); toolStripProcessing = new System.Windows.Forms.ToolStrip(); panelProcessingInput = new System.Windows.Forms.Panel(); tabEncoding = new System.Windows.Forms.TabPage(); tableEncoding = new System.Windows.Forms.TableLayoutPanel(); groupEncodingGeneral = new System.Windows.Forms.GroupBox(); tableEncodingGeneral = new System.Windows.Forms.TableLayoutPanel(); labelGeneralModeVariableHint = new System.Windows.Forms.Label(); labelGeneralModeConstantHint = new System.Windows.Forms.Label(); labelGeneralMode = new System.Windows.Forms.Label(); labelGeneralTitle = new System.Windows.Forms.Label(); labelGeneralTitleHint = new System.Windows.Forms.Label(); groupEncodingVideo = new System.Windows.Forms.GroupBox(); panelEncodingModeSwapper = new System.Windows.Forms.Panel(); labelVideoSizeLimit = new System.Windows.Forms.Label(); labelVideoSizeLimitUnit = new System.Windows.Forms.Label(); labelVideoSizeLimitHint = new System.Windows.Forms.Label(); labelVideoBitrate = new System.Windows.Forms.Label(); labelVideoBitrateUnit = new System.Windows.Forms.Label(); labelVideoBitrateHint = new System.Windows.Forms.Label(); labelVideoCrf = new System.Windows.Forms.Label(); labelVideoCrfHint = new System.Windows.Forms.Label(); labelVideoCrfTolerance = new System.Windows.Forms.Label(); labelVideoCrfToleranceHint = new System.Windows.Forms.Label(); labelVideoHQHint = new System.Windows.Forms.Label(); groupEncodingAudio = new System.Windows.Forms.GroupBox(); tableEncodingAudio = new System.Windows.Forms.TableLayoutPanel(); labelAudioHint = new System.Windows.Forms.Label(); panelEncodingModeSwapperTwo = new System.Windows.Forms.Panel(); labelAudioBitrate = new System.Windows.Forms.Label(); labelAudioBitrateUnit = new System.Windows.Forms.Label(); labelAudioBitrateHint = new System.Windows.Forms.Label(); labelAudioQuality = new System.Windows.Forms.Label(); labelAudioQualityHint = new System.Windows.Forms.Label(); tabAdvanced = new System.Windows.Forms.TabPage(); tableAdvanced = new System.Windows.Forms.TableLayoutPanel(); labelAdvancedWarning = new System.Windows.Forms.Label(); groupAdvancedProcessing = new System.Windows.Forms.GroupBox(); tableAdvancedProcessing = new System.Windows.Forms.TableLayoutPanel(); labelProcessingLevels = new System.Windows.Forms.Label(); labelProcessingLevelsHint = new System.Windows.Forms.Label(); labelProcessingDeinterlaceHint = new System.Windows.Forms.Label(); labelProcessingDenoiseHint = new System.Windows.Forms.Label(); groupAdvancedEncoding = new System.Windows.Forms.GroupBox(); tableAdvancedEncoding = new System.Windows.Forms.TableLayoutPanel(); labelEncodingFrameRateHint = new System.Windows.Forms.Label(); labelEncodingFrameRate = new System.Windows.Forms.Label(); labelEncodingNGOVHint = new System.Windows.Forms.Label(); labelEncodingThreads = new System.Windows.Forms.Label(); labelEncodingThreadsHint = new System.Windows.Forms.Label(); labelEncodingSlices = new System.Windows.Forms.Label(); labelEncodingSlicesHint = new System.Windows.Forms.Label(); labelEncodingArguments = new System.Windows.Forms.Label(); statusStrip = new System.Windows.Forms.StatusStrip(); tableMainForm.SuspendLayout(); groupMain.SuspendLayout(); tableMain.SuspendLayout(); tabControlOptions.SuspendLayout(); tabProcessing.SuspendLayout(); tableProcessing.SuspendLayout(); toolStripProcessing.SuspendLayout(); panelProcessingInput.SuspendLayout(); tabEncoding.SuspendLayout(); tableEncoding.SuspendLayout(); groupEncodingGeneral.SuspendLayout(); tableEncodingGeneral.SuspendLayout(); groupEncodingVideo.SuspendLayout(); this.tableLayoutPanelEncodingVideo.SuspendLayout(); panelEncodingModeSwapper.SuspendLayout(); this.tableVideoConstantOptions.SuspendLayout(); this.tableVideoVariableOptions.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.numericCrf)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.numericCrfTolerance)).BeginInit(); groupEncodingAudio.SuspendLayout(); tableEncodingAudio.SuspendLayout(); panelEncodingModeSwapperTwo.SuspendLayout(); this.tableAudioConstantOptions.SuspendLayout(); this.tableAudioVariableOptions.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.numericAudioQuality)).BeginInit(); tabAdvanced.SuspendLayout(); tableAdvanced.SuspendLayout(); groupAdvancedProcessing.SuspendLayout(); tableAdvancedProcessing.SuspendLayout(); groupAdvancedEncoding.SuspendLayout(); tableAdvancedEncoding.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.trackThreads)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.trackSlices)).BeginInit(); statusStrip.SuspendLayout(); this.panelContainTheProgressBar.SuspendLayout(); this.panelHideTheOptions.SuspendLayout(); this.SuspendLayout(); // // tableMainForm // tableMainForm.ColumnCount = 1; tableMainForm.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); tableMainForm.Controls.Add(groupMain, 0, 0); tableMainForm.Controls.Add(tabControlOptions, 0, 1); tableMainForm.Dock = System.Windows.Forms.DockStyle.Fill; tableMainForm.Location = new System.Drawing.Point(3, 3); tableMainForm.Name = "tableMainForm"; tableMainForm.RowCount = 3; tableMainForm.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 84F)); tableMainForm.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F)); tableMainForm.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F)); tableMainForm.Size = new System.Drawing.Size(1067, 443); tableMainForm.TabIndex = 0; // // groupMain // groupMain.Controls.Add(tableMain); groupMain.Dock = System.Windows.Forms.DockStyle.Fill; groupMain.Location = new System.Drawing.Point(3, 3); groupMain.Name = "groupMain"; groupMain.Size = new System.Drawing.Size(1061, 78); groupMain.TabIndex = 0; groupMain.TabStop = false; groupMain.Text = "Main"; // // tableMain // tableMain.ColumnCount = 4; tableMain.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 69F)); tableMain.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); tableMain.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 68F)); tableMain.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 77F)); tableMain.Controls.Add(labelInputFile, 0, 0); tableMain.Controls.Add(this.textBoxIn, 1, 0); tableMain.Controls.Add(this.buttonBrowseIn, 2, 0); tableMain.Controls.Add(labelOutputFile, 0, 1); tableMain.Controls.Add(this.textBoxOut, 1, 1); tableMain.Controls.Add(buttonBrowseOut, 2, 1); tableMain.Controls.Add(this.buttonGo, 3, 0); tableMain.Dock = System.Windows.Forms.DockStyle.Fill; tableMain.Location = new System.Drawing.Point(3, 16); tableMain.Name = "tableMain"; tableMain.RowCount = 2; tableMain.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F)); tableMain.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F)); tableMain.Size = new System.Drawing.Size(1055, 59); tableMain.TabIndex = 0; // // labelInputFile // labelInputFile.AutoSize = true; labelInputFile.Dock = System.Windows.Forms.DockStyle.Fill; labelInputFile.Location = new System.Drawing.Point(3, 0); labelInputFile.Name = "labelInputFile"; labelInputFile.Size = new System.Drawing.Size(63, 29); labelInputFile.TabIndex = 0; labelInputFile.Text = "Input file:"; labelInputFile.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // textBoxIn // this.textBoxIn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); this.textBoxIn.Location = new System.Drawing.Point(72, 4); this.textBoxIn.Name = "textBoxIn"; this.textBoxIn.Size = new System.Drawing.Size(835, 20); this.textBoxIn.TabIndex = 1; // // buttonBrowseIn // this.buttonBrowseIn.Dock = System.Windows.Forms.DockStyle.Fill; this.buttonBrowseIn.Location = new System.Drawing.Point(913, 3); this.buttonBrowseIn.Name = "buttonBrowseIn"; this.buttonBrowseIn.Size = new System.Drawing.Size(62, 23); this.buttonBrowseIn.TabIndex = 2; this.buttonBrowseIn.Text = "Browse"; this.buttonBrowseIn.UseVisualStyleBackColor = true; this.buttonBrowseIn.Click += new System.EventHandler(this.buttonBrowseIn_Click); // // labelOutputFile // labelOutputFile.AutoSize = true; labelOutputFile.Dock = System.Windows.Forms.DockStyle.Fill; labelOutputFile.Location = new System.Drawing.Point(3, 29); labelOutputFile.Name = "labelOutputFile"; labelOutputFile.Size = new System.Drawing.Size(63, 30); labelOutputFile.TabIndex = 0; labelOutputFile.Text = "Output file:"; labelOutputFile.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // textBoxOut // this.textBoxOut.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); this.textBoxOut.Location = new System.Drawing.Point(72, 34); this.textBoxOut.Name = "textBoxOut"; this.textBoxOut.Size = new System.Drawing.Size(835, 20); this.textBoxOut.TabIndex = 3; // // buttonBrowseOut // buttonBrowseOut.Dock = System.Windows.Forms.DockStyle.Fill; buttonBrowseOut.Location = new System.Drawing.Point(913, 32); buttonBrowseOut.Name = "buttonBrowseOut"; buttonBrowseOut.Size = new System.Drawing.Size(62, 24); buttonBrowseOut.TabIndex = 4; buttonBrowseOut.Text = "Browse"; buttonBrowseOut.UseVisualStyleBackColor = true; buttonBrowseOut.Click += new System.EventHandler(this.buttonBrowseOut_Click); // // buttonGo // this.buttonGo.Dock = System.Windows.Forms.DockStyle.Fill; this.buttonGo.Enabled = false; this.buttonGo.Location = new System.Drawing.Point(981, 3); this.buttonGo.Name = "buttonGo"; tableMain.SetRowSpan(this.buttonGo, 2); this.buttonGo.Size = new System.Drawing.Size(71, 53); this.buttonGo.TabIndex = 5; this.buttonGo.Text = "Convert"; this.buttonGo.UseVisualStyleBackColor = true; this.buttonGo.Click += new System.EventHandler(this.buttonGo_Click); // // tabControlOptions // tabControlOptions.Controls.Add(tabProcessing); tabControlOptions.Controls.Add(tabEncoding); tabControlOptions.Controls.Add(tabAdvanced); tabControlOptions.Dock = System.Windows.Forms.DockStyle.Fill; tabControlOptions.Location = new System.Drawing.Point(3, 87); tabControlOptions.Name = "tabControlOptions"; tabControlOptions.SelectedIndex = 0; tabControlOptions.Size = new System.Drawing.Size(1061, 333); tabControlOptions.TabIndex = 1; // // tabProcessing // tabProcessing.Controls.Add(tableProcessing); tabProcessing.Location = new System.Drawing.Point(4, 22); tabProcessing.Name = "tabProcessing"; tabProcessing.Padding = new System.Windows.Forms.Padding(3); tabProcessing.Size = new System.Drawing.Size(1053, 307); tabProcessing.TabIndex = 3; tabProcessing.Text = "Processing"; // // tableProcessing // tableProcessing.ColumnCount = 1; tableProcessing.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); tableProcessing.Controls.Add(toolStripProcessing, 0, 0); tableProcessing.Controls.Add(panelProcessingInput, 0, 1); tableProcessing.Dock = System.Windows.Forms.DockStyle.Fill; tableProcessing.Location = new System.Drawing.Point(3, 3); tableProcessing.Name = "tableProcessing"; tableProcessing.RowCount = 2; tableProcessing.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F)); tableProcessing.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F)); tableProcessing.Size = new System.Drawing.Size(1047, 301); tableProcessing.TabIndex = 0; // // toolStripProcessing // toolStripProcessing.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden; toolStripProcessing.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.buttonTrim, this.buttonCrop, this.buttonResize, this.buttonSubtitle, this.buttonReverse, this.buttonOverlay, this.buttonCaption, this.boxAdvancedScripting, this.buttonExportProcessing, this.buttonPreview, this.buttonDub, this.buttonRate}); toolStripProcessing.Location = new System.Drawing.Point(0, 0); toolStripProcessing.Name = "toolStripProcessing"; toolStripProcessing.RenderMode = System.Windows.Forms.ToolStripRenderMode.System; toolStripProcessing.ShowItemToolTips = false; toolStripProcessing.Size = new System.Drawing.Size(1047, 25); toolStripProcessing.TabIndex = 0; toolStripProcessing.TabStop = true; // // buttonTrim // this.buttonTrim.AccessibleDescription = "Select a clip from your video."; this.buttonTrim.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.buttonMultipleTrim}); this.buttonTrim.Enabled = false; this.buttonTrim.Margin = new System.Windows.Forms.Padding(0, 1, 3, 2); this.buttonTrim.Name = "buttonTrim"; this.buttonTrim.Size = new System.Drawing.Size(48, 22); this.buttonTrim.Text = "Trim"; this.buttonTrim.ButtonClick += new System.EventHandler(this.buttonTrim_Click); this.buttonTrim.MouseEnter += new System.EventHandler(this.ToolStripItemTooltip); this.buttonTrim.MouseLeave += new System.EventHandler(this.clearToolTip); // // buttonMultipleTrim // this.buttonMultipleTrim.AccessibleDescription = "Select many clips from your video, and sort them on a timeline."; this.buttonMultipleTrim.Name = "buttonMultipleTrim"; this.buttonMultipleTrim.Size = new System.Drawing.Size(152, 22); this.buttonMultipleTrim.Text = "Multiple Trim"; this.buttonMultipleTrim.Click += new System.EventHandler(this.buttonMultipleTrim_Click); this.buttonMultipleTrim.MouseEnter += new System.EventHandler(this.ToolStripItemTooltip); this.buttonMultipleTrim.MouseLeave += new System.EventHandler(this.clearToolTip); // // buttonCrop // this.buttonCrop.AccessibleDescription = "Crop your video into a smaller frame."; this.buttonCrop.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; this.buttonCrop.Enabled = false; this.buttonCrop.Name = "buttonCrop"; this.buttonCrop.Size = new System.Drawing.Size(37, 22); this.buttonCrop.Text = "Crop"; this.buttonCrop.Click += new System.EventHandler(this.buttonCrop_Click); this.buttonCrop.MouseEnter += new System.EventHandler(this.ToolStripItemTooltip); this.buttonCrop.MouseLeave += new System.EventHandler(this.clearToolTip); // // buttonResize // this.buttonResize.AccessibleDescription = "Scale your video."; this.buttonResize.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; this.buttonResize.Enabled = false; this.buttonResize.Name = "buttonResize"; this.buttonResize.Size = new System.Drawing.Size(43, 22); this.buttonResize.Text = "Resize"; this.buttonResize.Click += new System.EventHandler(this.buttonResize_Click); this.buttonResize.MouseEnter += new System.EventHandler(this.ToolStripItemTooltip); this.buttonResize.MouseLeave += new System.EventHandler(this.clearToolTip); // // buttonSubtitle // this.buttonSubtitle.AccessibleDescription = "Burn subtitles into the video."; this.buttonSubtitle.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; this.buttonSubtitle.Enabled = false; this.buttonSubtitle.Name = "buttonSubtitle"; this.buttonSubtitle.Size = new System.Drawing.Size(56, 22); this.buttonSubtitle.Text = "Subtitles"; this.buttonSubtitle.Click += new System.EventHandler(this.buttonSubtitle_Click); this.buttonSubtitle.MouseEnter += new System.EventHandler(this.ToolStripItemTooltip); this.buttonSubtitle.MouseLeave += new System.EventHandler(this.clearToolTip); // // buttonReverse // this.buttonReverse.AccessibleDescription = "Everything is backwards!"; this.buttonReverse.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; this.buttonReverse.Enabled = false; this.buttonReverse.Name = "buttonReverse"; this.buttonReverse.Size = new System.Drawing.Size(51, 22); this.buttonReverse.Text = "Reverse"; this.buttonReverse.Click += new System.EventHandler(this.buttonReverse_Click); this.buttonReverse.MouseEnter += new System.EventHandler(this.ToolStripItemTooltip); this.buttonReverse.MouseLeave += new System.EventHandler(this.clearToolTip); // // buttonOverlay // this.buttonOverlay.AccessibleDescription = "Overlay a picture on top of your video."; this.buttonOverlay.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; this.buttonOverlay.Enabled = false; this.buttonOverlay.Name = "buttonOverlay"; this.buttonOverlay.Size = new System.Drawing.Size(51, 22); this.buttonOverlay.Text = "Overlay"; this.buttonOverlay.Click += new System.EventHandler(this.buttonOverlay_Click); this.buttonOverlay.MouseEnter += new System.EventHandler(this.ToolStripItemTooltip); this.buttonOverlay.MouseLeave += new System.EventHandler(this.clearToolTip); // // buttonCaption // this.buttonCaption.AccessibleDescription = "Add some funny text to your video."; this.buttonCaption.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; this.buttonCaption.Enabled = false; this.buttonCaption.Name = "buttonCaption"; this.buttonCaption.Size = new System.Drawing.Size(53, 22); this.buttonCaption.Text = "Caption"; this.buttonCaption.Click += new System.EventHandler(this.buttonCaption_Click); this.buttonCaption.MouseEnter += new System.EventHandler(this.ToolStripItemTooltip); this.buttonCaption.MouseLeave += new System.EventHandler(this.clearToolTip); // // boxAdvancedScripting // this.boxAdvancedScripting.AccessibleDescription = "Are you a bad enough dude? Take care, there is no way back. You will have to star" + "t over if you f**k up."; this.boxAdvancedScripting.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right; this.boxAdvancedScripting.Name = "boxAdvancedScripting"; this.boxAdvancedScripting.Size = new System.Drawing.Size(64, 22); this.boxAdvancedScripting.Text = "Advanced"; this.boxAdvancedScripting.Click += new System.EventHandler(this.boxAdvancedScripting_Click); this.boxAdvancedScripting.MouseEnter += new System.EventHandler(this.ToolStripItemTooltip); this.boxAdvancedScripting.MouseLeave += new System.EventHandler(this.clearToolTip); // // buttonExportProcessing // this.buttonExportProcessing.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right; this.buttonExportProcessing.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; this.buttonExportProcessing.Enabled = false; this.buttonExportProcessing.Image = ((System.Drawing.Image)(resources.GetObject("buttonExportProcessing.Image"))); this.buttonExportProcessing.ImageTransparentColor = System.Drawing.Color.Magenta; this.buttonExportProcessing.Name = "buttonExportProcessing"; this.buttonExportProcessing.Size = new System.Drawing.Size(44, 22); this.buttonExportProcessing.Text = "Export"; this.buttonExportProcessing.Click += new System.EventHandler(this.buttonExportProcessing_Click); // // buttonPreview // this.buttonPreview.AccessibleDescription = "Open a preview window that will loop your processing settings. Note that this doe" + "sn\'t reflect output encoding quality."; this.buttonPreview.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right; this.buttonPreview.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; this.buttonPreview.Enabled = false; this.buttonPreview.Name = "buttonPreview"; this.buttonPreview.Size = new System.Drawing.Size(84, 22); this.buttonPreview.Text = "Preview filters"; this.buttonPreview.Click += new System.EventHandler(this.buttonPreview_Click); this.buttonPreview.MouseEnter += new System.EventHandler(this.ToolStripItemTooltip); this.buttonPreview.MouseLeave += new System.EventHandler(this.clearToolTip); // // buttonDub // this.buttonDub.AccessibleDescription = "Add or replace the audio on your video."; this.buttonDub.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; this.buttonDub.Enabled = false; this.buttonDub.Name = "buttonDub"; this.buttonDub.Size = new System.Drawing.Size(33, 22); this.buttonDub.Text = "Dub"; this.buttonDub.Click += new System.EventHandler(this.buttonDub_Click); this.buttonDub.MouseEnter += new System.EventHandler(this.ToolStripItemTooltip); this.buttonDub.MouseLeave += new System.EventHandler(this.clearToolTip); // // panelProcessingInput // panelProcessingInput.Controls.Add(this.listViewProcessingScript); panelProcessingInput.Controls.Add(this.textBoxProcessingScript); panelProcessingInput.Dock = System.Windows.Forms.DockStyle.Fill; panelProcessingInput.Location = new System.Drawing.Point(0, 25); panelProcessingInput.Margin = new System.Windows.Forms.Padding(0); panelProcessingInput.Name = "panelProcessingInput"; panelProcessingInput.Size = new System.Drawing.Size(1047, 276); panelProcessingInput.TabIndex = 1; // // listViewProcessingScript // this.listViewProcessingScript.AccessibleDescription = "Double click a filter to edit it. Select a filter and press Delete to remove it."; this.listViewProcessingScript.Dock = System.Windows.Forms.DockStyle.Fill; this.listViewProcessingScript.LargeImageList = this.imageListFilters; this.listViewProcessingScript.Location = new System.Drawing.Point(0, 0); this.listViewProcessingScript.Margin = new System.Windows.Forms.Padding(0); this.listViewProcessingScript.Name = "listViewProcessingScript"; this.listViewProcessingScript.Size = new System.Drawing.Size(1047, 276); this.listViewProcessingScript.TabIndex = 3; this.listViewProcessingScript.UseCompatibleStateImageBehavior = false; this.listViewProcessingScript.ItemActivate += new System.EventHandler(this.listViewProcessingScript_ItemActivate); this.listViewProcessingScript.KeyUp += new System.Windows.Forms.KeyEventHandler(this.listViewProcessingScript_KeyUp); this.listViewProcessingScript.MouseEnter += new System.EventHandler(this.ControlTooltip); this.listViewProcessingScript.MouseLeave += new System.EventHandler(this.clearToolTip); // // imageListFilters // this.imageListFilters.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageListFilters.ImageStream"))); this.imageListFilters.TransparentColor = System.Drawing.Color.Transparent; this.imageListFilters.Images.SetKeyName(0, "Trim"); this.imageListFilters.Images.SetKeyName(1, "Crop"); this.imageListFilters.Images.SetKeyName(2, "Subtitles"); this.imageListFilters.Images.SetKeyName(3, "Reverse"); this.imageListFilters.Images.SetKeyName(4, "Resize"); this.imageListFilters.Images.SetKeyName(5, "Overlay"); this.imageListFilters.Images.SetKeyName(6, "Caption"); this.imageListFilters.Images.SetKeyName(7, "Dub"); this.imageListFilters.Images.SetKeyName(8, "Rate"); // // textBoxProcessingScript // this.textBoxProcessingScript.AcceptsReturn = true; this.textBoxProcessingScript.Dock = System.Windows.Forms.DockStyle.Fill; this.textBoxProcessingScript.Location = new System.Drawing.Point(0, 0); this.textBoxProcessingScript.Margin = new System.Windows.Forms.Padding(0); this.textBoxProcessingScript.Multiline = true; this.textBoxProcessingScript.Name = "textBoxProcessingScript"; this.textBoxProcessingScript.Size = new System.Drawing.Size(1047, 276); this.textBoxProcessingScript.TabIndex = 2; this.textBoxProcessingScript.Text = "# This is an AviSynth script. You may write advanced commands below, or just pres" + "s the buttons above for smooth sailing."; this.textBoxProcessingScript.Visible = false; this.textBoxProcessingScript.Leave += new System.EventHandler(this.textBoxProcessingScript_Leave); // // tabEncoding // tabEncoding.BackColor = System.Drawing.SystemColors.Control; tabEncoding.Controls.Add(tableEncoding); tabEncoding.Location = new System.Drawing.Point(4, 22); tabEncoding.Name = "tabEncoding"; tabEncoding.Padding = new System.Windows.Forms.Padding(3); tabEncoding.Size = new System.Drawing.Size(1053, 307); tabEncoding.TabIndex = 0; tabEncoding.Text = "Encoding"; // // tableEncoding // tableEncoding.ColumnCount = 1; tableEncoding.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); tableEncoding.Controls.Add(groupEncodingGeneral, 0, 0); tableEncoding.Controls.Add(groupEncodingVideo, 0, 1); tableEncoding.Controls.Add(groupEncodingAudio, 0, 2); tableEncoding.Dock = System.Windows.Forms.DockStyle.Fill; tableEncoding.Location = new System.Drawing.Point(3, 3); tableEncoding.Name = "tableEncoding"; tableEncoding.RowCount = 4; tableEncoding.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 107F)); tableEncoding.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 107F)); tableEncoding.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 79F)); tableEncoding.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F)); tableEncoding.Size = new System.Drawing.Size(1047, 301); tableEncoding.TabIndex = 0; // // groupEncodingGeneral // groupEncodingGeneral.Controls.Add(tableEncodingGeneral); groupEncodingGeneral.Dock = System.Windows.Forms.DockStyle.Fill; groupEncodingGeneral.Location = new System.Drawing.Point(3, 3); groupEncodingGeneral.Name = "groupEncodingGeneral"; groupEncodingGeneral.Size = new System.Drawing.Size(1041, 101); groupEncodingGeneral.TabIndex = 1; groupEncodingGeneral.TabStop = false; groupEncodingGeneral.Text = "General"; // // tableEncodingGeneral // tableEncodingGeneral.ColumnCount = 5; tableEncodingGeneral.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 79F)); tableEncodingGeneral.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 88F)); tableEncodingGeneral.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 60F)); tableEncodingGeneral.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 248F)); tableEncodingGeneral.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); tableEncodingGeneral.Controls.Add(this.buttonVariableDefault, 2, 2); tableEncodingGeneral.Controls.Add(labelGeneralModeVariableHint, 3, 2); tableEncodingGeneral.Controls.Add(labelGeneralModeConstantHint, 3, 1); tableEncodingGeneral.Controls.Add(labelGeneralMode, 0, 1); tableEncodingGeneral.Controls.Add(labelGeneralTitle, 0, 0); tableEncodingGeneral.Controls.Add(this.boxTitle, 1, 0); tableEncodingGeneral.Controls.Add(labelGeneralTitleHint, 4, 0); tableEncodingGeneral.Controls.Add(this.boxConstant, 1, 1); tableEncodingGeneral.Controls.Add(this.boxVariable, 1, 2); tableEncodingGeneral.Controls.Add(this.buttonConstantDefault, 2, 1); tableEncodingGeneral.Dock = System.Windows.Forms.DockStyle.Fill; tableEncodingGeneral.Location = new System.Drawing.Point(3, 16); tableEncodingGeneral.Name = "tableEncodingGeneral"; tableEncodingGeneral.RowCount = 3; tableEncodingGeneral.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 28F)); tableEncodingGeneral.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 28F)); tableEncodingGeneral.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 28F)); tableEncodingGeneral.Size = new System.Drawing.Size(1035, 82); tableEncodingGeneral.TabIndex = 0; // // buttonVariableDefault // this.buttonVariableDefault.Dock = System.Windows.Forms.DockStyle.Fill; this.buttonVariableDefault.Location = new System.Drawing.Point(170, 59); this.buttonVariableDefault.Name = "buttonVariableDefault"; this.buttonVariableDefault.Size = new System.Drawing.Size(54, 22); this.buttonVariableDefault.TabIndex = 5; this.buttonVariableDefault.Text = "Default"; this.buttonVariableDefault.UseVisualStyleBackColor = true; this.buttonVariableDefault.Visible = false; this.buttonVariableDefault.Click += new System.EventHandler(this.buttonVariableDefault_Click); // // labelGeneralModeVariableHint // labelGeneralModeVariableHint.AutoSize = true; tableEncodingGeneral.SetColumnSpan(labelGeneralModeVariableHint, 2); labelGeneralModeVariableHint.Dock = System.Windows.Forms.DockStyle.Fill; labelGeneralModeVariableHint.Location = new System.Drawing.Point(230, 56); labelGeneralModeVariableHint.Name = "labelGeneralModeVariableHint"; labelGeneralModeVariableHint.Size = new System.Drawing.Size(802, 28); labelGeneralModeVariableHint.TabIndex = 0; labelGeneralModeVariableHint.Text = "This will make your video get the size it deserves to look good."; labelGeneralModeVariableHint.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // labelGeneralModeConstantHint // labelGeneralModeConstantHint.AutoSize = true; tableEncodingGeneral.SetColumnSpan(labelGeneralModeConstantHint, 2); labelGeneralModeConstantHint.Dock = System.Windows.Forms.DockStyle.Fill; labelGeneralModeConstantHint.Location = new System.Drawing.Point(230, 28); labelGeneralModeConstantHint.Name = "labelGeneralModeConstantHint"; labelGeneralModeConstantHint.Size = new System.Drawing.Size(802, 28); labelGeneralModeConstantHint.TabIndex = 0; labelGeneralModeConstantHint.Text = "This will make your video have a specific filesize, and suffer lower quality to m" + "atch that size."; labelGeneralModeConstantHint.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // labelGeneralMode // labelGeneralMode.AutoSize = true; labelGeneralMode.Dock = System.Windows.Forms.DockStyle.Fill; labelGeneralMode.Location = new System.Drawing.Point(3, 28); labelGeneralMode.Name = "labelGeneralMode"; labelGeneralMode.Size = new System.Drawing.Size(73, 28); labelGeneralMode.TabIndex = 0; labelGeneralMode.Text = "Mode:"; labelGeneralMode.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // labelGeneralTitle // labelGeneralTitle.AutoSize = true; labelGeneralTitle.Dock = System.Windows.Forms.DockStyle.Fill; labelGeneralTitle.Location = new System.Drawing.Point(3, 0); labelGeneralTitle.Name = "labelGeneralTitle"; labelGeneralTitle.Size = new System.Drawing.Size(73, 28); labelGeneralTitle.TabIndex = 0; labelGeneralTitle.Text = "Title:"; labelGeneralTitle.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // boxTitle // this.boxTitle.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); tableEncodingGeneral.SetColumnSpan(this.boxTitle, 3); this.boxTitle.Location = new System.Drawing.Point(82, 4); this.boxTitle.Name = "boxTitle"; this.boxTitle.Size = new System.Drawing.Size(390, 20); this.boxTitle.TabIndex = 1; this.boxTitle.TextChanged += new System.EventHandler(this.UpdateArguments); // // labelGeneralTitleHint // labelGeneralTitleHint.AutoSize = true; labelGeneralTitleHint.Dock = System.Windows.Forms.DockStyle.Fill; labelGeneralTitleHint.Location = new System.Drawing.Point(478, 0); labelGeneralTitleHint.Name = "labelGeneralTitleHint"; labelGeneralTitleHint.Size = new System.Drawing.Size(554, 28); labelGeneralTitleHint.TabIndex = 0; labelGeneralTitleHint.Text = "Adds a string of text to the metadata of the video, which can be used to indicate" + " the source of a video, for example. Leave blank for no title."; labelGeneralTitleHint.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // boxConstant // this.boxConstant.AutoSize = true; this.boxConstant.Checked = true; this.boxConstant.Dock = System.Windows.Forms.DockStyle.Fill; this.boxConstant.Location = new System.Drawing.Point(82, 31); this.boxConstant.Name = "boxConstant"; this.boxConstant.Size = new System.Drawing.Size(82, 22); this.boxConstant.TabIndex = 2; this.boxConstant.TabStop = true; this.boxConstant.Text = "Constant"; this.boxConstant.UseVisualStyleBackColor = true; this.boxConstant.CheckedChanged += new System.EventHandler(this.boxConstant_CheckedChanged); // // boxVariable // this.boxVariable.AutoSize = true; this.boxVariable.Dock = System.Windows.Forms.DockStyle.Fill; this.boxVariable.Location = new System.Drawing.Point(82, 59); this.boxVariable.Name = "boxVariable"; this.boxVariable.Size = new System.Drawing.Size(82, 22); this.boxVariable.TabIndex = 3; this.boxVariable.Text = "Variable"; this.boxVariable.UseVisualStyleBackColor = true; this.boxVariable.CheckedChanged += new System.EventHandler(this.boxVariable_CheckedChanged); // // buttonConstantDefault // this.buttonConstantDefault.Dock = System.Windows.Forms.DockStyle.Fill; this.buttonConstantDefault.Location = new System.Drawing.Point(170, 31); this.buttonConstantDefault.Name = "buttonConstantDefault"; this.buttonConstantDefault.Size = new System.Drawing.Size(54, 22); this.buttonConstantDefault.TabIndex = 4; this.buttonConstantDefault.Text = "Default"; this.buttonConstantDefault.UseVisualStyleBackColor = true; this.buttonConstantDefault.Visible = false; this.buttonConstantDefault.Click += new System.EventHandler(this.buttonConstantDefault_Click); // // groupEncodingVideo // groupEncodingVideo.Controls.Add(this.tableLayoutPanelEncodingVideo); groupEncodingVideo.Dock = System.Windows.Forms.DockStyle.Fill; groupEncodingVideo.Location = new System.Drawing.Point(3, 110); groupEncodingVideo.Name = "groupEncodingVideo"; groupEncodingVideo.Size = new System.Drawing.Size(1041, 101); groupEncodingVideo.TabIndex = 2; groupEncodingVideo.TabStop = false; groupEncodingVideo.Text = "Video"; // // tableLayoutPanelEncodingVideo // this.tableLayoutPanelEncodingVideo.ColumnCount = 4; this.tableLayoutPanelEncodingVideo.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 79F)); this.tableLayoutPanelEncodingVideo.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 118F)); this.tableLayoutPanelEncodingVideo.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 30F)); this.tableLayoutPanelEncodingVideo.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); this.tableLayoutPanelEncodingVideo.Controls.Add(panelEncodingModeSwapper, 0, 1); this.tableLayoutPanelEncodingVideo.Controls.Add(this.boxHQ, 0, 0); this.tableLayoutPanelEncodingVideo.Controls.Add(labelVideoHQHint, 3, 0); this.tableLayoutPanelEncodingVideo.Dock = System.Windows.Forms.DockStyle.Fill; this.tableLayoutPanelEncodingVideo.Location = new System.Drawing.Point(3, 16); this.tableLayoutPanelEncodingVideo.Name = "tableLayoutPanelEncodingVideo"; this.tableLayoutPanelEncodingVideo.RowCount = 3; this.tableLayoutPanelEncodingVideo.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 28F)); this.tableLayoutPanelEncodingVideo.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 28F)); this.tableLayoutPanelEncodingVideo.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 28F)); this.tableLayoutPanelEncodingVideo.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F)); this.tableLayoutPanelEncodingVideo.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F)); this.tableLayoutPanelEncodingVideo.Size = new System.Drawing.Size(1035, 82); this.tableLayoutPanelEncodingVideo.TabIndex = 0; // // panelEncodingModeSwapper // this.tableLayoutPanelEncodingVideo.SetColumnSpan(panelEncodingModeSwapper, 4); panelEncodingModeSwapper.Controls.Add(this.tableVideoConstantOptions); panelEncodingModeSwapper.Controls.Add(this.tableVideoVariableOptions); panelEncodingModeSwapper.Dock = System.Windows.Forms.DockStyle.Fill; panelEncodingModeSwapper.Location = new System.Drawing.Point(0, 28); panelEncodingModeSwapper.Margin = new System.Windows.Forms.Padding(0); panelEncodingModeSwapper.Name = "panelEncodingModeSwapper"; this.tableLayoutPanelEncodingVideo.SetRowSpan(panelEncodingModeSwapper, 2); panelEncodingModeSwapper.Size = new System.Drawing.Size(1035, 56); panelEncodingModeSwapper.TabIndex = 2; // // tableVideoConstantOptions // this.tableVideoConstantOptions.ColumnCount = 4; this.tableVideoConstantOptions.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 79F)); this.tableVideoConstantOptions.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 118F)); this.tableVideoConstantOptions.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 30F)); this.tableVideoConstantOptions.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); this.tableVideoConstantOptions.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 20F)); this.tableVideoConstantOptions.Controls.Add(labelVideoSizeLimit, 0, 0); this.tableVideoConstantOptions.Controls.Add(this.boxLimit, 1, 0); this.tableVideoConstantOptions.Controls.Add(labelVideoSizeLimitUnit, 2, 0); this.tableVideoConstantOptions.Controls.Add(labelVideoSizeLimitHint, 3, 0); this.tableVideoConstantOptions.Controls.Add(labelVideoBitrate, 0, 1); this.tableVideoConstantOptions.Controls.Add(this.boxBitrate, 1, 1); this.tableVideoConstantOptions.Controls.Add(labelVideoBitrateUnit, 2, 1); this.tableVideoConstantOptions.Controls.Add(labelVideoBitrateHint, 3, 1); this.tableVideoConstantOptions.Dock = System.Windows.Forms.DockStyle.Fill; this.tableVideoConstantOptions.Location = new System.Drawing.Point(0, 0); this.tableVideoConstantOptions.Margin = new System.Windows.Forms.Padding(0); this.tableVideoConstantOptions.Name = "tableVideoConstantOptions"; this.tableVideoConstantOptions.RowCount = 2; this.tableVideoConstantOptions.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 28F)); this.tableVideoConstantOptions.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 28F)); this.tableVideoConstantOptions.Size = new System.Drawing.Size(1035, 56); this.tableVideoConstantOptions.TabIndex = 0; // // labelVideoSizeLimit // labelVideoSizeLimit.AutoSize = true; labelVideoSizeLimit.Dock = System.Windows.Forms.DockStyle.Fill; labelVideoSizeLimit.Location = new System.Drawing.Point(3, 0); labelVideoSizeLimit.Name = "labelVideoSizeLimit"; labelVideoSizeLimit.Size = new System.Drawing.Size(73, 28); labelVideoSizeLimit.TabIndex = 0; labelVideoSizeLimit.Text = "Size limit:"; labelVideoSizeLimit.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // boxLimit // this.boxLimit.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); this.boxLimit.Location = new System.Drawing.Point(82, 4); this.boxLimit.Margin = new System.Windows.Forms.Padding(3, 3, 0, 3); this.boxLimit.Name = "boxLimit"; this.boxLimit.Size = new System.Drawing.Size(115, 20); this.boxLimit.TabIndex = 1; this.boxLimit.TextChanged += new System.EventHandler(this.UpdateArguments); this.boxLimit.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBoxNumbersOnly); // // labelVideoSizeLimitUnit // labelVideoSizeLimitUnit.AutoSize = true; labelVideoSizeLimitUnit.Dock = System.Windows.Forms.DockStyle.Fill; labelVideoSizeLimitUnit.Location = new System.Drawing.Point(197, 0); labelVideoSizeLimitUnit.Margin = new System.Windows.Forms.Padding(0); labelVideoSizeLimitUnit.Name = "labelVideoSizeLimitUnit"; labelVideoSizeLimitUnit.Size = new System.Drawing.Size(30, 28); labelVideoSizeLimitUnit.TabIndex = 0; labelVideoSizeLimitUnit.Text = "MiB"; labelVideoSizeLimitUnit.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // labelVideoSizeLimitHint // labelVideoSizeLimitHint.AutoSize = true; labelVideoSizeLimitHint.Dock = System.Windows.Forms.DockStyle.Fill; labelVideoSizeLimitHint.Location = new System.Drawing.Point(230, 0); labelVideoSizeLimitHint.Name = "labelVideoSizeLimitHint"; labelVideoSizeLimitHint.Size = new System.Drawing.Size(802, 28); labelVideoSizeLimitHint.TabIndex = 0; labelVideoSizeLimitHint.Text = "Will adjust the quality to attempt to stay below this limit, and cut off the end " + "of a video if needed. Leave blank for no limit. The limit on 4chan is 3 MB."; labelVideoSizeLimitHint.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // labelVideoBitrate // labelVideoBitrate.AutoSize = true; labelVideoBitrate.Dock = System.Windows.Forms.DockStyle.Fill; labelVideoBitrate.Location = new System.Drawing.Point(3, 28); labelVideoBitrate.Name = "labelVideoBitrate"; labelVideoBitrate.Size = new System.Drawing.Size(73, 28); labelVideoBitrate.TabIndex = 0; labelVideoBitrate.Text = "Bitrate:"; labelVideoBitrate.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // boxBitrate // this.boxBitrate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); this.boxBitrate.Location = new System.Drawing.Point(82, 32); this.boxBitrate.Margin = new System.Windows.Forms.Padding(3, 3, 0, 3); this.boxBitrate.Name = "boxBitrate"; this.boxBitrate.Size = new System.Drawing.Size(115, 20); this.boxBitrate.TabIndex = 2; this.boxBitrate.TextChanged += new System.EventHandler(this.UpdateArguments); this.boxBitrate.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBoxNumbersOnly); // // labelVideoBitrateUnit // labelVideoBitrateUnit.AutoSize = true; labelVideoBitrateUnit.Dock = System.Windows.Forms.DockStyle.Fill; labelVideoBitrateUnit.Location = new System.Drawing.Point(197, 28); labelVideoBitrateUnit.Margin = new System.Windows.Forms.Padding(0); labelVideoBitrateUnit.Name = "labelVideoBitrateUnit"; labelVideoBitrateUnit.Size = new System.Drawing.Size(30, 28); labelVideoBitrateUnit.TabIndex = 0; labelVideoBitrateUnit.Text = "Kb/s"; labelVideoBitrateUnit.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // labelVideoBitrateHint // labelVideoBitrateHint.AutoSize = true; labelVideoBitrateHint.Dock = System.Windows.Forms.DockStyle.Fill; labelVideoBitrateHint.Location = new System.Drawing.Point(230, 28); labelVideoBitrateHint.Name = "labelVideoBitrateHint"; labelVideoBitrateHint.Size = new System.Drawing.Size(802, 28); labelVideoBitrateHint.TabIndex = 0; labelVideoBitrateHint.Text = "Determines the quality of the video. Keep blank to let the program pick one based" + " on size limit and duration."; labelVideoBitrateHint.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // tableVideoVariableOptions // this.tableVideoVariableOptions.ColumnCount = 4; this.tableVideoVariableOptions.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 79F)); this.tableVideoVariableOptions.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 118F)); this.tableVideoVariableOptions.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 30F)); this.tableVideoVariableOptions.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); this.tableVideoVariableOptions.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 20F)); this.tableVideoVariableOptions.Controls.Add(labelVideoCrf, 0, 0); this.tableVideoVariableOptions.Controls.Add(this.numericCrf, 1, 0); this.tableVideoVariableOptions.Controls.Add(labelVideoCrfHint, 3, 0); this.tableVideoVariableOptions.Controls.Add(labelVideoCrfTolerance, 0, 1); this.tableVideoVariableOptions.Controls.Add(this.numericCrfTolerance, 1, 1); this.tableVideoVariableOptions.Controls.Add(labelVideoCrfToleranceHint, 4, 1); this.tableVideoVariableOptions.Dock = System.Windows.Forms.DockStyle.Fill; this.tableVideoVariableOptions.Location = new System.Drawing.Point(0, 0); this.tableVideoVariableOptions.Margin = new System.Windows.Forms.Padding(0); this.tableVideoVariableOptions.Name = "tableVideoVariableOptions"; this.tableVideoVariableOptions.RowCount = 2; this.tableVideoVariableOptions.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 28F)); this.tableVideoVariableOptions.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 28F)); this.tableVideoVariableOptions.Size = new System.Drawing.Size(1035, 56); this.tableVideoVariableOptions.TabIndex = 0; // // labelVideoCrf // labelVideoCrf.AutoSize = true; labelVideoCrf.Dock = System.Windows.Forms.DockStyle.Fill; labelVideoCrf.Location = new System.Drawing.Point(3, 0); labelVideoCrf.Name = "labelVideoCrf"; labelVideoCrf.Size = new System.Drawing.Size(73, 28); labelVideoCrf.TabIndex = 0; labelVideoCrf.Text = "CRF:"; labelVideoCrf.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // numericCrf // this.tableVideoVariableOptions.SetColumnSpan(this.numericCrf, 2); this.numericCrf.Dock = System.Windows.Forms.DockStyle.Fill; this.numericCrf.Location = new System.Drawing.Point(82, 3); this.numericCrf.Maximum = new decimal(new int[] { 63, 0, 0, 0}); this.numericCrf.Name = "numericCrf"; this.numericCrf.Size = new System.Drawing.Size(142, 20); this.numericCrf.TabIndex = 1; this.numericCrf.TabStop = false; this.numericCrf.Value = new decimal(new int[] { 10, 0, 0, 0}); this.numericCrf.ValueChanged += new System.EventHandler(this.UpdateArguments); // // labelVideoCrfHint // labelVideoCrfHint.AutoSize = true; labelVideoCrfHint.Dock = System.Windows.Forms.DockStyle.Fill; labelVideoCrfHint.Location = new System.Drawing.Point(230, 0); labelVideoCrfHint.Name = "labelVideoCrfHint"; labelVideoCrfHint.Size = new System.Drawing.Size(802, 28); labelVideoCrfHint.TabIndex = 0; labelVideoCrfHint.Text = "The constant rate factor of the video determines what level of quality the video " + "should get."; labelVideoCrfHint.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // labelVideoCrfTolerance // labelVideoCrfTolerance.AutoSize = true; labelVideoCrfTolerance.Dock = System.Windows.Forms.DockStyle.Fill; labelVideoCrfTolerance.Location = new System.Drawing.Point(3, 28); labelVideoCrfTolerance.Name = "labelVideoCrfTolerance"; labelVideoCrfTolerance.Size = new System.Drawing.Size(73, 28); labelVideoCrfTolerance.TabIndex = 0; labelVideoCrfTolerance.Text = "Tolerance:"; labelVideoCrfTolerance.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // numericCrfTolerance // this.tableVideoVariableOptions.SetColumnSpan(this.numericCrfTolerance, 2); this.numericCrfTolerance.Dock = System.Windows.Forms.DockStyle.Fill; this.numericCrfTolerance.Location = new System.Drawing.Point(82, 31); this.numericCrfTolerance.Maximum = new decimal(new int[] { 63, 0, 0, 0}); this.numericCrfTolerance.Name = "numericCrfTolerance"; this.numericCrfTolerance.Size = new System.Drawing.Size(142, 20); this.numericCrfTolerance.TabIndex = 2; this.numericCrfTolerance.TabStop = false; this.numericCrfTolerance.Value = new decimal(new int[] { 20, 0, 0, 0}); this.numericCrfTolerance.ValueChanged += new System.EventHandler(this.UpdateArguments); // // labelVideoCrfToleranceHint // labelVideoCrfToleranceHint.AutoSize = true; labelVideoCrfToleranceHint.Dock = System.Windows.Forms.DockStyle.Fill; labelVideoCrfToleranceHint.Location = new System.Drawing.Point(230, 28); labelVideoCrfToleranceHint.Name = "labelVideoCrfToleranceHint"; labelVideoCrfToleranceHint.Size = new System.Drawing.Size(802, 28); labelVideoCrfToleranceHint.TabIndex = 0; labelVideoCrfToleranceHint.Text = "This value determines how far the encoder is allowed to stray from the CRF value " + "in order to not waste too many bits on some frames."; labelVideoCrfToleranceHint.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // boxHQ // this.boxHQ.AutoSize = true; this.boxHQ.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; this.tableLayoutPanelEncodingVideo.SetColumnSpan(this.boxHQ, 3); this.boxHQ.Dock = System.Windows.Forms.DockStyle.Fill; this.boxHQ.Location = new System.Drawing.Point(6, 3); this.boxHQ.Margin = new System.Windows.Forms.Padding(6, 3, 6, 3); this.boxHQ.Name = "boxHQ"; this.boxHQ.Size = new System.Drawing.Size(215, 22); this.boxHQ.TabIndex = 1; this.boxHQ.Text = "Enable high quality mode:"; this.boxHQ.TextAlign = System.Drawing.ContentAlignment.MiddleRight; this.boxHQ.UseVisualStyleBackColor = true; this.boxHQ.CheckedChanged += new System.EventHandler(this.UpdateArguments); // // labelVideoHQHint // labelVideoHQHint.AutoSize = true; labelVideoHQHint.Dock = System.Windows.Forms.DockStyle.Fill; labelVideoHQHint.Location = new System.Drawing.Point(230, 0); labelVideoHQHint.Name = "labelVideoHQHint"; labelVideoHQHint.Size = new System.Drawing.Size(802, 28); labelVideoHQHint.TabIndex = 0; labelVideoHQHint.Text = "Enables two-pass encoding and adds some extra encoding arguments, increasing outp" + "ut quality, but increases the time it takes to encode your file."; labelVideoHQHint.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // groupEncodingAudio // groupEncodingAudio.Controls.Add(tableEncodingAudio); groupEncodingAudio.Dock = System.Windows.Forms.DockStyle.Fill; groupEncodingAudio.Location = new System.Drawing.Point(3, 217); groupEncodingAudio.Name = "groupEncodingAudio"; groupEncodingAudio.Size = new System.Drawing.Size(1041, 73); groupEncodingAudio.TabIndex = 3; groupEncodingAudio.TabStop = false; groupEncodingAudio.Text = "Audio"; // // tableEncodingAudio // tableEncodingAudio.ColumnCount = 5; tableEncodingAudio.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 79F)); tableEncodingAudio.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 88F)); tableEncodingAudio.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 30F)); tableEncodingAudio.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 30F)); tableEncodingAudio.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); tableEncodingAudio.Controls.Add(this.buttonAudioEnabledDefault, 2, 0); tableEncodingAudio.Controls.Add(this.boxAudio, 0, 0); tableEncodingAudio.Controls.Add(labelAudioHint, 4, 0); tableEncodingAudio.Controls.Add(panelEncodingModeSwapperTwo, 0, 1); tableEncodingAudio.Dock = System.Windows.Forms.DockStyle.Fill; tableEncodingAudio.Location = new System.Drawing.Point(3, 16); tableEncodingAudio.Margin = new System.Windows.Forms.Padding(0); tableEncodingAudio.Name = "tableEncodingAudio"; tableEncodingAudio.RowCount = 2; tableEncodingAudio.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 28F)); tableEncodingAudio.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 28F)); tableEncodingAudio.Size = new System.Drawing.Size(1035, 54); tableEncodingAudio.TabIndex = 0; // // buttonAudioEnabledDefault // tableEncodingAudio.SetColumnSpan(this.buttonAudioEnabledDefault, 2); this.buttonAudioEnabledDefault.Dock = System.Windows.Forms.DockStyle.Fill; this.buttonAudioEnabledDefault.Location = new System.Drawing.Point(170, 3); this.buttonAudioEnabledDefault.Name = "buttonAudioEnabledDefault"; this.buttonAudioEnabledDefault.Size = new System.Drawing.Size(54, 22); this.buttonAudioEnabledDefault.TabIndex = 6; this.buttonAudioEnabledDefault.Text = "Default"; this.buttonAudioEnabledDefault.UseVisualStyleBackColor = true; this.buttonAudioEnabledDefault.Visible = false; this.buttonAudioEnabledDefault.Click += new System.EventHandler(this.buttonAudioEnabledDefault_Click); // // boxAudio // this.boxAudio.AutoSize = true; this.boxAudio.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; tableEncodingAudio.SetColumnSpan(this.boxAudio, 2); this.boxAudio.Dock = System.Windows.Forms.DockStyle.Fill; this.boxAudio.Location = new System.Drawing.Point(6, 3); this.boxAudio.Margin = new System.Windows.Forms.Padding(6, 3, 6, 3); this.boxAudio.Name = "boxAudio"; this.boxAudio.Size = new System.Drawing.Size(155, 22); this.boxAudio.TabIndex = 1; this.boxAudio.Text = "Enable audio:"; this.boxAudio.TextAlign = System.Drawing.ContentAlignment.MiddleRight; this.boxAudio.UseVisualStyleBackColor = true; this.boxAudio.CheckedChanged += new System.EventHandler(this.boxAudio_CheckedChanged); // // labelAudioHint // labelAudioHint.AutoSize = true; labelAudioHint.Dock = System.Windows.Forms.DockStyle.Fill; labelAudioHint.Location = new System.Drawing.Point(230, 0); labelAudioHint.Name = "labelAudioHint"; labelAudioHint.Size = new System.Drawing.Size(802, 28); labelAudioHint.TabIndex = 0; labelAudioHint.Text = "Do you want a WebM with sound? You found the setting for it."; labelAudioHint.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // panelEncodingModeSwapperTwo // tableEncodingAudio.SetColumnSpan(panelEncodingModeSwapperTwo, 5); panelEncodingModeSwapperTwo.Controls.Add(this.tableAudioConstantOptions); panelEncodingModeSwapperTwo.Controls.Add(this.tableAudioVariableOptions); panelEncodingModeSwapperTwo.Dock = System.Windows.Forms.DockStyle.Fill; panelEncodingModeSwapperTwo.Location = new System.Drawing.Point(0, 28); panelEncodingModeSwapperTwo.Margin = new System.Windows.Forms.Padding(0); panelEncodingModeSwapperTwo.Name = "panelEncodingModeSwapperTwo"; panelEncodingModeSwapperTwo.Size = new System.Drawing.Size(1035, 28); panelEncodingModeSwapperTwo.TabIndex = 2; // // tableAudioConstantOptions // this.tableAudioConstantOptions.ColumnCount = 4; this.tableAudioConstantOptions.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 79F)); this.tableAudioConstantOptions.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 118F)); this.tableAudioConstantOptions.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 30F)); this.tableAudioConstantOptions.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); this.tableAudioConstantOptions.Controls.Add(labelAudioBitrate, 0, 0); this.tableAudioConstantOptions.Controls.Add(this.boxAudioBitrate, 1, 0); this.tableAudioConstantOptions.Controls.Add(labelAudioBitrateUnit, 2, 0); this.tableAudioConstantOptions.Controls.Add(labelAudioBitrateHint, 4, 0); this.tableAudioConstantOptions.Dock = System.Windows.Forms.DockStyle.Fill; this.tableAudioConstantOptions.Location = new System.Drawing.Point(0, 0); this.tableAudioConstantOptions.Margin = new System.Windows.Forms.Padding(0); this.tableAudioConstantOptions.Name = "tableAudioConstantOptions"; this.tableAudioConstantOptions.RowCount = 1; this.tableAudioConstantOptions.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F)); this.tableAudioConstantOptions.Size = new System.Drawing.Size(1035, 28); this.tableAudioConstantOptions.TabIndex = 0; // // labelAudioBitrate // labelAudioBitrate.AutoSize = true; labelAudioBitrate.Dock = System.Windows.Forms.DockStyle.Fill; labelAudioBitrate.Location = new System.Drawing.Point(3, 0); labelAudioBitrate.Name = "labelAudioBitrate"; labelAudioBitrate.Size = new System.Drawing.Size(73, 28); labelAudioBitrate.TabIndex = 0; labelAudioBitrate.Text = "Bitrate:"; labelAudioBitrate.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // boxAudioBitrate // this.boxAudioBitrate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); this.boxAudioBitrate.Enabled = false; this.boxAudioBitrate.Location = new System.Drawing.Point(82, 4); this.boxAudioBitrate.Margin = new System.Windows.Forms.Padding(3, 3, 0, 3); this.boxAudioBitrate.Name = "boxAudioBitrate"; this.boxAudioBitrate.Size = new System.Drawing.Size(115, 20); this.boxAudioBitrate.TabIndex = 1; this.boxAudioBitrate.TextChanged += new System.EventHandler(this.UpdateArguments); this.boxAudioBitrate.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBoxNumbersOnly); // // labelAudioBitrateUnit // labelAudioBitrateUnit.AutoSize = true; labelAudioBitrateUnit.Dock = System.Windows.Forms.DockStyle.Fill; labelAudioBitrateUnit.Location = new System.Drawing.Point(197, 0); labelAudioBitrateUnit.Margin = new System.Windows.Forms.Padding(0); labelAudioBitrateUnit.Name = "labelAudioBitrateUnit"; labelAudioBitrateUnit.Size = new System.Drawing.Size(30, 28); labelAudioBitrateUnit.TabIndex = 0; labelAudioBitrateUnit.Text = "Kb/s"; labelAudioBitrateUnit.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // labelAudioBitrateHint // labelAudioBitrateHint.AutoSize = true; labelAudioBitrateHint.Dock = System.Windows.Forms.DockStyle.Fill; labelAudioBitrateHint.Location = new System.Drawing.Point(230, 0); labelAudioBitrateHint.Name = "labelAudioBitrateHint"; labelAudioBitrateHint.Size = new System.Drawing.Size(802, 28); labelAudioBitrateHint.TabIndex = 0; labelAudioBitrateHint.Text = "Determines the quality of the audio."; labelAudioBitrateHint.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // tableAudioVariableOptions // this.tableAudioVariableOptions.ColumnCount = 4; this.tableAudioVariableOptions.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 79F)); this.tableAudioVariableOptions.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 118F)); this.tableAudioVariableOptions.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 30F)); this.tableAudioVariableOptions.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); this.tableAudioVariableOptions.Controls.Add(labelAudioQuality, 0, 0); this.tableAudioVariableOptions.Controls.Add(this.numericAudioQuality, 1, 0); this.tableAudioVariableOptions.Controls.Add(labelAudioQualityHint, 4, 0); this.tableAudioVariableOptions.Dock = System.Windows.Forms.DockStyle.Fill; this.tableAudioVariableOptions.Location = new System.Drawing.Point(0, 0); this.tableAudioVariableOptions.Margin = new System.Windows.Forms.Padding(0); this.tableAudioVariableOptions.Name = "tableAudioVariableOptions"; this.tableAudioVariableOptions.RowCount = 1; this.tableAudioVariableOptions.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F)); this.tableAudioVariableOptions.Size = new System.Drawing.Size(1035, 28); this.tableAudioVariableOptions.TabIndex = 0; // // labelAudioQuality // labelAudioQuality.AutoSize = true; labelAudioQuality.Dock = System.Windows.Forms.DockStyle.Fill; labelAudioQuality.Location = new System.Drawing.Point(3, 0); labelAudioQuality.Name = "labelAudioQuality"; labelAudioQuality.Size = new System.Drawing.Size(73, 28); labelAudioQuality.TabIndex = 0; labelAudioQuality.Text = "Quality:"; labelAudioQuality.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // numericAudioQuality // this.tableAudioVariableOptions.SetColumnSpan(this.numericAudioQuality, 2); this.numericAudioQuality.Dock = System.Windows.Forms.DockStyle.Fill; this.numericAudioQuality.Enabled = false; this.numericAudioQuality.Location = new System.Drawing.Point(82, 3); this.numericAudioQuality.Maximum = new decimal(new int[] { 10, 0, 0, 0}); this.numericAudioQuality.Name = "numericAudioQuality"; this.numericAudioQuality.Size = new System.Drawing.Size(142, 20); this.numericAudioQuality.TabIndex = 1; this.numericAudioQuality.TabStop = false; this.numericAudioQuality.Value = new decimal(new int[] { 3, 0, 0, 0}); this.numericAudioQuality.ValueChanged += new System.EventHandler(this.UpdateArguments); // // labelAudioQualityHint // labelAudioQualityHint.AutoSize = true; labelAudioQualityHint.Dock = System.Windows.Forms.DockStyle.Fill; labelAudioQualityHint.Location = new System.Drawing.Point(230, 0); labelAudioQualityHint.Name = "labelAudioQualityHint"; labelAudioQualityHint.Size = new System.Drawing.Size(802, 28); labelAudioQualityHint.TabIndex = 0; labelAudioQualityHint.Text = "Determines the average quality of the audio. 10 is the highest quality."; labelAudioQualityHint.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // tabAdvanced // tabAdvanced.AutoScroll = true; tabAdvanced.BackColor = System.Drawing.SystemColors.Control; tabAdvanced.Controls.Add(tableAdvanced); tabAdvanced.Location = new System.Drawing.Point(4, 22); tabAdvanced.Name = "tabAdvanced"; tabAdvanced.Padding = new System.Windows.Forms.Padding(3); tabAdvanced.Size = new System.Drawing.Size(1053, 307); tabAdvanced.TabIndex = 4; tabAdvanced.Text = "Advanced"; // // tableAdvanced // tableAdvanced.ColumnCount = 1; tableAdvanced.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); tableAdvanced.Controls.Add(labelAdvancedWarning, 0, 0); tableAdvanced.Controls.Add(groupAdvancedProcessing, 0, 1); tableAdvanced.Controls.Add(groupAdvancedEncoding, 0, 2); tableAdvanced.Dock = System.Windows.Forms.DockStyle.Fill; tableAdvanced.Location = new System.Drawing.Point(3, 3); tableAdvanced.Name = "tableAdvanced"; tableAdvanced.RowCount = 4; tableAdvanced.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 28F)); tableAdvanced.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 107F)); tableAdvanced.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 163F)); tableAdvanced.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F)); tableAdvanced.Size = new System.Drawing.Size(1047, 301); tableAdvanced.TabIndex = 1; // // labelAdvancedWarning // labelAdvancedWarning.AutoSize = true; tableAdvanced.SetColumnSpan(labelAdvancedWarning, 3); labelAdvancedWarning.Dock = System.Windows.Forms.DockStyle.Fill; labelAdvancedWarning.Location = new System.Drawing.Point(3, 3); labelAdvancedWarning.Margin = new System.Windows.Forms.Padding(3); labelAdvancedWarning.Name = "labelAdvancedWarning"; labelAdvancedWarning.Size = new System.Drawing.Size(1041, 22); labelAdvancedWarning.TabIndex = 0; labelAdvancedWarning.Text = "Do not modify these settings unless you are 100% sure you know what you\'re doing." + ""; labelAdvancedWarning.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // groupAdvancedProcessing // groupAdvancedProcessing.Controls.Add(tableAdvancedProcessing); groupAdvancedProcessing.Dock = System.Windows.Forms.DockStyle.Fill; groupAdvancedProcessing.Location = new System.Drawing.Point(3, 31); groupAdvancedProcessing.Name = "groupAdvancedProcessing"; groupAdvancedProcessing.Size = new System.Drawing.Size(1041, 101); groupAdvancedProcessing.TabIndex = 1; groupAdvancedProcessing.TabStop = false; groupAdvancedProcessing.Text = "Processing"; // // tableAdvancedProcessing // tableAdvancedProcessing.ColumnCount = 3; tableAdvancedProcessing.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 79F)); tableAdvancedProcessing.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 148F)); tableAdvancedProcessing.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); tableAdvancedProcessing.Controls.Add(labelProcessingLevels, 0, 0); tableAdvancedProcessing.Controls.Add(this.comboLevels, 1, 0); tableAdvancedProcessing.Controls.Add(labelProcessingLevelsHint, 2, 0); tableAdvancedProcessing.Controls.Add(this.boxDeinterlace, 0, 1); tableAdvancedProcessing.Controls.Add(labelProcessingDeinterlaceHint, 2, 1); tableAdvancedProcessing.Controls.Add(this.boxDenoise, 0, 2); tableAdvancedProcessing.Controls.Add(labelProcessingDenoiseHint, 2, 2); tableAdvancedProcessing.Dock = System.Windows.Forms.DockStyle.Fill; tableAdvancedProcessing.Location = new System.Drawing.Point(3, 16); tableAdvancedProcessing.Name = "tableAdvancedProcessing"; tableAdvancedProcessing.RowCount = 3; tableAdvancedProcessing.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 28F)); tableAdvancedProcessing.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 28F)); tableAdvancedProcessing.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 28F)); tableAdvancedProcessing.Size = new System.Drawing.Size(1035, 82); tableAdvancedProcessing.TabIndex = 1; // // labelProcessingLevels // labelProcessingLevels.AutoSize = true; labelProcessingLevels.Dock = System.Windows.Forms.DockStyle.Fill; labelProcessingLevels.Location = new System.Drawing.Point(3, 0); labelProcessingLevels.Name = "labelProcessingLevels"; labelProcessingLevels.Size = new System.Drawing.Size(73, 28); labelProcessingLevels.TabIndex = 0; labelProcessingLevels.Text = "Color levels:"; labelProcessingLevels.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // comboLevels // this.comboLevels.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); this.comboLevels.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboLevels.Items.AddRange(new object[] { "Leave them alone", "Expand (TV -> PC)", "Contract (PC -> TV)"}); this.comboLevels.Location = new System.Drawing.Point(82, 3); this.comboLevels.Name = "comboLevels"; this.comboLevels.Size = new System.Drawing.Size(142, 21); this.comboLevels.TabIndex = 1; this.comboLevels.SelectedIndexChanged += new System.EventHandler(this.comboLevels_SelectedIndexChanged); // // labelProcessingLevelsHint // labelProcessingLevelsHint.AutoSize = true; labelProcessingLevelsHint.Dock = System.Windows.Forms.DockStyle.Fill; labelProcessingLevelsHint.Location = new System.Drawing.Point(230, 0); labelProcessingLevelsHint.Name = "labelProcessingLevelsHint"; labelProcessingLevelsHint.Size = new System.Drawing.Size(802, 28); labelProcessingLevelsHint.TabIndex = 0; labelProcessingLevelsHint.Text = "If your video looks either too dark or too light, this may be the fault of the in" + "put color range being whack. You can manually fix this by using this option."; labelProcessingLevelsHint.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // boxDeinterlace // this.boxDeinterlace.AutoSize = true; this.boxDeinterlace.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; tableAdvancedProcessing.SetColumnSpan(this.boxDeinterlace, 2); this.boxDeinterlace.Dock = System.Windows.Forms.DockStyle.Fill; this.boxDeinterlace.Location = new System.Drawing.Point(3, 31); this.boxDeinterlace.Name = "boxDeinterlace"; this.boxDeinterlace.Size = new System.Drawing.Size(221, 22); this.boxDeinterlace.TabIndex = 2; this.boxDeinterlace.Text = "Deinterlace:"; this.boxDeinterlace.TextAlign = System.Drawing.ContentAlignment.MiddleRight; this.boxDeinterlace.UseVisualStyleBackColor = true; this.boxDeinterlace.CheckedChanged += new System.EventHandler(this.boxDeinterlace_CheckedChanged); // // labelProcessingDeinterlaceHint // labelProcessingDeinterlaceHint.AutoSize = true; labelProcessingDeinterlaceHint.Dock = System.Windows.Forms.DockStyle.Fill; labelProcessingDeinterlaceHint.Location = new System.Drawing.Point(230, 28); labelProcessingDeinterlaceHint.Name = "labelProcessingDeinterlaceHint"; labelProcessingDeinterlaceHint.Size = new System.Drawing.Size(802, 28); labelProcessingDeinterlaceHint.TabIndex = 0; labelProcessingDeinterlaceHint.Text = "Attempt to deinterlace an interlaced input video."; labelProcessingDeinterlaceHint.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // boxDenoise // this.boxDenoise.AutoSize = true; this.boxDenoise.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; tableAdvancedProcessing.SetColumnSpan(this.boxDenoise, 2); this.boxDenoise.Dock = System.Windows.Forms.DockStyle.Fill; this.boxDenoise.Location = new System.Drawing.Point(3, 59); this.boxDenoise.Name = "boxDenoise"; this.boxDenoise.Size = new System.Drawing.Size(221, 22); this.boxDenoise.TabIndex = 3; this.boxDenoise.Text = "Denoise:"; this.boxDenoise.TextAlign = System.Drawing.ContentAlignment.MiddleRight; this.boxDenoise.UseVisualStyleBackColor = true; this.boxDenoise.CheckedChanged += new System.EventHandler(this.boxDenoise_CheckedChanged); // // labelProcessingDenoiseHint // labelProcessingDenoiseHint.AutoSize = true; labelProcessingDenoiseHint.Dock = System.Windows.Forms.DockStyle.Fill; labelProcessingDenoiseHint.Location = new System.Drawing.Point(230, 56); labelProcessingDenoiseHint.Name = "labelProcessingDenoiseHint"; labelProcessingDenoiseHint.Size = new System.Drawing.Size(802, 28); labelProcessingDenoiseHint.TabIndex = 0; labelProcessingDenoiseHint.Text = "Denoise the video, resulting in less detailed video but more bang for your buck w" + "hen it comes to bitrate."; labelProcessingDenoiseHint.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // groupAdvancedEncoding // groupAdvancedEncoding.AutoSize = true; groupAdvancedEncoding.Controls.Add(tableAdvancedEncoding); groupAdvancedEncoding.Dock = System.Windows.Forms.DockStyle.Fill; groupAdvancedEncoding.Location = new System.Drawing.Point(3, 138); groupAdvancedEncoding.Name = "groupAdvancedEncoding"; groupAdvancedEncoding.Size = new System.Drawing.Size(1041, 157); groupAdvancedEncoding.TabIndex = 2; groupAdvancedEncoding.TabStop = false; groupAdvancedEncoding.Text = "Encoding"; // // tableAdvancedEncoding // tableAdvancedEncoding.ColumnCount = 4; tableAdvancedEncoding.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 79F)); tableAdvancedEncoding.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 118F)); tableAdvancedEncoding.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 30F)); tableAdvancedEncoding.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); tableAdvancedEncoding.Controls.Add(this.boxFrameRate, 1, 2); tableAdvancedEncoding.Controls.Add(labelEncodingFrameRateHint, 3, 2); tableAdvancedEncoding.Controls.Add(labelEncodingFrameRate, 0, 2); tableAdvancedEncoding.Controls.Add(labelEncodingNGOVHint, 3, 3); tableAdvancedEncoding.Controls.Add(this.boxNGOV, 0, 3); tableAdvancedEncoding.Controls.Add(labelEncodingThreads, 0, 0); tableAdvancedEncoding.Controls.Add(this.trackThreads, 1, 0); tableAdvancedEncoding.Controls.Add(this.labelThreads, 2, 0); tableAdvancedEncoding.Controls.Add(labelEncodingThreadsHint, 3, 0); tableAdvancedEncoding.Controls.Add(labelEncodingSlices, 0, 1); tableAdvancedEncoding.Controls.Add(this.trackSlices, 1, 1); tableAdvancedEncoding.Controls.Add(this.labelSlices, 2, 1); tableAdvancedEncoding.Controls.Add(labelEncodingSlicesHint, 3, 1); tableAdvancedEncoding.Controls.Add(labelEncodingArguments, 0, 4); tableAdvancedEncoding.Controls.Add(this.boxArguments, 1, 4); tableAdvancedEncoding.Dock = System.Windows.Forms.DockStyle.Fill; tableAdvancedEncoding.Location = new System.Drawing.Point(3, 16); tableAdvancedEncoding.Name = "tableAdvancedEncoding"; tableAdvancedEncoding.RowCount = 5; tableAdvancedEncoding.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 28F)); tableAdvancedEncoding.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 28F)); tableAdvancedEncoding.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 28F)); tableAdvancedEncoding.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 28F)); tableAdvancedEncoding.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 28F)); tableAdvancedEncoding.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F)); tableAdvancedEncoding.Size = new System.Drawing.Size(1035, 138); tableAdvancedEncoding.TabIndex = 0; // // boxFrameRate // this.boxFrameRate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); tableAdvancedEncoding.SetColumnSpan(this.boxFrameRate, 2); this.boxFrameRate.Location = new System.Drawing.Point(82, 60); this.boxFrameRate.Margin = new System.Windows.Forms.Padding(3, 3, 0, 3); this.boxFrameRate.Name = "boxFrameRate"; this.boxFrameRate.Size = new System.Drawing.Size(145, 20); this.boxFrameRate.TabIndex = 8; this.boxFrameRate.TextChanged += new System.EventHandler(this.UpdateArguments); this.boxFrameRate.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBoxNumbersOnly); // // labelEncodingFrameRateHint // labelEncodingFrameRateHint.AutoSize = true; labelEncodingFrameRateHint.Dock = System.Windows.Forms.DockStyle.Fill; labelEncodingFrameRateHint.Location = new System.Drawing.Point(230, 56); labelEncodingFrameRateHint.Name = "labelEncodingFrameRateHint"; labelEncodingFrameRateHint.Size = new System.Drawing.Size(802, 28); labelEncodingFrameRateHint.TabIndex = 7; labelEncodingFrameRateHint.Text = "If you want to change the frame rate of your video, input your desired frame rate" + " here. Keep blank to leave the frame rate alone."; labelEncodingFrameRateHint.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // labelEncodingFrameRate // labelEncodingFrameRate.AutoSize = true; labelEncodingFrameRate.Dock = System.Windows.Forms.DockStyle.Fill; labelEncodingFrameRate.Location = new System.Drawing.Point(3, 56); labelEncodingFrameRate.Name = "labelEncodingFrameRate"; labelEncodingFrameRate.Size = new System.Drawing.Size(73, 28); labelEncodingFrameRate.TabIndex = 6; labelEncodingFrameRate.Text = "Frame rate:"; labelEncodingFrameRate.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // labelEncodingNGOVHint // labelEncodingNGOVHint.AutoSize = true; labelEncodingNGOVHint.Dock = System.Windows.Forms.DockStyle.Fill; labelEncodingNGOVHint.Location = new System.Drawing.Point(230, 84); labelEncodingNGOVHint.Name = "labelEncodingNGOVHint"; labelEncodingNGOVHint.Size = new System.Drawing.Size(802, 28); labelEncodingNGOVHint.TabIndex = 0; labelEncodingNGOVHint.Text = "Use the next-gen VP9/Opus encoders instead of the standard VP8/Vorbis. Will resul" + "t in extremely long encoding times and less compatibility.\r\nKeep this disabled u" + "ntil Moot allows VP9 WebMs."; labelEncodingNGOVHint.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // boxNGOV // this.boxNGOV.AutoSize = true; this.boxNGOV.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; tableAdvancedEncoding.SetColumnSpan(this.boxNGOV, 3); this.boxNGOV.Dock = System.Windows.Forms.DockStyle.Fill; this.boxNGOV.Location = new System.Drawing.Point(3, 87); this.boxNGOV.Name = "boxNGOV"; this.boxNGOV.Size = new System.Drawing.Size(221, 22); this.boxNGOV.TabIndex = 4; this.boxNGOV.Text = "VP9/Opus:"; this.boxNGOV.TextAlign = System.Drawing.ContentAlignment.MiddleRight; this.boxNGOV.UseVisualStyleBackColor = true; this.boxNGOV.CheckedChanged += new System.EventHandler(this.boxNGOV_CheckedChanged); // // labelEncodingThreads // labelEncodingThreads.AutoSize = true; labelEncodingThreads.Dock = System.Windows.Forms.DockStyle.Fill; labelEncodingThreads.Location = new System.Drawing.Point(3, 0); labelEncodingThreads.Name = "labelEncodingThreads"; labelEncodingThreads.Size = new System.Drawing.Size(73, 28); labelEncodingThreads.TabIndex = 0; labelEncodingThreads.Text = "Threads:"; labelEncodingThreads.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // trackThreads // this.trackThreads.Dock = System.Windows.Forms.DockStyle.Fill; this.trackThreads.Location = new System.Drawing.Point(79, 0); this.trackThreads.Margin = new System.Windows.Forms.Padding(0); this.trackThreads.Maximum = 16; this.trackThreads.Minimum = 1; this.trackThreads.Name = "trackThreads"; this.trackThreads.Size = new System.Drawing.Size(118, 28); this.trackThreads.TabIndex = 1; this.trackThreads.Value = 1; this.trackThreads.ValueChanged += new System.EventHandler(this.trackThreads_ValueChanged); // // labelThreads // this.labelThreads.AutoSize = true; this.labelThreads.Dock = System.Windows.Forms.DockStyle.Fill; this.labelThreads.Location = new System.Drawing.Point(197, 0); this.labelThreads.Margin = new System.Windows.Forms.Padding(0); this.labelThreads.Name = "labelThreads"; this.labelThreads.Size = new System.Drawing.Size(30, 28); this.labelThreads.TabIndex = 0; this.labelThreads.Text = "1"; this.labelThreads.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // labelEncodingThreadsHint // labelEncodingThreadsHint.AutoSize = true; labelEncodingThreadsHint.Dock = System.Windows.Forms.DockStyle.Fill; labelEncodingThreadsHint.Location = new System.Drawing.Point(230, 0); labelEncodingThreadsHint.Name = "labelEncodingThreadsHint"; labelEncodingThreadsHint.Size = new System.Drawing.Size(802, 28); labelEncodingThreadsHint.TabIndex = 0; labelEncodingThreadsHint.Text = "Determines amount of threads ffmpeg uses. Try setting this to 1 if ffmpeg.exe cra" + "shes as soon as you click Convert."; labelEncodingThreadsHint.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // labelEncodingSlices // labelEncodingSlices.AutoSize = true; labelEncodingSlices.Dock = System.Windows.Forms.DockStyle.Fill; labelEncodingSlices.Location = new System.Drawing.Point(3, 28); labelEncodingSlices.Name = "labelEncodingSlices"; labelEncodingSlices.Size = new System.Drawing.Size(73, 28); labelEncodingSlices.TabIndex = 0; labelEncodingSlices.Text = "Slices:"; labelEncodingSlices.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // trackSlices // this.trackSlices.Dock = System.Windows.Forms.DockStyle.Fill; this.trackSlices.Location = new System.Drawing.Point(79, 28); this.trackSlices.Margin = new System.Windows.Forms.Padding(0); this.trackSlices.Maximum = 4; this.trackSlices.Minimum = 1; this.trackSlices.Name = "trackSlices"; this.trackSlices.Size = new System.Drawing.Size(118, 28); this.trackSlices.TabIndex = 2; this.trackSlices.Value = 1; this.trackSlices.ValueChanged += new System.EventHandler(this.trackSlices_ValueChanged); // // labelSlices // this.labelSlices.AutoSize = true; this.labelSlices.Dock = System.Windows.Forms.DockStyle.Fill; this.labelSlices.Location = new System.Drawing.Point(197, 28); this.labelSlices.Margin = new System.Windows.Forms.Padding(0); this.labelSlices.Name = "labelSlices"; this.labelSlices.Size = new System.Drawing.Size(30, 28); this.labelSlices.TabIndex = 0; this.labelSlices.Text = "1"; this.labelSlices.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // labelEncodingSlicesHint // labelEncodingSlicesHint.AutoSize = true; labelEncodingSlicesHint.Dock = System.Windows.Forms.DockStyle.Fill; labelEncodingSlicesHint.Location = new System.Drawing.Point(230, 28); labelEncodingSlicesHint.Name = "labelEncodingSlicesHint"; labelEncodingSlicesHint.Size = new System.Drawing.Size(802, 28); labelEncodingSlicesHint.TabIndex = 0; labelEncodingSlicesHint.Text = "Split frames into slices before encoding them. Results in a higher quality per fr" + "ame. 4 slices is standard for 720p resolutions."; labelEncodingSlicesHint.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // labelEncodingArguments // labelEncodingArguments.AutoSize = true; labelEncodingArguments.Dock = System.Windows.Forms.DockStyle.Fill; labelEncodingArguments.ImageAlign = System.Drawing.ContentAlignment.MiddleRight; labelEncodingArguments.Location = new System.Drawing.Point(3, 112); labelEncodingArguments.Name = "labelEncodingArguments"; labelEncodingArguments.Size = new System.Drawing.Size(73, 28); labelEncodingArguments.TabIndex = 0; labelEncodingArguments.Text = "Arguments:"; labelEncodingArguments.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // boxArguments // this.boxArguments.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); tableAdvancedEncoding.SetColumnSpan(this.boxArguments, 3); this.boxArguments.Location = new System.Drawing.Point(82, 116); this.boxArguments.Name = "boxArguments"; this.boxArguments.Size = new System.Drawing.Size(950, 20); this.boxArguments.TabIndex = 5; // // statusStrip // statusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.toolStripStatusLabel}); statusStrip.Location = new System.Drawing.Point(3, 424); statusStrip.Name = "statusStrip"; statusStrip.Size = new System.Drawing.Size(1067, 22); statusStrip.SizingGrip = false; statusStrip.TabIndex = 6; // // toolStripStatusLabel // this.toolStripStatusLabel.Name = "toolStripStatusLabel"; this.toolStripStatusLabel.Size = new System.Drawing.Size(1052, 17); this.toolStripStatusLabel.Spring = true; this.toolStripStatusLabel.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // panelContainTheProgressBar // this.panelContainTheProgressBar.Anchor = System.Windows.Forms.AnchorStyles.None; this.panelContainTheProgressBar.AutoSize = true; this.panelContainTheProgressBar.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; this.panelContainTheProgressBar.BackColor = System.Drawing.SystemColors.Control; this.panelContainTheProgressBar.Controls.Add(this.boxIndexingProgressDetails); this.panelContainTheProgressBar.Controls.Add(this.boxIndexingProgress); this.panelContainTheProgressBar.Controls.Add(this.labelIndexingProgress); this.panelContainTheProgressBar.Controls.Add(this.progressBarIndexing); this.panelContainTheProgressBar.Location = new System.Drawing.Point(299, 148); this.panelContainTheProgressBar.Name = "panelContainTheProgressBar"; this.panelContainTheProgressBar.Size = new System.Drawing.Size(469, 205); this.panelContainTheProgressBar.TabIndex = 0; // // boxIndexingProgressDetails // this.boxIndexingProgressDetails.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.boxIndexingProgressDetails.Appearance = System.Windows.Forms.Appearance.Button; this.boxIndexingProgressDetails.AutoSize = true; this.boxIndexingProgressDetails.Location = new System.Drawing.Point(414, 5); this.boxIndexingProgressDetails.Name = "boxIndexingProgressDetails"; this.boxIndexingProgressDetails.Size = new System.Drawing.Size(49, 23); this.boxIndexingProgressDetails.TabIndex = 1; this.boxIndexingProgressDetails.Text = "Details"; this.boxIndexingProgressDetails.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.boxIndexingProgressDetails.UseVisualStyleBackColor = true; this.boxIndexingProgressDetails.CheckedChanged += new System.EventHandler(this.boxIndexingProgressDetails_CheckedChanged); // // boxIndexingProgress // this.boxIndexingProgress.BackColor = System.Drawing.SystemColors.ControlLightLight; this.boxIndexingProgress.Location = new System.Drawing.Point(6, 61); this.boxIndexingProgress.Margin = new System.Windows.Forms.Padding(3, 3, 3, 6); this.boxIndexingProgress.Multiline = true; this.boxIndexingProgress.Name = "boxIndexingProgress"; this.boxIndexingProgress.ReadOnly = true; this.boxIndexingProgress.Size = new System.Drawing.Size(457, 138); this.boxIndexingProgress.TabIndex = 0; this.boxIndexingProgress.Visible = false; // // labelIndexingProgress // this.labelIndexingProgress.BackColor = System.Drawing.Color.Transparent; this.labelIndexingProgress.Location = new System.Drawing.Point(4, 5); this.labelIndexingProgress.Name = "labelIndexingProgress"; this.labelIndexingProgress.Size = new System.Drawing.Size(460, 23); this.labelIndexingProgress.TabIndex = 1; this.labelIndexingProgress.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // // progressBarIndexing // this.progressBarIndexing.Location = new System.Drawing.Point(6, 32); this.progressBarIndexing.Margin = new System.Windows.Forms.Padding(6); this.progressBarIndexing.Name = "progressBarIndexing"; this.progressBarIndexing.Size = new System.Drawing.Size(457, 23); this.progressBarIndexing.Style = System.Windows.Forms.ProgressBarStyle.Marquee; this.progressBarIndexing.TabIndex = 0; this.progressBarIndexing.Value = 30; // // panelHideTheOptions // this.panelHideTheOptions.BackColor = System.Drawing.SystemColors.ControlDark; this.panelHideTheOptions.Controls.Add(this.panelContainTheProgressBar); this.panelHideTheOptions.Location = new System.Drawing.Point(3, 88); this.panelHideTheOptions.Name = "panelHideTheOptions"; this.panelHideTheOptions.Size = new System.Drawing.Size(1067, 356); this.panelHideTheOptions.TabIndex = 3; // // buttonRate // this.buttonRate.AccessibleDescription = "Speed up or slow down your video."; this.buttonRate.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; this.buttonRate.Enabled = false; this.buttonRate.Name = "buttonRate"; this.buttonRate.Size = new System.Drawing.Size(78, 22); this.buttonRate.Text = "Change Rate"; this.buttonRate.Click += new System.EventHandler(this.buttonRate_Click); this.buttonRate.MouseEnter += new System.EventHandler(this.ToolStripItemTooltip); this.buttonRate.MouseLeave += new System.EventHandler(this.clearToolTip); // // MainForm // this.AcceptButton = this.buttonGo; this.AllowDrop = true; this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(1073, 446); this.Controls.Add(statusStrip); this.Controls.Add(tableMainForm); this.Controls.Add(this.panelHideTheOptions); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D; this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.MaximizeBox = false; this.MinimumSize = new System.Drawing.Size(975, 270); this.Name = "MainForm"; this.Padding = new System.Windows.Forms.Padding(3, 3, 3, 0); this.Text = "WebM for Gits"; this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainForm_FormClosing); this.Load += new System.EventHandler(this.MainForm_Load); this.Shown += new System.EventHandler(this.MainForm_Shown); this.DragDrop += new System.Windows.Forms.DragEventHandler(this.HandleDragDrop); this.DragEnter += new System.Windows.Forms.DragEventHandler(this.HandleDragEnter); tableMainForm.ResumeLayout(false); groupMain.ResumeLayout(false); tableMain.ResumeLayout(false); tableMain.PerformLayout(); tabControlOptions.ResumeLayout(false); tabProcessing.ResumeLayout(false); tableProcessing.ResumeLayout(false); tableProcessing.PerformLayout(); toolStripProcessing.ResumeLayout(false); toolStripProcessing.PerformLayout(); panelProcessingInput.ResumeLayout(false); panelProcessingInput.PerformLayout(); tabEncoding.ResumeLayout(false); tableEncoding.ResumeLayout(false); groupEncodingGeneral.ResumeLayout(false); tableEncodingGeneral.ResumeLayout(false); tableEncodingGeneral.PerformLayout(); groupEncodingVideo.ResumeLayout(false); this.tableLayoutPanelEncodingVideo.ResumeLayout(false); this.tableLayoutPanelEncodingVideo.PerformLayout(); panelEncodingModeSwapper.ResumeLayout(false); this.tableVideoConstantOptions.ResumeLayout(false); this.tableVideoConstantOptions.PerformLayout(); this.tableVideoVariableOptions.ResumeLayout(false); this.tableVideoVariableOptions.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.numericCrf)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.numericCrfTolerance)).EndInit(); groupEncodingAudio.ResumeLayout(false); tableEncodingAudio.ResumeLayout(false); tableEncodingAudio.PerformLayout(); panelEncodingModeSwapperTwo.ResumeLayout(false); this.tableAudioConstantOptions.ResumeLayout(false); this.tableAudioConstantOptions.PerformLayout(); this.tableAudioVariableOptions.ResumeLayout(false); this.tableAudioVariableOptions.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.numericAudioQuality)).EndInit(); tabAdvanced.ResumeLayout(false); tableAdvanced.ResumeLayout(false); tableAdvanced.PerformLayout(); groupAdvancedProcessing.ResumeLayout(false); tableAdvancedProcessing.ResumeLayout(false); tableAdvancedProcessing.PerformLayout(); groupAdvancedEncoding.ResumeLayout(false); tableAdvancedEncoding.ResumeLayout(false); tableAdvancedEncoding.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.trackThreads)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.trackSlices)).EndInit(); statusStrip.ResumeLayout(false); statusStrip.PerformLayout(); this.panelContainTheProgressBar.ResumeLayout(false); this.panelContainTheProgressBar.PerformLayout(); this.panelHideTheOptions.ResumeLayout(false); this.panelHideTheOptions.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 MenuStrip; System.Windows.Forms.ToolStripMenuItem MenuItemFile; TC.WinForms.Controls.TToolStripCommandMenuItem MenuItemNew; TC.WinForms.Commands.ApplicationCommand NewDocumentCommand; TC.WinForms.Controls.TToolStripCommandMenuItem MenuItemOpen; System.Windows.Forms.ToolStripSeparator SeparatorMenuFile1; TC.WinForms.Controls.TToolStripCommandMenuItem MenuItemSave; TC.WinForms.Controls.TToolStripCommandMenuItem MenuItemSaveAs; System.Windows.Forms.ToolStripSeparator SeparatorMenuFile2; TC.WinForms.Controls.TToolStripCommandMenuItem MenuItemRun; TC.WinForms.Controls.TToolStripCommandMenuItem MenuItemStop; System.Windows.Forms.ToolStripSeparator SeparatorMenuFile3; TC.WinForms.Controls.TToolStripCommandMenuItem MenuItemClose; System.Windows.Forms.ToolStripMenuItem MenuItemEdit; TC.WinForms.Controls.TToolStripCommandMenuItem MenuItemUndo; TC.WinForms.Controls.TToolStripCommandMenuItem MenuItemRedo; System.Windows.Forms.ToolStripSeparator SeparatorMenuEdit1; TC.WinForms.Controls.TToolStripCommandMenuItem MenuItemCut; TC.WinForms.Controls.TToolStripCommandMenuItem MenuItemCopy; TC.WinForms.Controls.TToolStripCommandMenuItem MenuItemPaste; TC.WinForms.Controls.TToolStripCommandMenuItem MenuItemDelete; System.Windows.Forms.ToolStripSeparator SeparatorMenuEdit2; TC.WinForms.Controls.TToolStripCommandMenuItem MenuItemSelectAll; System.Windows.Forms.StatusStrip StatusStrip; System.Windows.Forms.ToolStrip ToolStrip; TC.WinForms.Controls.TToolStripCommandButton ButtonNew; TC.WinForms.Controls.TToolStripCommandButton ButtonOpen; TC.WinForms.Controls.TToolStripCommandButton ButtonSave; System.Windows.Forms.ToolStripSeparator SeparatorToolStrip1; TC.WinForms.Controls.TToolStripCommandButton ButtonCut; TC.WinForms.Controls.TToolStripCommandButton ButtonCopy; TC.WinForms.Controls.TToolStripCommandButton ButtonPaste; System.Windows.Forms.ToolStripSeparator SeparatorToolStrip2; TC.WinForms.Controls.TToolStripCommandButton ButtonUndo; TC.WinForms.Controls.TToolStripCommandButton ButtonRedo; System.Windows.Forms.ToolStripSeparator SeparatorToolStrip3; TC.WinForms.Controls.TToolStripCommandButton ButtonRun; TC.WinForms.Controls.TToolStripCommandButton ButtonStop; TC.WinForms.Controls.TToolStripCommandButton ButtonInfo; TC.WinForms.Commands.ApplicationCommand LanguageGuideCommand; System.Windows.Forms.ToolStripMenuItem MenuItemHelp; TC.WinForms.Controls.TToolStripCommandMenuItem MenuItemLanguageGuide; TC.WinForms.Controls.TToolStripCommandMenuItem MenuItemAbout; System.Windows.Forms.ToolStripSeparator SeparatorMenuHelp1; this.RunCommand = new TC.WinForms.Commands.ApplicationCommand(); this.StopCommand = new TC.WinForms.Commands.ApplicationCommand(); this.CodeEditor = new TC.WinForms.Controls.TCodeEditor(); this.LabelStatus = new System.Windows.Forms.ToolStripStatusLabel(); this.LabelCurrentLine = new System.Windows.Forms.ToolStripStatusLabel(); this.LabelCurrentColumn = new System.Windows.Forms.ToolStripStatusLabel(); this.LabelOverwriteMode = new System.Windows.Forms.ToolStripStatusLabel(); MenuStrip = new System.Windows.Forms.MenuStrip(); MenuItemFile = new System.Windows.Forms.ToolStripMenuItem(); MenuItemNew = new TC.WinForms.Controls.TToolStripCommandMenuItem(); NewDocumentCommand = new TC.WinForms.Commands.ApplicationCommand(); MenuItemOpen = new TC.WinForms.Controls.TToolStripCommandMenuItem(); SeparatorMenuFile1 = new System.Windows.Forms.ToolStripSeparator(); MenuItemSave = new TC.WinForms.Controls.TToolStripCommandMenuItem(); MenuItemSaveAs = new TC.WinForms.Controls.TToolStripCommandMenuItem(); SeparatorMenuFile2 = new System.Windows.Forms.ToolStripSeparator(); MenuItemRun = new TC.WinForms.Controls.TToolStripCommandMenuItem(); MenuItemStop = new TC.WinForms.Controls.TToolStripCommandMenuItem(); SeparatorMenuFile3 = new System.Windows.Forms.ToolStripSeparator(); MenuItemClose = new TC.WinForms.Controls.TToolStripCommandMenuItem(); MenuItemEdit = new System.Windows.Forms.ToolStripMenuItem(); MenuItemUndo = new TC.WinForms.Controls.TToolStripCommandMenuItem(); MenuItemRedo = new TC.WinForms.Controls.TToolStripCommandMenuItem(); SeparatorMenuEdit1 = new System.Windows.Forms.ToolStripSeparator(); MenuItemCut = new TC.WinForms.Controls.TToolStripCommandMenuItem(); MenuItemCopy = new TC.WinForms.Controls.TToolStripCommandMenuItem(); MenuItemPaste = new TC.WinForms.Controls.TToolStripCommandMenuItem(); MenuItemDelete = new TC.WinForms.Controls.TToolStripCommandMenuItem(); SeparatorMenuEdit2 = new System.Windows.Forms.ToolStripSeparator(); MenuItemSelectAll = new TC.WinForms.Controls.TToolStripCommandMenuItem(); StatusStrip = new System.Windows.Forms.StatusStrip(); ToolStrip = new System.Windows.Forms.ToolStrip(); ButtonNew = new TC.WinForms.Controls.TToolStripCommandButton(); ButtonOpen = new TC.WinForms.Controls.TToolStripCommandButton(); ButtonSave = new TC.WinForms.Controls.TToolStripCommandButton(); SeparatorToolStrip1 = new System.Windows.Forms.ToolStripSeparator(); ButtonCut = new TC.WinForms.Controls.TToolStripCommandButton(); ButtonCopy = new TC.WinForms.Controls.TToolStripCommandButton(); ButtonPaste = new TC.WinForms.Controls.TToolStripCommandButton(); SeparatorToolStrip2 = new System.Windows.Forms.ToolStripSeparator(); ButtonUndo = new TC.WinForms.Controls.TToolStripCommandButton(); ButtonRedo = new TC.WinForms.Controls.TToolStripCommandButton(); SeparatorToolStrip3 = new System.Windows.Forms.ToolStripSeparator(); ButtonRun = new TC.WinForms.Controls.TToolStripCommandButton(); ButtonStop = new TC.WinForms.Controls.TToolStripCommandButton(); ButtonInfo = new TC.WinForms.Controls.TToolStripCommandButton(); LanguageGuideCommand = new TC.WinForms.Commands.ApplicationCommand(); MenuItemHelp = new System.Windows.Forms.ToolStripMenuItem(); MenuItemLanguageGuide = new TC.WinForms.Controls.TToolStripCommandMenuItem(); MenuItemAbout = new TC.WinForms.Controls.TToolStripCommandMenuItem(); SeparatorMenuHelp1 = new System.Windows.Forms.ToolStripSeparator(); MenuStrip.SuspendLayout(); StatusStrip.SuspendLayout(); ToolStrip.SuspendLayout(); this.SuspendLayout(); // // MenuStrip // MenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { MenuItemFile, MenuItemEdit, MenuItemHelp }); MenuStrip.Location = new System.Drawing.Point(0, 0); MenuStrip.Name = "MenuStrip"; MenuStrip.Padding = new System.Windows.Forms.Padding(0); MenuStrip.Size = new System.Drawing.Size(334, 24); MenuStrip.TabIndex = 0; // // MenuItemFile // MenuItemFile.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { MenuItemNew, MenuItemOpen, SeparatorMenuFile1, MenuItemSave, MenuItemSaveAs, SeparatorMenuFile2, MenuItemRun, MenuItemStop, SeparatorMenuFile3, MenuItemClose }); MenuItemFile.Name = "MenuItemFile"; MenuItemFile.Size = new System.Drawing.Size(37, 24); MenuItemFile.Text = "&File"; // // MenuItemNew // MenuItemNew.Command = NewDocumentCommand; MenuItemNew.Image = global::TC.Magneto.Shell.Properties.Resources.NewDocument; MenuItemNew.Name = "MenuItemNew"; MenuItemNew.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.N))); MenuItemNew.Size = new System.Drawing.Size(195, 22); MenuItemNew.Text = "&New"; // // NewDocumentCommand // NewDocumentCommand.Executed += new System.EventHandler(this.NewDocument); // // MenuItemOpen // MenuItemOpen.Command = this.LoadDocumentCommand; MenuItemOpen.Image = global::TC.Magneto.Shell.Properties.Resources.Open; MenuItemOpen.Name = "MenuItemOpen"; MenuItemOpen.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.O))); MenuItemOpen.Size = new System.Drawing.Size(195, 22); MenuItemOpen.Text = "&Open…"; // // SeparatorMenuFile1 // SeparatorMenuFile1.Name = "SeparatorMenuFile1"; SeparatorMenuFile1.Size = new System.Drawing.Size(192, 6); // // MenuItemSave // MenuItemSave.Command = this.SaveDocumentCommand; MenuItemSave.Image = global::TC.Magneto.Shell.Properties.Resources.Save; MenuItemSave.Name = "MenuItemSave"; MenuItemSave.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.S))); MenuItemSave.Size = new System.Drawing.Size(195, 22); MenuItemSave.Text = "&Save"; // // MenuItemSaveAs // MenuItemSaveAs.Command = this.SaveDocumentAsCommand; MenuItemSaveAs.Name = "MenuItemSaveAs"; MenuItemSaveAs.ShortcutKeys = ((System.Windows.Forms.Keys)(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Shift) | System.Windows.Forms.Keys.S))); MenuItemSaveAs.Size = new System.Drawing.Size(195, 22); MenuItemSaveAs.Text = "Save &As…"; // // SeparatorMenuFile2 // SeparatorMenuFile2.Name = "SeparatorMenuFile2"; SeparatorMenuFile2.Size = new System.Drawing.Size(192, 6); // // MenuItemRun // MenuItemRun.Command = this.RunCommand; MenuItemRun.Image = global::TC.Magneto.Shell.Properties.Resources.Play; MenuItemRun.Name = "MenuItemRun"; MenuItemRun.ShortcutKeys = System.Windows.Forms.Keys.F5; MenuItemRun.Size = new System.Drawing.Size(195, 22); MenuItemRun.Text = "&Run"; // // RunCommand // this.RunCommand.Executed += new System.EventHandler(this.Run); // // MenuItemStop // MenuItemStop.Command = this.StopCommand; MenuItemStop.Image = global::TC.Magneto.Shell.Properties.Resources.Stop; MenuItemStop.Name = "MenuItemStop"; MenuItemStop.Size = new System.Drawing.Size(195, 22); MenuItemStop.Text = "Stop"; // // StopCommand // this.StopCommand.CanExecute = false; this.StopCommand.Executed += new System.EventHandler(this.Stop); // // SeparatorMenuFile3 // SeparatorMenuFile3.Name = "SeparatorMenuFile3"; SeparatorMenuFile3.Size = new System.Drawing.Size(192, 6); // // MenuItemClose // MenuItemClose.Command = this.CloseCommand; MenuItemClose.Name = "MenuItemClose"; MenuItemClose.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Alt | System.Windows.Forms.Keys.F4))); MenuItemClose.Size = new System.Drawing.Size(195, 22); MenuItemClose.Text = "&Close"; // // MenuItemEdit // MenuItemEdit.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { MenuItemUndo, MenuItemRedo, SeparatorMenuEdit1, MenuItemCut, MenuItemCopy, MenuItemPaste, MenuItemDelete, SeparatorMenuEdit2, MenuItemSelectAll }); MenuItemEdit.Name = "MenuItemEdit"; MenuItemEdit.Size = new System.Drawing.Size(39, 24); MenuItemEdit.Text = "&Edit"; // // MenuItemUndo // MenuItemUndo.Command = this.CodeEditor.UndoCommand; MenuItemUndo.Image = global::TC.Magneto.Shell.Properties.Resources.Undo; MenuItemUndo.Name = "MenuItemUndo"; MenuItemUndo.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Z))); MenuItemUndo.Size = new System.Drawing.Size(164, 22); MenuItemUndo.Text = "&Undo"; // // CodeEditor // this.CodeEditor.BorderStyle = System.Windows.Forms.BorderStyle.None; this.CodeEditor.Dock = System.Windows.Forms.DockStyle.Fill; this.CodeEditor.FileDialogFilter = "Magneto Files (*.magneto)|*.magneto|All Files (*.*)|*.*"; this.CodeEditor.Location = new System.Drawing.Point(0, 49); this.CodeEditor.Name = "CodeEditor"; this.CodeEditor.Size = new System.Drawing.Size(334, 193); this.CodeEditor.TabIndex = 2; this.CodeEditor.Text = ""; this.CodeEditor.CurrentLineNumberChanged += new System.EventHandler(this.SetLabelCurrentLine); this.CodeEditor.OverwriteModeChanged += new System.EventHandler(this.SetLabelOverwriteMode); this.CodeEditor.CurrentColumnNumberChanged += new System.EventHandler(this.SetLabelCurrentColumn); // // MenuItemRedo // MenuItemRedo.Command = this.CodeEditor.RedoCommand; MenuItemRedo.Image = global::TC.Magneto.Shell.Properties.Resources.Redo; MenuItemRedo.Name = "MenuItemRedo"; MenuItemRedo.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Y))); MenuItemRedo.Size = new System.Drawing.Size(164, 22); MenuItemRedo.Text = "&Redo"; // // SeparatorMenuEdit1 // SeparatorMenuEdit1.Name = "SeparatorMenuEdit1"; SeparatorMenuEdit1.Size = new System.Drawing.Size(161, 6); // // MenuItemCut // MenuItemCut.Command = this.CodeEditor.CutCommand; MenuItemCut.Image = global::TC.Magneto.Shell.Properties.Resources.Cut; MenuItemCut.Name = "MenuItemCut"; MenuItemCut.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.X))); MenuItemCut.Size = new System.Drawing.Size(164, 22); MenuItemCut.Text = "Cu&t"; // // MenuItemCopy // MenuItemCopy.Command = this.CodeEditor.CopyCommand; MenuItemCopy.Image = global::TC.Magneto.Shell.Properties.Resources.Copy; MenuItemCopy.Name = "MenuItemCopy"; MenuItemCopy.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.C))); MenuItemCopy.Size = new System.Drawing.Size(164, 22); MenuItemCopy.Text = "&Copy"; // // MenuItemPaste // MenuItemPaste.Command = this.CodeEditor.PasteCommand; MenuItemPaste.Image = global::TC.Magneto.Shell.Properties.Resources.Paste; MenuItemPaste.Name = "MenuItemPaste"; MenuItemPaste.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.V))); MenuItemPaste.Size = new System.Drawing.Size(164, 22); MenuItemPaste.Text = "&Paste"; // // MenuItemDelete // MenuItemDelete.Command = this.CodeEditor.DeleteCommand; MenuItemDelete.Image = global::TC.Magneto.Shell.Properties.Resources.Delete; MenuItemDelete.Name = "MenuItemDelete"; MenuItemDelete.ShortcutKeys = System.Windows.Forms.Keys.Delete; MenuItemDelete.Size = new System.Drawing.Size(164, 22); MenuItemDelete.Text = "&Delete"; // // SeparatorMenuEdit2 // SeparatorMenuEdit2.Name = "SeparatorMenuEdit2"; SeparatorMenuEdit2.Size = new System.Drawing.Size(161, 6); // // MenuItemSelectAll // MenuItemSelectAll.Command = this.CodeEditor.SelectAllCommand; MenuItemSelectAll.Name = "MenuItemSelectAll"; MenuItemSelectAll.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.A))); MenuItemSelectAll.Size = new System.Drawing.Size(164, 22); MenuItemSelectAll.Text = "Select &All"; // // StatusStrip // StatusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.LabelStatus, this.LabelCurrentLine, this.LabelCurrentColumn, this.LabelOverwriteMode }); StatusStrip.Location = new System.Drawing.Point(0, 242); StatusStrip.Name = "StatusStrip"; StatusStrip.Size = new System.Drawing.Size(334, 22); StatusStrip.TabIndex = 1; // // LabelStatus // this.LabelStatus.Name = "LabelStatus"; this.LabelStatus.Size = new System.Drawing.Size(231, 17); this.LabelStatus.Spring = true; this.LabelStatus.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // LabelCurrentLine // this.LabelCurrentLine.Name = "LabelCurrentLine"; this.LabelCurrentLine.Size = new System.Drawing.Size(29, 17); this.LabelCurrentLine.Text = "Ln 1"; // // LabelCurrentColumn // this.LabelCurrentColumn.Name = "LabelCurrentColumn"; this.LabelCurrentColumn.Size = new System.Drawing.Size(34, 17); this.LabelCurrentColumn.Text = "Col 1"; // // LabelOverwriteMode // this.LabelOverwriteMode.Name = "LabelOverwriteMode"; this.LabelOverwriteMode.Size = new System.Drawing.Size(25, 17); this.LabelOverwriteMode.Text = "INS"; // // ToolStrip // ToolStrip.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden; ToolStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { ButtonNew, ButtonOpen, ButtonSave, SeparatorToolStrip1, ButtonCut, ButtonCopy, ButtonPaste, SeparatorToolStrip2, ButtonUndo, ButtonRedo, SeparatorToolStrip3, ButtonRun, ButtonStop, ButtonInfo }); ToolStrip.Location = new System.Drawing.Point(0, 24); ToolStrip.Name = "ToolStrip"; ToolStrip.Size = new System.Drawing.Size(334, 25); ToolStrip.TabIndex = 3; // // ButtonNew // ButtonNew.Command = NewDocumentCommand; ButtonNew.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; ButtonNew.Image = global::TC.Magneto.Shell.Properties.Resources.NewDocument; ButtonNew.Name = "ButtonNew"; ButtonNew.Size = new System.Drawing.Size(23, 22); ButtonNew.ToolTipText = "New (Ctrl+N)"; // // ButtonOpen // ButtonOpen.Command = this.LoadDocumentCommand; ButtonOpen.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; ButtonOpen.Image = global::TC.Magneto.Shell.Properties.Resources.Open; ButtonOpen.Name = "ButtonOpen"; ButtonOpen.Size = new System.Drawing.Size(23, 22); ButtonOpen.ToolTipText = "Open (Ctrl+O)"; // // ButtonSave // ButtonSave.Command = this.SaveDocumentCommand; ButtonSave.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; ButtonSave.Image = global::TC.Magneto.Shell.Properties.Resources.Save; ButtonSave.Name = "ButtonSave"; ButtonSave.Size = new System.Drawing.Size(23, 22); ButtonSave.ToolTipText = "Save (Ctrl+S)"; // // SeparatorToolStrip1 // SeparatorToolStrip1.Name = "SeparatorToolStrip1"; SeparatorToolStrip1.Size = new System.Drawing.Size(6, 25); // // ButtonCut // ButtonCut.Command = this.CodeEditor.CutCommand; ButtonCut.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; ButtonCut.Image = global::TC.Magneto.Shell.Properties.Resources.Cut; ButtonCut.Name = "ButtonCut"; ButtonCut.Size = new System.Drawing.Size(23, 22); ButtonCut.ToolTipText = "Cut (Ctrl+X)"; // // ButtonCopy // ButtonCopy.Command = this.CodeEditor.CopyCommand; ButtonCopy.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; ButtonCopy.Image = global::TC.Magneto.Shell.Properties.Resources.Copy; ButtonCopy.Name = "ButtonCopy"; ButtonCopy.Size = new System.Drawing.Size(23, 22); ButtonCopy.ToolTipText = "Copy (Ctrl+C)"; // // ButtonPaste // ButtonPaste.Command = this.CodeEditor.PasteCommand; ButtonPaste.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; ButtonPaste.Image = global::TC.Magneto.Shell.Properties.Resources.Paste; ButtonPaste.Name = "ButtonPaste"; ButtonPaste.Size = new System.Drawing.Size(23, 22); ButtonPaste.ToolTipText = "Paste (Ctrl+V)"; // // SeparatorToolStrip2 // SeparatorToolStrip2.Name = "SeparatorToolStrip2"; SeparatorToolStrip2.Size = new System.Drawing.Size(6, 25); // // ButtonUndo // ButtonUndo.Command = this.CodeEditor.UndoCommand; ButtonUndo.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; ButtonUndo.Image = global::TC.Magneto.Shell.Properties.Resources.Undo; ButtonUndo.Name = "ButtonUndo"; ButtonUndo.Size = new System.Drawing.Size(23, 22); ButtonUndo.ToolTipText = "Undo (Ctrl+Z)"; // // ButtonRedo // ButtonRedo.Command = this.CodeEditor.RedoCommand; ButtonRedo.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; ButtonRedo.Image = global::TC.Magneto.Shell.Properties.Resources.Redo; ButtonRedo.Name = "ButtonRedo"; ButtonRedo.Size = new System.Drawing.Size(23, 22); ButtonRedo.ToolTipText = "Redo (Ctrl+Y)"; // // SeparatorToolStrip3 // SeparatorToolStrip3.Name = "SeparatorToolStrip3"; SeparatorToolStrip3.Size = new System.Drawing.Size(6, 25); // // ButtonRun // ButtonRun.Command = this.RunCommand; ButtonRun.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; ButtonRun.Image = global::TC.Magneto.Shell.Properties.Resources.Play; ButtonRun.Name = "ButtonRun"; ButtonRun.Size = new System.Drawing.Size(23, 22); ButtonRun.ToolTipText = "Run (F5)"; // // ButtonStop // ButtonStop.Command = this.StopCommand; ButtonStop.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; ButtonStop.Image = global::TC.Magneto.Shell.Properties.Resources.Stop; ButtonStop.Name = "ButtonStop"; ButtonStop.Size = new System.Drawing.Size(23, 22); ButtonStop.ToolTipText = "Stop"; // // ButtonInfo // ButtonInfo.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right; ButtonInfo.Command = this.ApplicationAboutCommand; ButtonInfo.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; ButtonInfo.Image = global::TC.Magneto.Shell.Properties.Resources.Info; ButtonInfo.Name = "ButtonInfo"; ButtonInfo.Size = new System.Drawing.Size(23, 22); ButtonInfo.Text = "About Magneto"; // // LanguageGuideCommand // LanguageGuideCommand.Executed += new System.EventHandler(this.DisplayLanguageGuide); // // MenuItemHelp // MenuItemHelp.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { MenuItemLanguageGuide, SeparatorMenuHelp1, MenuItemAbout }); MenuItemHelp.Name = "MenuItemHelp"; MenuItemHelp.Size = new System.Drawing.Size(44, 24); MenuItemHelp.Text = "&Help"; // // MenuItemLanguageGuide // MenuItemLanguageGuide.Command = LanguageGuideCommand; MenuItemLanguageGuide.Name = "MenuItemLanguageGuide"; MenuItemLanguageGuide.Size = new System.Drawing.Size(160, 22); MenuItemLanguageGuide.Text = "&Language Guide"; // // MenuItemAbout // MenuItemAbout.Command = this.ApplicationAboutCommand; MenuItemAbout.Name = "MenuItemAbout"; MenuItemAbout.Size = new System.Drawing.Size(160, 22); MenuItemAbout.Text = "&About Magneto"; // // SeparatorMenuHelp1 // SeparatorMenuHelp1.Name = "SeparatorMenuHelp1"; SeparatorMenuHelp1.Size = new System.Drawing.Size(157, 6); // // MainForm // this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(334, 264); this.Commands.Add(NewDocumentCommand); this.Commands.Add(this.RunCommand); this.Commands.Add(this.StopCommand); this.Commands.Add(LanguageGuideCommand); this.Controls.Add(this.CodeEditor); this.Controls.Add(StatusStrip); this.Controls.Add(ToolStrip); this.Controls.Add(MenuStrip); this.DocumentContainer = this.CodeEditor; this.MainMenuStrip = MenuStrip; this.MinimumSize = new System.Drawing.Size(350, 200); this.Name = "MainForm"; this.Text = "Magneto"; MenuStrip.ResumeLayout(false); MenuStrip.PerformLayout(); StatusStrip.ResumeLayout(false); StatusStrip.PerformLayout(); ToolStrip.ResumeLayout(false); ToolStrip.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.ToolStrip commands; System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(CurrentStatusWindow)); System.Windows.Forms.StatusStrip statusBar; System.Windows.Forms.ImageList explorerImages; this.refreshCommand = new System.Windows.Forms.ToolStripButton(); this.currentStatus = new System.Windows.Forms.ToolStripStatusLabel(); this.splitContainer1 = new System.Windows.Forms.SplitContainer(); this.statusExplorer = new System.Windows.Forms.TreeView(); this.statusDetails = new System.Windows.Forms.PropertyGrid(); this.statusProgress = new System.Windows.Forms.ProgressBar(); this.displayWorker = new System.ComponentModel.BackgroundWorker(); this.refreshTimer = new System.Windows.Forms.Timer(this.components); commands = new System.Windows.Forms.ToolStrip(); statusBar = new System.Windows.Forms.StatusStrip(); explorerImages = new System.Windows.Forms.ImageList(this.components); commands.SuspendLayout(); statusBar.SuspendLayout(); this.splitContainer1.Panel1.SuspendLayout(); this.splitContainer1.Panel2.SuspendLayout(); this.splitContainer1.SuspendLayout(); this.SuspendLayout(); // // commands // commands.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden; commands.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.refreshCommand}); commands.Location = new System.Drawing.Point(0, 0); commands.Name = "commands"; commands.Size = new System.Drawing.Size(533, 25); commands.TabIndex = 0; commands.Text = "toolStrip1"; // // refreshCommand // this.refreshCommand.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.refreshCommand.Image = ((System.Drawing.Image)(resources.GetObject("refreshCommand.Image"))); this.refreshCommand.ImageTransparentColor = System.Drawing.Color.Magenta; this.refreshCommand.Name = "refreshCommand"; this.refreshCommand.Size = new System.Drawing.Size(23, 22); this.refreshCommand.Text = "Refresh"; this.refreshCommand.Click += new System.EventHandler(this.refreshCommand_Click); // // statusBar // statusBar.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.currentStatus}); statusBar.Location = new System.Drawing.Point(0, 366); statusBar.Name = "statusBar"; statusBar.Size = new System.Drawing.Size(533, 22); statusBar.TabIndex = 1; statusBar.Text = "statusStrip1"; // // currentStatus // this.currentStatus.Name = "currentStatus"; this.currentStatus.Size = new System.Drawing.Size(518, 17); this.currentStatus.Spring = true; this.currentStatus.Text = "Loading status..."; this.currentStatus.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // explorerImages // explorerImages.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("explorerImages.ImageStream"))); explorerImages.TransparentColor = System.Drawing.Color.Transparent; explorerImages.Images.SetKeyName(0, "Unknown"); explorerImages.Images.SetKeyName(1, "CompletedSuccess"); explorerImages.Images.SetKeyName(2, "CompletedFailed"); explorerImages.Images.SetKeyName(3, "Pending"); explorerImages.Images.SetKeyName(4, "Cancelled"); explorerImages.Images.SetKeyName(5, "Running"); // // splitContainer1 // this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill; this.splitContainer1.Location = new System.Drawing.Point(0, 25); this.splitContainer1.Name = "splitContainer1"; // // splitContainer1.Panel1 // this.splitContainer1.Panel1.Controls.Add(this.statusExplorer); // // splitContainer1.Panel2 // this.splitContainer1.Panel2.Controls.Add(this.statusDetails); this.splitContainer1.Panel2.Controls.Add(this.statusProgress); this.splitContainer1.Size = new System.Drawing.Size(533, 341); this.splitContainer1.SplitterDistance = 177; this.splitContainer1.TabIndex = 2; // // statusExplorer // this.statusExplorer.Dock = System.Windows.Forms.DockStyle.Fill; this.statusExplorer.ImageKey = "Unknown"; this.statusExplorer.ImageList = explorerImages; this.statusExplorer.Location = new System.Drawing.Point(0, 0); this.statusExplorer.Name = "statusExplorer"; this.statusExplorer.SelectedImageIndex = 0; this.statusExplorer.Size = new System.Drawing.Size(177, 341); this.statusExplorer.TabIndex = 0; this.statusExplorer.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.statusExplorer_AfterSelect); // // statusDetails // this.statusDetails.CommandsVisibleIfAvailable = false; this.statusDetails.Dock = System.Windows.Forms.DockStyle.Fill; this.statusDetails.Location = new System.Drawing.Point(0, 23); this.statusDetails.Name = "statusDetails"; this.statusDetails.PropertySort = System.Windows.Forms.PropertySort.Alphabetical; this.statusDetails.Size = new System.Drawing.Size(352, 318); this.statusDetails.TabIndex = 0; this.statusDetails.ToolbarVisible = false; // // statusProgress // this.statusProgress.Dock = System.Windows.Forms.DockStyle.Top; this.statusProgress.Location = new System.Drawing.Point(0, 0); this.statusProgress.Name = "statusProgress"; this.statusProgress.Size = new System.Drawing.Size(352, 23); this.statusProgress.Style = System.Windows.Forms.ProgressBarStyle.Continuous; this.statusProgress.TabIndex = 1; // // displayWorker // this.displayWorker.DoWork += new System.ComponentModel.DoWorkEventHandler(this.displayWorker_DoWork); this.displayWorker.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.displayWorker_RunWorkerCompleted); // // refreshTimer // this.refreshTimer.Interval = 5000; this.refreshTimer.Tick += new System.EventHandler(this.refreshTimer_Tick); // // CurrentStatusWindow // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(533, 388); this.Controls.Add(this.splitContainer1); this.Controls.Add(statusBar); this.Controls.Add(commands); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.SizableToolWindow; this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.Name = "CurrentStatusWindow"; this.Text = "Current Status for ..."; commands.ResumeLayout(false); commands.PerformLayout(); statusBar.ResumeLayout(false); statusBar.PerformLayout(); this.splitContainer1.Panel1.ResumeLayout(false); this.splitContainer1.Panel2.ResumeLayout(false); this.splitContainer1.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() { System.Windows.Forms.GroupBox groupBox1; System.Windows.Forms.Button btnSend; System.Windows.Forms.MenuStrip menu; System.Windows.Forms.ToolStripMenuItem fileToolStripMenuItem; System.Windows.Forms.ToolStripMenuItem menuItemClearScreen; System.Windows.Forms.ToolStripSeparator toolStripSeparator5; System.Windows.Forms.ToolStripMenuItem reloadSpecialControlFileToolStripMenuItem; System.Windows.Forms.ToolStripMenuItem menuItemReloadGemXml; System.Windows.Forms.ToolStripSeparator toolStripSeparator1; System.Windows.Forms.ToolStripMenuItem publishZServiceToolStripMenuItem; System.Windows.Forms.ToolStripMenuItem menuItemExit; System.Windows.Forms.ToolStripMenuItem sECSToolStripMenuItem; System.Windows.Forms.ToolStripMenuItem menuItemSECSMessageList; System.Windows.Forms.ToolStripMenuItem defineLinkToolStripMenuItem; System.Windows.Forms.ToolStripSeparator toolStripSeparator2; System.Windows.Forms.ToolStripSeparator toolStripSeparator3; System.Windows.Forms.ToolStripMenuItem menuItemEnableLinkTest; System.Windows.Forms.ToolStripSeparator toolStripSeparator4; System.Windows.Forms.ToolStripMenuItem configToolStripMenuItem; System.Windows.Forms.ToolStripMenuItem menuItemEapConfig; System.Windows.Forms.ToolStripMenuItem menuItemGemConfig; System.Windows.Forms.StatusStrip statusbar; System.Windows.Forms.SplitContainer splitContainer2; this.txtMsg = new System.Windows.Forms.TextBox(); this.menuItemGemEnable = new System.Windows.Forms.ToolStripMenuItem(); this.menuItemGemDisable = new System.Windows.Forms.ToolStripMenuItem(); this.menuItemSecsTrace = new System.Windows.Forms.ToolStripMenuItem(); this.eqpAddressStatusLabel = new System.Windows.Forms.ToolStripStatusLabel(); this.eapDriverLabel = new System.Windows.Forms.ToolStripStatusLabel(); this.gemStatusLabel = new System.Windows.Forms.ToolStripStatusLabel(); this.listBoxSecsMessages = new System.Windows.Forms.ListBox(); this.splitContainer1 = new System.Windows.Forms.SplitContainer(); this.rtxtScreen = new System.Windows.Forms.RichTextBox(); groupBox1 = new System.Windows.Forms.GroupBox(); btnSend = new System.Windows.Forms.Button(); menu = new System.Windows.Forms.MenuStrip(); fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); menuItemClearScreen = new System.Windows.Forms.ToolStripMenuItem(); toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator(); reloadSpecialControlFileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); menuItemReloadGemXml = new System.Windows.Forms.ToolStripMenuItem(); toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator(); publishZServiceToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); menuItemExit = new System.Windows.Forms.ToolStripMenuItem(); sECSToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); menuItemSECSMessageList = new System.Windows.Forms.ToolStripMenuItem(); defineLinkToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator(); toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator(); menuItemEnableLinkTest = new System.Windows.Forms.ToolStripMenuItem(); toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator(); configToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); menuItemEapConfig = new System.Windows.Forms.ToolStripMenuItem(); menuItemGemConfig = new System.Windows.Forms.ToolStripMenuItem(); statusbar = new System.Windows.Forms.StatusStrip(); splitContainer2 = new System.Windows.Forms.SplitContainer(); groupBox1.SuspendLayout(); menu.SuspendLayout(); statusbar.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(splitContainer2)).BeginInit(); splitContainer2.Panel1.SuspendLayout(); splitContainer2.Panel2.SuspendLayout(); splitContainer2.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit(); this.splitContainer1.Panel1.SuspendLayout(); this.splitContainer1.Panel2.SuspendLayout(); this.splitContainer1.SuspendLayout(); this.SuspendLayout(); // // groupBox1 // groupBox1.Controls.Add(this.txtMsg); groupBox1.Controls.Add(btnSend); groupBox1.Dock = System.Windows.Forms.DockStyle.Fill; groupBox1.FlatStyle = System.Windows.Forms.FlatStyle.Flat; groupBox1.Location = new System.Drawing.Point(0, 0); groupBox1.Name = "groupBox1"; groupBox1.Size = new System.Drawing.Size(96, 207); groupBox1.TabIndex = 5; groupBox1.TabStop = false; groupBox1.Text = "Message"; // // txtMsg // this.txtMsg.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtMsg.Dock = System.Windows.Forms.DockStyle.Fill; this.txtMsg.Location = new System.Drawing.Point(3, 18); this.txtMsg.Multiline = true; this.txtMsg.Name = "txtMsg"; this.txtMsg.ScrollBars = System.Windows.Forms.ScrollBars.Both; this.txtMsg.Size = new System.Drawing.Size(90, 162); this.txtMsg.TabIndex = 2; this.txtMsg.WordWrap = false; // // btnSend // btnSend.Dock = System.Windows.Forms.DockStyle.Bottom; btnSend.Location = new System.Drawing.Point(3, 180); btnSend.Name = "btnSend"; btnSend.Size = new System.Drawing.Size(90, 24); btnSend.TabIndex = 1; btnSend.Text = "Send"; btnSend.Click += new System.EventHandler(this.btnSend_Click); // // menu // menu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { fileToolStripMenuItem, sECSToolStripMenuItem, configToolStripMenuItem}); menu.Location = new System.Drawing.Point(0, 0); menu.Name = "menu"; menu.Size = new System.Drawing.Size(642, 24); menu.TabIndex = 0; menu.Text = "menuStrip1"; // // fileToolStripMenuItem // fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { menuItemClearScreen, toolStripSeparator5, reloadSpecialControlFileToolStripMenuItem, menuItemReloadGemXml, toolStripSeparator1, publishZServiceToolStripMenuItem, menuItemExit}); fileToolStripMenuItem.Name = "fileToolStripMenuItem"; fileToolStripMenuItem.Size = new System.Drawing.Size(38, 20); fileToolStripMenuItem.Text = "File"; // // menuItemClearScreen // menuItemClearScreen.Name = "menuItemClearScreen"; menuItemClearScreen.Size = new System.Drawing.Size(226, 22); menuItemClearScreen.Text = "Clear Screen"; menuItemClearScreen.Click += new System.EventHandler(this.menuItemClearScreen_Click); // // toolStripSeparator5 // toolStripSeparator5.Name = "toolStripSeparator5"; toolStripSeparator5.Size = new System.Drawing.Size(223, 6); // // reloadSpecialControlFileToolStripMenuItem // reloadSpecialControlFileToolStripMenuItem.Name = "reloadSpecialControlFileToolStripMenuItem"; reloadSpecialControlFileToolStripMenuItem.Size = new System.Drawing.Size(226, 22); reloadSpecialControlFileToolStripMenuItem.Text = "Reload Special Control File"; reloadSpecialControlFileToolStripMenuItem.Click += new System.EventHandler(this.reloadSpecialControlFileToolStripMenuItem_Click); // // menuItemReloadGemXml // menuItemReloadGemXml.Name = "menuItemReloadGemXml"; menuItemReloadGemXml.Size = new System.Drawing.Size(226, 22); menuItemReloadGemXml.Text = "Reload Gem.xml"; menuItemReloadGemXml.Click += new System.EventHandler(this.menuItemReloadGemXml_Click); // // toolStripSeparator1 // toolStripSeparator1.Name = "toolStripSeparator1"; toolStripSeparator1.Size = new System.Drawing.Size(223, 6); // // publishZServiceToolStripMenuItem // publishZServiceToolStripMenuItem.Name = "publishZServiceToolStripMenuItem"; publishZServiceToolStripMenuItem.Size = new System.Drawing.Size(226, 22); publishZServiceToolStripMenuItem.Text = "Publish Z Service"; publishZServiceToolStripMenuItem.Click += new System.EventHandler(this.publishZServiceToolStripMenuItem_Click); // // menuItemExit // menuItemExit.Name = "menuItemExit"; menuItemExit.Size = new System.Drawing.Size(226, 22); menuItemExit.Text = "Exit"; menuItemExit.Click += new System.EventHandler(this.menuItemExit_Click); // // sECSToolStripMenuItem // sECSToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { menuItemSECSMessageList, defineLinkToolStripMenuItem, toolStripSeparator2, this.menuItemGemEnable, this.menuItemGemDisable, toolStripSeparator3, menuItemEnableLinkTest, toolStripSeparator4, this.menuItemSecsTrace}); sECSToolStripMenuItem.Name = "sECSToolStripMenuItem"; sECSToolStripMenuItem.Size = new System.Drawing.Size(48, 20); sECSToolStripMenuItem.Text = "SECS"; // // menuItemSECSMessageList // menuItemSECSMessageList.CheckOnClick = true; menuItemSECSMessageList.Name = "menuItemSECSMessageList"; menuItemSECSMessageList.Size = new System.Drawing.Size(178, 22); menuItemSECSMessageList.Text = "SECS Message List"; menuItemSECSMessageList.Click += new System.EventHandler(this.menuItemSecsMessagestList_Click); // // defineLinkToolStripMenuItem // defineLinkToolStripMenuItem.Name = "defineLinkToolStripMenuItem"; defineLinkToolStripMenuItem.Size = new System.Drawing.Size(178, 22); defineLinkToolStripMenuItem.Text = "Define Link"; defineLinkToolStripMenuItem.Click += new System.EventHandler(this.defineLinkToolStripMenuItem_Click); // // toolStripSeparator2 // toolStripSeparator2.Name = "toolStripSeparator2"; toolStripSeparator2.Size = new System.Drawing.Size(175, 6); // // menuItemGemEnable // this.menuItemGemEnable.Name = "menuItemGemEnable"; this.menuItemGemEnable.Size = new System.Drawing.Size(178, 22); this.menuItemGemEnable.Text = "Enable"; this.menuItemGemEnable.Click += new System.EventHandler(this.menuItemGemEnable_Click); // // menuItemGemDisable // this.menuItemGemDisable.Name = "menuItemGemDisable"; this.menuItemGemDisable.Size = new System.Drawing.Size(178, 22); this.menuItemGemDisable.Text = "Disable"; this.menuItemGemDisable.Click += new System.EventHandler(this.menuItemGemDisable_Click); // // toolStripSeparator3 // toolStripSeparator3.Name = "toolStripSeparator3"; toolStripSeparator3.Size = new System.Drawing.Size(175, 6); // // menuItemEnableLinkTest // menuItemEnableLinkTest.CheckOnClick = true; menuItemEnableLinkTest.Name = "menuItemEnableLinkTest"; menuItemEnableLinkTest.Size = new System.Drawing.Size(178, 22); menuItemEnableLinkTest.Text = "Link Test"; menuItemEnableLinkTest.Click += new System.EventHandler(this.enableTraceLogToolStripMenuItem_Click); // // toolStripSeparator4 // toolStripSeparator4.Name = "toolStripSeparator4"; toolStripSeparator4.Size = new System.Drawing.Size(175, 6); // // menuItemSecsTrace // this.menuItemSecsTrace.CheckOnClick = true; this.menuItemSecsTrace.Name = "menuItemSecsTrace"; this.menuItemSecsTrace.Size = new System.Drawing.Size(178, 22); this.menuItemSecsTrace.Text = "Trace On Screen"; this.menuItemSecsTrace.Click += new System.EventHandler(this.menuItemSecsTrace_Click); // // configToolStripMenuItem // configToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { menuItemEapConfig, menuItemGemConfig}); configToolStripMenuItem.Name = "configToolStripMenuItem"; configToolStripMenuItem.Size = new System.Drawing.Size(57, 20); configToolStripMenuItem.Text = "Config"; // // menuItemEapConfig // menuItemEapConfig.Name = "menuItemEapConfig"; menuItemEapConfig.Size = new System.Drawing.Size(102, 22); menuItemEapConfig.Text = "EAP"; menuItemEapConfig.Click += new System.EventHandler(this.menuItemEapConfig_Click); // // menuItemGemConfig // menuItemGemConfig.Name = "menuItemGemConfig"; menuItemGemConfig.Size = new System.Drawing.Size(102, 22); menuItemGemConfig.Text = "GEM"; menuItemGemConfig.Click += new System.EventHandler(this.menuItemGemConfig_Click); // // statusbar // statusbar.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.eqpAddressStatusLabel, this.eapDriverLabel, this.gemStatusLabel}); statusbar.Location = new System.Drawing.Point(0, 441); statusbar.Name = "statusbar"; statusbar.Size = new System.Drawing.Size(642, 22); statusbar.TabIndex = 1; // // eqpAddressStatusLabel // this.eqpAddressStatusLabel.BorderStyle = System.Windows.Forms.Border3DStyle.Bump; this.eqpAddressStatusLabel.Name = "eqpAddressStatusLabel"; this.eqpAddressStatusLabel.Size = new System.Drawing.Size(47, 17); this.eqpAddressStatusLabel.Text = "EQP IP:"; // // eapDriverLabel // this.eapDriverLabel.BorderSides = ((System.Windows.Forms.ToolStripStatusLabelBorderSides)(((System.Windows.Forms.ToolStripStatusLabelBorderSides.Left | System.Windows.Forms.ToolStripStatusLabelBorderSides.Top) | System.Windows.Forms.ToolStripStatusLabelBorderSides.Right))); this.eapDriverLabel.BorderStyle = System.Windows.Forms.Border3DStyle.SunkenOuter; this.eapDriverLabel.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; this.eapDriverLabel.Name = "eapDriverLabel"; this.eapDriverLabel.Size = new System.Drawing.Size(476, 17); this.eapDriverLabel.Spring = true; this.eapDriverLabel.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // gemStatusLabel // this.gemStatusLabel.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; this.gemStatusLabel.Name = "gemStatusLabel"; this.gemStatusLabel.Size = new System.Drawing.Size(104, 17); this.gemStatusLabel.Text = "SECS GEM Status"; // // splitContainer2 // splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill; splitContainer2.Location = new System.Drawing.Point(0, 0); splitContainer2.Name = "splitContainer2"; // // splitContainer2.Panel1 // splitContainer2.Panel1.Controls.Add(this.listBoxSecsMessages); // // splitContainer2.Panel2 // splitContainer2.Panel2.Controls.Add(groupBox1); splitContainer2.Size = new System.Drawing.Size(150, 207); splitContainer2.TabIndex = 0; splitContainer2.TabStop = false; // // listBoxSecsMessages // this.listBoxSecsMessages.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.listBoxSecsMessages.Dock = System.Windows.Forms.DockStyle.Fill; this.listBoxSecsMessages.ItemHeight = 12; this.listBoxSecsMessages.Location = new System.Drawing.Point(0, 0); this.listBoxSecsMessages.Name = "listBoxSecsMessages"; this.listBoxSecsMessages.Size = new System.Drawing.Size(50, 207); this.listBoxSecsMessages.TabIndex = 1; this.listBoxSecsMessages.SelectedIndexChanged += new System.EventHandler(this.listBoxSecsMessageList_SelectedIndexChanged); // // splitContainer1 // this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill; this.splitContainer1.IsSplitterFixed = true; this.splitContainer1.Location = new System.Drawing.Point(0, 24); this.splitContainer1.Name = "splitContainer1"; this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal; // // splitContainer1.Panel1 // this.splitContainer1.Panel1.Controls.Add(splitContainer2); this.splitContainer1.Panel1Collapsed = true; // // splitContainer1.Panel2 // this.splitContainer1.Panel2.Controls.Add(this.rtxtScreen); this.splitContainer1.Size = new System.Drawing.Size(642, 417); this.splitContainer1.SplitterDistance = 207; this.splitContainer1.TabIndex = 10; // // rtxtScreen // this.rtxtScreen.BackColor = System.Drawing.Color.White; this.rtxtScreen.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.rtxtScreen.DetectUrls = false; this.rtxtScreen.Dock = System.Windows.Forms.DockStyle.Fill; this.rtxtScreen.Font = new System.Drawing.Font("Courier New", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.rtxtScreen.Location = new System.Drawing.Point(0, 0); this.rtxtScreen.MaxLength = 8192; this.rtxtScreen.Name = "rtxtScreen"; this.rtxtScreen.ReadOnly = true; this.rtxtScreen.ShortcutsEnabled = false; this.rtxtScreen.Size = new System.Drawing.Size(642, 417); this.rtxtScreen.TabIndex = 8; this.rtxtScreen.TabStop = false; this.rtxtScreen.Text = ""; this.rtxtScreen.WordWrap = false; // // HostMainForm // this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None; this.ClientSize = new System.Drawing.Size(642, 463); this.Controls.Add(this.splitContainer1); this.Controls.Add(statusbar); this.Controls.Add(menu); this.MainMenuStrip = menu; this.Name = "HostMainForm"; this.Text = "MainForm"; this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainForm_FormClosing); groupBox1.ResumeLayout(false); groupBox1.PerformLayout(); menu.ResumeLayout(false); menu.PerformLayout(); statusbar.ResumeLayout(false); statusbar.PerformLayout(); splitContainer2.Panel1.ResumeLayout(false); splitContainer2.Panel2.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(splitContainer2)).EndInit(); splitContainer2.ResumeLayout(false); this.splitContainer1.Panel1.ResumeLayout(false); this.splitContainer1.Panel2.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit(); this.splitContainer1.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.GroupBox groupBox1; System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmOPTICSAnalyzer)); System.Windows.Forms.GroupBox groupBox2; System.Windows.Forms.Panel panel1; System.Windows.Forms.Label label10; System.Windows.Forms.Label label9; System.Windows.Forms.Label label8; System.Windows.Forms.Label label7; System.Windows.Forms.Label label6; System.Windows.Forms.GroupBox groupBox4; System.Windows.Forms.Label label3; System.Windows.Forms.Label label2; System.Windows.Forms.Label label1; System.Windows.Forms.StatusStrip statusStrip1; this.lvImages = new System.Windows.Forms.ListView(); this.imgListStatus = new System.Windows.Forms.ImageList(this.components); this.btnRefresh = new System.Windows.Forms.Button(); this.picHistogram = new System.Windows.Forms.PictureBox(); this.nudSelectionB = new System.Windows.Forms.NumericUpDown(); this.nudSelectionA = new System.Windows.Forms.NumericUpDown(); this.cmbWidth = new System.Windows.Forms.ComboBox(); this.cmbHeight = new System.Windows.Forms.ComboBox(); this.nudThreshold = new System.Windows.Forms.NumericUpDown(); this.lblUnreachable = new System.Windows.Forms.Label(); this.lblNotReachable = new System.Windows.Forms.Label(); this.picThumbnail = new System.Windows.Forms.PictureBox(); this.txtImageRDist = new System.Windows.Forms.TextBox(); this.txtImageIndex = new System.Windows.Forms.TextBox(); this.txtImagePath = new System.Windows.Forms.TextBox(); this.lblConfigPath = new System.Windows.Forms.ToolStripStatusLabel(); groupBox1 = new System.Windows.Forms.GroupBox(); groupBox2 = new System.Windows.Forms.GroupBox(); panel1 = new System.Windows.Forms.Panel(); label10 = new System.Windows.Forms.Label(); label9 = new System.Windows.Forms.Label(); label8 = new System.Windows.Forms.Label(); label7 = new System.Windows.Forms.Label(); label6 = new System.Windows.Forms.Label(); groupBox4 = new System.Windows.Forms.GroupBox(); label3 = new System.Windows.Forms.Label(); label2 = new System.Windows.Forms.Label(); label1 = new System.Windows.Forms.Label(); statusStrip1 = new System.Windows.Forms.StatusStrip(); groupBox1.SuspendLayout(); groupBox2.SuspendLayout(); panel1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.picHistogram)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.nudSelectionB)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.nudSelectionA)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.nudThreshold)).BeginInit(); groupBox4.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.picThumbnail)).BeginInit(); statusStrip1.SuspendLayout(); this.SuspendLayout(); // // groupBox1 // groupBox1.Controls.Add(this.lvImages); groupBox1.Location = new System.Drawing.Point(12, 9); groupBox1.Name = "groupBox1"; groupBox1.Size = new System.Drawing.Size(873, 462); groupBox1.TabIndex = 0; groupBox1.TabStop = false; groupBox1.Text = "Selected Images"; // // lvImages // this.lvImages.BackColor = System.Drawing.SystemColors.ControlDark; this.lvImages.Dock = System.Windows.Forms.DockStyle.Fill; this.lvImages.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.lvImages.Location = new System.Drawing.Point(3, 18); this.lvImages.MultiSelect = false; this.lvImages.Name = "lvImages"; this.lvImages.ShowGroups = false; this.lvImages.Size = new System.Drawing.Size(867, 441); this.lvImages.StateImageList = this.imgListStatus; this.lvImages.TabIndex = 0; this.lvImages.TileSize = new System.Drawing.Size(128, 128); this.lvImages.UseCompatibleStateImageBehavior = false; this.lvImages.SelectedIndexChanged += new System.EventHandler(this.lvImages_SelectedIndexChanged); this.lvImages.KeyDown += new System.Windows.Forms.KeyEventHandler(this.lvImages_KeyDown); // // imgListStatus // this.imgListStatus.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imgListStatus.ImageStream"))); this.imgListStatus.TransparentColor = System.Drawing.Color.Transparent; this.imgListStatus.Images.SetKeyName(0, "green.png"); this.imgListStatus.Images.SetKeyName(1, "red.png"); // // groupBox2 // groupBox2.Controls.Add(this.btnRefresh); groupBox2.Controls.Add(panel1); groupBox2.Controls.Add(label10); groupBox2.Controls.Add(this.nudSelectionB); groupBox2.Controls.Add(this.nudSelectionA); groupBox2.Controls.Add(label9); groupBox2.Controls.Add(this.cmbWidth); groupBox2.Controls.Add(this.cmbHeight); groupBox2.Controls.Add(this.nudThreshold); groupBox2.Controls.Add(label8); groupBox2.Controls.Add(label7); groupBox2.Controls.Add(label6); groupBox2.Location = new System.Drawing.Point(12, 480); groupBox2.Name = "groupBox2"; groupBox2.Size = new System.Drawing.Size(1464, 410); groupBox2.TabIndex = 1; groupBox2.TabStop = false; groupBox2.Text = "Reachability Plot"; // // btnRefresh // this.btnRefresh.Location = new System.Drawing.Point(1319, 21); this.btnRefresh.Name = "btnRefresh"; this.btnRefresh.Size = new System.Drawing.Size(139, 30); this.btnRefresh.TabIndex = 9; this.btnRefresh.Text = "Refresh"; this.btnRefresh.UseVisualStyleBackColor = true; this.btnRefresh.Click += new System.EventHandler(this.btnRefresh_Click); // // panel1 // panel1.AutoScroll = true; panel1.BackColor = System.Drawing.Color.White; panel1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; panel1.Controls.Add(this.picHistogram); panel1.Location = new System.Drawing.Point(6, 56); panel1.Name = "panel1"; panel1.Size = new System.Drawing.Size(1452, 348); panel1.TabIndex = 12; // // picHistogram // this.picHistogram.Location = new System.Drawing.Point(4, 4); this.picHistogram.Name = "picHistogram"; this.picHistogram.Size = new System.Drawing.Size(925, 213); this.picHistogram.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; this.picHistogram.TabIndex = 0; this.picHistogram.TabStop = false; this.picHistogram.Paint += new System.Windows.Forms.PaintEventHandler(this.picHistogram_Paint); this.picHistogram.MouseDown += new System.Windows.Forms.MouseEventHandler(this.picHistogram_MouseDown); this.picHistogram.MouseMove += new System.Windows.Forms.MouseEventHandler(this.picHistogram_MouseMove); this.picHistogram.MouseUp += new System.Windows.Forms.MouseEventHandler(this.picHistogram_MouseUp); // // label10 // label10.AutoSize = true; label10.Location = new System.Drawing.Point(643, 30); label10.Name = "label10"; label10.Size = new System.Drawing.Size(116, 17); label10.TabIndex = 11; label10.Text = "Selection Index B"; // // nudSelectionB // this.nudSelectionB.Location = new System.Drawing.Point(765, 27); this.nudSelectionB.Name = "nudSelectionB"; this.nudSelectionB.Size = new System.Drawing.Size(82, 22); this.nudSelectionB.TabIndex = 7; this.nudSelectionB.ValueChanged += new System.EventHandler(this.nudSelectionB_ValueChanged); // // nudSelectionA // this.nudSelectionA.Location = new System.Drawing.Point(555, 28); this.nudSelectionA.Name = "nudSelectionA"; this.nudSelectionA.Size = new System.Drawing.Size(82, 22); this.nudSelectionA.TabIndex = 6; this.nudSelectionA.ValueChanged += new System.EventHandler(this.nudSelectionA_ValueChanged); // // label9 // label9.AutoSize = true; label9.Location = new System.Drawing.Point(431, 29); label9.Name = "label9"; label9.Size = new System.Drawing.Size(116, 17); label9.TabIndex = 8; label9.Text = "Selection Index A"; // // cmbWidth // this.cmbWidth.FormattingEnabled = true; this.cmbWidth.Items.AddRange(new object[] { "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "20", "25", "30", "50", "75", "100", "200", "400", "500"}); this.cmbWidth.Location = new System.Drawing.Point(95, 26); this.cmbWidth.Name = "cmbWidth"; this.cmbWidth.Size = new System.Drawing.Size(71, 24); this.cmbWidth.TabIndex = 4; this.cmbWidth.Text = "100"; this.cmbWidth.TextChanged += new System.EventHandler(this.cmbWidth_TextChanged); // // cmbHeight // this.cmbHeight.FormattingEnabled = true; this.cmbHeight.Items.AddRange(new object[] { "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "20", "25", "30", "50", "75", "100", "200", "400", "500"}); this.cmbHeight.Location = new System.Drawing.Point(266, 27); this.cmbHeight.Name = "cmbHeight"; this.cmbHeight.Size = new System.Drawing.Size(71, 24); this.cmbHeight.TabIndex = 5; this.cmbHeight.Text = "25"; this.cmbHeight.TextChanged += new System.EventHandler(this.cmbHeight_TextChanged); // // nudThreshold // this.nudThreshold.Location = new System.Drawing.Point(1073, 27); this.nudThreshold.Maximum = new decimal(new int[] { -727379968, 232, 0, 0}); this.nudThreshold.Name = "nudThreshold"; this.nudThreshold.Size = new System.Drawing.Size(113, 22); this.nudThreshold.TabIndex = 8; this.nudThreshold.ValueChanged += new System.EventHandler(this.nudThreshold_ValueChanged); // // label8 // label8.AutoSize = true; label8.Location = new System.Drawing.Point(868, 29); label8.Name = "label8"; label8.Size = new System.Drawing.Size(199, 17); label8.TabIndex = 4; label8.Text = "Reachability Outlier Threshold"; // // label7 // label7.AutoSize = true; label7.Location = new System.Drawing.Point(172, 30); label7.Name = "label7"; label7.Size = new System.Drawing.Size(88, 17); label7.TabIndex = 3; label7.Text = "Scale Height"; // // label6 // label6.AutoSize = true; label6.Location = new System.Drawing.Point(6, 29); label6.Name = "label6"; label6.Size = new System.Drawing.Size(83, 17); label6.TabIndex = 2; label6.Text = "Scale Width"; // // groupBox4 // groupBox4.Controls.Add(this.lblUnreachable); groupBox4.Controls.Add(this.lblNotReachable); groupBox4.Controls.Add(this.picThumbnail); groupBox4.Controls.Add(this.txtImageRDist); groupBox4.Controls.Add(this.txtImageIndex); groupBox4.Controls.Add(this.txtImagePath); groupBox4.Controls.Add(label3); groupBox4.Controls.Add(label2); groupBox4.Controls.Add(label1); groupBox4.Location = new System.Drawing.Point(891, 9); groupBox4.Name = "groupBox4"; groupBox4.Size = new System.Drawing.Size(585, 462); groupBox4.TabIndex = 3; groupBox4.TabStop = false; groupBox4.Text = "Selected Image"; // // lblUnreachable // this.lblUnreachable.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(128))))); this.lblUnreachable.Location = new System.Drawing.Point(18, 365); this.lblUnreachable.Name = "lblUnreachable"; this.lblUnreachable.Size = new System.Drawing.Size(172, 49); this.lblUnreachable.TabIndex = 8; this.lblUnreachable.Text = "UNREACHABLE"; this.lblUnreachable.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.lblUnreachable.Visible = false; // // lblNotReachable // this.lblNotReachable.BackColor = System.Drawing.Color.Yellow; this.lblNotReachable.Location = new System.Drawing.Point(18, 303); this.lblNotReachable.Name = "lblNotReachable"; this.lblNotReachable.Size = new System.Drawing.Size(172, 48); this.lblNotReachable.TabIndex = 7; this.lblNotReachable.Text = "OUT OF THRESHOLD"; this.lblNotReachable.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.lblNotReachable.Visible = false; // // picThumbnail // this.picThumbnail.Location = new System.Drawing.Point(196, 46); this.picThumbnail.Name = "picThumbnail"; this.picThumbnail.Size = new System.Drawing.Size(384, 403); this.picThumbnail.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom; this.picThumbnail.TabIndex = 6; this.picThumbnail.TabStop = false; this.picThumbnail.DoubleClick += new System.EventHandler(this.picThumbnail_DoubleClick); // // txtImageRDist // this.txtImageRDist.Location = new System.Drawing.Point(10, 116); this.txtImageRDist.Name = "txtImageRDist"; this.txtImageRDist.ReadOnly = true; this.txtImageRDist.Size = new System.Drawing.Size(126, 22); this.txtImageRDist.TabIndex = 3; // // txtImageIndex // this.txtImageIndex.Location = new System.Drawing.Point(59, 53); this.txtImageIndex.Name = "txtImageIndex"; this.txtImageIndex.ReadOnly = true; this.txtImageIndex.Size = new System.Drawing.Size(77, 22); this.txtImageIndex.TabIndex = 2; // // txtImagePath // this.txtImagePath.Location = new System.Drawing.Point(59, 21); this.txtImagePath.Name = "txtImagePath"; this.txtImagePath.ReadOnly = true; this.txtImagePath.Size = new System.Drawing.Size(468, 22); this.txtImagePath.TabIndex = 1; // // label3 // label3.AutoSize = true; label3.Location = new System.Drawing.Point(7, 96); label3.Name = "label3"; label3.Size = new System.Drawing.Size(144, 17); label3.TabIndex = 2; label3.Text = "Reachability Distance"; // // label2 // label2.AutoSize = true; label2.Location = new System.Drawing.Point(12, 56); label2.Name = "label2"; label2.Size = new System.Drawing.Size(41, 17); label2.TabIndex = 1; label2.Text = "Index"; // // label1 // label1.AutoSize = true; label1.Location = new System.Drawing.Point(16, 21); label1.Name = "label1"; label1.Size = new System.Drawing.Size(37, 17); label1.TabIndex = 0; label1.Text = "Path"; // // statusStrip1 // statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.lblConfigPath}); statusStrip1.Location = new System.Drawing.Point(0, 893); statusStrip1.Name = "statusStrip1"; statusStrip1.Size = new System.Drawing.Size(1488, 25); statusStrip1.TabIndex = 4; statusStrip1.Text = "jo"; // // lblConfigPath // this.lblConfigPath.Name = "lblConfigPath"; this.lblConfigPath.Size = new System.Drawing.Size(151, 20); this.lblConfigPath.Text = "toolStripStatusLabel1"; // // frmOPTICSAnalyzer // this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(1488, 918); this.Controls.Add(statusStrip1); this.Controls.Add(groupBox4); this.Controls.Add(groupBox2); this.Controls.Add(groupBox1); this.Name = "frmOPTICSAnalyzer"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Text = "OPTICSAnalyzer"; groupBox1.ResumeLayout(false); groupBox2.ResumeLayout(false); groupBox2.PerformLayout(); panel1.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.picHistogram)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.nudSelectionB)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.nudSelectionA)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.nudThreshold)).EndInit(); groupBox4.ResumeLayout(false); groupBox4.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.picThumbnail)).EndInit(); statusStrip1.ResumeLayout(false); statusStrip1.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.StatusStrip statusStrip1; this.toolStripStatusLabel0 = new System.Windows.Forms.ToolStripStatusLabel(); this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel(); this.toolStripStatusLabel2 = new System.Windows.Forms.ToolStripStatusLabel(); this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog(); this.menuStrip1 = new System.Windows.Forms.MenuStrip(); this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.openFileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.clearToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.modeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.originalToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.negativeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.grayToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.redToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.greenToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.blueToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.toolStripStatusLabel3 = new System.Windows.Forms.ToolStripStatusLabel(); statusStrip1 = new System.Windows.Forms.StatusStrip(); statusStrip1.SuspendLayout(); this.menuStrip1.SuspendLayout(); this.SuspendLayout(); // // statusStrip1 // statusStrip1.ImageScalingSize = new System.Drawing.Size(24, 24); statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.toolStripStatusLabel0, this.toolStripStatusLabel1, this.toolStripStatusLabel2, this.toolStripStatusLabel3 }); statusStrip1.Location = new System.Drawing.Point(0, 211); statusStrip1.Name = "statusStrip1"; statusStrip1.Size = new System.Drawing.Size(278, 28); statusStrip1.TabIndex = 3; statusStrip1.Text = "statusStrip1"; // // toolStripStatusLabel0 // this.toolStripStatusLabel0.AutoSize = false; this.toolStripStatusLabel0.Name = "toolStripStatusLabel0"; this.toolStripStatusLabel0.Size = new System.Drawing.Size(100, 23); this.toolStripStatusLabel0.Text = "Original"; // // toolStripStatusLabel1 // this.toolStripStatusLabel1.Name = "toolStripStatusLabel1"; this.toolStripStatusLabel1.Size = new System.Drawing.Size(64, 23); this.toolStripStatusLabel1.Text = "( x , y )"; // // toolStripStatusLabel2 // this.toolStripStatusLabel2.Name = "toolStripStatusLabel2"; this.toolStripStatusLabel2.Size = new System.Drawing.Size(96, 23); this.toolStripStatusLabel2.Text = "( R , G , B )"; // // openFileDialog1 // this.openFileDialog1.FileName = "openFileDialog1"; // // menuStrip1 // this.menuStrip1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.menuStrip1.Dock = System.Windows.Forms.DockStyle.None; this.menuStrip1.ImageScalingSize = new System.Drawing.Size(24, 24); this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.fileToolStripMenuItem, this.modeToolStripMenuItem }); this.menuStrip1.Location = new System.Drawing.Point(0, 0); this.menuStrip1.Name = "menuStrip1"; this.menuStrip1.Size = new System.Drawing.Size(140, 31); this.menuStrip1.TabIndex = 5; this.menuStrip1.Text = "menuStrip1"; // // fileToolStripMenuItem // this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.openFileToolStripMenuItem, this.clearToolStripMenuItem }); this.fileToolStripMenuItem.Name = "fileToolStripMenuItem"; this.fileToolStripMenuItem.ShortcutKeyDisplayString = ""; this.fileToolStripMenuItem.Size = new System.Drawing.Size(61, 27); this.fileToolStripMenuItem.Text = "start"; // // openFileToolStripMenuItem // this.openFileToolStripMenuItem.Name = "openFileToolStripMenuItem"; this.openFileToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.O))); this.openFileToolStripMenuItem.Size = new System.Drawing.Size(235, 30); this.openFileToolStripMenuItem.Text = "open file"; // // clearToolStripMenuItem // this.clearToolStripMenuItem.Enabled = false; this.clearToolStripMenuItem.Name = "clearToolStripMenuItem"; this.clearToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.C))); this.clearToolStripMenuItem.Size = new System.Drawing.Size(235, 30); this.clearToolStripMenuItem.Text = "clear"; // // modeToolStripMenuItem // this.modeToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.originalToolStripMenuItem, this.negativeToolStripMenuItem, this.grayToolStripMenuItem, this.redToolStripMenuItem, this.greenToolStripMenuItem, this.blueToolStripMenuItem }); this.modeToolStripMenuItem.Name = "modeToolStripMenuItem"; this.modeToolStripMenuItem.Size = new System.Drawing.Size(71, 27); this.modeToolStripMenuItem.Text = "mode"; // // originalToolStripMenuItem // this.originalToolStripMenuItem.Name = "originalToolStripMenuItem"; this.originalToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.D1))); this.originalToolStripMenuItem.Size = new System.Drawing.Size(233, 30); this.originalToolStripMenuItem.Text = "Original"; // // negativeToolStripMenuItem // this.negativeToolStripMenuItem.Name = "negativeToolStripMenuItem"; this.negativeToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.D2))); this.negativeToolStripMenuItem.Size = new System.Drawing.Size(233, 30); this.negativeToolStripMenuItem.Text = "Negative"; // // grayToolStripMenuItem // this.grayToolStripMenuItem.Name = "grayToolStripMenuItem"; this.grayToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.D3))); this.grayToolStripMenuItem.Size = new System.Drawing.Size(233, 30); this.grayToolStripMenuItem.Text = "Gray"; // // redToolStripMenuItem // this.redToolStripMenuItem.Name = "redToolStripMenuItem"; this.redToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.D4))); this.redToolStripMenuItem.Size = new System.Drawing.Size(233, 30); this.redToolStripMenuItem.Text = "Red"; // // greenToolStripMenuItem // this.greenToolStripMenuItem.Name = "greenToolStripMenuItem"; this.greenToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.D5))); this.greenToolStripMenuItem.Size = new System.Drawing.Size(233, 30); this.greenToolStripMenuItem.Text = "Green"; // // blueToolStripMenuItem // this.blueToolStripMenuItem.Name = "blueToolStripMenuItem"; this.blueToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.D6))); this.blueToolStripMenuItem.Size = new System.Drawing.Size(233, 30); this.blueToolStripMenuItem.Text = "Blue"; // // toolStripStatusLabel3 // this.toolStripStatusLabel3.Name = "toolStripStatusLabel3"; this.toolStripStatusLabel3.Size = new System.Drawing.Size(71, 23); this.toolStripStatusLabel3.Text = "reserve"; this.toolStripStatusLabel3.Visible = false; // // EmptyForm // this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 18F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(278, 239); this.Controls.Add(this.menuStrip1); this.Controls.Add(statusStrip1); this.KeyPreview = true; this.Name = "EmptyForm"; this.Text = "EmptyForm"; this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.EmptyForm_KeyDown); statusStrip1.ResumeLayout(false); statusStrip1.PerformLayout(); this.menuStrip1.ResumeLayout(false); this.menuStrip1.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.StatusStrip StatusStrip; System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(D3DForm)); this.CurrentModeButton = new System.Windows.Forms.ToolStripSplitButton(); this.toolStripStatusLabel3 = new System.Windows.Forms.ToolStripStatusLabel(); this.PositionXTool = new Utils.Extensions.NumericUpDownToolStrip(); this.PositionYTool = new Utils.Extensions.NumericUpDownToolStrip(); this.PositionZTool = new Utils.Extensions.NumericUpDownToolStrip(); this.RotationXTool = new Utils.Extensions.NumericUpDownToolStrip(); this.CameraSpeedTool = new Utils.Extensions.NumericUpDownToolStrip(); this.ToolbarStrip = new System.Windows.Forms.ToolStrip(); this.FileButton = new System.Windows.Forms.ToolStripDropDownButton(); this.SaveButton = new System.Windows.Forms.ToolStripMenuItem(); this.ExitButton = new System.Windows.Forms.ToolStripMenuItem(); this.EditButton = new System.Windows.Forms.ToolStripDropDownButton(); this.AddButton = new System.Windows.Forms.ToolStripMenuItem(); this.AddSceneFolderButton = new System.Windows.Forms.ToolStripMenuItem(); this.AddCollisionButton = new System.Windows.Forms.ToolStripMenuItem(); this.roadDebuggingToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.AddBackward = new System.Windows.Forms.ToolStripMenuItem(); this.AddToward = new System.Windows.Forms.ToolStripMenuItem(); this.AddRoadSplineButton = new System.Windows.Forms.ToolStripMenuItem(); this.AddSplineTxT = new System.Windows.Forms.ToolStripMenuItem(); this.AddJunctionButton = new System.Windows.Forms.ToolStripMenuItem(); this.EditUnkSet3 = new System.Windows.Forms.ToolStripMenuItem(); this.ViewButton = new System.Windows.Forms.ToolStripDropDownButton(); this.ViewTopButton = new System.Windows.Forms.ToolStripMenuItem(); this.ViewFrontButton = new System.Windows.Forms.ToolStripMenuItem(); this.ViewSideButton = new System.Windows.Forms.ToolStripMenuItem(); this.ViewBottomButton = new System.Windows.Forms.ToolStripMenuItem(); this.ViewSide2Button = new System.Windows.Forms.ToolStripMenuItem(); this.OptionsButton = new System.Windows.Forms.ToolStripDropDownButton(); this.ToggleWireframeButton = new System.Windows.Forms.ToolStripMenuItem(); this.ToggleCullingButton = new System.Windows.Forms.ToolStripMenuItem(); this.EditLighting = new System.Windows.Forms.ToolStripMenuItem(); this.WindowButton = new System.Windows.Forms.ToolStripDropDownButton(); this.SceneTreeButton = new System.Windows.Forms.ToolStripMenuItem(); this.ObjectPropertiesButton = new System.Windows.Forms.ToolStripMenuItem(); this.ViewOptionProperties = new System.Windows.Forms.ToolStripMenuItem(); this.imageList1 = new System.Windows.Forms.ImageList(this.components); this.RenderPanel = new System.Windows.Forms.Panel(); this.MeshBrowser = new System.Windows.Forms.OpenFileDialog(); this.TxtBrowser = new System.Windows.Forms.OpenFileDialog(); this.dockPanel1 = new WeifenLuo.WinFormsUI.Docking.DockPanel(); StatusStrip = new System.Windows.Forms.StatusStrip(); StatusStrip.SuspendLayout(); this.ToolbarStrip.SuspendLayout(); this.SuspendLayout(); // // StatusStrip // StatusStrip.AutoSize = false; StatusStrip.ImageScalingSize = new System.Drawing.Size(20, 20); StatusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.CurrentModeButton, this.toolStripStatusLabel3, this.PositionXTool, this.PositionYTool, this.PositionZTool, this.RotationXTool, this.CameraSpeedTool }); StatusStrip.Location = new System.Drawing.Point(0, 738); StatusStrip.Name = "StatusStrip"; StatusStrip.Padding = new System.Windows.Forms.Padding(1, 0, 19, 0); StatusStrip.Size = new System.Drawing.Size(1623, 30); StatusStrip.TabIndex = 6; StatusStrip.Text = "statusStrip1"; // // CurrentModeButton // this.CurrentModeButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; this.CurrentModeButton.Image = ((System.Drawing.Image)(resources.GetObject("CurrentModeButton.Image"))); this.CurrentModeButton.ImageTransparentColor = System.Drawing.Color.Magenta; this.CurrentModeButton.Name = "CurrentModeButton"; this.CurrentModeButton.Size = new System.Drawing.Size(159, 28); this.CurrentModeButton.Text = "$CurrentModeLabel"; this.CurrentModeButton.ButtonClick += new System.EventHandler(this.CurrentModeButton_ButtonClick); // // toolStripStatusLabel3 // this.toolStripStatusLabel3.Name = "toolStripStatusLabel3"; this.toolStripStatusLabel3.Size = new System.Drawing.Size(151, 25); this.toolStripStatusLabel3.Text = "toolStripStatusLabel3"; // // PositionXTool // this.PositionXTool.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right; this.PositionXTool.AutoSize = false; this.PositionXTool.DecimalPlaces = 5; this.PositionXTool.Increment = new decimal(new int[] { 1, 0, 0, 0 }); this.PositionXTool.Margin = new System.Windows.Forms.Padding(3, 0, 1, 0); this.PositionXTool.Maximum = new decimal(new int[] { 9999999, 0, 0, 0 }); this.PositionXTool.Minimum = new decimal(new int[] { 9999999, 0, 0, -2147483648 }); this.PositionXTool.Name = "PositionXTool"; this.PositionXTool.Overflow = System.Windows.Forms.ToolStripItemOverflow.Always; this.PositionXTool.Padding = new System.Windows.Forms.Padding(2, 0, 2, 0); this.PositionXTool.Size = new System.Drawing.Size(80, 30); this.PositionXTool.Text = "0,00000"; this.PositionXTool.Value = new decimal(new int[] { 0, 0, 0, 0 }); this.PositionXTool.ValueChanged += new System.EventHandler(this.CameraToolsOnValueChanged); // // PositionYTool // this.PositionYTool.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right; this.PositionYTool.AutoSize = false; this.PositionYTool.DecimalPlaces = 5; this.PositionYTool.Increment = new decimal(new int[] { 1, 0, 0, 0 }); this.PositionYTool.Margin = new System.Windows.Forms.Padding(1, 0, 1, 0); this.PositionYTool.Maximum = new decimal(new int[] { 9999999, 0, 0, 0 }); this.PositionYTool.Minimum = new decimal(new int[] { 9999999, 0, 0, -2147483648 }); this.PositionYTool.Name = "PositionYTool"; this.PositionYTool.Overflow = System.Windows.Forms.ToolStripItemOverflow.Always; this.PositionYTool.Padding = new System.Windows.Forms.Padding(2, 0, 2, 0); this.PositionYTool.Size = new System.Drawing.Size(80, 30); this.PositionYTool.Text = "0,00000"; this.PositionYTool.Value = new decimal(new int[] { 0, 0, 0, 0 }); this.PositionYTool.ValueChanged += new System.EventHandler(this.CameraToolsOnValueChanged); // // PositionZTool // this.PositionZTool.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right; this.PositionZTool.AutoSize = false; this.PositionZTool.DecimalPlaces = 5; this.PositionZTool.Increment = new decimal(new int[] { 1, 0, 0, 0 }); this.PositionZTool.Margin = new System.Windows.Forms.Padding(1, 0, 3, 0); this.PositionZTool.Maximum = new decimal(new int[] { 9999999, 0, 0, 0 }); this.PositionZTool.Minimum = new decimal(new int[] { 9999999, 0, 0, -2147483648 }); this.PositionZTool.Name = "PositionZTool"; this.PositionZTool.Overflow = System.Windows.Forms.ToolStripItemOverflow.Always; this.PositionZTool.Padding = new System.Windows.Forms.Padding(2, 0, 2, 0); this.PositionZTool.Size = new System.Drawing.Size(80, 30); this.PositionZTool.Text = "0,00000"; this.PositionZTool.Value = new decimal(new int[] { 0, 0, 0, 0 }); this.PositionZTool.ValueChanged += new System.EventHandler(this.CameraToolsOnValueChanged); // // RotationXTool // this.RotationXTool.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right; this.RotationXTool.AutoSize = false; this.RotationXTool.DecimalPlaces = 5; this.RotationXTool.Increment = new decimal(new int[] { 1, 0, 0, 0 }); this.RotationXTool.Margin = new System.Windows.Forms.Padding(3, 0, 1, 0); this.RotationXTool.Maximum = new decimal(new int[] { 9999999, 0, 0, 0 }); this.RotationXTool.Minimum = new decimal(new int[] { 9999999, 0, 0, -2147483648 }); this.RotationXTool.Name = "RotationXTool"; this.RotationXTool.Overflow = System.Windows.Forms.ToolStripItemOverflow.Always; this.RotationXTool.Padding = new System.Windows.Forms.Padding(5, 0, 2, 0); this.RotationXTool.Size = new System.Drawing.Size(0, 30); this.RotationXTool.Text = "0,00000"; this.RotationXTool.Value = new decimal(new int[] { 0, 0, 0, 0 }); this.RotationXTool.Visible = false; this.RotationXTool.ValueChanged += new System.EventHandler(this.CameraToolsOnValueChanged); // // CameraSpeedTool // this.CameraSpeedTool.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right; this.CameraSpeedTool.AutoSize = false; this.CameraSpeedTool.DecimalPlaces = 5; this.CameraSpeedTool.Increment = new decimal(new int[] { 1, 0, 0, 131072 }); this.CameraSpeedTool.Margin = new System.Windows.Forms.Padding(1, 0, 3, 0); this.CameraSpeedTool.Maximum = new decimal(new int[] { 100, 0, 0, 0 }); this.CameraSpeedTool.Minimum = new decimal(new int[] { 100, 0, 0, -2147483648 }); this.CameraSpeedTool.Name = "CameraSpeedTool"; this.CameraSpeedTool.Overflow = System.Windows.Forms.ToolStripItemOverflow.Always; this.CameraSpeedTool.Padding = new System.Windows.Forms.Padding(2, 0, 2, 0); this.CameraSpeedTool.Size = new System.Drawing.Size(80, 30); this.CameraSpeedTool.Text = "0,00000"; this.CameraSpeedTool.Value = new decimal(new int[] { 0, 0, 0, 0 }); this.CameraSpeedTool.ValueChanged += new System.EventHandler(this.CameraSpeedUpdate); // // ToolbarStrip // this.ToolbarStrip.ImageScalingSize = new System.Drawing.Size(20, 20); this.ToolbarStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.FileButton, this.EditButton, this.ViewButton, this.OptionsButton, this.WindowButton }); this.ToolbarStrip.Location = new System.Drawing.Point(0, 0); this.ToolbarStrip.Name = "ToolbarStrip"; this.ToolbarStrip.Size = new System.Drawing.Size(1623, 27); this.ToolbarStrip.TabIndex = 1; this.ToolbarStrip.Text = "toolStrip1"; // // FileButton // this.FileButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; this.FileButton.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.SaveButton, this.ExitButton }); this.FileButton.Image = ((System.Drawing.Image)(resources.GetObject("FileButton.Image"))); this.FileButton.ImageTransparentColor = System.Drawing.Color.Magenta; this.FileButton.Name = "FileButton"; this.FileButton.Size = new System.Drawing.Size(57, 24); this.FileButton.Text = "$FILE"; // // SaveButton // this.SaveButton.Name = "SaveButton"; this.SaveButton.Size = new System.Drawing.Size(126, 26); this.SaveButton.Text = "$SAVE"; this.SaveButton.Click += new System.EventHandler(this.SaveButton_Click); // // ExitButton // this.ExitButton.Name = "ExitButton"; this.ExitButton.Size = new System.Drawing.Size(126, 26); this.ExitButton.Text = "$EXIT"; this.ExitButton.Click += new System.EventHandler(this.ExitButton_Click); // // EditButton // this.EditButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; this.EditButton.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.AddButton, this.AddSceneFolderButton, this.AddCollisionButton, this.roadDebuggingToolStripMenuItem }); this.EditButton.Image = ((System.Drawing.Image)(resources.GetObject("EditButton.Image"))); this.EditButton.ImageTransparentColor = System.Drawing.Color.Magenta; this.EditButton.Name = "EditButton"; this.EditButton.Size = new System.Drawing.Size(82, 24); this.EditButton.Text = "$CREATE"; // // AddButton // this.AddButton.Name = "AddButton"; this.AddButton.Size = new System.Drawing.Size(233, 26); this.AddButton.Text = "$ADD"; this.AddButton.Click += new System.EventHandler(this.AddButtonOnClick); // // AddSceneFolderButton // this.AddSceneFolderButton.Name = "AddSceneFolderButton"; this.AddSceneFolderButton.Size = new System.Drawing.Size(233, 26); this.AddSceneFolderButton.Text = "$ADD_SCENE_FOLDER"; this.AddSceneFolderButton.Click += new System.EventHandler(this.AddSceneFolderButton_Click); // // AddCollisionButton // this.AddCollisionButton.Name = "AddCollisionButton"; this.AddCollisionButton.Size = new System.Drawing.Size(233, 26); this.AddCollisionButton.Text = "$ADD_COLLISION"; this.AddCollisionButton.Click += new System.EventHandler(this.AddCollisionButton_Click); // // roadDebuggingToolStripMenuItem // this.roadDebuggingToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.AddBackward, this.AddToward, this.AddRoadSplineButton, this.AddSplineTxT, this.AddJunctionButton, this.EditUnkSet3 }); this.roadDebuggingToolStripMenuItem.Name = "roadDebuggingToolStripMenuItem"; this.roadDebuggingToolStripMenuItem.Size = new System.Drawing.Size(233, 26); this.roadDebuggingToolStripMenuItem.Text = "Road Debugging"; // // AddBackward // this.AddBackward.Name = "AddBackward"; this.AddBackward.Size = new System.Drawing.Size(223, 26); this.AddBackward.Text = "$ADD_BACKWARD"; this.AddBackward.Click += new System.EventHandler(this.AddBackwardClick); // // AddToward // this.AddToward.Name = "AddToward"; this.AddToward.Size = new System.Drawing.Size(223, 26); this.AddToward.Text = "$ADD_TOWARD"; this.AddToward.Click += new System.EventHandler(this.AddTowardClick); // // AddRoadSplineButton // this.AddRoadSplineButton.Name = "AddRoadSplineButton"; this.AddRoadSplineButton.Size = new System.Drawing.Size(223, 26); this.AddRoadSplineButton.Text = "$ADD_ROAD_SPLINE"; this.AddRoadSplineButton.Click += new System.EventHandler(this.AddRoadSplineButton_Click); // // AddSplineTxT // this.AddSplineTxT.Name = "AddSplineTxT"; this.AddSplineTxT.Size = new System.Drawing.Size(223, 26); this.AddSplineTxT.Text = "$ADD_SPLINE_TXT"; this.AddSplineTxT.Click += new System.EventHandler(this.AddSplineTxT_Click); // // AddJunctionButton // this.AddJunctionButton.Name = "AddJunctionButton"; this.AddJunctionButton.Size = new System.Drawing.Size(223, 26); this.AddJunctionButton.Text = "$ADD_JUNCTION"; this.AddJunctionButton.Click += new System.EventHandler(this.AddJunctionOnClick); // // EditUnkSet3 // this.EditUnkSet3.Name = "EditUnkSet3"; this.EditUnkSet3.Size = new System.Drawing.Size(223, 26); this.EditUnkSet3.Text = "$EDIT_UNKSET3"; this.EditUnkSet3.Click += new System.EventHandler(this.EditUnkSet3Click); // // ViewButton // this.ViewButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; this.ViewButton.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.ViewTopButton, this.ViewFrontButton, this.ViewSideButton, this.ViewBottomButton, this.ViewSide2Button }); this.ViewButton.Image = ((System.Drawing.Image)(resources.GetObject("ViewButton.Image"))); this.ViewButton.ImageTransparentColor = System.Drawing.Color.Magenta; this.ViewButton.Name = "ViewButton"; this.ViewButton.Size = new System.Drawing.Size(66, 24); this.ViewButton.Text = "$VIEW"; // // ViewTopButton // this.ViewTopButton.Name = "ViewTopButton"; this.ViewTopButton.Size = new System.Drawing.Size(150, 26); this.ViewTopButton.Text = "$TOP"; this.ViewTopButton.Click += new System.EventHandler(this.OnViewTopButtonClicked); // // ViewFrontButton // this.ViewFrontButton.Name = "ViewFrontButton"; this.ViewFrontButton.Size = new System.Drawing.Size(150, 26); this.ViewFrontButton.Text = "$FRONT"; this.ViewFrontButton.Click += new System.EventHandler(this.OnViewFrontButtonClicked); // // ViewSideButton // this.ViewSideButton.Enabled = false; this.ViewSideButton.Name = "ViewSideButton"; this.ViewSideButton.Size = new System.Drawing.Size(150, 26); this.ViewSideButton.Text = "$SIDE"; this.ViewSideButton.Visible = false; this.ViewSideButton.Click += new System.EventHandler(this.OnViewSideButtonClicked); // // ViewBottomButton // this.ViewBottomButton.Enabled = false; this.ViewBottomButton.Name = "ViewBottomButton"; this.ViewBottomButton.Size = new System.Drawing.Size(150, 26); this.ViewBottomButton.Text = "$BOTTOM"; this.ViewBottomButton.Visible = false; this.ViewBottomButton.Click += new System.EventHandler(this.OnViewBottomButtonClicked); // // ViewSide2Button // this.ViewSide2Button.Enabled = false; this.ViewSide2Button.Name = "ViewSide2Button"; this.ViewSide2Button.Size = new System.Drawing.Size(150, 26); this.ViewSide2Button.Text = "$SIDE 2"; this.ViewSide2Button.Visible = false; this.ViewSide2Button.Click += new System.EventHandler(this.OnViewSide2ButtonClicked); // // OptionsButton // this.OptionsButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; this.OptionsButton.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.ToggleWireframeButton, this.ToggleCullingButton, this.EditLighting }); this.OptionsButton.Image = ((System.Drawing.Image)(resources.GetObject("OptionsButton.Image"))); this.OptionsButton.ImageTransparentColor = System.Drawing.Color.Magenta; this.OptionsButton.Name = "OptionsButton"; this.OptionsButton.Size = new System.Drawing.Size(92, 24); this.OptionsButton.Text = "$OPTIONS"; // // ToggleWireframeButton // this.ToggleWireframeButton.Name = "ToggleWireframeButton"; this.ToggleWireframeButton.Size = new System.Drawing.Size(233, 26); this.ToggleWireframeButton.Text = "$TOGGLE_WIREFRAME"; this.ToggleWireframeButton.Click += new System.EventHandler(this.FillModeButton_Click); // // ToggleCullingButton // this.ToggleCullingButton.Name = "ToggleCullingButton"; this.ToggleCullingButton.Size = new System.Drawing.Size(233, 26); this.ToggleCullingButton.Text = "$TOGGLE_CULLING"; this.ToggleCullingButton.Click += new System.EventHandler(this.CullModeButton_Click); // // EditLighting // this.EditLighting.Name = "EditLighting"; this.EditLighting.Size = new System.Drawing.Size(233, 26); this.EditLighting.Text = "$EDIT_LIGHTING"; this.EditLighting.Click += new System.EventHandler(this.EditLighting_Click); // // WindowButton // this.WindowButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; this.WindowButton.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.SceneTreeButton, this.ObjectPropertiesButton, this.ViewOptionProperties }); this.WindowButton.Image = ((System.Drawing.Image)(resources.GetObject("WindowButton.Image"))); this.WindowButton.ImageTransparentColor = System.Drawing.Color.Magenta; this.WindowButton.Name = "WindowButton"; this.WindowButton.Size = new System.Drawing.Size(104, 24); this.WindowButton.Text = "$WINDOWS"; // // SceneTreeButton // this.SceneTreeButton.Name = "SceneTreeButton"; this.SceneTreeButton.Size = new System.Drawing.Size(241, 26); this.SceneTreeButton.Text = "$VIEW_SCENE_TREE"; this.SceneTreeButton.Click += new System.EventHandler(this.SceneTreeOnClicked); // // ObjectPropertiesButton // this.ObjectPropertiesButton.Name = "ObjectPropertiesButton"; this.ObjectPropertiesButton.Size = new System.Drawing.Size(241, 26); this.ObjectPropertiesButton.Text = "$VIEW_PROPERTY_GRID"; this.ObjectPropertiesButton.Click += new System.EventHandler(this.PropertyGridOnClicked); // // ViewOptionProperties // this.ViewOptionProperties.Name = "ViewOptionProperties"; this.ViewOptionProperties.Size = new System.Drawing.Size(241, 26); this.ViewOptionProperties.Text = "$VIEW_OPTIONS"; this.ViewOptionProperties.Click += new System.EventHandler(this.ViewOptionProperties_Click); // // imageList1 // this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream"))); this.imageList1.TransparentColor = System.Drawing.Color.Transparent; this.imageList1.Images.SetKeyName(0, "StaticIcon"); this.imageList1.Images.SetKeyName(1, "LightIcon"); // // RenderPanel // this.RenderPanel.Dock = System.Windows.Forms.DockStyle.Fill; this.RenderPanel.Location = new System.Drawing.Point(0, 27); this.RenderPanel.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4); this.RenderPanel.Name = "RenderPanel"; this.RenderPanel.Size = new System.Drawing.Size(1623, 711); this.RenderPanel.TabIndex = 0; // // MeshBrowser // this.MeshBrowser.Filter = "Meshes|*.m2t|FBX|*.fbx"; // // TxtBrowser // this.TxtBrowser.Filter = "Text Document|*txt"; // // dockPanel1 // this.dockPanel1.Dock = System.Windows.Forms.DockStyle.Fill; this.dockPanel1.DocumentStyle = WeifenLuo.WinFormsUI.Docking.DocumentStyle.DockingWindow; this.dockPanel1.Location = new System.Drawing.Point(0, 27); this.dockPanel1.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4); this.dockPanel1.Name = "dockPanel1"; this.dockPanel1.Size = new System.Drawing.Size(1623, 711); this.dockPanel1.TabIndex = 0; // // D3DForm // this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(1623, 768); this.Controls.Add(this.dockPanel1); this.Controls.Add(this.RenderPanel); this.Controls.Add(StatusStrip); this.Controls.Add(this.ToolbarStrip); this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4); this.Name = "D3DForm"; this.Text = "Map Editor"; this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.OnFormClosing); StatusStrip.ResumeLayout(false); StatusStrip.PerformLayout(); this.ToolbarStrip.ResumeLayout(false); this.ToolbarStrip.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.MenuStrip menuStrip; System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(BrowseForm)); System.Windows.Forms.ToolStripContainer toolStripContainer1; System.Windows.Forms.StatusStrip statusStrip1; System.Windows.Forms.SplitContainer splitContainer1; System.Windows.Forms.ToolStrip toolStrip1; System.Windows.Forms.Timer timer; this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.openToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.searchStatusLabel = new System.Windows.Forms.ToolStripStatusLabel(); this.hitsBox = new System.Windows.Forms.ListBox(); this.webBrowser = new System.Windows.Forms.WebBrowser(); this.searchBox = new System.Windows.Forms.ToolStripTextBox(); this.goButton = new System.Windows.Forms.ToolStripButton(); this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator(); this.backButton = new System.Windows.Forms.ToolStripButton(); this.nextButton = new System.Windows.Forms.ToolStripButton(); this.closeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator(); this.exportStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator(); this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.optionsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.setHspellPathToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); menuStrip = new System.Windows.Forms.MenuStrip(); toolStripContainer1 = new System.Windows.Forms.ToolStripContainer(); statusStrip1 = new System.Windows.Forms.StatusStrip(); splitContainer1 = new System.Windows.Forms.SplitContainer(); toolStrip1 = new System.Windows.Forms.ToolStrip(); timer = new System.Windows.Forms.Timer(this.components); menuStrip.SuspendLayout(); toolStripContainer1.BottomToolStripPanel.SuspendLayout(); toolStripContainer1.ContentPanel.SuspendLayout(); toolStripContainer1.TopToolStripPanel.SuspendLayout(); toolStripContainer1.SuspendLayout(); statusStrip1.SuspendLayout(); splitContainer1.Panel1.SuspendLayout(); splitContainer1.Panel2.SuspendLayout(); splitContainer1.SuspendLayout(); toolStrip1.SuspendLayout(); this.SuspendLayout(); // // menuStrip // menuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.fileToolStripMenuItem, this.optionsToolStripMenuItem, this.helpToolStripMenuItem}); resources.ApplyResources(menuStrip, "menuStrip"); menuStrip.Name = "menuStrip"; // // fileToolStripMenuItem // this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.openToolStripMenuItem, this.closeToolStripMenuItem, this.toolStripSeparator1, this.exportStripMenuItem, this.toolStripSeparator4, this.exitToolStripMenuItem}); this.fileToolStripMenuItem.Name = "fileToolStripMenuItem"; resources.ApplyResources(this.fileToolStripMenuItem, "fileToolStripMenuItem"); // // openToolStripMenuItem // this.openToolStripMenuItem.Name = "openToolStripMenuItem"; resources.ApplyResources(this.openToolStripMenuItem, "openToolStripMenuItem"); this.openToolStripMenuItem.Click += new System.EventHandler(this.openToolStripMenuItem_Click); // // toolStripContainer1 // // // toolStripContainer1.BottomToolStripPanel // toolStripContainer1.BottomToolStripPanel.Controls.Add(statusStrip1); // // toolStripContainer1.ContentPanel // toolStripContainer1.ContentPanel.Controls.Add(splitContainer1); resources.ApplyResources(toolStripContainer1.ContentPanel, "toolStripContainer1.ContentPanel"); resources.ApplyResources(toolStripContainer1, "toolStripContainer1"); toolStripContainer1.LeftToolStripPanelVisible = false; toolStripContainer1.Name = "toolStripContainer1"; toolStripContainer1.RightToolStripPanelVisible = false; // // toolStripContainer1.TopToolStripPanel // toolStripContainer1.TopToolStripPanel.Controls.Add(toolStrip1); // // statusStrip1 // resources.ApplyResources(statusStrip1, "statusStrip1"); statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.searchStatusLabel}); statusStrip1.Name = "statusStrip1"; // // searchStatusLabel // this.searchStatusLabel.Name = "searchStatusLabel"; resources.ApplyResources(this.searchStatusLabel, "searchStatusLabel"); // // splitContainer1 // splitContainer1.DataBindings.Add(new System.Windows.Forms.Binding("SplitterDistance", global::BzReader.Properties.Settings.Default, "SplitterDistance", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged)); resources.ApplyResources(splitContainer1, "splitContainer1"); splitContainer1.FixedPanel = System.Windows.Forms.FixedPanel.Panel1; splitContainer1.Name = "splitContainer1"; // // splitContainer1.Panel1 // splitContainer1.Panel1.Controls.Add(this.hitsBox); // // splitContainer1.Panel2 // splitContainer1.Panel2.Controls.Add(this.webBrowser); splitContainer1.SplitterDistance = global::BzReader.Properties.Settings.Default.SplitterDistance; // // hitsBox // resources.ApplyResources(this.hitsBox, "hitsBox"); this.hitsBox.FormattingEnabled = true; this.hitsBox.Name = "hitsBox"; this.hitsBox.SizeChanged += new System.EventHandler(this.hitsBox_SizeChanged); this.hitsBox.SelectedValueChanged += new System.EventHandler(this.hitsBox_SelectedValueChanged); // // webBrowser // this.webBrowser.AllowWebBrowserDrop = false; resources.ApplyResources(this.webBrowser, "webBrowser"); this.webBrowser.MinimumSize = new System.Drawing.Size(20, 20); this.webBrowser.Name = "webBrowser"; this.webBrowser.ScriptErrorsSuppressed = true; // // toolStrip1 // resources.ApplyResources(toolStrip1, "toolStrip1"); toolStrip1.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden; toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.searchBox, this.goButton, this.toolStripSeparator2, this.backButton, this.nextButton}); toolStrip1.Name = "toolStrip1"; toolStrip1.Stretch = true; // // searchBox // resources.ApplyResources(this.searchBox, "searchBox"); this.searchBox.AutoToolTip = true; this.searchBox.Name = "searchBox"; this.searchBox.TextChanged += new System.EventHandler(this.searchBox_TextChanged); // // goButton // this.goButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; resources.ApplyResources(this.goButton, "goButton"); this.goButton.Name = "goButton"; this.goButton.Click += new System.EventHandler(this.goButton_Click); // // toolStripSeparator2 // this.toolStripSeparator2.Name = "toolStripSeparator2"; resources.ApplyResources(this.toolStripSeparator2, "toolStripSeparator2"); // // backButton // this.backButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; resources.ApplyResources(this.backButton, "backButton"); this.backButton.Name = "backButton"; this.backButton.Click += new System.EventHandler(this.backButton_Click); // // nextButton // this.nextButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; resources.ApplyResources(this.nextButton, "nextButton"); this.nextButton.Name = "nextButton"; this.nextButton.Click += new System.EventHandler(this.nextButton_Click); // // closeToolStripMenuItem // this.closeToolStripMenuItem.Name = "closeToolStripMenuItem"; resources.ApplyResources(this.closeToolStripMenuItem, "closeToolStripMenuItem"); // // toolStripSeparator1 // this.toolStripSeparator1.Name = "toolStripSeparator1"; resources.ApplyResources(this.toolStripSeparator1, "toolStripSeparator1"); // // exportStripMenuItem // this.exportStripMenuItem.Name = "exportStripMenuItem"; resources.ApplyResources(this.exportStripMenuItem, "exportStripMenuItem"); this.exportStripMenuItem.Click += new System.EventHandler(this.exportStripMenuItem_Click); // // toolStripSeparator4 // this.toolStripSeparator4.Name = "toolStripSeparator4"; resources.ApplyResources(this.toolStripSeparator4, "toolStripSeparator4"); // // exitToolStripMenuItem // this.exitToolStripMenuItem.Name = "exitToolStripMenuItem"; resources.ApplyResources(this.exitToolStripMenuItem, "exitToolStripMenuItem"); this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click); // // optionsToolStripMenuItem // this.optionsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.setHspellPathToolStripMenuItem}); this.optionsToolStripMenuItem.Name = "optionsToolStripMenuItem"; resources.ApplyResources(this.optionsToolStripMenuItem, "optionsToolStripMenuItem"); // // setHspellPathToolStripMenuItem // this.setHspellPathToolStripMenuItem.Name = "setHspellPathToolStripMenuItem"; resources.ApplyResources(this.setHspellPathToolStripMenuItem, "setHspellPathToolStripMenuItem"); this.setHspellPathToolStripMenuItem.Click += new System.EventHandler(this.setHspellPathToolStripMenuItem_Click); // // helpToolStripMenuItem // this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.aboutToolStripMenuItem}); this.helpToolStripMenuItem.Name = "helpToolStripMenuItem"; resources.ApplyResources(this.helpToolStripMenuItem, "helpToolStripMenuItem"); // // aboutToolStripMenuItem // this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem"; resources.ApplyResources(this.aboutToolStripMenuItem, "aboutToolStripMenuItem"); this.aboutToolStripMenuItem.Click += new System.EventHandler(this.aboutToolStripMenuItem_Click); // // timer // timer.Enabled = true; timer.Tick += new System.EventHandler(this.timer_Tick); // // BrowseForm // resources.ApplyResources(this, "$this"); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.Controls.Add(toolStripContainer1); this.Controls.Add(menuStrip); this.MainMenuStrip = menuStrip; this.Name = "BrowseForm"; this.WindowState = System.Windows.Forms.FormWindowState.Maximized; this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.BrowseForm_FormClosing); menuStrip.ResumeLayout(false); menuStrip.PerformLayout(); toolStripContainer1.BottomToolStripPanel.ResumeLayout(false); toolStripContainer1.BottomToolStripPanel.PerformLayout(); toolStripContainer1.ContentPanel.ResumeLayout(false); toolStripContainer1.TopToolStripPanel.ResumeLayout(false); toolStripContainer1.TopToolStripPanel.PerformLayout(); toolStripContainer1.ResumeLayout(false); toolStripContainer1.PerformLayout(); statusStrip1.ResumeLayout(false); statusStrip1.PerformLayout(); splitContainer1.Panel1.ResumeLayout(false); splitContainer1.Panel2.ResumeLayout(false); splitContainer1.ResumeLayout(false); toolStrip1.ResumeLayout(false); toolStrip1.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.ToolStripSeparator toolStripSeparator2; System.Windows.Forms.ToolStripSeparator menuItem4; System.Windows.Forms.ToolStripSeparator toolStripSeparator1; System.Windows.Forms.StatusStrip status; System.Windows.Forms.ToolStripSeparator toolStripSeparator4; System.Windows.Forms.ToolStripSeparator toolStripSeparator5; System.Windows.Forms.ToolStripSeparator toolStripSeparator6; System.Windows.Forms.ToolStripSeparator toolStripSeparator7; System.Windows.Forms.ToolStripMenuItem playDialogueNodeToolStripMenuItem; System.Windows.Forms.ToolStripMenuItem exportGameLipsyncToolStripMenuItem; System.Windows.Forms.ToolStripMenuItem menuItemHelp; WeifenLuo.WinFormsUI.Docking.DockPanelSkin dockPanelSkin3 = new WeifenLuo.WinFormsUI.Docking.DockPanelSkin(); WeifenLuo.WinFormsUI.Docking.AutoHideStripSkin autoHideStripSkin3 = new WeifenLuo.WinFormsUI.Docking.AutoHideStripSkin(); WeifenLuo.WinFormsUI.Docking.DockPanelGradient dockPanelGradient7 = new WeifenLuo.WinFormsUI.Docking.DockPanelGradient(); WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient15 = new WeifenLuo.WinFormsUI.Docking.TabGradient(); WeifenLuo.WinFormsUI.Docking.DockPaneStripSkin dockPaneStripSkin3 = new WeifenLuo.WinFormsUI.Docking.DockPaneStripSkin(); WeifenLuo.WinFormsUI.Docking.DockPaneStripGradient dockPaneStripGradient3 = new WeifenLuo.WinFormsUI.Docking.DockPaneStripGradient(); WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient16 = new WeifenLuo.WinFormsUI.Docking.TabGradient(); WeifenLuo.WinFormsUI.Docking.DockPanelGradient dockPanelGradient8 = new WeifenLuo.WinFormsUI.Docking.DockPanelGradient(); WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient17 = new WeifenLuo.WinFormsUI.Docking.TabGradient(); WeifenLuo.WinFormsUI.Docking.DockPaneStripToolWindowGradient dockPaneStripToolWindowGradient3 = new WeifenLuo.WinFormsUI.Docking.DockPaneStripToolWindowGradient(); WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient18 = new WeifenLuo.WinFormsUI.Docking.TabGradient(); WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient19 = new WeifenLuo.WinFormsUI.Docking.TabGradient(); WeifenLuo.WinFormsUI.Docking.DockPanelGradient dockPanelGradient9 = new WeifenLuo.WinFormsUI.Docking.DockPanelGradient(); WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient20 = new WeifenLuo.WinFormsUI.Docking.TabGradient(); WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient21 = new WeifenLuo.WinFormsUI.Docking.TabGradient(); this.statusProgressBar = new System.Windows.Forms.ToolStripProgressBar(); this.statusLabel = new System.Windows.Forms.ToolStripStatusLabel(); this.faceFXToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.menuMain = new System.Windows.Forms.MenuStrip(); this.menuItemProject = new System.Windows.Forms.ToolStripMenuItem(); this.menuItemNewProject = new System.Windows.Forms.ToolStripMenuItem(); this.menuItemOpenProject = new System.Windows.Forms.ToolStripMenuItem(); this.menuItemNewDialogue = new System.Windows.Forms.ToolStripMenuItem(); this.saveFileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.saveAllDirtyToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.toolStripSeparator8 = new System.Windows.Forms.ToolStripSeparator(); this.menuItemSaveAll = new System.Windows.Forms.ToolStripMenuItem(); this.menuItemReloadFile = new System.Windows.Forms.ToolStripMenuItem(); this.menuItemReloadAllFiles = new System.Windows.Forms.ToolStripMenuItem(); this.menuItemCloseAll = new System.Windows.Forms.ToolStripMenuItem(); this.menuItemCloseProject = new System.Windows.Forms.ToolStripMenuItem(); this.menuItemExit = new System.Windows.Forms.ToolStripMenuItem(); this.editToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.replaceActorsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.toolStripSeparator12 = new System.Windows.Forms.ToolStripSeparator(); this.projectPropertiesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.menuItemViews = new System.Windows.Forms.ToolStripMenuItem(); this.menuItemProjectExplorer = new System.Windows.Forms.ToolStripMenuItem(); this.menuItemProjectProperties = new System.Windows.Forms.ToolStripMenuItem(); this.menuItemOutputLog = new System.Windows.Forms.ToolStripMenuItem(); this.menuItemResetPanels = new System.Windows.Forms.ToolStripMenuItem(); this.menuItemExport = new System.Windows.Forms.ToolStripMenuItem(); this.menuItemPlayDialogue = new System.Windows.Forms.ToolStripMenuItem(); this.menuItemCheck = new System.Windows.Forms.ToolStripMenuItem(); this.menuItemCheckAll = new System.Windows.Forms.ToolStripMenuItem(); this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator(); this.menuItemImportLocalization = new System.Windows.Forms.ToolStripMenuItem(); this.exportDialoguesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.toolStripSeparator10 = new System.Windows.Forms.ToolStripSeparator(); this.menuItemShowStats = new System.Windows.Forms.ToolStripMenuItem(); this.showAllStatsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.menuItemExportStats = new System.Windows.Forms.ToolStripMenuItem(); this.toolStripSeparator9 = new System.Windows.Forms.ToolStripSeparator(); this.menuItemLocalization = new System.Windows.Forms.ToolStripMenuItem(); this.unreal4pomanifestToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.menuItemVoicing = new System.Windows.Forms.ToolStripMenuItem(); this.exportGameConstantsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.unreal4ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.menuItemAsk = new System.Windows.Forms.ToolStripMenuItem(); this.menuItemAbout = new System.Windows.Forms.ToolStripMenuItem(); this.dockPanel = new WeifenLuo.WinFormsUI.Docking.DockPanel(); this.exportShardsCodeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator(); menuItem4 = new System.Windows.Forms.ToolStripSeparator(); toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator(); status = new System.Windows.Forms.StatusStrip(); toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator(); toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator(); toolStripSeparator6 = new System.Windows.Forms.ToolStripSeparator(); toolStripSeparator7 = new System.Windows.Forms.ToolStripSeparator(); playDialogueNodeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); exportGameLipsyncToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); menuItemHelp = new System.Windows.Forms.ToolStripMenuItem(); status.SuspendLayout(); this.menuMain.SuspendLayout(); this.SuspendLayout(); // // toolStripSeparator2 // toolStripSeparator2.Name = "toolStripSeparator2"; toolStripSeparator2.Size = new System.Drawing.Size(227, 6); // // menuItem4 // menuItem4.Name = "menuItem4"; menuItem4.Size = new System.Drawing.Size(242, 6); // // toolStripSeparator1 // toolStripSeparator1.Name = "toolStripSeparator1"; toolStripSeparator1.Size = new System.Drawing.Size(153, 6); // // status // status.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.statusProgressBar, this.statusLabel }); status.Location = new System.Drawing.Point(0, 423); status.Name = "status"; status.Size = new System.Drawing.Size(691, 22); status.TabIndex = 4; // // statusProgressBar // this.statusProgressBar.Name = "statusProgressBar"; this.statusProgressBar.Size = new System.Drawing.Size(100, 16); // // statusLabel // this.statusLabel.Name = "statusLabel"; this.statusLabel.Size = new System.Drawing.Size(45, 17); this.statusLabel.Text = "Default"; // // toolStripSeparator4 // toolStripSeparator4.Name = "toolStripSeparator4"; toolStripSeparator4.Size = new System.Drawing.Size(242, 6); // // toolStripSeparator5 // toolStripSeparator5.Name = "toolStripSeparator5"; toolStripSeparator5.Size = new System.Drawing.Size(242, 6); // // toolStripSeparator6 // toolStripSeparator6.Name = "toolStripSeparator6"; toolStripSeparator6.Size = new System.Drawing.Size(242, 6); // // toolStripSeparator7 // toolStripSeparator7.Name = "toolStripSeparator7"; toolStripSeparator7.Size = new System.Drawing.Size(242, 6); // // playDialogueNodeToolStripMenuItem // playDialogueNodeToolStripMenuItem.Image = global::DialogueEditor.Properties.Resources.filmDot; playDialogueNodeToolStripMenuItem.Name = "playDialogueNodeToolStripMenuItem"; playDialogueNodeToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Shift | System.Windows.Forms.Keys.F5))); playDialogueNodeToolStripMenuItem.Size = new System.Drawing.Size(230, 22); playDialogueNodeToolStripMenuItem.Text = "Play Dialogue Node"; playDialogueNodeToolStripMenuItem.Click += new System.EventHandler(this.OnPlayDialogueNode); // // exportGameLipsyncToolStripMenuItem // exportGameLipsyncToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.faceFXToolStripMenuItem }); exportGameLipsyncToolStripMenuItem.Image = global::DialogueEditor.Properties.Resources.Export; exportGameLipsyncToolStripMenuItem.Name = "exportGameLipsyncToolStripMenuItem"; exportGameLipsyncToolStripMenuItem.Size = new System.Drawing.Size(230, 22); exportGameLipsyncToolStripMenuItem.Text = "Export Game Lipsync"; // // faceFXToolStripMenuItem // this.faceFXToolStripMenuItem.Name = "faceFXToolStripMenuItem"; this.faceFXToolStripMenuItem.Size = new System.Drawing.Size(114, 22); this.faceFXToolStripMenuItem.Text = "Face FX"; this.faceFXToolStripMenuItem.Click += new System.EventHandler(this.OnExportLipsyncFaceFX); // // menuItemHelp // menuItemHelp.Image = global::DialogueEditor.Properties.Resources.help; menuItemHelp.Name = "menuItemHelp"; menuItemHelp.ShortcutKeys = System.Windows.Forms.Keys.F1; menuItemHelp.Size = new System.Drawing.Size(118, 22); menuItemHelp.Text = "Help"; menuItemHelp.Click += new System.EventHandler(this.OnShowHelp); // // menuMain // this.menuMain.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.menuItemProject, this.editToolStripMenuItem, this.menuItemViews, this.menuItemExport, this.menuItemAsk }); this.menuMain.Location = new System.Drawing.Point(0, 0); this.menuMain.Name = "menuMain"; this.menuMain.Size = new System.Drawing.Size(691, 24); this.menuMain.TabIndex = 7; // // menuItemProject // this.menuItemProject.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.menuItemNewProject, this.menuItemOpenProject, toolStripSeparator4, this.menuItemNewDialogue, toolStripSeparator5, this.saveFileToolStripMenuItem, this.saveAllDirtyToolStripMenuItem, this.toolStripSeparator8, this.menuItemSaveAll, toolStripSeparator7, this.menuItemReloadFile, this.menuItemReloadAllFiles, toolStripSeparator6, this.menuItemCloseAll, this.menuItemCloseProject, menuItem4, this.menuItemExit }); this.menuItemProject.Name = "menuItemProject"; this.menuItemProject.Size = new System.Drawing.Size(37, 20); this.menuItemProject.Text = "&File"; // // menuItemNewProject // this.menuItemNewProject.Image = global::DialogueEditor.Properties.Resources.book; this.menuItemNewProject.Name = "menuItemNewProject"; this.menuItemNewProject.Size = new System.Drawing.Size(245, 22); this.menuItemNewProject.Text = "&New Project"; this.menuItemNewProject.Click += new System.EventHandler(this.OnNewProject); // // menuItemOpenProject // this.menuItemOpenProject.Image = global::DialogueEditor.Properties.Resources.book_open; this.menuItemOpenProject.Name = "menuItemOpenProject"; this.menuItemOpenProject.Size = new System.Drawing.Size(245, 22); this.menuItemOpenProject.Text = "&Open Project"; this.menuItemOpenProject.Click += new System.EventHandler(this.OnOpenProject); // // menuItemNewDialogue // this.menuItemNewDialogue.Image = global::DialogueEditor.Properties.Resources.page; this.menuItemNewDialogue.Name = "menuItemNewDialogue"; this.menuItemNewDialogue.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.N))); this.menuItemNewDialogue.Size = new System.Drawing.Size(245, 22); this.menuItemNewDialogue.Text = "New &Dialogue"; this.menuItemNewDialogue.Click += new System.EventHandler(this.OnNewDialogue); // // saveFileToolStripMenuItem // this.saveFileToolStripMenuItem.Image = global::DialogueEditor.Properties.Resources.page_save_white; this.saveFileToolStripMenuItem.Name = "saveFileToolStripMenuItem"; this.saveFileToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.S))); this.saveFileToolStripMenuItem.Size = new System.Drawing.Size(245, 22); this.saveFileToolStripMenuItem.Text = "&Save File"; this.saveFileToolStripMenuItem.Click += new System.EventHandler(this.OnSaveFile); // // saveAllDirtyToolStripMenuItem // this.saveAllDirtyToolStripMenuItem.Image = global::DialogueEditor.Properties.Resources.page_saves; this.saveAllDirtyToolStripMenuItem.Name = "saveAllDirtyToolStripMenuItem"; this.saveAllDirtyToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Shift) | System.Windows.Forms.Keys.S))); this.saveAllDirtyToolStripMenuItem.Size = new System.Drawing.Size(245, 22); this.saveAllDirtyToolStripMenuItem.Text = "Save Opened Files"; this.saveAllDirtyToolStripMenuItem.Click += new System.EventHandler(this.OnSaveAllFiles); // // toolStripSeparator8 // this.toolStripSeparator8.Name = "toolStripSeparator8"; this.toolStripSeparator8.Size = new System.Drawing.Size(242, 6); // // menuItemSaveAll // this.menuItemSaveAll.Image = global::DialogueEditor.Properties.Resources.drive_disk; this.menuItemSaveAll.Name = "menuItemSaveAll"; this.menuItemSaveAll.Size = new System.Drawing.Size(245, 22); this.menuItemSaveAll.Text = "&Force Save Full Project"; this.menuItemSaveAll.Click += new System.EventHandler(this.OnForceSaveAll); // // menuItemReloadFile // this.menuItemReloadFile.Image = global::DialogueEditor.Properties.Resources.arrow_redo; this.menuItemReloadFile.Name = "menuItemReloadFile"; this.menuItemReloadFile.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.R))); this.menuItemReloadFile.Size = new System.Drawing.Size(245, 22); this.menuItemReloadFile.Text = "&Reload File"; this.menuItemReloadFile.Click += new System.EventHandler(this.OnReloadFile); // // menuItemReloadAllFiles // this.menuItemReloadAllFiles.Image = global::DialogueEditor.Properties.Resources.arrow_refresh; this.menuItemReloadAllFiles.Name = "menuItemReloadAllFiles"; this.menuItemReloadAllFiles.ShortcutKeys = ((System.Windows.Forms.Keys)(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Shift) | System.Windows.Forms.Keys.R))); this.menuItemReloadAllFiles.Size = new System.Drawing.Size(245, 22); this.menuItemReloadAllFiles.Text = "Reload Full Project"; this.menuItemReloadAllFiles.Click += new System.EventHandler(this.OnReloadAllFiles); // // menuItemCloseAll // this.menuItemCloseAll.Image = global::DialogueEditor.Properties.Resources.page_white_delete; this.menuItemCloseAll.Name = "menuItemCloseAll"; this.menuItemCloseAll.Size = new System.Drawing.Size(245, 22); this.menuItemCloseAll.Text = "&Close Opened Files"; this.menuItemCloseAll.Click += new System.EventHandler(this.OnCloseAllFiles); // // menuItemCloseProject // this.menuItemCloseProject.Image = global::DialogueEditor.Properties.Resources.drive_delete; this.menuItemCloseProject.Name = "menuItemCloseProject"; this.menuItemCloseProject.Size = new System.Drawing.Size(245, 22); this.menuItemCloseProject.Text = "Close &Project"; this.menuItemCloseProject.Click += new System.EventHandler(this.OnCloseProject); // // menuItemExit // this.menuItemExit.Name = "menuItemExit"; this.menuItemExit.Size = new System.Drawing.Size(245, 22); this.menuItemExit.Text = "&Exit"; this.menuItemExit.Click += new System.EventHandler(this.OnExit); // // editToolStripMenuItem // this.editToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.replaceActorsToolStripMenuItem, this.toolStripSeparator12, this.projectPropertiesToolStripMenuItem }); this.editToolStripMenuItem.Name = "editToolStripMenuItem"; this.editToolStripMenuItem.Size = new System.Drawing.Size(39, 20); this.editToolStripMenuItem.Text = "Edit"; // // replaceActorsToolStripMenuItem // this.replaceActorsToolStripMenuItem.Image = global::DialogueEditor.Properties.Resources.group; this.replaceActorsToolStripMenuItem.Name = "replaceActorsToolStripMenuItem"; this.replaceActorsToolStripMenuItem.Size = new System.Drawing.Size(167, 22); this.replaceActorsToolStripMenuItem.Text = "Replace Actor"; this.replaceActorsToolStripMenuItem.Click += new System.EventHandler(this.OnReplaceActor); // // toolStripSeparator12 // this.toolStripSeparator12.Name = "toolStripSeparator12"; this.toolStripSeparator12.Size = new System.Drawing.Size(164, 6); // // projectPropertiesToolStripMenuItem // this.projectPropertiesToolStripMenuItem.Image = global::DialogueEditor.Properties.Resources.book; this.projectPropertiesToolStripMenuItem.Name = "projectPropertiesToolStripMenuItem"; this.projectPropertiesToolStripMenuItem.Size = new System.Drawing.Size(167, 22); this.projectPropertiesToolStripMenuItem.Text = "Project properties"; this.projectPropertiesToolStripMenuItem.Click += new System.EventHandler(this.OnEditProjectProperties); // // menuItemViews // this.menuItemViews.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.menuItemProjectExplorer, this.menuItemProjectProperties, this.menuItemOutputLog, toolStripSeparator1, this.menuItemResetPanels }); this.menuItemViews.Name = "menuItemViews"; this.menuItemViews.Size = new System.Drawing.Size(44, 20); this.menuItemViews.Text = "&View"; // // menuItemProjectExplorer // this.menuItemProjectExplorer.CheckOnClick = true; this.menuItemProjectExplorer.Name = "menuItemProjectExplorer"; this.menuItemProjectExplorer.Size = new System.Drawing.Size(156, 22); this.menuItemProjectExplorer.Text = "Project &Explorer"; this.menuItemProjectExplorer.CheckedChanged += new System.EventHandler(this.OnCheckProjectExplorer); // // menuItemProjectProperties // this.menuItemProjectProperties.CheckOnClick = true; this.menuItemProjectProperties.Name = "menuItemProjectProperties"; this.menuItemProjectProperties.Size = new System.Drawing.Size(156, 22); this.menuItemProjectProperties.Text = "&Properties"; this.menuItemProjectProperties.CheckedChanged += new System.EventHandler(this.OnCheckProperties); // // menuItemOutputLog // this.menuItemOutputLog.CheckOnClick = true; this.menuItemOutputLog.Name = "menuItemOutputLog"; this.menuItemOutputLog.Size = new System.Drawing.Size(156, 22); this.menuItemOutputLog.Text = "&Output Log"; this.menuItemOutputLog.CheckedChanged += new System.EventHandler(this.OnCheckOutputLog); // // menuItemResetPanels // this.menuItemResetPanels.Name = "menuItemResetPanels"; this.menuItemResetPanels.Size = new System.Drawing.Size(156, 22); this.menuItemResetPanels.Text = "&Reset Panels"; this.menuItemResetPanels.Click += new System.EventHandler(this.OnResetPanels); // // menuItemExport // this.menuItemExport.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.menuItemPlayDialogue, playDialogueNodeToolStripMenuItem, toolStripSeparator2, this.menuItemCheck, this.menuItemCheckAll, this.toolStripSeparator3, this.menuItemImportLocalization, this.exportDialoguesToolStripMenuItem, this.exportShardsCodeToolStripMenuItem, this.toolStripSeparator10, this.menuItemShowStats, this.showAllStatsToolStripMenuItem, this.menuItemExportStats, this.toolStripSeparator9, this.menuItemLocalization, this.menuItemVoicing, exportGameLipsyncToolStripMenuItem, this.exportGameConstantsToolStripMenuItem }); this.menuItemExport.Name = "menuItemExport"; this.menuItemExport.Size = new System.Drawing.Size(47, 20); this.menuItemExport.Text = "&Tools"; // // menuItemPlayDialogue // this.menuItemPlayDialogue.Image = global::DialogueEditor.Properties.Resources.film; this.menuItemPlayDialogue.Name = "menuItemPlayDialogue"; this.menuItemPlayDialogue.ShortcutKeys = System.Windows.Forms.Keys.F5; this.menuItemPlayDialogue.Size = new System.Drawing.Size(230, 22); this.menuItemPlayDialogue.Text = "&Play Dialogue"; this.menuItemPlayDialogue.Click += new System.EventHandler(this.OnPlayDialogue); // // menuItemCheck // this.menuItemCheck.Image = global::DialogueEditor.Properties.Resources.check; this.menuItemCheck.Name = "menuItemCheck"; this.menuItemCheck.ShortcutKeys = System.Windows.Forms.Keys.F7; this.menuItemCheck.Size = new System.Drawing.Size(230, 22); this.menuItemCheck.Text = "Check Dialogue"; this.menuItemCheck.Click += new System.EventHandler(this.OnCheckCurrent); // // menuItemCheckAll // this.menuItemCheckAll.Image = global::DialogueEditor.Properties.Resources.check2; this.menuItemCheckAll.Name = "menuItemCheckAll"; this.menuItemCheckAll.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Shift | System.Windows.Forms.Keys.F7))); this.menuItemCheckAll.Size = new System.Drawing.Size(230, 22); this.menuItemCheckAll.Text = "&Check All Dialogues"; this.menuItemCheckAll.Click += new System.EventHandler(this.OnCheckAll); // // toolStripSeparator3 // this.toolStripSeparator3.Name = "toolStripSeparator3"; this.toolStripSeparator3.Size = new System.Drawing.Size(227, 6); // // menuItemImportLocalization // this.menuItemImportLocalization.Image = global::DialogueEditor.Properties.Resources.Import; this.menuItemImportLocalization.Name = "menuItemImportLocalization"; this.menuItemImportLocalization.Size = new System.Drawing.Size(230, 22); this.menuItemImportLocalization.Text = "Import Dialogues"; this.menuItemImportLocalization.Click += new System.EventHandler(this.OnImportDialogues); // // exportDialoguesToolStripMenuItem // this.exportDialoguesToolStripMenuItem.Image = global::DialogueEditor.Properties.Resources.Export; this.exportDialoguesToolStripMenuItem.Name = "exportDialoguesToolStripMenuItem"; this.exportDialoguesToolStripMenuItem.Size = new System.Drawing.Size(230, 22); this.exportDialoguesToolStripMenuItem.Text = "Export Dialogues"; this.exportDialoguesToolStripMenuItem.Click += new System.EventHandler(this.OnExportDialogues); // // toolStripSeparator10 // this.toolStripSeparator10.Name = "toolStripSeparator10"; this.toolStripSeparator10.Size = new System.Drawing.Size(227, 6); // // menuItemShowStats // this.menuItemShowStats.Image = global::DialogueEditor.Properties.Resources.chart_bar; this.menuItemShowStats.Name = "menuItemShowStats"; this.menuItemShowStats.ShortcutKeys = System.Windows.Forms.Keys.F4; this.menuItemShowStats.Size = new System.Drawing.Size(230, 22); this.menuItemShowStats.Text = "Show Dialogue Stats"; this.menuItemShowStats.Click += new System.EventHandler(this.OnShowStats); // // showAllStatsToolStripMenuItem // this.showAllStatsToolStripMenuItem.Image = global::DialogueEditor.Properties.Resources.chart_bar; this.showAllStatsToolStripMenuItem.Name = "showAllStatsToolStripMenuItem"; this.showAllStatsToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Shift | System.Windows.Forms.Keys.F4))); this.showAllStatsToolStripMenuItem.Size = new System.Drawing.Size(230, 22); this.showAllStatsToolStripMenuItem.Text = "Show All Stats"; this.showAllStatsToolStripMenuItem.Click += new System.EventHandler(this.OnShowAllStats); // // menuItemExportStats // this.menuItemExportStats.Image = global::DialogueEditor.Properties.Resources.Export; this.menuItemExportStats.Name = "menuItemExportStats"; this.menuItemExportStats.Size = new System.Drawing.Size(230, 22); this.menuItemExportStats.Text = "Export All &Stats"; this.menuItemExportStats.Click += new System.EventHandler(this.OnExportStats); // // toolStripSeparator9 // this.toolStripSeparator9.Name = "toolStripSeparator9"; this.toolStripSeparator9.Size = new System.Drawing.Size(227, 6); // // menuItemLocalization // this.menuItemLocalization.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.unreal4pomanifestToolStripMenuItem }); this.menuItemLocalization.Image = global::DialogueEditor.Properties.Resources.Export; this.menuItemLocalization.Name = "menuItemLocalization"; this.menuItemLocalization.Size = new System.Drawing.Size(230, 22); this.menuItemLocalization.Text = "Export Game &Localization"; // // unreal4pomanifestToolStripMenuItem // this.unreal4pomanifestToolStripMenuItem.Name = "unreal4pomanifestToolStripMenuItem"; this.unreal4pomanifestToolStripMenuItem.Size = new System.Drawing.Size(208, 22); this.unreal4pomanifestToolStripMenuItem.Text = "Unreal 4 (.po + .manifest)"; this.unreal4pomanifestToolStripMenuItem.Click += new System.EventHandler(this.OnExportLocalizationUnreal4); // // menuItemVoicing // this.menuItemVoicing.Image = global::DialogueEditor.Properties.Resources.Export; this.menuItemVoicing.Name = "menuItemVoicing"; this.menuItemVoicing.Size = new System.Drawing.Size(230, 22); this.menuItemVoicing.Text = "Export Game &Voicing"; this.menuItemVoicing.Click += new System.EventHandler(this.OnExportVoicing); // // exportGameConstantsToolStripMenuItem // this.exportGameConstantsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.unreal4ToolStripMenuItem }); this.exportGameConstantsToolStripMenuItem.Image = global::DialogueEditor.Properties.Resources.Export; this.exportGameConstantsToolStripMenuItem.Name = "exportGameConstantsToolStripMenuItem"; this.exportGameConstantsToolStripMenuItem.Size = new System.Drawing.Size(230, 22); this.exportGameConstantsToolStripMenuItem.Text = "Export Game Constants"; // // unreal4ToolStripMenuItem // this.unreal4ToolStripMenuItem.Name = "unreal4ToolStripMenuItem"; this.unreal4ToolStripMenuItem.Size = new System.Drawing.Size(147, 22); this.unreal4ToolStripMenuItem.Text = "Unreal 4 (.dlc)"; this.unreal4ToolStripMenuItem.Click += new System.EventHandler(this.OnExportConstantsUnreal4); // // menuItemAsk // this.menuItemAsk.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { menuItemHelp, this.menuItemAbout }); this.menuItemAsk.MergeIndex = 3; this.menuItemAsk.Name = "menuItemAsk"; this.menuItemAsk.Size = new System.Drawing.Size(24, 20); this.menuItemAsk.Text = "&?"; // // menuItemAbout // this.menuItemAbout.Name = "menuItemAbout"; this.menuItemAbout.Size = new System.Drawing.Size(118, 22); this.menuItemAbout.Text = "&About"; this.menuItemAbout.Click += new System.EventHandler(this.OnShowAbout); // // dockPanel // this.dockPanel.Dock = System.Windows.Forms.DockStyle.Fill; this.dockPanel.DockBackColor = System.Drawing.SystemColors.AppWorkspace; this.dockPanel.DockBottomPortion = 200D; this.dockPanel.DockLeftPortion = 200D; this.dockPanel.DockRightPortion = 360D; this.dockPanel.DockTopPortion = 200D; this.dockPanel.DocumentStyle = WeifenLuo.WinFormsUI.Docking.DocumentStyle.DockingWindow; this.dockPanel.Font = new System.Drawing.Font("Tahoma", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.World, ((byte)(0))); this.dockPanel.Location = new System.Drawing.Point(0, 24); this.dockPanel.Name = "dockPanel"; this.dockPanel.RightToLeftLayout = true; this.dockPanel.Size = new System.Drawing.Size(691, 399); dockPanelGradient7.EndColor = System.Drawing.SystemColors.ControlLight; dockPanelGradient7.StartColor = System.Drawing.SystemColors.ControlLight; autoHideStripSkin3.DockStripGradient = dockPanelGradient7; tabGradient15.EndColor = System.Drawing.SystemColors.Control; tabGradient15.StartColor = System.Drawing.SystemColors.Control; tabGradient15.TextColor = System.Drawing.SystemColors.ControlDarkDark; autoHideStripSkin3.TabGradient = tabGradient15; autoHideStripSkin3.TextFont = new System.Drawing.Font("Segoe UI", 9F); dockPanelSkin3.AutoHideStripSkin = autoHideStripSkin3; tabGradient16.EndColor = System.Drawing.SystemColors.ControlLightLight; tabGradient16.StartColor = System.Drawing.SystemColors.ControlLightLight; tabGradient16.TextColor = System.Drawing.SystemColors.ControlText; dockPaneStripGradient3.ActiveTabGradient = tabGradient16; dockPanelGradient8.EndColor = System.Drawing.SystemColors.Control; dockPanelGradient8.StartColor = System.Drawing.SystemColors.Control; dockPaneStripGradient3.DockStripGradient = dockPanelGradient8; tabGradient17.EndColor = System.Drawing.SystemColors.ControlLight; tabGradient17.StartColor = System.Drawing.SystemColors.ControlLight; tabGradient17.TextColor = System.Drawing.SystemColors.ControlText; dockPaneStripGradient3.InactiveTabGradient = tabGradient17; dockPaneStripSkin3.DocumentGradient = dockPaneStripGradient3; dockPaneStripSkin3.TextFont = new System.Drawing.Font("Segoe UI", 9F); tabGradient18.EndColor = System.Drawing.SystemColors.ActiveCaption; tabGradient18.LinearGradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical; tabGradient18.StartColor = System.Drawing.SystemColors.GradientActiveCaption; tabGradient18.TextColor = System.Drawing.SystemColors.ActiveCaptionText; dockPaneStripToolWindowGradient3.ActiveCaptionGradient = tabGradient18; tabGradient19.EndColor = System.Drawing.SystemColors.Control; tabGradient19.StartColor = System.Drawing.SystemColors.Control; tabGradient19.TextColor = System.Drawing.SystemColors.ControlText; dockPaneStripToolWindowGradient3.ActiveTabGradient = tabGradient19; dockPanelGradient9.EndColor = System.Drawing.SystemColors.ControlLight; dockPanelGradient9.StartColor = System.Drawing.SystemColors.ControlLight; dockPaneStripToolWindowGradient3.DockStripGradient = dockPanelGradient9; tabGradient20.EndColor = System.Drawing.SystemColors.GradientInactiveCaption; tabGradient20.LinearGradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical; tabGradient20.StartColor = System.Drawing.SystemColors.GradientInactiveCaption; tabGradient20.TextColor = System.Drawing.SystemColors.ControlText; dockPaneStripToolWindowGradient3.InactiveCaptionGradient = tabGradient20; tabGradient21.EndColor = System.Drawing.Color.Transparent; tabGradient21.StartColor = System.Drawing.Color.Transparent; tabGradient21.TextColor = System.Drawing.SystemColors.ControlDarkDark; dockPaneStripToolWindowGradient3.InactiveTabGradient = tabGradient21; dockPaneStripSkin3.ToolWindowGradient = dockPaneStripToolWindowGradient3; dockPanelSkin3.DockPaneStripSkin = dockPaneStripSkin3; this.dockPanel.Skin = dockPanelSkin3; this.dockPanel.TabIndex = 0; this.dockPanel.ActiveDocumentChanged += new System.EventHandler(this.OnActiveDocumentChanged); // // exportShardsCodeToolStripMenuItem // this.exportShardsCodeToolStripMenuItem.Image = global::DialogueEditor.Properties.Resources.Export; this.exportShardsCodeToolStripMenuItem.Name = "exportShardsCodeToolStripMenuItem"; this.exportShardsCodeToolStripMenuItem.Size = new System.Drawing.Size(230, 22); this.exportShardsCodeToolStripMenuItem.Text = "Export Aria Code"; this.exportShardsCodeToolStripMenuItem.Click += new System.EventHandler(this.exportShardsCodeToolStripMenuItem_Click); // // WindowMain // this.ClientSize = new System.Drawing.Size(691, 445); this.Controls.Add(this.dockPanel); this.Controls.Add(this.menuMain); this.Controls.Add(status); this.IsMdiContainer = true; this.MainMenuStrip = this.menuMain; this.Name = "WindowMain"; this.Text = "Dialogue Editor"; this.WindowState = System.Windows.Forms.FormWindowState.Maximized; this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.OnClose); status.ResumeLayout(false); status.PerformLayout(); this.menuMain.ResumeLayout(false); this.menuMain.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.Label lblInputFolder; System.Windows.Forms.Label lblOutputFolder; System.Windows.Forms.Label lblInputFiles; System.Windows.Forms.Label lblSelect; System.Windows.Forms.StatusStrip statusStrip; this.prbProgress = new System.Windows.Forms.ToolStripProgressBar(); this.lblCurrentFile = new System.Windows.Forms.ToolStripStatusLabel(); this.txtInputFolder = new System.Windows.Forms.TextBox(); this.btnInputFolder = new System.Windows.Forms.Button(); this.txtOutputFolder = new System.Windows.Forms.TextBox(); this.btnOutputFolder = new System.Windows.Forms.Button(); this.clbInputFiles = new System.Windows.Forms.CheckedListBox(); this.lnkSelectAll = new System.Windows.Forms.LinkLabel(); this.lnkSelectNone = new System.Windows.Forms.LinkLabel(); this.lnkSelectInvert = new System.Windows.Forms.LinkLabel(); this.btnConvert = new System.Windows.Forms.Button(); this.backgroundWorker = new System.ComponentModel.BackgroundWorker(); this.toolTip = new System.Windows.Forms.ToolTip(this.components); lblInputFolder = new System.Windows.Forms.Label(); lblOutputFolder = new System.Windows.Forms.Label(); lblInputFiles = new System.Windows.Forms.Label(); lblSelect = new System.Windows.Forms.Label(); statusStrip = new System.Windows.Forms.StatusStrip(); statusStrip.SuspendLayout(); this.SuspendLayout(); // // lblInputFolder // lblInputFolder.AutoSize = true; lblInputFolder.Location = new System.Drawing.Point(12, 9); lblInputFolder.Name = "lblInputFolder"; lblInputFolder.Size = new System.Drawing.Size(94, 13); lblInputFolder.TabIndex = 0; lblInputFolder.Text = "Gecko IDL Folder:"; // // lblOutputFolder // lblOutputFolder.AutoSize = true; lblOutputFolder.Location = new System.Drawing.Point(12, 48); lblOutputFolder.Name = "lblOutputFolder"; lblOutputFolder.Size = new System.Drawing.Size(74, 13); lblOutputFolder.TabIndex = 3; lblOutputFolder.Text = "Output Folder:"; // // lblInputFiles // lblInputFiles.AutoSize = true; lblInputFiles.Location = new System.Drawing.Point(12, 87); lblInputFiles.Name = "lblInputFiles"; lblInputFiles.Size = new System.Drawing.Size(58, 13); lblInputFiles.TabIndex = 6; lblInputFiles.Text = "Input Files:"; // // lblSelect // lblSelect.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); lblSelect.AutoSize = true; lblSelect.Location = new System.Drawing.Point(12, 330); lblSelect.Name = "lblSelect"; lblSelect.Size = new System.Drawing.Size(40, 13); lblSelect.TabIndex = 8; lblSelect.Text = "Select:"; // // statusStrip // statusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.prbProgress, this.lblCurrentFile}); statusStrip.Location = new System.Drawing.Point(0, 359); statusStrip.Name = "statusStrip"; statusStrip.Size = new System.Drawing.Size(562, 22); statusStrip.TabIndex = 13; // // prbProgress // this.prbProgress.Name = "prbProgress"; this.prbProgress.Size = new System.Drawing.Size(100, 16); // // lblCurrentFile // this.lblCurrentFile.Name = "lblCurrentFile"; this.lblCurrentFile.Size = new System.Drawing.Size(445, 17); this.lblCurrentFile.Spring = true; this.lblCurrentFile.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // txtInputFolder // this.txtInputFolder.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.txtInputFolder.Location = new System.Drawing.Point(12, 25); this.txtInputFolder.Name = "txtInputFolder"; this.txtInputFolder.ReadOnly = true; this.txtInputFolder.Size = new System.Drawing.Size(497, 20); this.txtInputFolder.TabIndex = 1; // // btnInputFolder // this.btnInputFolder.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.btnInputFolder.Location = new System.Drawing.Point(515, 23); this.btnInputFolder.Name = "btnInputFolder"; this.btnInputFolder.Size = new System.Drawing.Size(35, 23); this.btnInputFolder.TabIndex = 2; this.btnInputFolder.Text = "..."; this.btnInputFolder.UseVisualStyleBackColor = true; this.btnInputFolder.Click += new System.EventHandler(this.btnInputFolder_Click); // // txtOutputFolder // this.txtOutputFolder.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.txtOutputFolder.Location = new System.Drawing.Point(12, 64); this.txtOutputFolder.Name = "txtOutputFolder"; this.txtOutputFolder.ReadOnly = true; this.txtOutputFolder.Size = new System.Drawing.Size(497, 20); this.txtOutputFolder.TabIndex = 4; // // btnOutputFolder // this.btnOutputFolder.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.btnOutputFolder.Location = new System.Drawing.Point(515, 62); this.btnOutputFolder.Name = "btnOutputFolder"; this.btnOutputFolder.Size = new System.Drawing.Size(35, 23); this.btnOutputFolder.TabIndex = 5; this.btnOutputFolder.Text = "..."; this.btnOutputFolder.UseVisualStyleBackColor = true; this.btnOutputFolder.Click += new System.EventHandler(this.btnOutputFolder_Click); // // clbInputFiles // this.clbInputFiles.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.clbInputFiles.CheckOnClick = true; this.clbInputFiles.FormattingEnabled = true; this.clbInputFiles.HorizontalScrollbar = true; this.clbInputFiles.IntegralHeight = false; this.clbInputFiles.Location = new System.Drawing.Point(12, 103); this.clbInputFiles.Name = "clbInputFiles"; this.clbInputFiles.Size = new System.Drawing.Size(538, 221); this.clbInputFiles.TabIndex = 7; // // lnkSelectAll // this.lnkSelectAll.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.lnkSelectAll.AutoSize = true; this.lnkSelectAll.Location = new System.Drawing.Point(58, 330); this.lnkSelectAll.Name = "lnkSelectAll"; this.lnkSelectAll.Size = new System.Drawing.Size(17, 13); this.lnkSelectAll.TabIndex = 9; this.lnkSelectAll.TabStop = true; this.lnkSelectAll.Text = "all"; this.lnkSelectAll.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lnkSelectAll_LinkClicked); // // lnkSelectNone // this.lnkSelectNone.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.lnkSelectNone.AutoSize = true; this.lnkSelectNone.Location = new System.Drawing.Point(81, 330); this.lnkSelectNone.Name = "lnkSelectNone"; this.lnkSelectNone.Size = new System.Drawing.Size(31, 13); this.lnkSelectNone.TabIndex = 10; this.lnkSelectNone.TabStop = true; this.lnkSelectNone.Text = "none"; this.lnkSelectNone.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lnkSelectNone_LinkClicked); // // lnkSelectInvert // this.lnkSelectInvert.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.lnkSelectInvert.AutoSize = true; this.lnkSelectInvert.Location = new System.Drawing.Point(118, 330); this.lnkSelectInvert.Name = "lnkSelectInvert"; this.lnkSelectInvert.Size = new System.Drawing.Size(33, 13); this.lnkSelectInvert.TabIndex = 11; this.lnkSelectInvert.TabStop = true; this.lnkSelectInvert.Text = "invert"; this.lnkSelectInvert.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lnkSelectInvert_LinkClicked); // // btnConvert // this.btnConvert.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnConvert.Location = new System.Drawing.Point(475, 330); this.btnConvert.Name = "btnConvert"; this.btnConvert.Size = new System.Drawing.Size(75, 23); this.btnConvert.TabIndex = 12; this.btnConvert.Text = "Convert"; this.btnConvert.UseVisualStyleBackColor = true; this.btnConvert.Click += new System.EventHandler(this.btnConvert_Click); // // backgroundWorker // this.backgroundWorker.WorkerReportsProgress = true; this.backgroundWorker.WorkerSupportsCancellation = true; this.backgroundWorker.DoWork += new System.ComponentModel.DoWorkEventHandler(this.backgroundWorker_DoWork); this.backgroundWorker.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.backgroundWorker_RunWorkerCompleted); this.backgroundWorker.ProgressChanged += new System.ComponentModel.ProgressChangedEventHandler(this.backgroundWorker_ProgressChanged); // // toolTip // this.toolTip.IsBalloon = true; // // MainForm // this.AcceptButton = this.btnConvert; this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(562, 381); this.Controls.Add(this.btnConvert); this.Controls.Add(statusStrip); this.Controls.Add(this.lnkSelectInvert); this.Controls.Add(this.lnkSelectNone); this.Controls.Add(this.lnkSelectAll); this.Controls.Add(lblSelect); this.Controls.Add(this.clbInputFiles); this.Controls.Add(lblInputFiles); this.Controls.Add(this.btnOutputFolder); this.Controls.Add(this.txtOutputFolder); this.Controls.Add(lblOutputFolder); this.Controls.Add(this.btnInputFolder); this.Controls.Add(this.txtInputFolder); this.Controls.Add(lblInputFolder); this.Name = "MainForm"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Text = "XPIDL Converter"; statusStrip.ResumeLayout(false); statusStrip.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.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm)); System.Windows.Forms.StatusStrip statusStrip1; this.nicTrayIcon = new System.Windows.Forms.NotifyIcon(this.components); this.cmsTrayMenu = new System.Windows.Forms.ContextMenuStrip(this.components); this.tsmPlay = new System.Windows.Forms.ToolStripMenuItem(); this.tsmSettings = new System.Windows.Forms.ToolStripMenuItem(); this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripSeparator(); this.tsmQuit = new System.Windows.Forms.ToolStripMenuItem(); this.tmrUpdate = new System.Windows.Forms.Timer(this.components); this.lblRefreshStatus = new System.Windows.Forms.ToolStripStatusLabel(); this.scPanels = new System.Windows.Forms.SplitContainer(); this.lvwGames = new System.Windows.Forms.ListView(); this.colGame = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.colPlayers = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.gvwGame = new sbfl_lfg.GameView(); statusStrip1 = new System.Windows.Forms.StatusStrip(); this.cmsTrayMenu.SuspendLayout(); statusStrip1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.scPanels)).BeginInit(); this.scPanels.Panel1.SuspendLayout(); this.scPanels.Panel2.SuspendLayout(); this.scPanels.SuspendLayout(); this.SuspendLayout(); // // nicTrayIcon // this.nicTrayIcon.BalloonTipTitle = "SBFL LFG"; this.nicTrayIcon.ContextMenuStrip = this.cmsTrayMenu; this.nicTrayIcon.Icon = ((System.Drawing.Icon)(resources.GetObject("nicTrayIcon.Icon"))); this.nicTrayIcon.Text = "SBFL LFG"; this.nicTrayIcon.Visible = true; this.nicTrayIcon.DoubleClick += new System.EventHandler(this.tsmPlay_Click); // // cmsTrayMenu // this.cmsTrayMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.tsmPlay, this.tsmSettings, this.toolStripMenuItem1, this.tsmQuit}); this.cmsTrayMenu.Name = "cmsTrayMenu"; this.cmsTrayMenu.Size = new System.Drawing.Size(139, 76); // // tsmPlay // this.tsmPlay.Name = "tsmPlay"; this.tsmPlay.Size = new System.Drawing.Size(138, 22); this.tsmPlay.Text = "&Play game..."; this.tsmPlay.Click += new System.EventHandler(this.tsmPlay_Click); // // tsmSettings // this.tsmSettings.Name = "tsmSettings"; this.tsmSettings.Size = new System.Drawing.Size(138, 22); this.tsmSettings.Text = "&Settings..."; this.tsmSettings.Click += new System.EventHandler(this.tsmSettings_Click); // // toolStripMenuItem1 // this.toolStripMenuItem1.Name = "toolStripMenuItem1"; this.toolStripMenuItem1.Size = new System.Drawing.Size(135, 6); // // tsmQuit // this.tsmQuit.Name = "tsmQuit"; this.tsmQuit.Size = new System.Drawing.Size(138, 22); this.tsmQuit.Text = "&Quit"; this.tsmQuit.Click += new System.EventHandler(this.tsmQuit_Click); // // tmrUpdate // this.tmrUpdate.Enabled = true; this.tmrUpdate.Interval = 5000; this.tmrUpdate.Tick += new System.EventHandler(this.tmrUpdate_Tick); // // statusStrip1 // statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.lblRefreshStatus}); statusStrip1.Location = new System.Drawing.Point(0, 354); statusStrip1.Name = "statusStrip1"; statusStrip1.Size = new System.Drawing.Size(424, 22); statusStrip1.TabIndex = 5; statusStrip1.Text = "ssStatus"; // // lblRefreshStatus // this.lblRefreshStatus.Name = "lblRefreshStatus"; this.lblRefreshStatus.Size = new System.Drawing.Size(145, 17); this.lblRefreshStatus.Text = "Next update in 60 seconds"; this.lblRefreshStatus.Click += new System.EventHandler(this.lblRefreshStatus_Click); // // scPanels // this.scPanels.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.scPanels.Location = new System.Drawing.Point(12, 12); this.scPanels.Name = "scPanels"; this.scPanels.Orientation = System.Windows.Forms.Orientation.Horizontal; // // scPanels.Panel1 // this.scPanels.Panel1.Controls.Add(this.lvwGames); // // scPanels.Panel2 // this.scPanels.Panel2.Controls.Add(this.gvwGame); this.scPanels.Size = new System.Drawing.Size(400, 339); this.scPanels.SplitterDistance = 170; this.scPanels.TabIndex = 8; // // lvwGames // this.lvwGames.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.lvwGames.CheckBoxes = true; this.lvwGames.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { this.colGame, this.colPlayers}); this.lvwGames.Location = new System.Drawing.Point(0, 0); this.lvwGames.MultiSelect = false; this.lvwGames.Name = "lvwGames"; this.lvwGames.Size = new System.Drawing.Size(400, 168); this.lvwGames.TabIndex = 7; this.lvwGames.UseCompatibleStateImageBehavior = false; this.lvwGames.View = System.Windows.Forms.View.Details; this.lvwGames.SelectedIndexChanged += new System.EventHandler(this.lvwGames_SelectedIndexChanged); // // colGame // this.colGame.Text = "Game"; this.colGame.Width = 220; // // colPlayers // this.colPlayers.Text = "Players"; // // gvwGame // this.gvwGame.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.gvwGame.Location = new System.Drawing.Point(0, 0); this.gvwGame.Name = "gvwGame"; this.gvwGame.Size = new System.Drawing.Size(400, 165); this.gvwGame.TabIndex = 8; this.gvwGame.Text = "Lobby"; // // MainForm // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(424, 376); this.Controls.Add(this.scPanels); this.Controls.Add(statusStrip1); this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.MinimumSize = new System.Drawing.Size(357, 400); this.Name = "MainForm"; this.Text = "SBFL LFG"; this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainForm_FormClosing); this.Load += new System.EventHandler(this.MainForm_Load); this.Shown += new System.EventHandler(this.MainForm_Shown); this.cmsTrayMenu.ResumeLayout(false); statusStrip1.ResumeLayout(false); statusStrip1.PerformLayout(); this.scPanels.Panel1.ResumeLayout(false); this.scPanels.Panel2.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.scPanels)).EndInit(); this.scPanels.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.Panel scrollPanel; System.Windows.Forms.StatusStrip statusStrip; this.button10 = new MetroFramework.Controls.MetroButton(); this.metroToggle1 = new MetroFramework.Controls.MetroToggle(); this.textBox6 = new System.Windows.Forms.TextBox(); this.textBox7 = new System.Windows.Forms.TextBox(); this.pictureBox = new System.Windows.Forms.PictureBox(); this.textBox5 = new System.Windows.Forms.TextBox(); this.button11 = new MetroFramework.Controls.MetroButton(); this.textBox1 = new System.Windows.Forms.TextBox(); this.toolStripStatusLabel = new System.Windows.Forms.ToolStripStatusLabel(); this.button8 = new MetroFramework.Controls.MetroButton(); this.button2 = new MetroFramework.Controls.MetroButton(); this.button3 = new MetroFramework.Controls.MetroButton(); this.button5 = new MetroFramework.Controls.MetroButton(); this.button4 = new MetroFramework.Controls.MetroButton(); this.button9 = new MetroFramework.Controls.MetroButton(); this.button7 = new MetroFramework.Controls.MetroButton(); this.button6 = new MetroFramework.Controls.MetroButton(); this.button1 = new MetroFramework.Controls.MetroButton(); this.textBox2 = new System.Windows.Forms.TextBox(); this.textBox3 = new System.Windows.Forms.TextBox(); this.textBox4 = new System.Windows.Forms.TextBox(); this.textBox8 = new System.Windows.Forms.TextBox(); this.textBox9 = new System.Windows.Forms.TextBox(); this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel(); this.comboBoxZoom = new MetroFramework.Controls.MetroComboBox(); this.metroStyleManager1 = new MetroFramework.Components.MetroStyleManager(this.components); this.metroLink1 = new MetroFramework.Controls.MetroLink(); this.metroLink2 = new MetroFramework.Controls.MetroLink(); this.metroContextMenu1 = new MetroFramework.Controls.MetroContextMenu(this.components); this.openToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem(); this.exitToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem(); this.metroContextMenu2 = new MetroFramework.Controls.MetroContextMenu(this.components); this.configureToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem(); this.panel1 = new System.Windows.Forms.Panel(); this.groupBox1 = new System.Windows.Forms.GroupBox(); this.groupBox2 = new System.Windows.Forms.GroupBox(); this.groupBox5 = new System.Windows.Forms.GroupBox(); this.metroLabel6 = new MetroFramework.Controls.MetroLabel(); this.metroLabel5 = new MetroFramework.Controls.MetroLabel(); this.metroLabel4 = new MetroFramework.Controls.MetroLabel(); this.groupBox7 = new System.Windows.Forms.GroupBox(); this.panel3 = new System.Windows.Forms.Panel(); this.pictureBox1 = new System.Windows.Forms.PictureBox(); this.pictureBox4 = new System.Windows.Forms.PictureBox(); this.pictureBox5 = new System.Windows.Forms.PictureBox(); this.pictureBox2 = new System.Windows.Forms.PictureBox(); this.metroLabel3 = new MetroFramework.Controls.MetroLabel(); this.groupBox6 = new System.Windows.Forms.GroupBox(); this.metroLabel1 = new MetroFramework.Controls.MetroLabel(); this.panel2 = new System.Windows.Forms.Panel(); this.metroLabel2 = new MetroFramework.Controls.MetroLabel(); this.label3 = new MetroFramework.Controls.MetroLabel(); this.label1 = new MetroFramework.Controls.MetroLabel(); this.label4 = new MetroFramework.Controls.MetroLabel(); this.label2 = new MetroFramework.Controls.MetroLabel(); scrollPanel = new System.Windows.Forms.Panel(); statusStrip = new System.Windows.Forms.StatusStrip(); scrollPanel.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox)).BeginInit(); statusStrip.SuspendLayout(); this.tableLayoutPanel1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.metroStyleManager1)).BeginInit(); this.metroContextMenu1.SuspendLayout(); this.metroContextMenu2.SuspendLayout(); this.panel1.SuspendLayout(); this.groupBox1.SuspendLayout(); this.groupBox2.SuspendLayout(); this.groupBox5.SuspendLayout(); this.groupBox7.SuspendLayout(); this.panel3.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox5)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit(); this.groupBox6.SuspendLayout(); this.SuspendLayout(); // // scrollPanel // scrollPanel.AutoScroll = true; scrollPanel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.tableLayoutPanel1.SetColumnSpan(scrollPanel, 3); scrollPanel.Controls.Add(this.button10); scrollPanel.Controls.Add(this.metroToggle1); scrollPanel.Controls.Add(this.textBox6); scrollPanel.Controls.Add(this.textBox7); scrollPanel.Controls.Add(this.pictureBox); scrollPanel.Controls.Add(this.textBox5); scrollPanel.Controls.Add(this.button11); scrollPanel.Controls.Add(this.textBox1); scrollPanel.Location = new System.Drawing.Point(3, 3); scrollPanel.Name = "scrollPanel"; scrollPanel.Size = new System.Drawing.Size(986, 601); scrollPanel.TabIndex = 2; // // button10 // this.button10.Location = new System.Drawing.Point(812, 326); this.button10.Name = "button10"; this.button10.Size = new System.Drawing.Size(100, 31); this.button10.TabIndex = 22; this.button10.Text = "Add Obstacles"; this.button10.UseSelectable = true; this.button10.Visible = false; this.button10.Click += new System.EventHandler(this.button10_Click); // // metroToggle1 // this.metroToggle1.AutoSize = true; this.metroToggle1.BackColor = System.Drawing.Color.Transparent; this.metroToggle1.Checked = true; this.metroToggle1.CheckState = System.Windows.Forms.CheckState.Checked; this.metroToggle1.Location = new System.Drawing.Point(812, 517); this.metroToggle1.Name = "metroToggle1"; this.metroToggle1.Size = new System.Drawing.Size(80, 17); this.metroToggle1.TabIndex = 30; this.metroToggle1.Text = "On"; this.metroToggle1.UseCustomBackColor = true; this.metroToggle1.UseSelectable = true; this.metroToggle1.Visible = false; this.metroToggle1.CheckedChanged += new System.EventHandler(this.metroToggle1_CheckedChanged); // // textBox6 // this.textBox6.BackColor = System.Drawing.Color.LimeGreen; this.textBox6.Location = new System.Drawing.Point(864, 450); this.textBox6.Name = "textBox6"; this.textBox6.ScrollBars = System.Windows.Forms.ScrollBars.Vertical; this.textBox6.Size = new System.Drawing.Size(86, 20); this.textBox6.TabIndex = 20; this.textBox6.Text = "Clear"; this.textBox6.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.textBox6.Visible = false; // // textBox7 // this.textBox7.BackColor = System.Drawing.Color.LimeGreen; this.textBox7.Location = new System.Drawing.Point(732, 432); this.textBox7.Name = "textBox7"; this.textBox7.ScrollBars = System.Windows.Forms.ScrollBars.Vertical; this.textBox7.Size = new System.Drawing.Size(86, 20); this.textBox7.TabIndex = 21; this.textBox7.Text = "Clear"; this.textBox7.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.textBox7.Visible = false; // // pictureBox // this.pictureBox.ImageLocation = "mapnew.bmp"; this.pictureBox.Location = new System.Drawing.Point(111, -1); this.pictureBox.Name = "pictureBox"; this.pictureBox.Size = new System.Drawing.Size(730, 730); this.pictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize; this.pictureBox.TabIndex = 0; this.pictureBox.TabStop = false; this.pictureBox.Click += new System.EventHandler(this.pictureBox_Click); this.pictureBox.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pictureBox_MouseClick); this.pictureBox.MouseMove += new System.Windows.Forms.MouseEventHandler(this.pictureBox_OnHover); // // textBox5 // this.textBox5.BackColor = System.Drawing.Color.LimeGreen; this.textBox5.Location = new System.Drawing.Point(826, 382); this.textBox5.Name = "textBox5"; this.textBox5.ScrollBars = System.Windows.Forms.ScrollBars.Vertical; this.textBox5.Size = new System.Drawing.Size(86, 20); this.textBox5.TabIndex = 17; this.textBox5.Text = "Clear"; this.textBox5.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.textBox5.Visible = false; // // button11 // this.button11.Location = new System.Drawing.Point(874, 254); this.button11.Name = "button11"; this.button11.Size = new System.Drawing.Size(57, 31); this.button11.TabIndex = 36; this.button11.Text = "Reset"; this.button11.UseSelectable = true; this.button11.Visible = false; this.button11.Click += new System.EventHandler(this.button11_Click); // // textBox1 // this.textBox1.Location = new System.Drawing.Point(618, 117); this.textBox1.Multiline = true; this.textBox1.Name = "textBox1"; this.textBox1.ScrollBars = System.Windows.Forms.ScrollBars.Vertical; this.textBox1.Size = new System.Drawing.Size(137, 214); this.textBox1.TabIndex = 5; this.textBox1.Visible = false; // // statusStrip // statusStrip.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); statusStrip.Dock = System.Windows.Forms.DockStyle.None; statusStrip.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Bold); statusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.toolStripStatusLabel}); statusStrip.Location = new System.Drawing.Point(40, 693); statusStrip.Name = "statusStrip"; statusStrip.Size = new System.Drawing.Size(58, 22); statusStrip.TabIndex = 3; statusStrip.Text = "statusStrip1"; // // toolStripStatusLabel // this.toolStripStatusLabel.ForeColor = System.Drawing.SystemColors.Control; this.toolStripStatusLabel.Name = "toolStripStatusLabel"; this.toolStripStatusLabel.Size = new System.Drawing.Size(41, 17); this.toolStripStatusLabel.Text = "Ready"; // // button8 // this.button8.Location = new System.Drawing.Point(187, 22); this.button8.Name = "button8"; this.button8.Size = new System.Drawing.Size(86, 23); this.button8.TabIndex = 16; this.button8.Text = "Sonar Off"; this.button8.UseSelectable = true; this.button8.Click += new System.EventHandler(this.button8_Click); // // button2 // this.button2.Location = new System.Drawing.Point(17, 21); this.button2.Name = "button2"; this.button2.Size = new System.Drawing.Size(75, 23); this.button2.TabIndex = 7; this.button2.Text = "turn ack"; this.button2.UseSelectable = true; this.button2.Click += new System.EventHandler(this.button2_Click); // // button3 // this.button3.Location = new System.Drawing.Point(18, 50); this.button3.Name = "button3"; this.button3.Size = new System.Drawing.Size(74, 23); this.button3.TabIndex = 8; this.button3.Text = "turn reach"; this.button3.UseSelectable = true; this.button3.Click += new System.EventHandler(this.button3_Click); // // button5 // this.button5.Location = new System.Drawing.Point(17, 77); this.button5.Name = "button5"; this.button5.Size = new System.Drawing.Size(75, 23); this.button5.TabIndex = 10; this.button5.Text = "destination"; this.button5.UseSelectable = true; this.button5.Click += new System.EventHandler(this.button5_Click); // // button4 // this.button4.Location = new System.Drawing.Point(17, 106); this.button4.Name = "button4"; this.button4.Size = new System.Drawing.Size(75, 23); this.button4.TabIndex = 9; this.button4.Text = "forward ack"; this.button4.UseSelectable = true; this.button4.Click += new System.EventHandler(this.button4_Click); // // button9 // this.button9.Location = new System.Drawing.Point(6, 23); this.button9.Name = "button9"; this.button9.Size = new System.Drawing.Size(75, 23); this.button9.TabIndex = 18; this.button9.Text = "direction"; this.button9.UseSelectable = true; this.button9.Click += new System.EventHandler(this.button9_Click); // // button7 // this.button7.Location = new System.Drawing.Point(87, 24); this.button7.Name = "button7"; this.button7.Size = new System.Drawing.Size(75, 52); this.button7.TabIndex = 15; this.button7.Text = "draw"; this.button7.UseSelectable = true; this.button7.Click += new System.EventHandler(this.button7_Click); // // button6 // this.button6.Location = new System.Drawing.Point(6, 53); this.button6.Name = "button6"; this.button6.Size = new System.Drawing.Size(75, 23); this.button6.TabIndex = 14; this.button6.Text = "break"; this.button6.UseSelectable = true; this.button6.Click += new System.EventHandler(this.button6_Click); // // button1 // this.button1.Location = new System.Drawing.Point(60, 116); this.button1.Name = "button1"; this.button1.Size = new System.Drawing.Size(77, 26); this.button1.TabIndex = 6; this.button1.Text = "Simulate"; this.button1.UseSelectable = true; this.button1.Click += new System.EventHandler(this.button1_Click); // // textBox2 // this.textBox2.Location = new System.Drawing.Point(142, 19); this.textBox2.Name = "textBox2"; this.textBox2.Size = new System.Drawing.Size(34, 22); this.textBox2.TabIndex = 11; this.textBox2.Text = "180"; // // textBox3 // this.textBox3.Location = new System.Drawing.Point(141, 48); this.textBox3.Name = "textBox3"; this.textBox3.Size = new System.Drawing.Size(34, 22); this.textBox3.TabIndex = 12; this.textBox3.Text = "390"; // // textBox4 // this.textBox4.Location = new System.Drawing.Point(142, 76); this.textBox4.Name = "textBox4"; this.textBox4.Size = new System.Drawing.Size(34, 22); this.textBox4.TabIndex = 13; this.textBox4.Text = "120"; // // textBox8 // this.textBox8.Location = new System.Drawing.Point(6, 24); this.textBox8.Multiline = true; this.textBox8.Name = "textBox8"; this.textBox8.Size = new System.Drawing.Size(54, 41); this.textBox8.TabIndex = 26; this.textBox8.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; // // textBox9 // this.textBox9.Location = new System.Drawing.Point(65, 24); this.textBox9.Multiline = true; this.textBox9.Name = "textBox9"; this.textBox9.Size = new System.Drawing.Size(54, 41); this.textBox9.TabIndex = 27; this.textBox9.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; // // tableLayoutPanel1 // this.tableLayoutPanel1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Right))); this.tableLayoutPanel1.ColumnCount = 3; this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); 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.Controls.Add(scrollPanel, 0, 1); this.tableLayoutPanel1.Location = new System.Drawing.Point(24, 90); this.tableLayoutPanel1.Name = "tableLayoutPanel1"; this.tableLayoutPanel1.RowCount = 2; this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle()); 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, 20F)); this.tableLayoutPanel1.Size = new System.Drawing.Size(992, 607); this.tableLayoutPanel1.TabIndex = 4; // // comboBoxZoom // this.comboBoxZoom.FormattingEnabled = true; this.comboBoxZoom.ItemHeight = 23; this.comboBoxZoom.Location = new System.Drawing.Point(902, 58); this.comboBoxZoom.Name = "comboBoxZoom"; this.comboBoxZoom.Size = new System.Drawing.Size(93, 29); this.comboBoxZoom.TabIndex = 4; this.comboBoxZoom.UseSelectable = true; this.comboBoxZoom.SelectedIndexChanged += new System.EventHandler(this.comboBoxZoom_SelectedIndexChanged); // // metroStyleManager1 // this.metroStyleManager1.Owner = this; this.metroStyleManager1.Theme = MetroFramework.MetroThemeStyle.Dark; // // metroLink1 // this.metroLink1.Location = new System.Drawing.Point(24, 59); this.metroLink1.Name = "metroLink1"; this.metroLink1.Size = new System.Drawing.Size(30, 23); this.metroLink1.TabIndex = 1; this.metroLink1.Text = "FILE"; this.metroLink1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; this.metroLink1.UseSelectable = true; this.metroLink1.Click += new System.EventHandler(this.metroLink1_Click); // // metroLink2 // this.metroLink2.Location = new System.Drawing.Point(60, 59); this.metroLink2.Name = "metroLink2"; this.metroLink2.Size = new System.Drawing.Size(63, 23); this.metroLink2.TabIndex = 2; this.metroLink2.Text = "SETTINGS"; this.metroLink2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; this.metroLink2.UseSelectable = true; this.metroLink2.Click += new System.EventHandler(this.metroLink2_Click); // // metroContextMenu1 // this.metroContextMenu1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.openToolStripMenuItem1, this.exitToolStripMenuItem1}); this.metroContextMenu1.Name = "metroContextMenu1"; this.metroContextMenu1.Size = new System.Drawing.Size(104, 48); // // openToolStripMenuItem1 // this.openToolStripMenuItem1.Name = "openToolStripMenuItem1"; this.openToolStripMenuItem1.Size = new System.Drawing.Size(103, 22); this.openToolStripMenuItem1.Text = "Open"; this.openToolStripMenuItem1.Click += new System.EventHandler(this.openToolStripMenuItem1_Click); // // exitToolStripMenuItem1 // this.exitToolStripMenuItem1.Name = "exitToolStripMenuItem1"; this.exitToolStripMenuItem1.Size = new System.Drawing.Size(103, 22); this.exitToolStripMenuItem1.Text = "Exit"; this.exitToolStripMenuItem1.Click += new System.EventHandler(this.exitToolStripMenuItem1_Click); // // metroContextMenu2 // this.metroContextMenu2.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.configureToolStripMenuItem1}); this.metroContextMenu2.Name = "metroContextMenu2"; this.metroContextMenu2.Size = new System.Drawing.Size(128, 26); // // configureToolStripMenuItem1 // this.configureToolStripMenuItem1.Name = "configureToolStripMenuItem1"; this.configureToolStripMenuItem1.Size = new System.Drawing.Size(127, 22); this.configureToolStripMenuItem1.Text = "Configure"; this.configureToolStripMenuItem1.Click += new System.EventHandler(this.configureToolStripMenuItem1_Click); // // panel1 // this.panel1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(35)))), ((int)(((byte)(35)))), ((int)(((byte)(35))))); this.panel1.Controls.Add(this.groupBox1); this.panel1.Controls.Add(this.groupBox2); this.panel1.Controls.Add(this.groupBox5); this.panel1.Controls.Add(this.groupBox7); this.panel1.Controls.Add(this.groupBox6); this.panel1.Location = new System.Drawing.Point(1007, 77); this.panel1.Name = "panel1"; this.panel1.Size = new System.Drawing.Size(330, 614); this.panel1.TabIndex = 26; // // groupBox1 // this.groupBox1.Controls.Add(this.button9); this.groupBox1.Controls.Add(this.button7); this.groupBox1.Controls.Add(this.button6); this.groupBox1.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.groupBox1.ForeColor = System.Drawing.SystemColors.ControlDark; this.groupBox1.Location = new System.Drawing.Point(142, 12); this.groupBox1.Name = "groupBox1"; this.groupBox1.Size = new System.Drawing.Size(174, 87); this.groupBox1.TabIndex = 37; this.groupBox1.TabStop = false; this.groupBox1.Text = "Custom Commands"; // // groupBox2 // this.groupBox2.Controls.Add(this.button5); this.groupBox2.Controls.Add(this.button3); this.groupBox2.Controls.Add(this.button4); this.groupBox2.Controls.Add(this.button2); this.groupBox2.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.groupBox2.ForeColor = System.Drawing.SystemColors.ControlDark; this.groupBox2.Location = new System.Drawing.Point(208, 115); this.groupBox2.Name = "groupBox2"; this.groupBox2.Size = new System.Drawing.Size(108, 150); this.groupBox2.TabIndex = 39; this.groupBox2.TabStop = false; this.groupBox2.Text = "Com Commands"; // // groupBox5 // this.groupBox5.Controls.Add(this.metroLabel6); this.groupBox5.Controls.Add(this.metroLabel5); this.groupBox5.Controls.Add(this.metroLabel4); this.groupBox5.Controls.Add(this.textBox2); this.groupBox5.Controls.Add(this.textBox3); this.groupBox5.Controls.Add(this.textBox4); this.groupBox5.Controls.Add(this.button1); this.groupBox5.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.groupBox5.ForeColor = System.Drawing.SystemColors.ControlDark; this.groupBox5.Location = new System.Drawing.Point(11, 115); this.groupBox5.Name = "groupBox5"; this.groupBox5.Size = new System.Drawing.Size(182, 150); this.groupBox5.TabIndex = 38; this.groupBox5.TabStop = false; this.groupBox5.Text = "Robot Core"; // // metroLabel6 // this.metroLabel6.AutoSize = true; this.metroLabel6.FontSize = MetroFramework.MetroLabelSize.Small; this.metroLabel6.FontWeight = MetroFramework.MetroLabelWeight.Bold; this.metroLabel6.ForeColor = System.Drawing.SystemColors.ControlDark; this.metroLabel6.Location = new System.Drawing.Point(9, 78); this.metroLabel6.Name = "metroLabel6"; this.metroLabel6.Size = new System.Drawing.Size(112, 15); this.metroLabel6.TabIndex = 30; this.metroLabel6.Text = "Start Y Cordination"; this.metroLabel6.UseCustomBackColor = true; this.metroLabel6.UseCustomForeColor = true; // // metroLabel5 // this.metroLabel5.AutoSize = true; this.metroLabel5.FontSize = MetroFramework.MetroLabelSize.Small; this.metroLabel5.FontWeight = MetroFramework.MetroLabelWeight.Bold; this.metroLabel5.ForeColor = System.Drawing.SystemColors.ControlDark; this.metroLabel5.Location = new System.Drawing.Point(9, 50); this.metroLabel5.Name = "metroLabel5"; this.metroLabel5.Size = new System.Drawing.Size(113, 15); this.metroLabel5.TabIndex = 29; this.metroLabel5.Text = "Start X Cordination"; this.metroLabel5.UseCustomBackColor = true; this.metroLabel5.UseCustomForeColor = true; // // metroLabel4 // this.metroLabel4.AutoSize = true; this.metroLabel4.BackColor = System.Drawing.Color.Transparent; this.metroLabel4.FontSize = MetroFramework.MetroLabelSize.Small; this.metroLabel4.FontWeight = MetroFramework.MetroLabelWeight.Bold; this.metroLabel4.ForeColor = System.Drawing.SystemColors.ControlDark; this.metroLabel4.Location = new System.Drawing.Point(10, 21); this.metroLabel4.Name = "metroLabel4"; this.metroLabel4.Size = new System.Drawing.Size(105, 15); this.metroLabel4.TabIndex = 28; this.metroLabel4.Text = "Current Direction"; this.metroLabel4.UseCustomBackColor = true; this.metroLabel4.UseCustomForeColor = true; // // groupBox7 // this.groupBox7.Controls.Add(this.panel3); this.groupBox7.Controls.Add(this.metroLabel3); this.groupBox7.Controls.Add(this.button8); this.groupBox7.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.groupBox7.ForeColor = System.Drawing.SystemColors.ControlDark; this.groupBox7.Location = new System.Drawing.Point(11, 271); this.groupBox7.Name = "groupBox7"; this.groupBox7.Size = new System.Drawing.Size(305, 330); this.groupBox7.TabIndex = 33; this.groupBox7.TabStop = false; this.groupBox7.Text = "Com Port Status"; // // panel3 // this.panel3.Controls.Add(this.pictureBox1); this.panel3.Controls.Add(this.pictureBox4); this.panel3.Controls.Add(this.pictureBox5); this.panel3.Controls.Add(this.pictureBox2); this.panel3.Location = new System.Drawing.Point(6, 64); this.panel3.Name = "panel3"; this.panel3.Size = new System.Drawing.Size(292, 260); this.panel3.TabIndex = 31; // // pictureBox1 // this.pictureBox1.BackColor = System.Drawing.Color.Transparent; this.pictureBox1.ImageLocation = "sonar_left.png"; this.pictureBox1.Location = new System.Drawing.Point(25, 91); this.pictureBox1.Name = "pictureBox1"; this.pictureBox1.Size = new System.Drawing.Size(69, 126); this.pictureBox1.TabIndex = 33; this.pictureBox1.TabStop = false; this.pictureBox1.Visible = false; // // pictureBox4 // this.pictureBox4.BackColor = System.Drawing.Color.Transparent; this.pictureBox4.ImageLocation = "sonar_top.jpg"; this.pictureBox4.Location = new System.Drawing.Point(84, 27); this.pictureBox4.Name = "pictureBox4"; this.pictureBox4.Size = new System.Drawing.Size(129, 64); this.pictureBox4.TabIndex = 32; this.pictureBox4.TabStop = false; this.pictureBox4.Visible = false; // // pictureBox5 // this.pictureBox5.BackColor = System.Drawing.Color.Transparent; this.pictureBox5.ImageLocation = "sonar_right.jpg"; this.pictureBox5.Location = new System.Drawing.Point(198, 90); this.pictureBox5.Name = "pictureBox5"; this.pictureBox5.Size = new System.Drawing.Size(69, 126); this.pictureBox5.TabIndex = 30; this.pictureBox5.TabStop = false; this.pictureBox5.Visible = false; // // pictureBox2 // this.pictureBox2.Dock = System.Windows.Forms.DockStyle.Fill; this.pictureBox2.ImageLocation = "sonar.png"; this.pictureBox2.Location = new System.Drawing.Point(0, 0); this.pictureBox2.Name = "pictureBox2"; this.pictureBox2.Size = new System.Drawing.Size(292, 260); this.pictureBox2.TabIndex = 29; this.pictureBox2.TabStop = false; // // metroLabel3 // this.metroLabel3.AutoSize = true; this.metroLabel3.FontSize = MetroFramework.MetroLabelSize.Small; this.metroLabel3.FontWeight = MetroFramework.MetroLabelWeight.Bold; this.metroLabel3.ForeColor = System.Drawing.SystemColors.ControlDark; this.metroLabel3.Location = new System.Drawing.Point(23, 26); this.metroLabel3.Name = "metroLabel3"; this.metroLabel3.Size = new System.Drawing.Size(77, 15); this.metroLabel3.TabIndex = 28; this.metroLabel3.Text = "Sonar Status"; this.metroLabel3.UseCustomBackColor = true; this.metroLabel3.UseCustomForeColor = true; // // groupBox6 // this.groupBox6.Controls.Add(this.textBox8); this.groupBox6.Controls.Add(this.textBox9); this.groupBox6.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.groupBox6.ForeColor = System.Drawing.SystemColors.ControlDark; this.groupBox6.Location = new System.Drawing.Point(11, 12); this.groupBox6.Name = "groupBox6"; this.groupBox6.Size = new System.Drawing.Size(125, 87); this.groupBox6.TabIndex = 0; this.groupBox6.TabStop = false; this.groupBox6.Text = "Com Port Status"; // // metroLabel1 // this.metroLabel1.AutoSize = true; this.metroLabel1.FontSize = MetroFramework.MetroLabelSize.Small; this.metroLabel1.FontWeight = MetroFramework.MetroLabelWeight.Bold; this.metroLabel1.ForeColor = System.Drawing.SystemColors.ControlDark; this.metroLabel1.Location = new System.Drawing.Point(1006, 58); this.metroLabel1.Name = "metroLabel1"; this.metroLabel1.Size = new System.Drawing.Size(67, 15); this.metroLabel1.TabIndex = 27; this.metroLabel1.Text = "DashBoard"; // // panel2 // this.panel2.BackColor = System.Drawing.Color.LightSkyBlue; this.panel2.Location = new System.Drawing.Point(1079, 63); this.panel2.Name = "panel2"; this.panel2.Size = new System.Drawing.Size(258, 7); this.panel2.TabIndex = 28; // // metroLabel2 // this.metroLabel2.AutoSize = true; this.metroLabel2.BackColor = System.Drawing.Color.Transparent; this.metroLabel2.FontSize = MetroFramework.MetroLabelSize.Small; this.metroLabel2.FontWeight = MetroFramework.MetroLabelWeight.Bold; this.metroLabel2.ForeColor = System.Drawing.SystemColors.ControlDark; this.metroLabel2.Location = new System.Drawing.Point(840, 67); this.metroLabel2.Name = "metroLabel2"; this.metroLabel2.Size = new System.Drawing.Size(43, 15); this.metroLabel2.TabIndex = 29; this.metroLabel2.Text = "ZOOM"; this.metroLabel2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.metroLabel2.UseCustomBackColor = true; this.metroLabel2.UseCustomForeColor = true; // // label3 // this.label3.AutoSize = true; this.label3.FontSize = MetroFramework.MetroLabelSize.Small; this.label3.FontWeight = MetroFramework.MetroLabelWeight.Bold; this.label3.ForeColor = System.Drawing.SystemColors.ControlDark; this.label3.Location = new System.Drawing.Point(799, 698); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(111, 15); this.label3.TabIndex = 41; this.label3.Text = "Destination Cords :"; this.label3.UseCustomBackColor = true; this.label3.UseCustomForeColor = true; // // label1 // this.label1.AutoSize = true; this.label1.FontSize = MetroFramework.MetroLabelSize.Small; this.label1.FontWeight = MetroFramework.MetroLabelWeight.Bold; this.label1.ForeColor = System.Drawing.SystemColors.ControlDark; this.label1.Location = new System.Drawing.Point(543, 698); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(111, 15); this.label1.TabIndex = 42; this.label1.Text = "Current Direction :"; this.label1.UseCustomBackColor = true; this.label1.UseCustomForeColor = true; // // label4 // this.label4.AutoSize = true; this.label4.FontSize = MetroFramework.MetroLabelSize.Small; this.label4.FontWeight = MetroFramework.MetroLabelWeight.Bold; this.label4.ForeColor = System.Drawing.SystemColors.ControlDark; this.label4.Location = new System.Drawing.Point(318, 698); this.label4.Name = "label4"; this.label4.Size = new System.Drawing.Size(90, 15); this.label4.TabIndex = 40; this.label4.Text = "Current Cords :"; this.label4.UseCustomBackColor = true; this.label4.UseCustomForeColor = true; // // label2 // this.label2.AutoSize = true; this.label2.FontSize = MetroFramework.MetroLabelSize.Small; this.label2.FontWeight = MetroFramework.MetroLabelWeight.Bold; this.label2.ForeColor = System.Drawing.SystemColors.ControlDark; this.label2.Location = new System.Drawing.Point(111, 698); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(75, 15); this.label2.TabIndex = 39; this.label2.Text = "Start Cords :"; this.label2.UseCustomBackColor = true; this.label2.UseCustomForeColor = true; // // Simulator // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(1360, 720); this.Controls.Add(this.label3); this.Controls.Add(this.label4); this.Controls.Add(this.label1); this.Controls.Add(this.metroLabel2); this.Controls.Add(this.label2); this.Controls.Add(this.comboBoxZoom); this.Controls.Add(this.panel2); this.Controls.Add(this.metroLabel1); this.Controls.Add(this.panel1); this.Controls.Add(this.metroLink2); this.Controls.Add(this.metroLink1); this.Controls.Add(this.tableLayoutPanel1); this.Controls.Add(statusStrip); this.Name = "Simulator"; this.Text = "Navisys - Simulator"; this.Theme = MetroFramework.MetroThemeStyle.Dark; this.WindowState = System.Windows.Forms.FormWindowState.Maximized; this.Load += new System.EventHandler(this.SimulaterE_Load); scrollPanel.ResumeLayout(false); scrollPanel.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox)).EndInit(); statusStrip.ResumeLayout(false); statusStrip.PerformLayout(); this.tableLayoutPanel1.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.metroStyleManager1)).EndInit(); this.metroContextMenu1.ResumeLayout(false); this.metroContextMenu2.ResumeLayout(false); this.panel1.ResumeLayout(false); this.groupBox1.ResumeLayout(false); this.groupBox2.ResumeLayout(false); this.groupBox5.ResumeLayout(false); this.groupBox5.PerformLayout(); this.groupBox7.ResumeLayout(false); this.groupBox7.PerformLayout(); this.panel3.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox5)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit(); this.groupBox6.ResumeLayout(false); this.groupBox6.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.StatusStrip statusBar; System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Editor)); this.statusBarProgress = new System.Windows.Forms.ToolStripProgressBar(); this.statusBarLabel = new System.Windows.Forms.ToolStripStatusLabel(); this.openFileDialog = new System.Windows.Forms.OpenFileDialog(); this.saveFileDialog = new System.Windows.Forms.SaveFileDialog(); this.BottomToolStripPanel = new System.Windows.Forms.ToolStripPanel(); this.TopToolStripPanel = new System.Windows.Forms.ToolStripPanel(); this.RightToolStripPanel = new System.Windows.Forms.ToolStripPanel(); this.LeftToolStripPanel = new System.Windows.Forms.ToolStripPanel(); this.ContentPanel = new System.Windows.Forms.ToolStripContentPanel(); this.SimisProperties = new System.Windows.Forms.PropertyGrid(); this.SimisTree = new System.Windows.Forms.TreeView(); this.contextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components); this.nodeLabelToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.menuStrip = new System.Windows.Forms.MenuStrip(); this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.newToolStripMenuItem = 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.toolStripMenuItem1 = new System.Windows.Forms.ToolStripSeparator(); this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.editToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.undoToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.redoToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripSeparator(); this.cutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.copyToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.pasteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.deleteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.toolStripMenuItem3 = new System.Windows.Forms.ToolStripSeparator(); this.selectAllToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.viewToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.zoomInToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.zoomOutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.zoomToWindowToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.actualSizeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.toolStripMenuItem6 = new System.Windows.Forms.ToolStripSeparator(); this.colorOnlyToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.alphaOnlyToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.maskOnlyToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.colorAndAlphaToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.colorAndMaskToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.homepageToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.updatesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.discussionsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.issueTrackerToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.toolStripMenuItem4 = new System.Windows.Forms.ToolStripSeparator(); this.reloadSimisResourcesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.toolStripMenuItem5 = new System.Windows.Forms.ToolStripSeparator(); this.sendFeedbackToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.AceContainer = new System.Windows.Forms.Panel(); this.AceImage = new System.Windows.Forms.PictureBox(); this.AceChannels = new System.Windows.Forms.Panel(); this.FileStatus = new System.Windows.Forms.Label(); statusBar = new System.Windows.Forms.StatusStrip(); statusBar.SuspendLayout(); this.contextMenuStrip.SuspendLayout(); this.menuStrip.SuspendLayout(); this.AceContainer.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.AceImage)).BeginInit(); this.SuspendLayout(); // // statusBar // statusBar.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.statusBarProgress, this.statusBarLabel }); statusBar.Location = new System.Drawing.Point(0, 540); statusBar.Name = "statusBar"; statusBar.Size = new System.Drawing.Size(784, 22); statusBar.TabIndex = 4; statusBar.Text = "statusStrip1"; // // statusBarProgress // this.statusBarProgress.Name = "statusBarProgress"; this.statusBarProgress.Size = new System.Drawing.Size(100, 16); this.statusBarProgress.Visible = false; // // statusBarLabel // this.statusBarLabel.AutoSize = false; this.statusBarLabel.Name = "statusBarLabel"; this.statusBarLabel.Size = new System.Drawing.Size(769, 17); this.statusBarLabel.Spring = true; this.statusBarLabel.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // BottomToolStripPanel // this.BottomToolStripPanel.Location = new System.Drawing.Point(0, 0); this.BottomToolStripPanel.Name = "BottomToolStripPanel"; this.BottomToolStripPanel.Orientation = System.Windows.Forms.Orientation.Horizontal; this.BottomToolStripPanel.RowMargin = new System.Windows.Forms.Padding(3, 0, 0, 0); this.BottomToolStripPanel.Size = new System.Drawing.Size(0, 0); // // TopToolStripPanel // this.TopToolStripPanel.Location = new System.Drawing.Point(0, 0); this.TopToolStripPanel.Name = "TopToolStripPanel"; this.TopToolStripPanel.Orientation = System.Windows.Forms.Orientation.Horizontal; this.TopToolStripPanel.RowMargin = new System.Windows.Forms.Padding(3, 0, 0, 0); this.TopToolStripPanel.Size = new System.Drawing.Size(0, 0); // // RightToolStripPanel // this.RightToolStripPanel.Location = new System.Drawing.Point(0, 0); this.RightToolStripPanel.Name = "RightToolStripPanel"; this.RightToolStripPanel.Orientation = System.Windows.Forms.Orientation.Horizontal; this.RightToolStripPanel.RowMargin = new System.Windows.Forms.Padding(3, 0, 0, 0); this.RightToolStripPanel.Size = new System.Drawing.Size(0, 0); // // LeftToolStripPanel // this.LeftToolStripPanel.Location = new System.Drawing.Point(0, 0); this.LeftToolStripPanel.Name = "LeftToolStripPanel"; this.LeftToolStripPanel.Orientation = System.Windows.Forms.Orientation.Horizontal; this.LeftToolStripPanel.RowMargin = new System.Windows.Forms.Padding(3, 0, 0, 0); this.LeftToolStripPanel.Size = new System.Drawing.Size(0, 0); // // ContentPanel // this.ContentPanel.Size = new System.Drawing.Size(734, 562); // // SimisProperties // this.SimisProperties.Dock = System.Windows.Forms.DockStyle.Right; this.SimisProperties.Location = new System.Drawing.Point(482, 24); this.SimisProperties.Name = "SimisProperties"; this.SimisProperties.PropertySort = System.Windows.Forms.PropertySort.Alphabetical; this.SimisProperties.Size = new System.Drawing.Size(302, 516); this.SimisProperties.TabIndex = 3; this.SimisProperties.ToolbarVisible = false; this.SimisProperties.Visible = false; this.SimisProperties.PropertyValueChanged += new System.Windows.Forms.PropertyValueChangedEventHandler(this.SimisProperties_PropertyValueChanged); // // SimisTree // this.SimisTree.BorderStyle = System.Windows.Forms.BorderStyle.None; this.SimisTree.ContextMenuStrip = this.contextMenuStrip; this.SimisTree.Dock = System.Windows.Forms.DockStyle.Fill; this.SimisTree.HideSelection = false; this.SimisTree.Location = new System.Drawing.Point(0, 24); this.SimisTree.Name = "SimisTree"; this.SimisTree.ShowNodeToolTips = true; this.SimisTree.ShowRootLines = false; this.SimisTree.Size = new System.Drawing.Size(482, 516); this.SimisTree.TabIndex = 0; this.SimisTree.Visible = false; this.SimisTree.MouseUp += new System.Windows.Forms.MouseEventHandler(this.SimisTree_MouseUp); this.SimisTree.Enter += new System.EventHandler(this.SimisTree_Enter); this.SimisTree.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.SimisTree_AfterSelect); this.SimisTree.Leave += new System.EventHandler(this.SimisTree_Leave); // // contextMenuStrip // this.contextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.nodeLabelToolStripMenuItem }); this.contextMenuStrip.Name = "contextMenuStrip"; this.contextMenuStrip.Size = new System.Drawing.Size(132, 26); this.contextMenuStrip.Opening += new System.ComponentModel.CancelEventHandler(this.contextMenuStrip_Opening); // // nodeLabelToolStripMenuItem // this.nodeLabelToolStripMenuItem.Enabled = false; this.nodeLabelToolStripMenuItem.Name = "nodeLabelToolStripMenuItem"; this.nodeLabelToolStripMenuItem.Size = new System.Drawing.Size(131, 22); this.nodeLabelToolStripMenuItem.Text = "NodeLabel"; // // menuStrip // this.menuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.fileToolStripMenuItem, this.editToolStripMenuItem, this.viewToolStripMenuItem, this.helpToolStripMenuItem }); this.menuStrip.Location = new System.Drawing.Point(0, 0); this.menuStrip.Name = "menuStrip"; this.menuStrip.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1); this.menuStrip.Size = new System.Drawing.Size(784, 24); this.menuStrip.TabIndex = 0; this.menuStrip.Text = "menuStrip1"; // // fileToolStripMenuItem // this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.newToolStripMenuItem, this.openToolStripMenuItem, this.saveToolStripMenuItem, this.saveAsToolStripMenuItem, this.toolStripMenuItem1, this.exitToolStripMenuItem }); this.fileToolStripMenuItem.Name = "fileToolStripMenuItem"; this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 23); this.fileToolStripMenuItem.Text = "&File"; // // newToolStripMenuItem // this.newToolStripMenuItem.Enabled = false; 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(146, 22); this.newToolStripMenuItem.Text = "&New"; this.newToolStripMenuItem.ToolTipText = "Create a new Simis file."; this.newToolStripMenuItem.Click += new System.EventHandler(this.newToolStripMenuItem_Click); // // openToolStripMenuItem // this.openToolStripMenuItem.Name = "openToolStripMenuItem"; this.openToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.O))); this.openToolStripMenuItem.Size = new System.Drawing.Size(146, 22); this.openToolStripMenuItem.Text = "&Open"; this.openToolStripMenuItem.ToolTipText = "Open an existing Simis file."; this.openToolStripMenuItem.Click += new System.EventHandler(this.openToolStripMenuItem_Click); // // saveToolStripMenuItem // this.saveToolStripMenuItem.Enabled = false; this.saveToolStripMenuItem.Name = "saveToolStripMenuItem"; this.saveToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.S))); this.saveToolStripMenuItem.Size = new System.Drawing.Size(146, 22); this.saveToolStripMenuItem.Text = "&Save"; this.saveToolStripMenuItem.ToolTipText = "Save the current Simis file."; this.saveToolStripMenuItem.Click += new System.EventHandler(this.saveToolStripMenuItem_Click); // // saveAsToolStripMenuItem // this.saveAsToolStripMenuItem.Enabled = false; this.saveAsToolStripMenuItem.Name = "saveAsToolStripMenuItem"; this.saveAsToolStripMenuItem.Size = new System.Drawing.Size(146, 22); this.saveAsToolStripMenuItem.Text = "Save &As..."; this.saveAsToolStripMenuItem.ToolTipText = "Save the current Simis file with a different name."; this.saveAsToolStripMenuItem.Click += new System.EventHandler(this.saveAsToolStripMenuItem_Click); // // toolStripMenuItem1 // this.toolStripMenuItem1.Name = "toolStripMenuItem1"; this.toolStripMenuItem1.Size = new System.Drawing.Size(143, 6); // // exitToolStripMenuItem // this.exitToolStripMenuItem.Name = "exitToolStripMenuItem"; this.exitToolStripMenuItem.Size = new System.Drawing.Size(146, 22); this.exitToolStripMenuItem.Text = "E&xit"; this.exitToolStripMenuItem.ToolTipText = "Close Simis Editor."; this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click); // // editToolStripMenuItem // this.editToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.undoToolStripMenuItem, this.redoToolStripMenuItem, this.toolStripMenuItem2, this.cutToolStripMenuItem, this.copyToolStripMenuItem, this.pasteToolStripMenuItem, this.deleteToolStripMenuItem, this.toolStripMenuItem3, this.selectAllToolStripMenuItem }); this.editToolStripMenuItem.Name = "editToolStripMenuItem"; this.editToolStripMenuItem.Size = new System.Drawing.Size(39, 23); this.editToolStripMenuItem.Text = "&Edit"; this.editToolStripMenuItem.DropDownOpening += new System.EventHandler(this.editToolStripMenuItem_DropDownOpening); // // undoToolStripMenuItem // this.undoToolStripMenuItem.Enabled = false; this.undoToolStripMenuItem.Name = "undoToolStripMenuItem"; this.undoToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Z))); this.undoToolStripMenuItem.Size = new System.Drawing.Size(164, 22); this.undoToolStripMenuItem.Text = "&Undo"; this.undoToolStripMenuItem.ToolTipText = "Undo the most recent operation."; this.undoToolStripMenuItem.Click += new System.EventHandler(this.undoToolStripMenuItem_Click); // // redoToolStripMenuItem // this.redoToolStripMenuItem.Enabled = false; this.redoToolStripMenuItem.Name = "redoToolStripMenuItem"; this.redoToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Y))); this.redoToolStripMenuItem.Size = new System.Drawing.Size(164, 22); this.redoToolStripMenuItem.Text = "&Redo"; this.redoToolStripMenuItem.ToolTipText = "Redo the most recently undone operation."; this.redoToolStripMenuItem.Click += new System.EventHandler(this.redoToolStripMenuItem_Click); // // toolStripMenuItem2 // this.toolStripMenuItem2.Name = "toolStripMenuItem2"; this.toolStripMenuItem2.Size = new System.Drawing.Size(161, 6); // // cutToolStripMenuItem // this.cutToolStripMenuItem.Enabled = false; this.cutToolStripMenuItem.Name = "cutToolStripMenuItem"; this.cutToolStripMenuItem.ShortcutKeyDisplayString = ""; this.cutToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.X))); this.cutToolStripMenuItem.Size = new System.Drawing.Size(164, 22); this.cutToolStripMenuItem.Text = "Cu&t"; this.cutToolStripMenuItem.ToolTipText = "Cut the selection, removing it from the source."; this.cutToolStripMenuItem.Click += new System.EventHandler(this.cutToolStripMenuItem_Click); // // copyToolStripMenuItem // this.copyToolStripMenuItem.Enabled = false; this.copyToolStripMenuItem.Name = "copyToolStripMenuItem"; this.copyToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.C))); this.copyToolStripMenuItem.Size = new System.Drawing.Size(164, 22); this.copyToolStripMenuItem.Text = "&Copy"; this.copyToolStripMenuItem.ToolTipText = "Copy the current selection."; this.copyToolStripMenuItem.Click += new System.EventHandler(this.copyToolStripMenuItem_Click); // // pasteToolStripMenuItem // this.pasteToolStripMenuItem.Enabled = false; this.pasteToolStripMenuItem.Name = "pasteToolStripMenuItem"; this.pasteToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.V))); this.pasteToolStripMenuItem.Size = new System.Drawing.Size(164, 22); this.pasteToolStripMenuItem.Text = "&Paste"; this.pasteToolStripMenuItem.ToolTipText = "Paste the contents of the clipboard."; this.pasteToolStripMenuItem.Click += new System.EventHandler(this.pasteToolStripMenuItem_Click); // // deleteToolStripMenuItem // this.deleteToolStripMenuItem.Enabled = false; this.deleteToolStripMenuItem.Name = "deleteToolStripMenuItem"; this.deleteToolStripMenuItem.ShortcutKeys = System.Windows.Forms.Keys.Delete; this.deleteToolStripMenuItem.Size = new System.Drawing.Size(164, 22); this.deleteToolStripMenuItem.Text = "De&lete"; this.deleteToolStripMenuItem.ToolTipText = "Remove the contents of the current selection."; this.deleteToolStripMenuItem.Click += new System.EventHandler(this.deleteToolStripMenuItem_Click); // // toolStripMenuItem3 // this.toolStripMenuItem3.Name = "toolStripMenuItem3"; this.toolStripMenuItem3.Size = new System.Drawing.Size(161, 6); // // selectAllToolStripMenuItem // this.selectAllToolStripMenuItem.Enabled = false; this.selectAllToolStripMenuItem.Name = "selectAllToolStripMenuItem"; this.selectAllToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.A))); this.selectAllToolStripMenuItem.Size = new System.Drawing.Size(164, 22); this.selectAllToolStripMenuItem.Text = "Select &All"; this.selectAllToolStripMenuItem.ToolTipText = "Select everything."; this.selectAllToolStripMenuItem.Click += new System.EventHandler(this.selectAllToolStripMenuItem_Click); // // viewToolStripMenuItem // this.viewToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.zoomInToolStripMenuItem, this.zoomOutToolStripMenuItem, this.zoomToWindowToolStripMenuItem, this.actualSizeToolStripMenuItem, this.toolStripMenuItem6, this.colorOnlyToolStripMenuItem, this.alphaOnlyToolStripMenuItem, this.maskOnlyToolStripMenuItem, this.colorAndAlphaToolStripMenuItem, this.colorAndMaskToolStripMenuItem }); this.viewToolStripMenuItem.Name = "viewToolStripMenuItem"; this.viewToolStripMenuItem.Size = new System.Drawing.Size(44, 23); this.viewToolStripMenuItem.Text = "&View"; // // zoomInToolStripMenuItem // this.zoomInToolStripMenuItem.Enabled = false; this.zoomInToolStripMenuItem.Name = "zoomInToolStripMenuItem"; this.zoomInToolStripMenuItem.Size = new System.Drawing.Size(167, 22); this.zoomInToolStripMenuItem.Text = "Zoom &In"; this.zoomInToolStripMenuItem.ToolTipText = "Zoom in on the image."; this.zoomInToolStripMenuItem.Click += new System.EventHandler(this.zoomInToolStripMenuItem_Click); // // zoomOutToolStripMenuItem // this.zoomOutToolStripMenuItem.Enabled = false; this.zoomOutToolStripMenuItem.Name = "zoomOutToolStripMenuItem"; this.zoomOutToolStripMenuItem.Size = new System.Drawing.Size(167, 22); this.zoomOutToolStripMenuItem.Text = "Zoom &Out"; this.zoomOutToolStripMenuItem.ToolTipText = "Zoom out of the image."; this.zoomOutToolStripMenuItem.Click += new System.EventHandler(this.zoomOutToolStripMenuItem_Click); // // zoomToWindowToolStripMenuItem // this.zoomToWindowToolStripMenuItem.Enabled = false; this.zoomToWindowToolStripMenuItem.Name = "zoomToWindowToolStripMenuItem"; this.zoomToWindowToolStripMenuItem.Size = new System.Drawing.Size(167, 22); this.zoomToWindowToolStripMenuItem.Text = "Zoom to &Window"; this.zoomToWindowToolStripMenuItem.ToolTipText = "Zoom the image so it fits in the window."; this.zoomToWindowToolStripMenuItem.Click += new System.EventHandler(this.zoomToWindowToolStripMenuItem_Click); // // actualSizeToolStripMenuItem // this.actualSizeToolStripMenuItem.Enabled = false; this.actualSizeToolStripMenuItem.Name = "actualSizeToolStripMenuItem"; this.actualSizeToolStripMenuItem.Size = new System.Drawing.Size(167, 22); this.actualSizeToolStripMenuItem.Text = "&Actual Size"; this.actualSizeToolStripMenuItem.ToolTipText = "Zoom the image to its actual size."; this.actualSizeToolStripMenuItem.Click += new System.EventHandler(this.actualSizeToolStripMenuItem_Click); // // toolStripMenuItem6 // this.toolStripMenuItem6.Name = "toolStripMenuItem6"; this.toolStripMenuItem6.Size = new System.Drawing.Size(164, 6); // // colorOnlyToolStripMenuItem // this.colorOnlyToolStripMenuItem.Enabled = false; this.colorOnlyToolStripMenuItem.Name = "colorOnlyToolStripMenuItem"; this.colorOnlyToolStripMenuItem.Size = new System.Drawing.Size(167, 22); this.colorOnlyToolStripMenuItem.Text = "Color Only"; this.colorOnlyToolStripMenuItem.ToolTipText = "Show only the color (red, green, blue) image."; this.colorOnlyToolStripMenuItem.Click += new System.EventHandler(this.colorOnlyToolStripMenuItem_Click); // // alphaOnlyToolStripMenuItem // this.alphaOnlyToolStripMenuItem.Enabled = false; this.alphaOnlyToolStripMenuItem.Name = "alphaOnlyToolStripMenuItem"; this.alphaOnlyToolStripMenuItem.Size = new System.Drawing.Size(167, 22); this.alphaOnlyToolStripMenuItem.Text = "Alpha Only"; this.alphaOnlyToolStripMenuItem.ToolTipText = "Show only the alpha image."; this.alphaOnlyToolStripMenuItem.Click += new System.EventHandler(this.alphaOnlyToolStripMenuItem_Click); // // maskOnlyToolStripMenuItem // this.maskOnlyToolStripMenuItem.Enabled = false; this.maskOnlyToolStripMenuItem.Name = "maskOnlyToolStripMenuItem"; this.maskOnlyToolStripMenuItem.Size = new System.Drawing.Size(167, 22); this.maskOnlyToolStripMenuItem.Text = "Mask Only"; this.maskOnlyToolStripMenuItem.ToolTipText = "Show only the mask image."; this.maskOnlyToolStripMenuItem.Click += new System.EventHandler(this.maskOnlyToolStripMenuItem_Click); // // colorAndAlphaToolStripMenuItem // this.colorAndAlphaToolStripMenuItem.Checked = true; this.colorAndAlphaToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked; this.colorAndAlphaToolStripMenuItem.Enabled = false; this.colorAndAlphaToolStripMenuItem.Name = "colorAndAlphaToolStripMenuItem"; this.colorAndAlphaToolStripMenuItem.Size = new System.Drawing.Size(167, 22); this.colorAndAlphaToolStripMenuItem.Text = "Color and Alpha"; this.colorAndAlphaToolStripMenuItem.ToolTipText = "Show the color (red, green, blue) image merged with the alpha image."; this.colorAndAlphaToolStripMenuItem.Click += new System.EventHandler(this.colorAndAlphaToolStripMenuItem_Click); // // colorAndMaskToolStripMenuItem // this.colorAndMaskToolStripMenuItem.Enabled = false; this.colorAndMaskToolStripMenuItem.Name = "colorAndMaskToolStripMenuItem"; this.colorAndMaskToolStripMenuItem.Size = new System.Drawing.Size(167, 22); this.colorAndMaskToolStripMenuItem.Text = "Color and Mask"; this.colorAndMaskToolStripMenuItem.ToolTipText = "Show the color (red, green, blue) image merged with the mask image."; this.colorAndMaskToolStripMenuItem.Click += new System.EventHandler(this.colorAndMaskToolStripMenuItem_Click); // // helpToolStripMenuItem // this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.homepageToolStripMenuItem, this.updatesToolStripMenuItem, this.discussionsToolStripMenuItem, this.issueTrackerToolStripMenuItem, this.toolStripMenuItem4, this.reloadSimisResourcesToolStripMenuItem, this.toolStripMenuItem5, this.sendFeedbackToolStripMenuItem }); this.helpToolStripMenuItem.Name = "helpToolStripMenuItem"; this.helpToolStripMenuItem.Size = new System.Drawing.Size(44, 23); this.helpToolStripMenuItem.Text = "&Help"; // // homepageToolStripMenuItem // this.homepageToolStripMenuItem.Name = "homepageToolStripMenuItem"; this.homepageToolStripMenuItem.Size = new System.Drawing.Size(197, 22); this.homepageToolStripMenuItem.Text = "&Homepage"; this.homepageToolStripMenuItem.Click += new System.EventHandler(this.homepageToolStripMenuItem_Click); // // updatesToolStripMenuItem // this.updatesToolStripMenuItem.Name = "updatesToolStripMenuItem"; this.updatesToolStripMenuItem.Size = new System.Drawing.Size(197, 22); this.updatesToolStripMenuItem.Text = "&Updates"; this.updatesToolStripMenuItem.Click += new System.EventHandler(this.updatesToolStripMenuItem_Click); // // discussionsToolStripMenuItem // this.discussionsToolStripMenuItem.Name = "discussionsToolStripMenuItem"; this.discussionsToolStripMenuItem.Size = new System.Drawing.Size(197, 22); this.discussionsToolStripMenuItem.Text = "&Discussions"; this.discussionsToolStripMenuItem.Click += new System.EventHandler(this.discussionsToolStripMenuItem_Click); // // issueTrackerToolStripMenuItem // this.issueTrackerToolStripMenuItem.Name = "issueTrackerToolStripMenuItem"; this.issueTrackerToolStripMenuItem.Size = new System.Drawing.Size(197, 22); this.issueTrackerToolStripMenuItem.Text = "&Issue Tracker"; this.issueTrackerToolStripMenuItem.Click += new System.EventHandler(this.issueTrackerToolStripMenuItem_Click); // // toolStripMenuItem4 // this.toolStripMenuItem4.Name = "toolStripMenuItem4"; this.toolStripMenuItem4.Size = new System.Drawing.Size(194, 6); // // reloadSimisResourcesToolStripMenuItem // this.reloadSimisResourcesToolStripMenuItem.Name = "reloadSimisResourcesToolStripMenuItem"; this.reloadSimisResourcesToolStripMenuItem.Size = new System.Drawing.Size(197, 22); this.reloadSimisResourcesToolStripMenuItem.Text = "Reload Simis Resources"; this.reloadSimisResourcesToolStripMenuItem.Click += new System.EventHandler(this.reloadSimisResourcesToolStripMenuItem_Click); // // toolStripMenuItem5 // this.toolStripMenuItem5.Name = "toolStripMenuItem5"; this.toolStripMenuItem5.Size = new System.Drawing.Size(194, 6); // // sendFeedbackToolStripMenuItem // this.sendFeedbackToolStripMenuItem.Name = "sendFeedbackToolStripMenuItem"; this.sendFeedbackToolStripMenuItem.Size = new System.Drawing.Size(197, 22); this.sendFeedbackToolStripMenuItem.Text = "Send Feedback..."; this.sendFeedbackToolStripMenuItem.Click += new System.EventHandler(this.sendFeedbackToolStripMenuItem_Click); // // AceContainer // this.AceContainer.AutoScroll = true; this.AceContainer.AutoScrollMargin = new System.Drawing.Size(3, 3); this.AceContainer.AutoSize = true; this.AceContainer.Controls.Add(this.AceImage); this.AceContainer.Dock = System.Windows.Forms.DockStyle.Fill; this.AceContainer.Location = new System.Drawing.Point(0, 24); this.AceContainer.Name = "AceContainer"; this.AceContainer.Size = new System.Drawing.Size(282, 516); this.AceContainer.TabIndex = 1; this.AceContainer.Visible = false; // // AceImage // this.AceImage.BackColor = System.Drawing.Color.White; this.AceImage.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("AceImage.BackgroundImage"))); this.AceImage.Location = new System.Drawing.Point(3, 3); this.AceImage.Name = "AceImage"; this.AceImage.Size = new System.Drawing.Size(100, 100); this.AceImage.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; this.AceImage.TabIndex = 0; this.AceImage.TabStop = false; this.AceImage.Paint += new System.Windows.Forms.PaintEventHandler(this.AceImage_Paint); // // AceChannels // this.AceChannels.AutoScroll = true; this.AceChannels.AutoScrollMargin = new System.Drawing.Size(3, 3); this.AceChannels.Dock = System.Windows.Forms.DockStyle.Right; this.AceChannels.Location = new System.Drawing.Point(282, 24); this.AceChannels.Name = "AceChannels"; this.AceChannels.Size = new System.Drawing.Size(200, 516); this.AceChannels.TabIndex = 2; this.AceChannels.Visible = false; // // FileStatus // this.FileStatus.Dock = System.Windows.Forms.DockStyle.Fill; this.FileStatus.Location = new System.Drawing.Point(0, 24); this.FileStatus.Name = "FileStatus"; this.FileStatus.Size = new System.Drawing.Size(784, 516); this.FileStatus.TabIndex = 1; this.FileStatus.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // // Editor // this.AllowDrop = true; this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(784, 562); this.Controls.Add(this.AceContainer); this.Controls.Add(this.AceChannels); this.Controls.Add(this.SimisTree); this.Controls.Add(this.SimisProperties); this.Controls.Add(this.FileStatus); this.Controls.Add(statusBar); this.Controls.Add(this.menuStrip); this.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.MainMenuStrip = this.menuStrip; this.Name = "Editor"; this.Text = "Simis Editor"; this.DragDrop += new System.Windows.Forms.DragEventHandler(this.Editor_DragDrop); this.DragEnter += new System.Windows.Forms.DragEventHandler(this.Editor_DragEnter); this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Editor_FormClosing); statusBar.ResumeLayout(false); statusBar.PerformLayout(); this.contextMenuStrip.ResumeLayout(false); this.menuStrip.ResumeLayout(false); this.menuStrip.PerformLayout(); this.AceContainer.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.AceImage)).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.ContextMenuStrip _ResourceMenuStrip; System.Windows.Forms.ToolStripMenuItem _ViewResourceMenuItem; System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ArchiveViewer)); System.Windows.Forms.ImageList _TypeImageList; System.Windows.Forms.ToolStrip _ToolStrip; System.Windows.Forms.ToolStripButton _SaveArchiveButton; System.Windows.Forms.ToolStripSeparator _ToolStripSeparator1; System.Windows.Forms.ToolStripButton _ViewResourceButton; System.Windows.Forms.StatusStrip _StatusStrip; this._EntryTreeView = new System.Windows.Forms.TreeView(); this._HintLabel = new System.Windows.Forms.ToolStripStatusLabel(); this._SaveArchiveDialog = new System.Windows.Forms.SaveFileDialog(); _ResourceMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components); _ViewResourceMenuItem = new System.Windows.Forms.ToolStripMenuItem(); _TypeImageList = new System.Windows.Forms.ImageList(this.components); _ToolStrip = new System.Windows.Forms.ToolStrip(); _SaveArchiveButton = new System.Windows.Forms.ToolStripButton(); _ToolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator(); _ViewResourceButton = new System.Windows.Forms.ToolStripButton(); _StatusStrip = new System.Windows.Forms.StatusStrip(); _ResourceMenuStrip.SuspendLayout(); _ToolStrip.SuspendLayout(); _StatusStrip.SuspendLayout(); this.SuspendLayout(); // // _EntryTreeView // this._EntryTreeView.ContextMenuStrip = _ResourceMenuStrip; this._EntryTreeView.Dock = System.Windows.Forms.DockStyle.Fill; this._EntryTreeView.ImageIndex = 0; this._EntryTreeView.ImageList = _TypeImageList; this._EntryTreeView.Location = new System.Drawing.Point(0, 25); this._EntryTreeView.Name = "_EntryTreeView"; this._EntryTreeView.SelectedImageIndex = 0; this._EntryTreeView.Size = new System.Drawing.Size(480, 193); this._EntryTreeView.TabIndex = 0; this._EntryTreeView.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.OnSelectEntry); this._EntryTreeView.NodeMouseDoubleClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.OnOpenEntry1); // // _ResourceMenuStrip // _ResourceMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { _ViewResourceMenuItem }); _ResourceMenuStrip.Name = "entryMenuStrip"; _ResourceMenuStrip.Size = new System.Drawing.Size(100, 26); // // _ViewResourceMenuItem // _ViewResourceMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("_ViewResourceMenuItem.Image"))); _ViewResourceMenuItem.Name = "_ViewResourceMenuItem"; _ViewResourceMenuItem.Size = new System.Drawing.Size(99, 22); _ViewResourceMenuItem.Text = "&View"; _ViewResourceMenuItem.Click += new System.EventHandler(this.OnOpenEntry2); // // _TypeImageList // _TypeImageList.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("_TypeImageList.ImageStream"))); _TypeImageList.TransparentColor = System.Drawing.Color.Transparent; _TypeImageList.Images.SetKeyName(0, "Unknown"); _TypeImageList.Images.SetKeyName(1, "SDS"); _TypeImageList.Images.SetKeyName(2, "MemFile"); _TypeImageList.Images.SetKeyName(3, "XML"); _TypeImageList.Images.SetKeyName(4, "Table"); _TypeImageList.Images.SetKeyName(5, "Script"); _TypeImageList.Images.SetKeyName(6, "Texture"); _TypeImageList.Images.SetKeyName(7, "Sound"); _TypeImageList.Images.SetKeyName(8, "Cutscene"); // // _ToolStrip // _ToolStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { _SaveArchiveButton, _ToolStripSeparator1, _ViewResourceButton }); _ToolStrip.Location = new System.Drawing.Point(0, 0); _ToolStrip.Name = "_ToolStrip"; _ToolStrip.Size = new System.Drawing.Size(480, 25); _ToolStrip.TabIndex = 1; _ToolStrip.Text = "toolStrip1"; // // _SaveArchiveButton // _SaveArchiveButton.Image = ((System.Drawing.Image)(resources.GetObject("_SaveArchiveButton.Image"))); _SaveArchiveButton.ImageTransparentColor = System.Drawing.Color.Magenta; _SaveArchiveButton.Name = "_SaveArchiveButton"; _SaveArchiveButton.Size = new System.Drawing.Size(94, 22); _SaveArchiveButton.Text = "Save Archive"; _SaveArchiveButton.Click += new System.EventHandler(this.OnSaveArchive); // // _ToolStripSeparator1 // _ToolStripSeparator1.Name = "_ToolStripSeparator1"; _ToolStripSeparator1.Size = new System.Drawing.Size(6, 25); // // _ViewResourceButton // _ViewResourceButton.Image = ((System.Drawing.Image)(resources.GetObject("_ViewResourceButton.Image"))); _ViewResourceButton.ImageTransparentColor = System.Drawing.Color.Magenta; _ViewResourceButton.Name = "_ViewResourceButton"; _ViewResourceButton.Size = new System.Drawing.Size(103, 22); _ViewResourceButton.Text = "View Resource"; _ViewResourceButton.Click += new System.EventHandler(this.OnOpenEntry2); // // _StatusStrip // _StatusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this._HintLabel }); _StatusStrip.Location = new System.Drawing.Point(0, 218); _StatusStrip.Name = "_StatusStrip"; _StatusStrip.Size = new System.Drawing.Size(480, 22); _StatusStrip.TabIndex = 2; _StatusStrip.Text = "statusStrip1"; // // _HintLabel // this._HintLabel.Name = "_HintLabel"; this._HintLabel.Size = new System.Drawing.Size(30, 17); this._HintLabel.Text = "Hint"; // // _SaveArchiveDialog // this._SaveArchiveDialog.DefaultExt = "sds"; this._SaveArchiveDialog.Filter = "Illusion SDS archives (*.sds)|*.sds|All Files (*.*)|*.*"; // // ArchiveViewer // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(480, 240); this.Controls.Add(this._EntryTreeView); this.Controls.Add(_StatusStrip); this.Controls.Add(_ToolStrip); this.Name = "ArchiveViewer"; this.Text = "Archive"; _ResourceMenuStrip.ResumeLayout(false); _ToolStrip.ResumeLayout(false); _ToolStrip.PerformLayout(); _StatusStrip.ResumeLayout(false); _StatusStrip.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.Button cancelButton; System.Windows.Forms.StatusStrip statusStrip; System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(IssueBrowserDialog)); System.Windows.Forms.ToolTip toolTip; System.Windows.Forms.Label label1; System.Windows.Forms.Label label2; this.statusLabel = new System.Windows.Forms.ToolStripStatusLabel(); this.workStatus = new System.Windows.Forms.ToolStripStatusLabel(); this.detailButton = new System.Windows.Forms.Button(); this.refreshButton = new System.Windows.Forms.Button(); this.okButton = new System.Windows.Forms.Button(); this.issueListView = new System.Windows.Forms.ListView(); this.idColumn = new System.Windows.Forms.ColumnHeader(); this.foundLabel = new System.Windows.Forms.Label(); this.searchFieldBox = new System.Windows.Forms.ComboBox(); this.updateNotifyIcon = new System.Windows.Forms.NotifyIcon(this.components); this.includeClosedCheckBox = new System.Windows.Forms.CheckBox(); this.searchBox = new System.Windows.Forms.ComboBox(); cancelButton = new System.Windows.Forms.Button(); statusStrip = new System.Windows.Forms.StatusStrip(); toolTip = new System.Windows.Forms.ToolTip(this.components); label1 = new System.Windows.Forms.Label(); label2 = new System.Windows.Forms.Label(); statusStrip.SuspendLayout(); this.SuspendLayout(); // // cancelButton // cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel; cancelButton.Location = new System.Drawing.Point(761, 427); cancelButton.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); cancelButton.Name = "cancelButton"; cancelButton.Size = new System.Drawing.Size(75, 30); cancelButton.TabIndex = 10; cancelButton.Text = "Cancel"; cancelButton.UseVisualStyleBackColor = true; // // statusStrip // statusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.statusLabel, this.workStatus}); statusStrip.Location = new System.Drawing.Point(0, 462); statusStrip.Name = "statusStrip"; statusStrip.Padding = new System.Windows.Forms.Padding(1, 0, 13, 0); statusStrip.Size = new System.Drawing.Size(849, 25); statusStrip.TabIndex = 11; // // statusLabel // this.statusLabel.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; this.statusLabel.Name = "statusLabel"; this.statusLabel.Size = new System.Drawing.Size(835, 20); this.statusLabel.Spring = true; this.statusLabel.Text = "Ready"; this.statusLabel.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // workStatus // this.workStatus.AutoSize = false; this.workStatus.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.workStatus.Image = ((System.Drawing.Image)(resources.GetObject("workStatus.Image"))); this.workStatus.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; this.workStatus.Name = "workStatus"; this.workStatus.Size = new System.Drawing.Size(45, 20); this.workStatus.Visible = false; // // detailButton // this.detailButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.detailButton.Location = new System.Drawing.Point(12, 427); this.detailButton.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); this.detailButton.Name = "detailButton"; this.detailButton.Size = new System.Drawing.Size(75, 30); this.detailButton.TabIndex = 6; this.detailButton.Text = "&Details"; toolTip.SetToolTip(this.detailButton, "Open details of selected issue in the browser"); this.detailButton.UseVisualStyleBackColor = true; this.detailButton.Click += new System.EventHandler(this.DetailButton_Click); // // refreshButton // this.refreshButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.refreshButton.Enabled = false; this.refreshButton.Location = new System.Drawing.Point(93, 427); this.refreshButton.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); this.refreshButton.Name = "refreshButton"; this.refreshButton.Size = new System.Drawing.Size(75, 30); this.refreshButton.TabIndex = 7; this.refreshButton.Text = "&Refresh"; toolTip.SetToolTip(this.refreshButton, "Reload the issue list"); this.refreshButton.UseVisualStyleBackColor = true; this.refreshButton.Click += new System.EventHandler(this.RefreshButton_Click); // // label1 // label1.AutoSize = true; label1.Location = new System.Drawing.Point(12, 7); label1.Name = "label1"; label1.Size = new System.Drawing.Size(55, 17); label1.TabIndex = 0; label1.Text = "&Search:"; // // label2 // label2.AutoSize = true; label2.Location = new System.Drawing.Point(316, 11); label2.Name = "label2"; label2.Size = new System.Drawing.Size(18, 17); label2.TabIndex = 2; label2.Text = "in"; // // okButton // this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.okButton.DialogResult = System.Windows.Forms.DialogResult.OK; this.okButton.Location = new System.Drawing.Point(681, 427); this.okButton.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); this.okButton.Name = "okButton"; this.okButton.Size = new System.Drawing.Size(75, 30); this.okButton.TabIndex = 9; this.okButton.Text = "OK"; this.okButton.UseVisualStyleBackColor = true; // // issueListView // this.issueListView.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.issueListView.CheckBoxes = true; this.issueListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {this.idColumn}); this.issueListView.FullRowSelect = true; this.issueListView.GridLines = true; this.issueListView.HideSelection = false; this.issueListView.Location = new System.Drawing.Point(0, 38); this.issueListView.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); this.issueListView.MultiSelect = false; this.issueListView.Name = "issueListView"; this.issueListView.Size = new System.Drawing.Size(848, 382); this.issueListView.TabIndex = 5; this.issueListView.UseCompatibleStateImageBehavior = false; this.issueListView.View = System.Windows.Forms.View.Details; this.issueListView.ItemChecked += new System.Windows.Forms.ItemCheckedEventHandler(this.IssueListView_ItemChecked); this.issueListView.SelectedIndexChanged += new System.EventHandler(this.IssueListView_SelectedIndexChanged); this.issueListView.DoubleClick += new System.EventHandler(this.IssueListView_DoubleClick); // // idColumn // this.idColumn.Text = "ID"; // // foundLabel // this.foundLabel.AutoSize = true; this.foundLabel.Location = new System.Drawing.Point(490, 11); this.foundLabel.Name = "foundLabel"; this.foundLabel.Size = new System.Drawing.Size(70, 17); this.foundLabel.TabIndex = 4; this.foundLabel.Text = "{0} found"; this.foundLabel.Visible = false; // // searchFieldBox // this.searchFieldBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.searchFieldBox.FormattingEnabled = true; this.searchFieldBox.Location = new System.Drawing.Point(341, 7); this.searchFieldBox.Name = "searchFieldBox"; this.searchFieldBox.Size = new System.Drawing.Size(121, 25); this.searchFieldBox.TabIndex = 3; this.searchFieldBox.SelectedIndexChanged += new System.EventHandler(this.SearchFieldBox_SelectedIndexChanged); // // updateNotifyIcon // this.updateNotifyIcon.BalloonTipIcon = System.Windows.Forms.ToolTipIcon.Info; this.updateNotifyIcon.BalloonTipText = "There is a new version of Gurtle available. Click here to find out more."; this.updateNotifyIcon.BalloonTipTitle = "Gurtle Update Available"; this.updateNotifyIcon.Icon = ((System.Drawing.Icon)(resources.GetObject("updateNotifyIcon.Icon"))); this.updateNotifyIcon.Text = "Gurtle Update Available"; this.updateNotifyIcon.BalloonTipClicked += new System.EventHandler(this.UpdateNotifyIcon_Click); this.updateNotifyIcon.Click += new System.EventHandler(this.UpdateNotifyIcon_Click); // // includeClosedCheckBox // this.includeClosedCheckBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.includeClosedCheckBox.AutoSize = true; this.includeClosedCheckBox.Location = new System.Drawing.Point(175, 432); this.includeClosedCheckBox.Name = "includeClosedCheckBox"; this.includeClosedCheckBox.Size = new System.Drawing.Size(155, 21); this.includeClosedCheckBox.TabIndex = 8; this.includeClosedCheckBox.Text = "I&nclude closed issues"; this.includeClosedCheckBox.UseVisualStyleBackColor = true; this.includeClosedCheckBox.CheckedChanged += new System.EventHandler(this.RefreshButton_Click); // // searchBox // this.searchBox.FormattingEnabled = true; this.searchBox.Location = new System.Drawing.Point(76, 7); this.searchBox.Name = "searchBox"; this.searchBox.Size = new System.Drawing.Size(233, 25); this.searchBox.TabIndex = 1; this.searchBox.TextChanged += new System.EventHandler(this.SearchBox_TextChanged); // // IssueBrowserDialog // this.AcceptButton = this.okButton; this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 17F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.CancelButton = cancelButton; this.ClientSize = new System.Drawing.Size(849, 487); this.Controls.Add(this.searchBox); this.Controls.Add(this.includeClosedCheckBox); this.Controls.Add(this.searchFieldBox); this.Controls.Add(this.foundLabel); this.Controls.Add(label2); this.Controls.Add(label1); this.Controls.Add(this.refreshButton); this.Controls.Add(statusStrip); this.Controls.Add(this.okButton); this.Controls.Add(cancelButton); this.Controls.Add(this.detailButton); this.Controls.Add(this.issueListView); this.Font = new System.Drawing.Font("Tahoma", 8.25F); this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); this.MinimizeBox = false; this.MinimumSize = new System.Drawing.Size(570, 190); this.Name = "IssueBrowserDialog"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; this.Text = "Issues for {0} ({1})"; statusStrip.ResumeLayout(false); statusStrip.PerformLayout(); this.ResumeLayout(false); this.PerformLayout(); }
/// <summary> /// デザイナー サポートに必要なメソッドです。このメソッドの内容を /// コード エディターで変更しないでください。 /// </summary> private void InitializeComponent() { this.components = new System.ComponentModel.Container(); System.Windows.Forms.ToolStripContainer toolStripContainer; System.Windows.Forms.StatusStrip statusStrip; System.Windows.Forms.SplitContainer verticalSplitter; System.Windows.Forms.TreeNode treeNode1 = new System.Windows.Forms.TreeNode("dummy"); System.Windows.Forms.TreeNode treeNode2 = new System.Windows.Forms.TreeNode("ROOT", new System.Windows.Forms.TreeNode[] { treeNode1 }); System.Windows.Forms.TabPage browsePage; System.Windows.Forms.SplitContainer horizontalSplitter; System.Windows.Forms.ColumnHeader classNameColumn; System.Windows.Forms.ColumnHeader memberNameColumn; System.Windows.Forms.ColumnHeader memberTypeColumn; System.Windows.Forms.TabPage queryPage; System.Windows.Forms.TableLayoutPanel tableLayoutPanel; this.messageLabel = new System.Windows.Forms.ToolStripStatusLabel(); this.scopeLabel = new System.Windows.Forms.ToolStripStatusLabel(); this.scopeTree = new System.Windows.Forms.TreeView(); this.queryMenu = new System.Windows.Forms.ContextMenuStrip(this.components); this.copyNameMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.queryMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.tabControl = new System.Windows.Forms.TabControl(); this.classList = new System.Windows.Forms.ListView(); this.memberList = new System.Windows.Forms.ListView(); this.queryBox = new System.Windows.Forms.TextBox(); this.resultTable = new System.Windows.Forms.ListView(); this.cancelWorker = new System.ComponentModel.BackgroundWorker(); toolStripContainer = new System.Windows.Forms.ToolStripContainer(); statusStrip = new System.Windows.Forms.StatusStrip(); verticalSplitter = new System.Windows.Forms.SplitContainer(); browsePage = new System.Windows.Forms.TabPage(); horizontalSplitter = new System.Windows.Forms.SplitContainer(); classNameColumn = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); memberNameColumn = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); memberTypeColumn = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); queryPage = new System.Windows.Forms.TabPage(); tableLayoutPanel = new System.Windows.Forms.TableLayoutPanel(); toolStripContainer.BottomToolStripPanel.SuspendLayout(); toolStripContainer.ContentPanel.SuspendLayout(); toolStripContainer.SuspendLayout(); statusStrip.SuspendLayout(); verticalSplitter.Panel1.SuspendLayout(); verticalSplitter.Panel2.SuspendLayout(); verticalSplitter.SuspendLayout(); this.queryMenu.SuspendLayout(); this.tabControl.SuspendLayout(); browsePage.SuspendLayout(); horizontalSplitter.Panel1.SuspendLayout(); horizontalSplitter.Panel2.SuspendLayout(); horizontalSplitter.SuspendLayout(); queryPage.SuspendLayout(); tableLayoutPanel.SuspendLayout(); this.SuspendLayout(); // // toolStripContainer // // // toolStripContainer.BottomToolStripPanel // toolStripContainer.BottomToolStripPanel.Controls.Add(statusStrip); // // toolStripContainer.ContentPanel // toolStripContainer.ContentPanel.Controls.Add(verticalSplitter); toolStripContainer.ContentPanel.Padding = new System.Windows.Forms.Padding(4); toolStripContainer.ContentPanel.Size = new System.Drawing.Size(752, 440); toolStripContainer.Dock = System.Windows.Forms.DockStyle.Fill; toolStripContainer.Location = new System.Drawing.Point(0, 0); toolStripContainer.Name = "toolStripContainer"; toolStripContainer.Size = new System.Drawing.Size(752, 487); toolStripContainer.TabIndex = 1; toolStripContainer.Text = "toolStripContainer1"; // // statusStrip // statusStrip.Dock = System.Windows.Forms.DockStyle.None; statusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.messageLabel, this.scopeLabel }); statusStrip.Location = new System.Drawing.Point(0, 0); statusStrip.Name = "statusStrip"; statusStrip.Size = new System.Drawing.Size(752, 22); statusStrip.TabIndex = 0; // // messageLabel // this.messageLabel.BorderSides = ((System.Windows.Forms.ToolStripStatusLabelBorderSides)((((System.Windows.Forms.ToolStripStatusLabelBorderSides.Left | System.Windows.Forms.ToolStripStatusLabelBorderSides.Top) | System.Windows.Forms.ToolStripStatusLabelBorderSides.Right) | System.Windows.Forms.ToolStripStatusLabelBorderSides.Bottom))); this.messageLabel.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; this.messageLabel.Name = "messageLabel"; this.messageLabel.Size = new System.Drawing.Size(387, 17); this.messageLabel.Spring = true; this.messageLabel.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // scopeLabel // this.scopeLabel.AutoSize = false; this.scopeLabel.BorderSides = ((System.Windows.Forms.ToolStripStatusLabelBorderSides)((((System.Windows.Forms.ToolStripStatusLabelBorderSides.Left | System.Windows.Forms.ToolStripStatusLabelBorderSides.Top) | System.Windows.Forms.ToolStripStatusLabelBorderSides.Right) | System.Windows.Forms.ToolStripStatusLabelBorderSides.Bottom))); this.scopeLabel.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; this.scopeLabel.Name = "scopeLabel"; this.scopeLabel.Size = new System.Drawing.Size(350, 17); this.scopeLabel.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // verticalSplitter // verticalSplitter.Dock = System.Windows.Forms.DockStyle.Fill; verticalSplitter.FixedPanel = System.Windows.Forms.FixedPanel.Panel1; verticalSplitter.Location = new System.Drawing.Point(4, 4); verticalSplitter.Name = "verticalSplitter"; // // verticalSplitter.Panel1 // verticalSplitter.Panel1.Controls.Add(this.scopeTree); // // verticalSplitter.Panel2 // verticalSplitter.Panel2.Controls.Add(this.tabControl); verticalSplitter.Size = new System.Drawing.Size(744, 432); verticalSplitter.SplitterDistance = 150; verticalSplitter.TabIndex = 0; verticalSplitter.TabStop = false; // // scopeTree // this.scopeTree.ContextMenuStrip = this.queryMenu; this.scopeTree.Dock = System.Windows.Forms.DockStyle.Fill; this.scopeTree.HideSelection = false; this.scopeTree.Location = new System.Drawing.Point(0, 0); this.scopeTree.Name = "scopeTree"; treeNode1.Name = ""; treeNode1.Text = "dummy"; treeNode2.Name = ""; treeNode2.Text = "ROOT"; this.scopeTree.Nodes.AddRange(new System.Windows.Forms.TreeNode[] { treeNode2 }); this.scopeTree.Size = new System.Drawing.Size(150, 432); this.scopeTree.TabIndex = 0; this.scopeTree.BeforeExpand += new System.Windows.Forms.TreeViewCancelEventHandler(this.scopeTree_BeforeExpand); this.scopeTree.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.scopeTree_AfterSelect); // // queryMenu // this.queryMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.copyNameMenuItem, this.queryMenuItem }); this.queryMenu.Name = "queryMenu"; this.queryMenu.Size = new System.Drawing.Size(145, 48); this.queryMenu.Closed += new System.Windows.Forms.ToolStripDropDownClosedEventHandler(this.queryMenu_Closed); this.queryMenu.Opening += new System.ComponentModel.CancelEventHandler(this.queryMenu_Opening); // // copyNameMenuItem // this.copyNameMenuItem.Name = "copyNameMenuItem"; this.copyNameMenuItem.Size = new System.Drawing.Size(144, 22); this.copyNameMenuItem.Text = "&Copy Name"; this.copyNameMenuItem.Click += new System.EventHandler(this.copyNameMenuItem_Click); // // queryMenuItem // this.queryMenuItem.Name = "queryMenuItem"; this.queryMenuItem.Size = new System.Drawing.Size(144, 22); this.queryMenuItem.Text = "&Query"; this.queryMenuItem.Click += new System.EventHandler(this.queryMenuItem_Click); // // tabControl // this.tabControl.Controls.Add(browsePage); this.tabControl.Controls.Add(queryPage); this.tabControl.Dock = System.Windows.Forms.DockStyle.Fill; this.tabControl.Location = new System.Drawing.Point(0, 0); this.tabControl.Name = "tabControl"; this.tabControl.SelectedIndex = 0; this.tabControl.Size = new System.Drawing.Size(590, 432); this.tabControl.TabIndex = 0; // // browsePage // browsePage.Controls.Add(horizontalSplitter); browsePage.Location = new System.Drawing.Point(4, 22); browsePage.Name = "browsePage"; browsePage.Padding = new System.Windows.Forms.Padding(3); browsePage.Size = new System.Drawing.Size(582, 406); browsePage.TabIndex = 0; browsePage.Text = "Browse"; browsePage.UseVisualStyleBackColor = true; // // horizontalSplitter // horizontalSplitter.Dock = System.Windows.Forms.DockStyle.Fill; horizontalSplitter.Location = new System.Drawing.Point(3, 3); horizontalSplitter.Name = "horizontalSplitter"; horizontalSplitter.Orientation = System.Windows.Forms.Orientation.Horizontal; // // horizontalSplitter.Panel1 // horizontalSplitter.Panel1.Controls.Add(this.classList); // // horizontalSplitter.Panel2 // horizontalSplitter.Panel2.Controls.Add(this.memberList); horizontalSplitter.Size = new System.Drawing.Size(576, 400); horizontalSplitter.SplitterDistance = 249; horizontalSplitter.TabIndex = 0; horizontalSplitter.TabStop = false; // // classList // this.classList.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { classNameColumn }); this.classList.ContextMenuStrip = this.queryMenu; this.classList.Dock = System.Windows.Forms.DockStyle.Fill; this.classList.FullRowSelect = true; this.classList.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable; this.classList.HideSelection = false; this.classList.Location = new System.Drawing.Point(0, 0); this.classList.MultiSelect = false; this.classList.Name = "classList"; this.classList.Size = new System.Drawing.Size(576, 249); this.classList.Sorting = System.Windows.Forms.SortOrder.Ascending; this.classList.TabIndex = 0; this.classList.UseCompatibleStateImageBehavior = false; this.classList.View = System.Windows.Forms.View.Details; this.classList.ItemActivate += new System.EventHandler(this.classList_ItemActivate); // // classNameColumn // classNameColumn.Text = "Name"; // // memberList // this.memberList.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { memberNameColumn, memberTypeColumn }); this.memberList.ContextMenuStrip = this.queryMenu; this.memberList.Dock = System.Windows.Forms.DockStyle.Fill; this.memberList.FullRowSelect = true; this.memberList.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable; this.memberList.HideSelection = false; this.memberList.Location = new System.Drawing.Point(0, 0); this.memberList.Name = "memberList"; this.memberList.Size = new System.Drawing.Size(576, 147); this.memberList.Sorting = System.Windows.Forms.SortOrder.Ascending; this.memberList.TabIndex = 0; this.memberList.UseCompatibleStateImageBehavior = false; this.memberList.View = System.Windows.Forms.View.Details; // // memberNameColumn // memberNameColumn.Text = "Name"; // // memberTypeColumn // memberTypeColumn.Text = "Type"; // // queryPage // queryPage.Controls.Add(tableLayoutPanel); queryPage.Location = new System.Drawing.Point(4, 22); queryPage.Name = "queryPage"; queryPage.Padding = new System.Windows.Forms.Padding(3); queryPage.Size = new System.Drawing.Size(582, 406); queryPage.TabIndex = 1; queryPage.Text = "Query"; queryPage.UseVisualStyleBackColor = true; // // tableLayoutPanel // tableLayoutPanel.ColumnCount = 1; tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); tableLayoutPanel.Controls.Add(this.queryBox, 0, 0); tableLayoutPanel.Controls.Add(this.resultTable, 0, 1); tableLayoutPanel.Dock = System.Windows.Forms.DockStyle.Fill; tableLayoutPanel.Location = new System.Drawing.Point(3, 3); tableLayoutPanel.Name = "tableLayoutPanel"; tableLayoutPanel.RowCount = 2; tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle()); tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle()); tableLayoutPanel.Size = new System.Drawing.Size(576, 400); tableLayoutPanel.TabIndex = 0; // // queryBox // this.queryBox.Dock = System.Windows.Forms.DockStyle.Fill; this.queryBox.HideSelection = false; this.queryBox.Location = new System.Drawing.Point(0, 0); this.queryBox.Margin = new System.Windows.Forms.Padding(0, 0, 0, 2); this.queryBox.Name = "queryBox"; this.queryBox.Size = new System.Drawing.Size(576, 19); this.queryBox.TabIndex = 0; this.queryBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.queryBox_KeyDown); this.queryBox.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.queryBox_KeyPress); // // resultTable // this.resultTable.Dock = System.Windows.Forms.DockStyle.Fill; this.resultTable.FullRowSelect = true; this.resultTable.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable; this.resultTable.HideSelection = false; this.resultTable.Location = new System.Drawing.Point(0, 23); this.resultTable.Margin = new System.Windows.Forms.Padding(0, 2, 0, 0); this.resultTable.MultiSelect = false; this.resultTable.Name = "resultTable"; this.resultTable.Size = new System.Drawing.Size(576, 389); this.resultTable.TabIndex = 1; this.resultTable.UseCompatibleStateImageBehavior = false; this.resultTable.View = System.Windows.Forms.View.Details; // // cancelWorker // this.cancelWorker.DoWork += new System.ComponentModel.DoWorkEventHandler(this.cancelWorker_DoWork); // // MainForm // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(752, 487); this.Controls.Add(toolStripContainer); this.DoubleBuffered = true; this.KeyPreview = true; this.Name = "MainForm"; this.Text = "WMI Viewer"; this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.MainForm_KeyDown); toolStripContainer.BottomToolStripPanel.ResumeLayout(false); toolStripContainer.BottomToolStripPanel.PerformLayout(); toolStripContainer.ContentPanel.ResumeLayout(false); toolStripContainer.ResumeLayout(false); toolStripContainer.PerformLayout(); statusStrip.ResumeLayout(false); statusStrip.PerformLayout(); verticalSplitter.Panel1.ResumeLayout(false); verticalSplitter.Panel2.ResumeLayout(false); verticalSplitter.ResumeLayout(false); this.queryMenu.ResumeLayout(false); this.tabControl.ResumeLayout(false); browsePage.ResumeLayout(false); horizontalSplitter.Panel1.ResumeLayout(false); horizontalSplitter.Panel2.ResumeLayout(false); horizontalSplitter.ResumeLayout(false); queryPage.ResumeLayout(false); tableLayoutPanel.ResumeLayout(false); tableLayoutPanel.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.MenuStrip menuStrip; System.Windows.Forms.ToolStripContainer toolStripContainer1; System.Windows.Forms.StatusStrip statusStrip1; System.Windows.Forms.SplitContainer splitContainer1; System.Windows.Forms.ToolStrip toolStrip1; System.Windows.Forms.Timer timer; System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(BrowseForm)); this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.openToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.searchStatusLabel = new System.Windows.Forms.ToolStripStatusLabel(); this.hitsBox = new System.Windows.Forms.ListBox(); this.webBrowser = new System.Windows.Forms.WebBrowser(); this.searchBox = new System.Windows.Forms.ToolStripTextBox(); this.goButton = new System.Windows.Forms.ToolStripButton(); this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator(); this.backButton = new System.Windows.Forms.ToolStripButton(); this.nextButton = new System.Windows.Forms.ToolStripButton(); this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator(); this.toEPubButton = new System.Windows.Forms.ToolStripButton(); this.toPdfButton = new System.Windows.Forms.ToolStripButton(); this.closeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator(); this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.optionsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.rtlToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.profileMenuItem = new System.Windows.Forms.ToolStripMenuItem(); menuStrip = new System.Windows.Forms.MenuStrip(); toolStripContainer1 = new System.Windows.Forms.ToolStripContainer(); statusStrip1 = new System.Windows.Forms.StatusStrip(); splitContainer1 = new System.Windows.Forms.SplitContainer(); toolStrip1 = new System.Windows.Forms.ToolStrip(); timer = new System.Windows.Forms.Timer(this.components); menuStrip.SuspendLayout(); toolStripContainer1.BottomToolStripPanel.SuspendLayout(); toolStripContainer1.ContentPanel.SuspendLayout(); toolStripContainer1.TopToolStripPanel.SuspendLayout(); toolStripContainer1.SuspendLayout(); statusStrip1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(splitContainer1)).BeginInit(); splitContainer1.Panel1.SuspendLayout(); splitContainer1.Panel2.SuspendLayout(); splitContainer1.SuspendLayout(); toolStrip1.SuspendLayout(); this.SuspendLayout(); // // menuStrip // menuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.fileToolStripMenuItem, this.optionsToolStripMenuItem, this.helpToolStripMenuItem }); resources.ApplyResources(menuStrip, "menuStrip"); menuStrip.Name = "menuStrip"; // // fileToolStripMenuItem // this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.openToolStripMenuItem, this.closeToolStripMenuItem, this.toolStripSeparator1, this.exitToolStripMenuItem }); this.fileToolStripMenuItem.Name = "fileToolStripMenuItem"; resources.ApplyResources(this.fileToolStripMenuItem, "fileToolStripMenuItem"); // // openToolStripMenuItem // this.openToolStripMenuItem.Name = "openToolStripMenuItem"; resources.ApplyResources(this.openToolStripMenuItem, "openToolStripMenuItem"); this.openToolStripMenuItem.Click += new System.EventHandler(this.openToolStripMenuItem_Click); // // toolStripContainer1 // // // toolStripContainer1.BottomToolStripPanel // toolStripContainer1.BottomToolStripPanel.Controls.Add(statusStrip1); // // toolStripContainer1.ContentPanel // toolStripContainer1.ContentPanel.Controls.Add(splitContainer1); resources.ApplyResources(toolStripContainer1.ContentPanel, "toolStripContainer1.ContentPanel"); resources.ApplyResources(toolStripContainer1, "toolStripContainer1"); toolStripContainer1.LeftToolStripPanelVisible = false; toolStripContainer1.Name = "toolStripContainer1"; toolStripContainer1.RightToolStripPanelVisible = false; // // toolStripContainer1.TopToolStripPanel // toolStripContainer1.TopToolStripPanel.Controls.Add(toolStrip1); // // statusStrip1 // resources.ApplyResources(statusStrip1, "statusStrip1"); statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.searchStatusLabel }); statusStrip1.Name = "statusStrip1"; // // searchStatusLabel // this.searchStatusLabel.Name = "searchStatusLabel"; resources.ApplyResources(this.searchStatusLabel, "searchStatusLabel"); // // splitContainer1 // splitContainer1.DataBindings.Add(new System.Windows.Forms.Binding("SplitterDistance", global::WikipediaConv.Properties.Settings.Default, "SplitterDistance", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged)); resources.ApplyResources(splitContainer1, "splitContainer1"); splitContainer1.FixedPanel = System.Windows.Forms.FixedPanel.Panel1; splitContainer1.Name = "splitContainer1"; // // splitContainer1.Panel1 // splitContainer1.Panel1.Controls.Add(this.hitsBox); // // splitContainer1.Panel2 // splitContainer1.Panel2.Controls.Add(this.webBrowser); splitContainer1.SplitterDistance = global::WikipediaConv.Properties.Settings.Default.SplitterDistance; // // hitsBox // resources.ApplyResources(this.hitsBox, "hitsBox"); this.hitsBox.FormattingEnabled = true; this.hitsBox.Name = "hitsBox"; this.hitsBox.SelectedValueChanged += new System.EventHandler(this.hitsBox_SelectedValueChanged); this.hitsBox.SizeChanged += new System.EventHandler(this.hitsBox_SizeChanged); // // webBrowser // this.webBrowser.AllowWebBrowserDrop = false; resources.ApplyResources(this.webBrowser, "webBrowser"); this.webBrowser.MinimumSize = new System.Drawing.Size(20, 20); this.webBrowser.Name = "webBrowser"; this.webBrowser.ScriptErrorsSuppressed = true; // // toolStrip1 // resources.ApplyResources(toolStrip1, "toolStrip1"); toolStrip1.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden; toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.searchBox, this.goButton, this.toolStripSeparator2, this.backButton, this.nextButton, this.toolStripSeparator3, this.toEPubButton, this.toPdfButton }); toolStrip1.Name = "toolStrip1"; toolStrip1.Stretch = true; // // searchBox // resources.ApplyResources(this.searchBox, "searchBox"); this.searchBox.AutoToolTip = true; this.searchBox.Name = "searchBox"; this.searchBox.TextChanged += new System.EventHandler(this.searchBox_TextChanged); // // goButton // this.goButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; resources.ApplyResources(this.goButton, "goButton"); this.goButton.Name = "goButton"; this.goButton.Click += new System.EventHandler(this.goButton_Click); // // toolStripSeparator2 // this.toolStripSeparator2.Name = "toolStripSeparator2"; resources.ApplyResources(this.toolStripSeparator2, "toolStripSeparator2"); // // backButton // this.backButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; resources.ApplyResources(this.backButton, "backButton"); this.backButton.Name = "backButton"; this.backButton.Click += new System.EventHandler(this.backButton_Click); // // nextButton // this.nextButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; resources.ApplyResources(this.nextButton, "nextButton"); this.nextButton.Name = "nextButton"; this.nextButton.Click += new System.EventHandler(this.nextButton_Click); // // toolStripSeparator3 // this.toolStripSeparator3.Name = "toolStripSeparator3"; resources.ApplyResources(this.toolStripSeparator3, "toolStripSeparator3"); // // toEPubButton // this.toEPubButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; resources.ApplyResources(this.toEPubButton, "toEPubButton"); this.toEPubButton.Name = "toEPubButton"; this.toEPubButton.Click += new System.EventHandler(this.toEPubButton_Click); // // toPdfButton // this.toPdfButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; resources.ApplyResources(this.toPdfButton, "toPdfButton"); this.toPdfButton.Name = "toPdfButton"; this.toPdfButton.Click += new System.EventHandler(this.toPdfButton_Click); // // closeToolStripMenuItem // this.closeToolStripMenuItem.Name = "closeToolStripMenuItem"; resources.ApplyResources(this.closeToolStripMenuItem, "closeToolStripMenuItem"); // // toolStripSeparator1 // this.toolStripSeparator1.Name = "toolStripSeparator1"; resources.ApplyResources(this.toolStripSeparator1, "toolStripSeparator1"); // // exitToolStripMenuItem // this.exitToolStripMenuItem.Name = "exitToolStripMenuItem"; resources.ApplyResources(this.exitToolStripMenuItem, "exitToolStripMenuItem"); this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click); // // optionsToolStripMenuItem // this.optionsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.rtlToolStripMenuItem, this.profileMenuItem }); this.optionsToolStripMenuItem.Name = "optionsToolStripMenuItem"; resources.ApplyResources(this.optionsToolStripMenuItem, "optionsToolStripMenuItem"); // // rtlToolStripMenuItem // this.rtlToolStripMenuItem.Name = "rtlToolStripMenuItem"; resources.ApplyResources(this.rtlToolStripMenuItem, "rtlToolStripMenuItem"); this.rtlToolStripMenuItem.Click += new System.EventHandler(this.rtlToolStripMenuItem_Click); // // helpToolStripMenuItem // this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.aboutToolStripMenuItem }); this.helpToolStripMenuItem.Name = "helpToolStripMenuItem"; resources.ApplyResources(this.helpToolStripMenuItem, "helpToolStripMenuItem"); // // aboutToolStripMenuItem // this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem"; resources.ApplyResources(this.aboutToolStripMenuItem, "aboutToolStripMenuItem"); this.aboutToolStripMenuItem.Click += new System.EventHandler(this.aboutToolStripMenuItem_Click); // // timer // timer.Enabled = true; timer.Tick += new System.EventHandler(this.timer_Tick); // // profileMenuItem // this.profileMenuItem.Name = "profileMenuItem"; resources.ApplyResources(this.profileMenuItem, "profileMenuItem"); this.profileMenuItem.Click += new System.EventHandler(this.profileMenuItem_Click); // // BrowseForm // resources.ApplyResources(this, "$this"); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.Controls.Add(toolStripContainer1); this.Controls.Add(menuStrip); this.MainMenuStrip = menuStrip; this.Name = "BrowseForm"; this.WindowState = System.Windows.Forms.FormWindowState.Maximized; this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.BrowseForm_FormClosing); menuStrip.ResumeLayout(false); menuStrip.PerformLayout(); toolStripContainer1.BottomToolStripPanel.ResumeLayout(false); toolStripContainer1.BottomToolStripPanel.PerformLayout(); toolStripContainer1.ContentPanel.ResumeLayout(false); toolStripContainer1.TopToolStripPanel.ResumeLayout(false); toolStripContainer1.TopToolStripPanel.PerformLayout(); toolStripContainer1.ResumeLayout(false); toolStripContainer1.PerformLayout(); statusStrip1.ResumeLayout(false); statusStrip1.PerformLayout(); splitContainer1.Panel1.ResumeLayout(false); splitContainer1.Panel2.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(splitContainer1)).EndInit(); splitContainer1.ResumeLayout(false); toolStrip1.ResumeLayout(false); toolStrip1.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.StatusStrip StatusStrip; System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MapEditor)); this.CurrentModeButton = new System.Windows.Forms.ToolStripSplitButton(); this.PositionXTool = new NumericUpDownToolStrip(); this.PositionYTool = new NumericUpDownToolStrip(); this.PositionZTool = new NumericUpDownToolStrip(); this.CameraSpeedTool = new NumericUpDownToolStrip(); this.Label_FPS = new System.Windows.Forms.ToolStripStatusLabel(); this.Label_MemoryUsage = new System.Windows.Forms.ToolStripStatusLabel(); this.ToolbarStrip = new System.Windows.Forms.ToolStrip(); this.FileButton = new System.Windows.Forms.ToolStripDropDownButton(); this.SaveButton = new System.Windows.Forms.ToolStripMenuItem(); this.ExitButton = new System.Windows.Forms.ToolStripMenuItem(); this.EditButton = new System.Windows.Forms.ToolStripDropDownButton(); this.AddButton = new System.Windows.Forms.ToolStripMenuItem(); this.Button_ImportFrame = new System.Windows.Forms.ToolStripMenuItem(); this.AddSceneFolderButton = new System.Windows.Forms.ToolStripMenuItem(); this.AddCollisionButton = new System.Windows.Forms.ToolStripMenuItem(); this.roadDebuggingToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.AddBackward = new System.Windows.Forms.ToolStripMenuItem(); this.AddToward = new System.Windows.Forms.ToolStripMenuItem(); this.AddRoadSplineButton = new System.Windows.Forms.ToolStripMenuItem(); this.AddSplineTxT = new System.Windows.Forms.ToolStripMenuItem(); this.AddJunctionButton = new System.Windows.Forms.ToolStripMenuItem(); this.EditUnkSet3 = new System.Windows.Forms.ToolStripMenuItem(); this.ViewButton = new System.Windows.Forms.ToolStripDropDownButton(); this.ViewTopButton = new System.Windows.Forms.ToolStripMenuItem(); this.ViewFrontButton = new System.Windows.Forms.ToolStripMenuItem(); this.ViewSideButton = new System.Windows.Forms.ToolStripMenuItem(); this.ViewBottomButton = new System.Windows.Forms.ToolStripMenuItem(); this.ViewSide2Button = new System.Windows.Forms.ToolStripMenuItem(); this.OptionsButton = new System.Windows.Forms.ToolStripDropDownButton(); this.ToggleWireframeButton = new System.Windows.Forms.ToolStripMenuItem(); this.ToggleCullingButton = new System.Windows.Forms.ToolStripMenuItem(); this.EditLighting = new System.Windows.Forms.ToolStripMenuItem(); this.Button_TestConvert32 = new System.Windows.Forms.ToolStripMenuItem(); this.Button_TestConvert16 = new System.Windows.Forms.ToolStripMenuItem(); this.Button_DumpTexture = new System.Windows.Forms.ToolStripMenuItem(); this.WindowButton = new System.Windows.Forms.ToolStripDropDownButton(); this.SceneTreeButton = new System.Windows.Forms.ToolStripMenuItem(); this.ObjectPropertiesButton = new System.Windows.Forms.ToolStripMenuItem(); this.ViewOptionProperties = new System.Windows.Forms.ToolStripMenuItem(); this.imageList1 = new System.Windows.Forms.ImageList(this.components); this.RenderPanel = new System.Windows.Forms.Panel(); this.MeshBrowser = new System.Windows.Forms.OpenFileDialog(); this.TxtBrowser = new System.Windows.Forms.OpenFileDialog(); this.dockPanel1 = new WeifenLuo.WinFormsUI.Docking.DockPanel(); this.FrameBrowser = new System.Windows.Forms.OpenFileDialog(); StatusStrip = new System.Windows.Forms.StatusStrip(); StatusStrip.SuspendLayout(); this.ToolbarStrip.SuspendLayout(); this.SuspendLayout(); // // StatusStrip // StatusStrip.AutoSize = false; StatusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.CurrentModeButton, this.PositionXTool, this.PositionYTool, this.PositionZTool, this.CameraSpeedTool, this.Label_FPS, this.Label_MemoryUsage }); StatusStrip.Location = new System.Drawing.Point(0, 692); StatusStrip.Name = "StatusStrip"; StatusStrip.Padding = new System.Windows.Forms.Padding(1, 0, 16, 0); StatusStrip.Size = new System.Drawing.Size(1420, 28); StatusStrip.TabIndex = 6; StatusStrip.Text = "statusStrip1"; // // CurrentModeButton // this.CurrentModeButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; this.CurrentModeButton.Image = ((System.Drawing.Image)(resources.GetObject("CurrentModeButton.Image"))); this.CurrentModeButton.ImageTransparentColor = System.Drawing.Color.Magenta; this.CurrentModeButton.Name = "CurrentModeButton"; this.CurrentModeButton.Size = new System.Drawing.Size(128, 26); this.CurrentModeButton.Text = "$CurrentModeLabel"; this.CurrentModeButton.ButtonClick += new System.EventHandler(this.CurrentModeButton_ButtonClick); // // PositionXTool // this.PositionXTool.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right; this.PositionXTool.AutoSize = false; this.PositionXTool.DecimalPlaces = 5; this.PositionXTool.Increment = new decimal(new int[] { 1, 0, 0, 0 }); this.PositionXTool.Margin = new System.Windows.Forms.Padding(3, 0, 1, 0); this.PositionXTool.Maximum = new decimal(new int[] { 9999999, 0, 0, 0 }); this.PositionXTool.Minimum = new decimal(new int[] { 9999999, 0, 0, -2147483648 }); this.PositionXTool.Name = "PositionXTool"; this.PositionXTool.Overflow = System.Windows.Forms.ToolStripItemOverflow.Always; this.PositionXTool.Padding = new System.Windows.Forms.Padding(2, 0, 2, 0); this.PositionXTool.Size = new System.Drawing.Size(84, 28); this.PositionXTool.Text = "0.00000"; this.PositionXTool.Value = new decimal(new int[] { 0, 0, 0, 0 }); this.PositionXTool.ValueChanged += new System.EventHandler(this.CameraToolsOnValueChanged); // // PositionYTool // this.PositionYTool.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right; this.PositionYTool.AutoSize = false; this.PositionYTool.DecimalPlaces = 5; this.PositionYTool.Increment = new decimal(new int[] { 1, 0, 0, 0 }); this.PositionYTool.Margin = new System.Windows.Forms.Padding(1, 0, 1, 0); this.PositionYTool.Maximum = new decimal(new int[] { 9999999, 0, 0, 0 }); this.PositionYTool.Minimum = new decimal(new int[] { 9999999, 0, 0, -2147483648 }); this.PositionYTool.Name = "PositionYTool"; this.PositionYTool.Overflow = System.Windows.Forms.ToolStripItemOverflow.Always; this.PositionYTool.Padding = new System.Windows.Forms.Padding(2, 0, 2, 0); this.PositionYTool.Size = new System.Drawing.Size(84, 28); this.PositionYTool.Text = "0.00000"; this.PositionYTool.Value = new decimal(new int[] { 0, 0, 0, 0 }); this.PositionYTool.ValueChanged += new System.EventHandler(this.CameraToolsOnValueChanged); // // PositionZTool // this.PositionZTool.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right; this.PositionZTool.AutoSize = false; this.PositionZTool.DecimalPlaces = 5; this.PositionZTool.Increment = new decimal(new int[] { 1, 0, 0, 0 }); this.PositionZTool.Margin = new System.Windows.Forms.Padding(1, 0, 3, 0); this.PositionZTool.Maximum = new decimal(new int[] { 9999999, 0, 0, 0 }); this.PositionZTool.Minimum = new decimal(new int[] { 9999999, 0, 0, -2147483648 }); this.PositionZTool.Name = "PositionZTool"; this.PositionZTool.Overflow = System.Windows.Forms.ToolStripItemOverflow.Always; this.PositionZTool.Padding = new System.Windows.Forms.Padding(2, 0, 2, 0); this.PositionZTool.Size = new System.Drawing.Size(84, 28); this.PositionZTool.Text = "0.00000"; this.PositionZTool.Value = new decimal(new int[] { 0, 0, 0, 0 }); this.PositionZTool.ValueChanged += new System.EventHandler(this.CameraToolsOnValueChanged); // // CameraSpeedTool // this.CameraSpeedTool.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right; this.CameraSpeedTool.AutoSize = false; this.CameraSpeedTool.DecimalPlaces = 5; this.CameraSpeedTool.Increment = new decimal(new int[] { 1, 0, 0, 131072 }); this.CameraSpeedTool.Margin = new System.Windows.Forms.Padding(1, 0, 3, 0); this.CameraSpeedTool.Maximum = new decimal(new int[] { 999, 0, 0, 0 }); this.CameraSpeedTool.Minimum = new decimal(new int[] { 0, 0, 0, 0 }); this.CameraSpeedTool.Name = "CameraSpeedTool"; this.CameraSpeedTool.Overflow = System.Windows.Forms.ToolStripItemOverflow.Always; this.CameraSpeedTool.Padding = new System.Windows.Forms.Padding(2, 0, 2, 0); this.CameraSpeedTool.Size = new System.Drawing.Size(84, 28); this.CameraSpeedTool.Text = "0.00000"; this.CameraSpeedTool.Value = new decimal(new int[] { 0, 0, 0, 0 }); this.CameraSpeedTool.ValueChanged += new System.EventHandler(this.CameraSpeedUpdate); // // Label_FPS // this.Label_FPS.Name = "Label_FPS"; this.Label_FPS.Overflow = System.Windows.Forms.ToolStripItemOverflow.Always; this.Label_FPS.Padding = new System.Windows.Forms.Padding(41, 0, 0, 0); this.Label_FPS.Size = new System.Drawing.Size(100, 23); this.Label_FPS.Text = "Label_FPS"; // // Label_MemoryUsage // this.Label_MemoryUsage.Name = "Label_MemoryUsage"; this.Label_MemoryUsage.Size = new System.Drawing.Size(117, 23); this.Label_MemoryUsage.Text = "Label_MemoryUsage"; // // ToolbarStrip // this.ToolbarStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.FileButton, this.EditButton, this.ViewButton, this.OptionsButton, this.WindowButton }); this.ToolbarStrip.Location = new System.Drawing.Point(0, 0); this.ToolbarStrip.Name = "ToolbarStrip"; this.ToolbarStrip.Size = new System.Drawing.Size(1420, 25); this.ToolbarStrip.TabIndex = 1; this.ToolbarStrip.Text = "toolStrip1"; // // FileButton // this.FileButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; this.FileButton.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.SaveButton, this.ExitButton }); this.FileButton.Image = ((System.Drawing.Image)(resources.GetObject("FileButton.Image"))); this.FileButton.ImageTransparentColor = System.Drawing.Color.Magenta; this.FileButton.Name = "FileButton"; this.FileButton.Size = new System.Drawing.Size(47, 22); this.FileButton.Text = "$FILE"; // // SaveButton // this.SaveButton.Name = "SaveButton"; this.SaveButton.Size = new System.Drawing.Size(106, 22); this.SaveButton.Text = "$SAVE"; this.SaveButton.Click += new System.EventHandler(this.SaveButton_Click); // // ExitButton // this.ExitButton.Name = "ExitButton"; this.ExitButton.Size = new System.Drawing.Size(106, 22); this.ExitButton.Text = "$EXIT"; this.ExitButton.Click += new System.EventHandler(this.ExitButton_Click); // // EditButton // this.EditButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; this.EditButton.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.AddButton, this.Button_ImportFrame, this.AddSceneFolderButton, this.AddCollisionButton, this.roadDebuggingToolStripMenuItem }); this.EditButton.Image = ((System.Drawing.Image)(resources.GetObject("EditButton.Image"))); this.EditButton.ImageTransparentColor = System.Drawing.Color.Magenta; this.EditButton.Name = "EditButton"; this.EditButton.Size = new System.Drawing.Size(66, 22); this.EditButton.Text = "$CREATE"; // // AddButton // this.AddButton.Name = "AddButton"; this.AddButton.Size = new System.Drawing.Size(191, 22); this.AddButton.Text = "$ADD"; this.AddButton.Click += new System.EventHandler(this.AddButtonOnClick); // // Button_ImportFrame // this.Button_ImportFrame.Name = "Button_ImportFrame"; this.Button_ImportFrame.Size = new System.Drawing.Size(191, 22); this.Button_ImportFrame.Text = "$IMPORT_FRAME"; this.Button_ImportFrame.Click += new System.EventHandler(this.Button_ImportFrame_OnClicked); // // AddSceneFolderButton // this.AddSceneFolderButton.Name = "AddSceneFolderButton"; this.AddSceneFolderButton.Size = new System.Drawing.Size(191, 22); this.AddSceneFolderButton.Text = "$ADD_SCENE_FOLDER"; this.AddSceneFolderButton.Click += new System.EventHandler(this.AddSceneFolderButton_Click); // // AddCollisionButton // this.AddCollisionButton.Name = "AddCollisionButton"; this.AddCollisionButton.Size = new System.Drawing.Size(191, 22); this.AddCollisionButton.Text = "$ADD_COLLISION"; this.AddCollisionButton.Click += new System.EventHandler(this.AddCollisionButton_Click); // // roadDebuggingToolStripMenuItem // this.roadDebuggingToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.AddBackward, this.AddToward, this.AddRoadSplineButton, this.AddSplineTxT, this.AddJunctionButton, this.EditUnkSet3 }); this.roadDebuggingToolStripMenuItem.Name = "roadDebuggingToolStripMenuItem"; this.roadDebuggingToolStripMenuItem.Size = new System.Drawing.Size(191, 22); this.roadDebuggingToolStripMenuItem.Text = "Road Debugging"; // // AddBackward // this.AddBackward.Name = "AddBackward"; this.AddBackward.Size = new System.Drawing.Size(183, 22); this.AddBackward.Text = "$ADD_BACKWARD"; this.AddBackward.Click += new System.EventHandler(this.AddBackwardClick); // // AddToward // this.AddToward.Name = "AddToward"; this.AddToward.Size = new System.Drawing.Size(183, 22); this.AddToward.Text = "$ADD_TOWARD"; this.AddToward.Click += new System.EventHandler(this.AddTowardClick); // // AddRoadSplineButton // this.AddRoadSplineButton.Name = "AddRoadSplineButton"; this.AddRoadSplineButton.Size = new System.Drawing.Size(183, 22); this.AddRoadSplineButton.Text = "$ADD_ROAD_SPLINE"; this.AddRoadSplineButton.Click += new System.EventHandler(this.AddRoadSplineButton_Click); // // AddSplineTxT // this.AddSplineTxT.Name = "AddSplineTxT"; this.AddSplineTxT.Size = new System.Drawing.Size(183, 22); this.AddSplineTxT.Text = "$ADD_SPLINE_TXT"; this.AddSplineTxT.Click += new System.EventHandler(this.AddSplineTxT_Click); // // AddJunctionButton // this.AddJunctionButton.Name = "AddJunctionButton"; this.AddJunctionButton.Size = new System.Drawing.Size(183, 22); this.AddJunctionButton.Text = "$ADD_JUNCTION"; this.AddJunctionButton.Click += new System.EventHandler(this.AddJunctionOnClick); // // EditUnkSet3 // this.EditUnkSet3.Name = "EditUnkSet3"; this.EditUnkSet3.Size = new System.Drawing.Size(183, 22); this.EditUnkSet3.Text = "$EDIT_UNKSET3"; this.EditUnkSet3.Click += new System.EventHandler(this.EditUnkSet3Click); // // ViewButton // this.ViewButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; this.ViewButton.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.ViewTopButton, this.ViewFrontButton, this.ViewSideButton, this.ViewBottomButton, this.ViewSide2Button }); this.ViewButton.Image = ((System.Drawing.Image)(resources.GetObject("ViewButton.Image"))); this.ViewButton.ImageTransparentColor = System.Drawing.Color.Magenta; this.ViewButton.Name = "ViewButton"; this.ViewButton.Size = new System.Drawing.Size(53, 22); this.ViewButton.Text = "$VIEW"; // // ViewTopButton // this.ViewTopButton.Name = "ViewTopButton"; this.ViewTopButton.Size = new System.Drawing.Size(126, 22); this.ViewTopButton.Text = "$TOP"; this.ViewTopButton.Click += new System.EventHandler(this.OnViewTopButtonClicked); // // ViewFrontButton // this.ViewFrontButton.Name = "ViewFrontButton"; this.ViewFrontButton.Size = new System.Drawing.Size(126, 22); this.ViewFrontButton.Text = "$FRONT"; this.ViewFrontButton.Click += new System.EventHandler(this.OnViewFrontButtonClicked); // // ViewSideButton // this.ViewSideButton.Enabled = false; this.ViewSideButton.Name = "ViewSideButton"; this.ViewSideButton.Size = new System.Drawing.Size(126, 22); this.ViewSideButton.Text = "$SIDE"; this.ViewSideButton.Visible = false; this.ViewSideButton.Click += new System.EventHandler(this.OnViewSideButtonClicked); // // ViewBottomButton // this.ViewBottomButton.Enabled = false; this.ViewBottomButton.Name = "ViewBottomButton"; this.ViewBottomButton.Size = new System.Drawing.Size(126, 22); this.ViewBottomButton.Text = "$BOTTOM"; this.ViewBottomButton.Visible = false; this.ViewBottomButton.Click += new System.EventHandler(this.OnViewBottomButtonClicked); // // ViewSide2Button // this.ViewSide2Button.Enabled = false; this.ViewSide2Button.Name = "ViewSide2Button"; this.ViewSide2Button.Size = new System.Drawing.Size(126, 22); this.ViewSide2Button.Text = "$SIDE 2"; this.ViewSide2Button.Visible = false; this.ViewSide2Button.Click += new System.EventHandler(this.OnViewSide2ButtonClicked); // // OptionsButton // this.OptionsButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; this.OptionsButton.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.ToggleWireframeButton, this.ToggleCullingButton, this.EditLighting, this.Button_TestConvert32, this.Button_TestConvert16, this.Button_DumpTexture }); this.OptionsButton.Image = ((System.Drawing.Image)(resources.GetObject("OptionsButton.Image"))); this.OptionsButton.ImageTransparentColor = System.Drawing.Color.Magenta; this.OptionsButton.Name = "OptionsButton"; this.OptionsButton.Size = new System.Drawing.Size(75, 22); this.OptionsButton.Text = "$OPTIONS"; // // ToggleWireframeButton // this.ToggleWireframeButton.Name = "ToggleWireframeButton"; this.ToggleWireframeButton.Size = new System.Drawing.Size(193, 22); this.ToggleWireframeButton.Text = "$TOGGLE_WIREFRAME"; this.ToggleWireframeButton.Click += new System.EventHandler(this.FillModeButton_Click); // // ToggleCullingButton // this.ToggleCullingButton.Name = "ToggleCullingButton"; this.ToggleCullingButton.Size = new System.Drawing.Size(193, 22); this.ToggleCullingButton.Text = "$TOGGLE_CULLING"; this.ToggleCullingButton.Click += new System.EventHandler(this.CullModeButton_Click); // // EditLighting // this.EditLighting.Name = "EditLighting"; this.EditLighting.Size = new System.Drawing.Size(193, 22); this.EditLighting.Text = "$EDIT_LIGHTING"; this.EditLighting.Click += new System.EventHandler(this.EditLighting_Click); // // Button_TestConvert32 // this.Button_TestConvert32.Name = "Button_TestConvert32"; this.Button_TestConvert32.Size = new System.Drawing.Size(193, 22); this.Button_TestConvert32.Text = "$TEST_CONVERT_32BIT"; this.Button_TestConvert32.Click += new System.EventHandler(this.Button_TestConvert32_Click); // // Button_TestConvert16 // this.Button_TestConvert16.Name = "Button_TestConvert16"; this.Button_TestConvert16.Size = new System.Drawing.Size(193, 22); this.Button_TestConvert16.Text = "$TEST_CONVERT_16BIT"; this.Button_TestConvert16.Click += new System.EventHandler(this.Button_TestConvert_Click); // // Button_DumpTexture // this.Button_DumpTexture.Name = "Button_DumpTexture"; this.Button_DumpTexture.Size = new System.Drawing.Size(193, 22); this.Button_DumpTexture.Text = "$DUMP_TEXTURES"; this.Button_DumpTexture.Click += new System.EventHandler(this.Button_DumpTexture_Click); // // WindowButton // this.WindowButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; this.WindowButton.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.SceneTreeButton, this.ObjectPropertiesButton, this.ViewOptionProperties }); this.WindowButton.Image = ((System.Drawing.Image)(resources.GetObject("WindowButton.Image"))); this.WindowButton.ImageTransparentColor = System.Drawing.Color.Magenta; this.WindowButton.Name = "WindowButton"; this.WindowButton.Size = new System.Drawing.Size(83, 22); this.WindowButton.Text = "$WINDOWS"; // // SceneTreeButton // this.SceneTreeButton.Name = "SceneTreeButton"; this.SceneTreeButton.Size = new System.Drawing.Size(198, 22); this.SceneTreeButton.Text = "$VIEW_SCENE_TREE"; this.SceneTreeButton.Click += new System.EventHandler(this.SceneTreeOnClicked); // // ObjectPropertiesButton // this.ObjectPropertiesButton.Name = "ObjectPropertiesButton"; this.ObjectPropertiesButton.Size = new System.Drawing.Size(198, 22); this.ObjectPropertiesButton.Text = "$VIEW_PROPERTY_GRID"; this.ObjectPropertiesButton.Click += new System.EventHandler(this.PropertyGridOnClicked); // // ViewOptionProperties // this.ViewOptionProperties.Name = "ViewOptionProperties"; this.ViewOptionProperties.Size = new System.Drawing.Size(198, 22); this.ViewOptionProperties.Text = "$VIEW_OPTIONS"; this.ViewOptionProperties.Click += new System.EventHandler(this.ViewOptionProperties_Click); // // imageList1 // this.imageList1.ColorDepth = System.Windows.Forms.ColorDepth.Depth32Bit; this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream"))); this.imageList1.TransparentColor = System.Drawing.Color.Transparent; this.imageList1.Images.SetKeyName(0, "StaticIcon"); this.imageList1.Images.SetKeyName(1, "LightIcon"); // // RenderPanel // this.RenderPanel.Dock = System.Windows.Forms.DockStyle.Fill; this.RenderPanel.Location = new System.Drawing.Point(0, 25); this.RenderPanel.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3); this.RenderPanel.Name = "RenderPanel"; this.RenderPanel.Size = new System.Drawing.Size(1420, 667); this.RenderPanel.TabIndex = 0; // // MeshBrowser // this.MeshBrowser.Filter = "Meshes|*.m2t|FBX|*.fbx"; // // TxtBrowser // this.TxtBrowser.Filter = "Text Document|*txt"; // // dockPanel1 // this.dockPanel1.Dock = System.Windows.Forms.DockStyle.Fill; this.dockPanel1.Location = new System.Drawing.Point(0, 25); this.dockPanel1.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3); this.dockPanel1.Name = "dockPanel1"; this.dockPanel1.Size = new System.Drawing.Size(1420, 667); this.dockPanel1.TabIndex = 0; // // FrameBrowser // this.FrameBrowser.Filter = "Toolkit Frame Data|*framedata"; // // MapEditor // this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(1420, 720); this.Controls.Add(this.dockPanel1); this.Controls.Add(this.RenderPanel); this.Controls.Add(StatusStrip); this.Controls.Add(this.ToolbarStrip); this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3); this.Name = "MapEditor"; this.Text = "Map Editor"; this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.OnFormClosing); StatusStrip.ResumeLayout(false); StatusStrip.PerformLayout(); this.ToolbarStrip.ResumeLayout(false); this.ToolbarStrip.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.StatusStrip statusStrip1; System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Hanoi)); this.StlHamleSayisi = new System.Windows.Forms.ToolStripStatusLabel(); this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem(); this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem(); this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel(); this.cB1 = new System.Windows.Forms.ComboBox(); this.bYeniOyun = new System.Windows.Forms.Button(); this.label1 = new System.Windows.Forms.Label(); this.p1 = new System.Windows.Forms.Panel(); this.p3 = new System.Windows.Forms.Panel(); this.p2 = new System.Windows.Forms.Panel(); this.toolStrip1 = new System.Windows.Forms.ToolStrip(); this.tsmYeniOyun = new System.Windows.Forms.ToolStripLabel(); this.tsmHizliCikis = new System.Windows.Forms.ToolStripLabel(); this.timer_sure = new System.Windows.Forms.Timer(this.components); this.groupBox1 = new System.Windows.Forms.GroupBox(); this.listBox1 = new System.Windows.Forms.ListBox(); this.timer_otoMod = new System.Windows.Forms.Timer(this.components); this.toolStripStatusLabel2 = new System.Windows.Forms.ToolStripStatusLabel(); statusStrip1 = new System.Windows.Forms.StatusStrip(); statusStrip1.SuspendLayout(); this.toolStrip1.SuspendLayout(); this.groupBox1.SuspendLayout(); this.SuspendLayout(); // // statusStrip1 // statusStrip1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(0))))); statusStrip1.Enabled = false; statusStrip1.Font = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(162))); statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.StlHamleSayisi, this.toolStripStatusLabel2 }); statusStrip1.Location = new System.Drawing.Point(0, 356); statusStrip1.Name = "statusStrip1"; statusStrip1.Size = new System.Drawing.Size(684, 22); statusStrip1.TabIndex = 3; statusStrip1.Text = "statusStrip1"; // // StlHamleSayisi // this.StlHamleSayisi.BackColor = System.Drawing.Color.Transparent; this.StlHamleSayisi.Font = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.StlHamleSayisi.ForeColor = System.Drawing.Color.Cornsilk; this.StlHamleSayisi.Margin = new System.Windows.Forms.Padding(10, 0, 325, 0); this.StlHamleSayisi.Name = "StlHamleSayisi"; this.StlHamleSayisi.Size = new System.Drawing.Size(96, 22); this.StlHamleSayisi.Text = "StlHamleSayisi"; this.StlHamleSayisi.TextImageRelation = System.Windows.Forms.TextImageRelation.TextAboveImage; // // toolStripMenuItem2 // this.toolStripMenuItem2.Name = "toolStripMenuItem2"; this.toolStripMenuItem2.Size = new System.Drawing.Size(32, 19); // // toolStripMenuItem1 // this.toolStripMenuItem1.Name = "toolStripMenuItem1"; this.toolStripMenuItem1.Size = new System.Drawing.Size(32, 19); // // toolStripStatusLabel1 // this.toolStripStatusLabel1.BackColor = System.Drawing.SystemColors.ButtonFace; this.toolStripStatusLabel1.ForeColor = System.Drawing.SystemColors.InfoText; this.toolStripStatusLabel1.Name = "toolStripStatusLabel1"; this.toolStripStatusLabel1.Size = new System.Drawing.Size(10, 17); this.toolStripStatusLabel1.Text = " "; // // cB1 // this.cB1.BackColor = System.Drawing.Color.DarkGray; this.cB1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cB1.ForeColor = System.Drawing.SystemColors.ActiveCaptionText; this.cB1.Items.AddRange(new object[] { "5" }); this.cB1.Location = new System.Drawing.Point(551, 35); this.cB1.Name = "cB1"; this.cB1.Size = new System.Drawing.Size(129, 31); this.cB1.TabIndex = 8; this.cB1.SelectedIndexChanged += new System.EventHandler(this.CB1_SelectedIndexChanged); // // bYeniOyun // this.bYeniOyun.BackColor = System.Drawing.SystemColors.ScrollBar; this.bYeniOyun.BackgroundImage = global::Csharp_Hanoi_Kuleleri_Oyunu.Properties.Resources.images; this.bYeniOyun.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; this.bYeniOyun.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.bYeniOyun.ForeColor = System.Drawing.Color.Cornsilk; this.bYeniOyun.Location = new System.Drawing.Point(12, 32); this.bYeniOyun.Name = "bYeniOyun"; this.bYeniOyun.Size = new System.Drawing.Size(124, 34); this.bYeniOyun.TabIndex = 9; this.bYeniOyun.Text = "Oyna"; this.bYeniOyun.UseVisualStyleBackColor = false; this.bYeniOyun.Click += new System.EventHandler(this.bYeniOyun_Click); // // label1 // this.label1.AutoSize = true; this.label1.BackColor = System.Drawing.Color.Transparent; this.label1.ForeColor = System.Drawing.Color.Cornsilk; this.label1.Location = new System.Drawing.Point(440, 38); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(105, 23); this.label1.TabIndex = 10; this.label1.Text = "Halka Sayısı:"; this.label1.Click += new System.EventHandler(this.Label1_Click); // // p1 // this.p1.AllowDrop = true; this.p1.BackColor = System.Drawing.Color.Transparent; this.p1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("p1.BackgroundImage"))); this.p1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center; this.p1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.p1.Location = new System.Drawing.Point(13, 81); this.p1.Name = "p1"; this.p1.Size = new System.Drawing.Size(185, 285); this.p1.TabIndex = 11; this.p1.DragDrop += new System.Windows.Forms.DragEventHandler(this.p_DragDrop); this.p1.DragOver += new System.Windows.Forms.DragEventHandler(this.p_DragOver); // // p3 // this.p3.AllowDrop = true; this.p3.BackColor = System.Drawing.Color.Transparent; this.p3.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("p3.BackgroundImage"))); this.p3.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center; this.p3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.p3.Location = new System.Drawing.Point(382, 81); this.p3.Name = "p3"; this.p3.Size = new System.Drawing.Size(185, 285); this.p3.TabIndex = 12; this.p3.DragDrop += new System.Windows.Forms.DragEventHandler(this.p_DragDrop); this.p3.DragOver += new System.Windows.Forms.DragEventHandler(this.p_DragOver); // // p2 // this.p2.AllowDrop = true; this.p2.BackColor = System.Drawing.Color.Transparent; this.p2.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("p2.BackgroundImage"))); this.p2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center; this.p2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.p2.Location = new System.Drawing.Point(197, 81); this.p2.Name = "p2"; this.p2.Size = new System.Drawing.Size(185, 285); this.p2.TabIndex = 12; this.p2.DragDrop += new System.Windows.Forms.DragEventHandler(this.p_DragDrop); this.p2.DragOver += new System.Windows.Forms.DragEventHandler(this.p_DragOver); // // toolStrip1 // this.toolStrip1.BackColor = System.Drawing.Color.Transparent; this.toolStrip1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.tsmYeniOyun, this.tsmHizliCikis }); this.toolStrip1.Location = new System.Drawing.Point(0, 0); this.toolStrip1.Name = "toolStrip1"; this.toolStrip1.Size = new System.Drawing.Size(684, 25); this.toolStrip1.TabIndex = 13; this.toolStrip1.Text = "toolStrip1"; // // tsmYeniOyun // this.tsmYeniOyun.ActiveLinkColor = System.Drawing.Color.SteelBlue; this.tsmYeniOyun.BackColor = System.Drawing.SystemColors.Window; this.tsmYeniOyun.ForeColor = System.Drawing.Color.Wheat; this.tsmYeniOyun.IsLink = true; this.tsmYeniOyun.LinkBehavior = System.Windows.Forms.LinkBehavior.NeverUnderline; this.tsmYeniOyun.LinkColor = System.Drawing.Color.Cornsilk; this.tsmYeniOyun.Name = "tsmYeniOyun"; this.tsmYeniOyun.Size = new System.Drawing.Size(61, 22); this.tsmYeniOyun.Text = "Yeni Oyun"; this.tsmYeniOyun.VisitedLinkColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(128))))); // // tsmHizliCikis // this.tsmHizliCikis.ActiveLinkColor = System.Drawing.Color.SteelBlue; this.tsmHizliCikis.BackColor = System.Drawing.SystemColors.Window; this.tsmHizliCikis.ForeColor = System.Drawing.Color.Wheat; this.tsmHizliCikis.IsLink = true; this.tsmHizliCikis.LinkBehavior = System.Windows.Forms.LinkBehavior.NeverUnderline; this.tsmHizliCikis.LinkColor = System.Drawing.Color.Cornsilk; this.tsmHizliCikis.Name = "tsmHizliCikis"; this.tsmHizliCikis.Size = new System.Drawing.Size(58, 22); this.tsmHizliCikis.Text = "Hızlı Çıkış"; this.tsmHizliCikis.VisitedLinkColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(128))))); // // timer_sure // this.timer_sure.Interval = 1000; // // groupBox1 // this.groupBox1.BackColor = System.Drawing.Color.Transparent; this.groupBox1.Controls.Add(this.listBox1); this.groupBox1.Font = new System.Drawing.Font("Calibri", 10.25F); this.groupBox1.ForeColor = System.Drawing.Color.Cornsilk; this.groupBox1.Location = new System.Drawing.Point(572, 72); this.groupBox1.Name = "groupBox1"; this.groupBox1.Size = new System.Drawing.Size(108, 281); this.groupBox1.TabIndex = 15; this.groupBox1.TabStop = false; this.groupBox1.Text = "Hamleleriniz"; // // listBox1 // this.listBox1.BackColor = System.Drawing.Color.Azure; this.listBox1.BorderStyle = System.Windows.Forms.BorderStyle.None; this.listBox1.Dock = System.Windows.Forms.DockStyle.Fill; this.listBox1.Font = new System.Drawing.Font("Times New Roman", 12.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(162))); this.listBox1.FormattingEnabled = true; this.listBox1.ItemHeight = 19; this.listBox1.Location = new System.Drawing.Point(3, 20); this.listBox1.Name = "listBox1"; this.listBox1.Size = new System.Drawing.Size(102, 258); this.listBox1.TabIndex = 0; // // timer_otoMod // this.timer_otoMod.Interval = 500; // // toolStripStatusLabel2 // this.toolStripStatusLabel2.Name = "toolStripStatusLabel2"; this.toolStripStatusLabel2.Size = new System.Drawing.Size(149, 17); this.toolStripStatusLabel2.Text = "toolStripStatusLabel2"; this.toolStripStatusLabel2.Click += new System.EventHandler(this.toolStripStatusLabel2_Click); // // Hanoi // this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 23F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.BackColor = System.Drawing.SystemColors.GradientInactiveCaption; this.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("$this.BackgroundImage"))); this.ClientSize = new System.Drawing.Size(684, 378); this.Controls.Add(this.groupBox1); this.Controls.Add(this.toolStrip1); this.Controls.Add(this.label1); this.Controls.Add(this.bYeniOyun); this.Controls.Add(this.cB1); this.Controls.Add(statusStrip1); this.Controls.Add(this.p3); this.Controls.Add(this.p2); this.Controls.Add(this.p1); this.Font = new System.Drawing.Font("Calibri", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(162))); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.KeyPreview = true; this.Margin = new System.Windows.Forms.Padding(5); this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "Hanoi"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Text = "Hanoi Kulesi"; this.Load += new System.EventHandler(this.Form_Uygulama_Load); statusStrip1.ResumeLayout(false); statusStrip1.PerformLayout(); this.toolStrip1.ResumeLayout(false); this.toolStrip1.PerformLayout(); this.groupBox1.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.StatusStrip statusStrip1; this.tssTime = new System.Windows.Forms.ToolStripStatusLabel(); this.tssMessage = new System.Windows.Forms.ToolStripStatusLabel(); this.timer = new System.Windows.Forms.Timer(this.components); this.tbLog = new System.Windows.Forms.TextBox(); statusStrip1 = new System.Windows.Forms.StatusStrip(); statusStrip1.SuspendLayout(); this.SuspendLayout(); // // statusStrip1 // statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.tssTime, this.tssMessage }); statusStrip1.Location = new System.Drawing.Point(0, 137); statusStrip1.Name = "statusStrip1"; statusStrip1.Size = new System.Drawing.Size(600, 22); statusStrip1.TabIndex = 0; statusStrip1.Text = "statusStrip1"; // // tssTime // this.tssTime.AutoSize = false; this.tssTime.Name = "tssTime"; this.tssTime.Size = new System.Drawing.Size(100, 17); this.tssTime.Text = "TIME"; // // tssMessage // this.tssMessage.Name = "tssMessage"; this.tssMessage.Size = new System.Drawing.Size(485, 17); this.tssMessage.Spring = true; this.tssMessage.Text = "TRACK MESSAGE"; this.tssMessage.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // timer // this.timer.Interval = 150; this.timer.Tick += new System.EventHandler(this.timer_Tick); // // tbLog // this.tbLog.BackColor = System.Drawing.Color.Black; this.tbLog.Dock = System.Windows.Forms.DockStyle.Fill; this.tbLog.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204))); this.tbLog.ForeColor = System.Drawing.Color.Lime; this.tbLog.Location = new System.Drawing.Point(0, 0); this.tbLog.MaxLength = 1024000000; this.tbLog.Multiline = true; this.tbLog.Name = "tbLog"; this.tbLog.ReadOnly = true; this.tbLog.ScrollBars = System.Windows.Forms.ScrollBars.Vertical; this.tbLog.Size = new System.Drawing.Size(600, 137); this.tbLog.TabIndex = 1; this.tbLog.WordWrap = false; // // RunTargetTracker // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(600, 159); this.ControlBox = false; this.Controls.Add(this.tbLog); this.Controls.Add(statusStrip1); this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "RunTargetTracker"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; this.Text = "RunTargetTracker"; statusStrip1.ResumeLayout(false); statusStrip1.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.ToolStrip m_toolStripData; System.Windows.Forms.ToolStripSeparator toolStripSeparator1; System.Windows.Forms.ToolStripButton m_tsbDataUpdateOptions; System.Windows.Forms.ToolStripButton m_tsbDataUpdateHelp; System.Windows.Forms.ColumnHeader m_colDataGeneration; System.Windows.Forms.ColumnHeader m_colCreationTime; System.Windows.Forms.ColumnHeader m_colDeployTime; System.Windows.Forms.ColumnHeader m_colIncID; System.Windows.Forms.StatusStrip m_statusStrip; System.Windows.Forms.TabControl m_tabControl; System.Windows.Forms.TabPage m_datapPage; System.Windows.Forms.TabPage m_hubPage; System.Windows.Forms.ColumnHeader m_colID; System.Windows.Forms.ColumnHeader m_colVer; System.Windows.Forms.ColumnHeader m_colSystem; System.Windows.Forms.ColumnHeader m_colCreationDate; System.Windows.Forms.ColumnHeader m_colPublishDate; System.Windows.Forms.ToolStrip m_toolStripHub; System.Windows.Forms.ToolStripButton m_tsbAddApp; System.Windows.Forms.ToolStripSeparator toolStripSeparator2; System.Windows.Forms.ToolStripButton m_tsbAppUpdateOption; System.Windows.Forms.ToolStripButton m_tsbAppUpdateHelp; System.Windows.Forms.ImageList m_ilSmall; System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(UpdatesWindow)); this.m_tsbBuildUpdate = new System.Windows.Forms.ToolStripButton(); this.m_tsbUploadDataUpdates = new System.Windows.Forms.ToolStripButton(); this.m_sslUpdateKey = new System.Windows.Forms.ToolStripStatusLabel(); this.m_lvDataUpdates = new System.Windows.Forms.ListView(); this.m_lvAppUpdates = new System.Windows.Forms.ListView(); this.m_tsbUploadAppUpdates = new System.Windows.Forms.ToolStripButton(); m_toolStripData = new System.Windows.Forms.ToolStrip(); toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator(); m_tsbDataUpdateOptions = new System.Windows.Forms.ToolStripButton(); m_tsbDataUpdateHelp = new System.Windows.Forms.ToolStripButton(); m_colDataGeneration = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); m_colCreationTime = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); m_colDeployTime = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); m_colIncID = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); m_statusStrip = new System.Windows.Forms.StatusStrip(); m_tabControl = new System.Windows.Forms.TabControl(); m_datapPage = new System.Windows.Forms.TabPage(); m_hubPage = new System.Windows.Forms.TabPage(); m_colID = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); m_colVer = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); m_colSystem = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); m_colCreationDate = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); m_colPublishDate = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); m_toolStripHub = new System.Windows.Forms.ToolStrip(); m_tsbAddApp = new System.Windows.Forms.ToolStripButton(); toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator(); m_tsbAppUpdateOption = new System.Windows.Forms.ToolStripButton(); m_tsbAppUpdateHelp = new System.Windows.Forms.ToolStripButton(); m_ilSmall = new System.Windows.Forms.ImageList(this.components); m_toolStripData.SuspendLayout(); m_statusStrip.SuspendLayout(); m_tabControl.SuspendLayout(); m_datapPage.SuspendLayout(); m_hubPage.SuspendLayout(); m_toolStripHub.SuspendLayout(); this.SuspendLayout(); // // m_toolStripData // m_toolStripData.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.m_tsbBuildUpdate, this.m_tsbUploadDataUpdates, toolStripSeparator1, m_tsbDataUpdateOptions, m_tsbDataUpdateHelp }); m_toolStripData.Location = new System.Drawing.Point(3, 3); m_toolStripData.Name = "m_toolStripData"; m_toolStripData.Size = new System.Drawing.Size(659, 25); m_toolStripData.TabIndex = 0; // // m_tsbBuildUpdate // this.m_tsbBuildUpdate.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.m_tsbBuildUpdate.Enabled = false; this.m_tsbBuildUpdate.Image = global::DGD.HubGovernor.Properties.Resources.build_update_16; this.m_tsbBuildUpdate.ImageTransparentColor = System.Drawing.Color.Magenta; this.m_tsbBuildUpdate.Name = "m_tsbBuildUpdate"; this.m_tsbBuildUpdate.Size = new System.Drawing.Size(23, 22); this.m_tsbBuildUpdate.Text = "Construire la MAJ"; this.m_tsbBuildUpdate.Click += new System.EventHandler(this.BuildDataUpdate_Click); // // m_tsbUploadDataUpdates // this.m_tsbUploadDataUpdates.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.m_tsbUploadDataUpdates.Enabled = false; this.m_tsbUploadDataUpdates.Image = global::DGD.HubGovernor.Properties.Resources.upload_16; this.m_tsbUploadDataUpdates.ImageTransparentColor = System.Drawing.Color.Magenta; this.m_tsbUploadDataUpdates.Name = "m_tsbUploadDataUpdates"; this.m_tsbUploadDataUpdates.Size = new System.Drawing.Size(23, 22); this.m_tsbUploadDataUpdates.Text = "Publier la MAJ"; this.m_tsbUploadDataUpdates.Click += new System.EventHandler(this.UploadDataUpdates_Click); // // toolStripSeparator1 // toolStripSeparator1.Name = "toolStripSeparator1"; toolStripSeparator1.Size = new System.Drawing.Size(6, 25); // // m_tsbDataUpdateOptions // m_tsbDataUpdateOptions.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; m_tsbDataUpdateOptions.Image = global::DGD.HubGovernor.Properties.Resources.option_16; m_tsbDataUpdateOptions.ImageTransparentColor = System.Drawing.Color.Magenta; m_tsbDataUpdateOptions.Name = "m_tsbDataUpdateOptions"; m_tsbDataUpdateOptions.Size = new System.Drawing.Size(23, 22); m_tsbDataUpdateOptions.Text = "Options"; // // m_tsbDataUpdateHelp // m_tsbDataUpdateHelp.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right; m_tsbDataUpdateHelp.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; m_tsbDataUpdateHelp.Image = global::DGD.HubGovernor.Properties.Resources.help_16; m_tsbDataUpdateHelp.ImageTransparentColor = System.Drawing.Color.Magenta; m_tsbDataUpdateHelp.Name = "m_tsbDataUpdateHelp"; m_tsbDataUpdateHelp.Size = new System.Drawing.Size(23, 22); m_tsbDataUpdateHelp.Text = "Aide"; // // m_colDataGeneration // m_colDataGeneration.Text = "Version des données requise"; m_colDataGeneration.Width = 167; // // m_colCreationTime // m_colCreationTime.Text = "Créer le"; m_colCreationTime.Width = 156; // // m_colDeployTime // m_colDeployTime.Text = "Publier le"; m_colDeployTime.Width = 228; // // m_colIncID // m_colIncID.Text = "ID"; // // m_statusStrip // m_statusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.m_sslUpdateKey }); m_statusStrip.Location = new System.Drawing.Point(0, 287); m_statusStrip.Name = "m_statusStrip"; m_statusStrip.Size = new System.Drawing.Size(673, 22); m_statusStrip.TabIndex = 2; // // m_sslUpdateKey // this.m_sslUpdateKey.Name = "m_sslUpdateKey"; this.m_sslUpdateKey.Size = new System.Drawing.Size(0, 17); // // m_tabControl // m_tabControl.Appearance = System.Windows.Forms.TabAppearance.FlatButtons; m_tabControl.Controls.Add(m_datapPage); m_tabControl.Controls.Add(m_hubPage); m_tabControl.Dock = System.Windows.Forms.DockStyle.Fill; m_tabControl.ImageList = m_ilSmall; m_tabControl.Location = new System.Drawing.Point(0, 0); m_tabControl.Name = "m_tabControl"; m_tabControl.SelectedIndex = 0; m_tabControl.Size = new System.Drawing.Size(673, 287); m_tabControl.TabIndex = 0; // // m_datapPage // m_datapPage.Controls.Add(this.m_lvDataUpdates); m_datapPage.Controls.Add(m_toolStripData); m_datapPage.ImageIndex = 1; m_datapPage.Location = new System.Drawing.Point(4, 26); m_datapPage.Name = "m_datapPage"; m_datapPage.Padding = new System.Windows.Forms.Padding(3); m_datapPage.Size = new System.Drawing.Size(665, 257); m_datapPage.TabIndex = 0; m_datapPage.Text = "Données"; m_datapPage.UseVisualStyleBackColor = true; // // m_lvDataUpdates // this.m_lvDataUpdates.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { m_colIncID, m_colDataGeneration, m_colCreationTime, m_colDeployTime }); this.m_lvDataUpdates.Dock = System.Windows.Forms.DockStyle.Fill; this.m_lvDataUpdates.FullRowSelect = true; this.m_lvDataUpdates.HideSelection = false; this.m_lvDataUpdates.Location = new System.Drawing.Point(3, 28); this.m_lvDataUpdates.MultiSelect = false; this.m_lvDataUpdates.Name = "m_lvDataUpdates"; this.m_lvDataUpdates.Size = new System.Drawing.Size(659, 226); this.m_lvDataUpdates.TabIndex = 1; this.m_lvDataUpdates.UseCompatibleStateImageBehavior = false; this.m_lvDataUpdates.View = System.Windows.Forms.View.Details; this.m_lvDataUpdates.ItemActivate += new System.EventHandler(this.Updates_DataItemActivate); // // m_hubPage // m_hubPage.Controls.Add(this.m_lvAppUpdates); m_hubPage.Controls.Add(m_toolStripHub); m_hubPage.ImageIndex = 0; m_hubPage.Location = new System.Drawing.Point(4, 26); m_hubPage.Name = "m_hubPage"; m_hubPage.Padding = new System.Windows.Forms.Padding(3); m_hubPage.Size = new System.Drawing.Size(665, 257); m_hubPage.TabIndex = 1; m_hubPage.Text = "Hub"; m_hubPage.UseVisualStyleBackColor = true; // // m_lvAppUpdates // this.m_lvAppUpdates.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { m_colID, m_colVer, m_colSystem, m_colCreationDate, m_colPublishDate }); this.m_lvAppUpdates.Dock = System.Windows.Forms.DockStyle.Fill; this.m_lvAppUpdates.FullRowSelect = true; this.m_lvAppUpdates.HideSelection = false; this.m_lvAppUpdates.Location = new System.Drawing.Point(3, 28); this.m_lvAppUpdates.Name = "m_lvAppUpdates"; this.m_lvAppUpdates.Size = new System.Drawing.Size(659, 226); this.m_lvAppUpdates.TabIndex = 1; this.m_lvAppUpdates.UseCompatibleStateImageBehavior = false; this.m_lvAppUpdates.View = System.Windows.Forms.View.Details; this.m_lvAppUpdates.ItemActivate += new System.EventHandler(this.AppUpdates_ItemActivate); // // m_colID // m_colID.Text = "ID"; // // m_colVer // m_colVer.Text = "Version"; m_colVer.Width = 91; // // m_colSystem // m_colSystem.Text = "Système requis"; m_colSystem.Width = 152; // // m_colCreationDate // m_colCreationDate.Text = "Crée le"; m_colCreationDate.Width = 159; // // m_colPublishDate // m_colPublishDate.Text = "Publié le"; m_colPublishDate.Width = 188; // // m_toolStripHub // m_toolStripHub.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { m_tsbAddApp, this.m_tsbUploadAppUpdates, toolStripSeparator2, m_tsbAppUpdateOption, m_tsbAppUpdateHelp }); m_toolStripHub.Location = new System.Drawing.Point(3, 3); m_toolStripHub.Name = "m_toolStripHub"; m_toolStripHub.Size = new System.Drawing.Size(659, 25); m_toolStripHub.TabIndex = 0; // // m_tsbAddApp // m_tsbAddApp.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; m_tsbAddApp.Image = global::DGD.HubGovernor.Properties.Resources.add_app_16; m_tsbAddApp.ImageTransparentColor = System.Drawing.Color.Magenta; m_tsbAddApp.Name = "m_tsbAddApp"; m_tsbAddApp.Size = new System.Drawing.Size(23, 22); m_tsbAddApp.Text = "Ajouter une mise à jour..."; m_tsbAddApp.Click += new System.EventHandler(this.AddPackage_Click); // // m_tsbUploadAppUpdates // this.m_tsbUploadAppUpdates.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.m_tsbUploadAppUpdates.Image = global::DGD.HubGovernor.Properties.Resources.upload_16; this.m_tsbUploadAppUpdates.ImageTransparentColor = System.Drawing.Color.Magenta; this.m_tsbUploadAppUpdates.Name = "m_tsbUploadAppUpdates"; this.m_tsbUploadAppUpdates.Size = new System.Drawing.Size(23, 22); this.m_tsbUploadAppUpdates.Text = "Publier"; this.m_tsbUploadAppUpdates.Click += new System.EventHandler(this.UploadAppUpdates_Click); // // toolStripSeparator2 // toolStripSeparator2.Name = "toolStripSeparator2"; toolStripSeparator2.Size = new System.Drawing.Size(6, 25); // // m_tsbAppUpdateOption // m_tsbAppUpdateOption.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; m_tsbAppUpdateOption.Image = global::DGD.HubGovernor.Properties.Resources.option_16; m_tsbAppUpdateOption.ImageTransparentColor = System.Drawing.Color.Magenta; m_tsbAppUpdateOption.Name = "m_tsbAppUpdateOption"; m_tsbAppUpdateOption.Size = new System.Drawing.Size(23, 22); m_tsbAppUpdateOption.Text = "Paramètres"; // // m_tsbAppUpdateHelp // m_tsbAppUpdateHelp.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right; m_tsbAppUpdateHelp.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; m_tsbAppUpdateHelp.Image = global::DGD.HubGovernor.Properties.Resources.help_16; m_tsbAppUpdateHelp.ImageTransparentColor = System.Drawing.Color.Magenta; m_tsbAppUpdateHelp.Name = "m_tsbAppUpdateHelp"; m_tsbAppUpdateHelp.Size = new System.Drawing.Size(23, 22); m_tsbAppUpdateHelp.Text = "Aide"; // // m_ilSmall // m_ilSmall.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("m_ilSmall.ImageStream"))); m_ilSmall.TransparentColor = System.Drawing.Color.Transparent; m_ilSmall.Images.SetKeyName(0, "hub_app_16.png"); m_ilSmall.Images.SetKeyName(1, "database_16.png"); // // UpdatesWindow // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.BackColor = System.Drawing.SystemColors.Window; this.ClientSize = new System.Drawing.Size(673, 309); this.Controls.Add(m_tabControl); this.Controls.Add(m_statusStrip); this.ForeColor = System.Drawing.SystemColors.WindowText; this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.MaximizeBox = false; this.Name = "UpdatesWindow"; this.Text = "Gestionnaire des MAJ"; m_toolStripData.ResumeLayout(false); m_toolStripData.PerformLayout(); m_statusStrip.ResumeLayout(false); m_statusStrip.PerformLayout(); m_tabControl.ResumeLayout(false); m_datapPage.ResumeLayout(false); m_datapPage.PerformLayout(); m_hubPage.ResumeLayout(false); m_hubPage.PerformLayout(); m_toolStripHub.ResumeLayout(false); m_toolStripHub.PerformLayout(); this.ResumeLayout(false); this.PerformLayout(); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.components = new System.ComponentModel.Container(); System.Windows.Forms.ToolStripSeparator toolStripSeparator; System.Windows.Forms.ToolStripSeparator toolStripSeparator1; System.Windows.Forms.ToolStripSeparator toolStripSeparator4; System.Windows.Forms.ToolStripSeparator toolStripMenuItem1; System.Windows.Forms.ToolStripMenuItem toolStripMenuItem3; System.Windows.Forms.ToolStripMenuItem toolStripMenuItem4; System.Windows.Forms.ToolStripMenuItem toolStripMenuItem5; System.Windows.Forms.ToolStripMenuItem toolStripMenuItem6; System.Windows.Forms.ToolStripMenuItem toolStripMenuItem7; System.Windows.Forms.ToolStripMenuItem toolStripMenuItem8; System.Windows.Forms.ToolStripMenuItem toolStripMenuItem9; System.Windows.Forms.ToolStripMenuItem toolStripMenuItem10; System.Windows.Forms.ToolStripMenuItem toolStripMenuItem11; System.Windows.Forms.ToolStripMenuItem toolStripMenuItem12; System.Windows.Forms.ToolStripMenuItem toolStripMenuItem13; System.Windows.Forms.ToolStripMenuItem toolStripMenuItem14; System.Windows.Forms.ToolStripMenuItem toolStripMenuItem15; System.Windows.Forms.ToolStripMenuItem toolStripMenuItem16; System.Windows.Forms.ToolStripSeparator toolStripSeparator3; System.Windows.Forms.ToolStripMenuItem resetToolStripMenuItem; System.Windows.Forms.ToolStripMenuItem optionsMenuItem; System.Windows.Forms.ToolStripMenuItem aboutMenuItem; System.Windows.Forms.StatusStrip statusStrip; System.Windows.Forms.ToolStripButton openToolStripButton; System.Windows.Forms.ToolStripButton saveToolStripButton; System.Windows.Forms.ToolStripSeparator toolStripSeparator6; System.Windows.Forms.ToolStripSeparator toolStripSeparator7; System.Windows.Forms.ToolStripButton helpToolStripButton; System.Windows.Forms.ToolStripComboBox toolStripComboBox1; System.Windows.Forms.ToolStripTextBox toolStripTextBox1; System.Windows.Forms.ToolStripSeparator toolStripSeparator2; System.Windows.Forms.ToolStripMenuItem toolStripMenuItem2; System.Windows.Forms.ToolStripMenuItem clearMenuItem; System.Windows.Forms.ToolStripMenuItem resetMenuItem; System.Windows.Forms.ToolStripLabel searchLabel; System.Windows.Forms.ToolStripMenuItem findMenuItem; System.Windows.Forms.ToolStripSeparator toolStripSeparator8; System.Windows.Forms.ToolStripSeparator toolStripSeparator9; System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm)); this.statusLabel = new System.Windows.Forms.ToolStripStatusLabel(); this.clearMainMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.previewToolStrip = new System.Windows.Forms.ToolStrip(); this.toolStripSplitButton = new System.Windows.Forms.ToolStripSplitButton(); this.toolStripCheckPreviewButton = new System.Windows.Forms.ToolStripButton(); this.searchToolStrip = new System.Windows.Forms.ToolStrip(); this.searchTextBox = new ToolStripCustomizer.ToolStripSpringTextBox(); this.cancelButton = new System.Windows.Forms.ToolStripButton(); this.mainToolStrip = new System.Windows.Forms.ToolStrip(); this.newToolStripButton = new System.Windows.Forms.ToolStripSplitButton(); this.copyToolStripButton = new System.Windows.Forms.ToolStripButton(); this.pasteToolStripButton = new System.Windows.Forms.ToolStripButton(); this.colorToolStripButton = new System.Windows.Forms.ToolStripButton(); this.menuStrip = new System.Windows.Forms.MenuStrip(); this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.newMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.newFromPresetMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.openMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.saveMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.exitMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.editToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.copyMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.pasteMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator(); this.selectAllMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.viewToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.roundedEdgesMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.toolsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.colorAdjustmentToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.toolStripSeparator10 = new System.Windows.Forms.ToolStripSeparator(); this.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.toolStripContainer = new System.Windows.Forms.ToolStripContainer(); this.gridView = new System.Windows.Forms.DataGridView(); this.ColorTableItemColumn = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.ColorValueColumn = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.ColorPreviewColumn = new System.Windows.Forms.DataGridViewImageColumn(); this.EditColorColumn = new System.Windows.Forms.DataGridViewButtonColumn(); this.rowContextMenu = new System.Windows.Forms.ContextMenuStrip(this.components); this.copyPopupItem = new System.Windows.Forms.ToolStripMenuItem(); this.pastePopupItem = new System.Windows.Forms.ToolStripMenuItem(); this.selectAllPopupItem = new System.Windows.Forms.ToolStripMenuItem(); this.fromKnownColorMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.alphaMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.screenColorMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.colorDialog = new System.Windows.Forms.ColorDialog(); this.openFileDialog = new System.Windows.Forms.OpenFileDialog(); this.saveFileDialog = new System.Windows.Forms.SaveFileDialog(); this.searchWorker = new System.ComponentModel.BackgroundWorker(); this.miExportColors = new System.Windows.Forms.ToolStripMenuItem(); toolStripSeparator = new System.Windows.Forms.ToolStripSeparator(); toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator(); toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator(); toolStripMenuItem1 = new System.Windows.Forms.ToolStripSeparator(); toolStripMenuItem3 = new System.Windows.Forms.ToolStripMenuItem(); toolStripMenuItem4 = new System.Windows.Forms.ToolStripMenuItem(); toolStripMenuItem5 = new System.Windows.Forms.ToolStripMenuItem(); toolStripMenuItem6 = new System.Windows.Forms.ToolStripMenuItem(); toolStripMenuItem7 = new System.Windows.Forms.ToolStripMenuItem(); toolStripMenuItem8 = new System.Windows.Forms.ToolStripMenuItem(); toolStripMenuItem9 = new System.Windows.Forms.ToolStripMenuItem(); toolStripMenuItem10 = new System.Windows.Forms.ToolStripMenuItem(); toolStripMenuItem11 = new System.Windows.Forms.ToolStripMenuItem(); toolStripMenuItem12 = new System.Windows.Forms.ToolStripMenuItem(); toolStripMenuItem13 = new System.Windows.Forms.ToolStripMenuItem(); toolStripMenuItem14 = new System.Windows.Forms.ToolStripMenuItem(); toolStripMenuItem15 = new System.Windows.Forms.ToolStripMenuItem(); toolStripMenuItem16 = new System.Windows.Forms.ToolStripMenuItem(); toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator(); resetToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); optionsMenuItem = new System.Windows.Forms.ToolStripMenuItem(); aboutMenuItem = new System.Windows.Forms.ToolStripMenuItem(); statusStrip = new System.Windows.Forms.StatusStrip(); openToolStripButton = new System.Windows.Forms.ToolStripButton(); saveToolStripButton = new System.Windows.Forms.ToolStripButton(); toolStripSeparator6 = new System.Windows.Forms.ToolStripSeparator(); toolStripSeparator7 = new System.Windows.Forms.ToolStripSeparator(); helpToolStripButton = new System.Windows.Forms.ToolStripButton(); toolStripComboBox1 = new System.Windows.Forms.ToolStripComboBox(); toolStripTextBox1 = new System.Windows.Forms.ToolStripTextBox(); toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator(); toolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem(); clearMenuItem = new System.Windows.Forms.ToolStripMenuItem(); resetMenuItem = new System.Windows.Forms.ToolStripMenuItem(); searchLabel = new System.Windows.Forms.ToolStripLabel(); findMenuItem = new System.Windows.Forms.ToolStripMenuItem(); toolStripSeparator8 = new System.Windows.Forms.ToolStripSeparator(); toolStripSeparator9 = new System.Windows.Forms.ToolStripSeparator(); statusStrip.SuspendLayout(); this.previewToolStrip.SuspendLayout(); this.searchToolStrip.SuspendLayout(); this.mainToolStrip.SuspendLayout(); this.menuStrip.SuspendLayout(); this.toolStripContainer.BottomToolStripPanel.SuspendLayout(); this.toolStripContainer.ContentPanel.SuspendLayout(); this.toolStripContainer.TopToolStripPanel.SuspendLayout(); this.toolStripContainer.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.gridView)).BeginInit(); this.rowContextMenu.SuspendLayout(); this.SuspendLayout(); // // toolStripSeparator // toolStripSeparator.Name = "toolStripSeparator"; toolStripSeparator.Size = new System.Drawing.Size(161, 6); // // toolStripSeparator1 // toolStripSeparator1.Name = "toolStripSeparator1"; toolStripSeparator1.Size = new System.Drawing.Size(161, 6); // // toolStripSeparator4 // toolStripSeparator4.Name = "toolStripSeparator4"; toolStripSeparator4.Size = new System.Drawing.Size(161, 6); // // toolStripMenuItem1 // toolStripMenuItem1.Name = "toolStripMenuItem1"; toolStripMenuItem1.Size = new System.Drawing.Size(161, 6); // // toolStripMenuItem3 // toolStripMenuItem3.Name = "toolStripMenuItem3"; toolStripMenuItem3.Size = new System.Drawing.Size(92, 22); toolStripMenuItem3.Text = "0"; toolStripMenuItem3.Click += new System.EventHandler(this.SetAlphaMenuItemClick); // // toolStripMenuItem4 // toolStripMenuItem4.Name = "toolStripMenuItem4"; toolStripMenuItem4.Size = new System.Drawing.Size(92, 22); toolStripMenuItem4.Text = "20"; toolStripMenuItem4.Click += new System.EventHandler(this.SetAlphaMenuItemClick); // // toolStripMenuItem5 // toolStripMenuItem5.Name = "toolStripMenuItem5"; toolStripMenuItem5.Size = new System.Drawing.Size(92, 22); toolStripMenuItem5.Text = "40"; toolStripMenuItem5.Click += new System.EventHandler(this.SetAlphaMenuItemClick); // // toolStripMenuItem6 // toolStripMenuItem6.Name = "toolStripMenuItem6"; toolStripMenuItem6.Size = new System.Drawing.Size(92, 22); toolStripMenuItem6.Text = "60"; toolStripMenuItem6.Click += new System.EventHandler(this.SetAlphaMenuItemClick); // // toolStripMenuItem7 // toolStripMenuItem7.Name = "toolStripMenuItem7"; toolStripMenuItem7.Size = new System.Drawing.Size(92, 22); toolStripMenuItem7.Text = "80"; toolStripMenuItem7.Click += new System.EventHandler(this.SetAlphaMenuItemClick); // // toolStripMenuItem8 // toolStripMenuItem8.Name = "toolStripMenuItem8"; toolStripMenuItem8.Size = new System.Drawing.Size(92, 22); toolStripMenuItem8.Text = "100"; toolStripMenuItem8.Click += new System.EventHandler(this.SetAlphaMenuItemClick); // // toolStripMenuItem9 // toolStripMenuItem9.Name = "toolStripMenuItem9"; toolStripMenuItem9.Size = new System.Drawing.Size(92, 22); toolStripMenuItem9.Text = "120"; toolStripMenuItem9.Click += new System.EventHandler(this.SetAlphaMenuItemClick); // // toolStripMenuItem10 // toolStripMenuItem10.Name = "toolStripMenuItem10"; toolStripMenuItem10.Size = new System.Drawing.Size(92, 22); toolStripMenuItem10.Text = "140"; toolStripMenuItem10.Click += new System.EventHandler(this.SetAlphaMenuItemClick); // // toolStripMenuItem11 // toolStripMenuItem11.Name = "toolStripMenuItem11"; toolStripMenuItem11.Size = new System.Drawing.Size(92, 22); toolStripMenuItem11.Text = "160"; toolStripMenuItem11.Click += new System.EventHandler(this.SetAlphaMenuItemClick); // // toolStripMenuItem12 // toolStripMenuItem12.Name = "toolStripMenuItem12"; toolStripMenuItem12.Size = new System.Drawing.Size(92, 22); toolStripMenuItem12.Text = "180"; toolStripMenuItem12.Click += new System.EventHandler(this.SetAlphaMenuItemClick); // // toolStripMenuItem13 // toolStripMenuItem13.Name = "toolStripMenuItem13"; toolStripMenuItem13.Size = new System.Drawing.Size(92, 22); toolStripMenuItem13.Text = "200"; toolStripMenuItem13.Click += new System.EventHandler(this.SetAlphaMenuItemClick); // // toolStripMenuItem14 // toolStripMenuItem14.Name = "toolStripMenuItem14"; toolStripMenuItem14.Size = new System.Drawing.Size(92, 22); toolStripMenuItem14.Text = "220"; toolStripMenuItem14.Click += new System.EventHandler(this.SetAlphaMenuItemClick); // // toolStripMenuItem15 // toolStripMenuItem15.Name = "toolStripMenuItem15"; toolStripMenuItem15.Size = new System.Drawing.Size(92, 22); toolStripMenuItem15.Text = "240"; toolStripMenuItem15.Click += new System.EventHandler(this.SetAlphaMenuItemClick); // // toolStripMenuItem16 // toolStripMenuItem16.Name = "toolStripMenuItem16"; toolStripMenuItem16.Size = new System.Drawing.Size(92, 22); toolStripMenuItem16.Text = "255"; toolStripMenuItem16.Click += new System.EventHandler(this.SetAlphaMenuItemClick); // // toolStripSeparator3 // toolStripSeparator3.Name = "toolStripSeparator3"; toolStripSeparator3.Size = new System.Drawing.Size(161, 6); // // resetToolStripMenuItem // resetToolStripMenuItem.Name = "resetToolStripMenuItem"; resetToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.R))); resetToolStripMenuItem.Size = new System.Drawing.Size(164, 22); resetToolStripMenuItem.Text = "&Reset"; resetToolStripMenuItem.Click += new System.EventHandler(this.ResetMenuItemClick); // // optionsMenuItem // optionsMenuItem.Name = "optionsMenuItem"; optionsMenuItem.Size = new System.Drawing.Size(177, 22); optionsMenuItem.Text = "&Options..."; optionsMenuItem.Click += new System.EventHandler(this.OptionsMenuItemClick); // // aboutMenuItem // aboutMenuItem.Name = "aboutMenuItem"; aboutMenuItem.Size = new System.Drawing.Size(116, 22); aboutMenuItem.Text = "&About..."; aboutMenuItem.Click += new System.EventHandler(this.AboutMenuItemClick); // // statusStrip // statusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.statusLabel}); statusStrip.Location = new System.Drawing.Point(0, 490); statusStrip.Name = "statusStrip"; statusStrip.RenderMode = System.Windows.Forms.ToolStripRenderMode.ManagerRenderMode; statusStrip.Size = new System.Drawing.Size(597, 22); statusStrip.TabIndex = 1; // // statusLabel // this.statusLabel.Name = "statusLabel"; this.statusLabel.Size = new System.Drawing.Size(0, 17); // // openToolStripButton // openToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; openToolStripButton.Image = global::ToolStripCustomizer.Properties.Resources._58; openToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta; openToolStripButton.Name = "openToolStripButton"; openToolStripButton.Size = new System.Drawing.Size(23, 22); openToolStripButton.Text = "Open"; openToolStripButton.Click += new System.EventHandler(this.OpenMenuItemClick); // // saveToolStripButton // saveToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; saveToolStripButton.Image = global::ToolStripCustomizer.Properties.Resources._71; saveToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta; saveToolStripButton.Name = "saveToolStripButton"; saveToolStripButton.Size = new System.Drawing.Size(23, 22); saveToolStripButton.Text = "Save As"; saveToolStripButton.Click += new System.EventHandler(this.SaveMenuItemClick); // // toolStripSeparator6 // toolStripSeparator6.Name = "toolStripSeparator6"; toolStripSeparator6.Size = new System.Drawing.Size(6, 25); // // toolStripSeparator7 // toolStripSeparator7.Name = "toolStripSeparator7"; toolStripSeparator7.Size = new System.Drawing.Size(6, 25); // // helpToolStripButton // helpToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; helpToolStripButton.Image = global::ToolStripCustomizer.Properties.Resources._151; helpToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta; helpToolStripButton.Name = "helpToolStripButton"; helpToolStripButton.Size = new System.Drawing.Size(23, 22); helpToolStripButton.Text = "About"; helpToolStripButton.Click += new System.EventHandler(this.AboutMenuItemClick); // // toolStripComboBox1 // toolStripComboBox1.Name = "toolStripComboBox1"; toolStripComboBox1.Size = new System.Drawing.Size(121, 23); toolStripComboBox1.Text = "Combo Box"; // // toolStripTextBox1 // toolStripTextBox1.Name = "toolStripTextBox1"; toolStripTextBox1.Size = new System.Drawing.Size(100, 23); toolStripTextBox1.Text = "Text Box"; // // toolStripSeparator2 // toolStripSeparator2.Name = "toolStripSeparator2"; toolStripSeparator2.Size = new System.Drawing.Size(178, 6); // // toolStripMenuItem2 // toolStripMenuItem2.Checked = true; toolStripMenuItem2.CheckState = System.Windows.Forms.CheckState.Checked; toolStripMenuItem2.Name = "toolStripMenuItem2"; toolStripMenuItem2.Size = new System.Drawing.Size(181, 22); toolStripMenuItem2.Text = "Checked Item"; // // clearMenuItem // clearMenuItem.Name = "clearMenuItem"; clearMenuItem.ShortcutKeys = System.Windows.Forms.Keys.Delete; clearMenuItem.Size = new System.Drawing.Size(164, 22); clearMenuItem.Text = "C&lear"; clearMenuItem.Click += new System.EventHandler(this.ClearMenuItemClick); // // resetMenuItem // resetMenuItem.Name = "resetMenuItem"; resetMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.R))); resetMenuItem.Size = new System.Drawing.Size(164, 22); resetMenuItem.Text = "&Reset"; resetMenuItem.Click += new System.EventHandler(this.ResetMenuItemClick); // // searchLabel // searchLabel.Name = "searchLabel"; searchLabel.Size = new System.Drawing.Size(45, 24); searchLabel.Text = "Search:"; // // findMenuItem // findMenuItem.Name = "findMenuItem"; findMenuItem.ShortcutKeys = System.Windows.Forms.Keys.F3; findMenuItem.Size = new System.Drawing.Size(164, 22); findMenuItem.Text = "&Find"; findMenuItem.Click += new System.EventHandler(this.FindMenuItemClick); // // toolStripSeparator8 // toolStripSeparator8.Name = "toolStripSeparator8"; toolStripSeparator8.Size = new System.Drawing.Size(161, 6); // // toolStripSeparator9 // toolStripSeparator9.Name = "toolStripSeparator9"; toolStripSeparator9.Size = new System.Drawing.Size(6, 25); // // clearMainMenuItem // this.clearMainMenuItem.Enabled = false; this.clearMainMenuItem.Name = "clearMainMenuItem"; this.clearMainMenuItem.ShortcutKeys = System.Windows.Forms.Keys.Delete; this.clearMainMenuItem.Size = new System.Drawing.Size(164, 22); this.clearMainMenuItem.Text = "&Clear"; this.clearMainMenuItem.Click += new System.EventHandler(this.ClearMenuItemClick); // // previewToolStrip // this.previewToolStrip.Dock = System.Windows.Forms.DockStyle.None; this.previewToolStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.toolStripSplitButton, this.toolStripCheckPreviewButton}); this.previewToolStrip.Location = new System.Drawing.Point(3, 0); this.previewToolStrip.Name = "previewToolStrip"; this.previewToolStrip.Size = new System.Drawing.Size(183, 25); this.previewToolStrip.TabIndex = 1; this.previewToolStrip.Text = "Preview"; // // toolStripSplitButton // this.toolStripSplitButton.AutoToolTip = false; this.toolStripSplitButton.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { toolStripComboBox1, toolStripTextBox1, toolStripSeparator2, toolStripMenuItem2}); this.toolStripSplitButton.ImageTransparentColor = System.Drawing.Color.Magenta; this.toolStripSplitButton.Name = "toolStripSplitButton"; this.toolStripSplitButton.Size = new System.Drawing.Size(64, 22); this.toolStripSplitButton.Text = "Preview"; this.toolStripSplitButton.ButtonClick += new System.EventHandler(this.ToolStripSplitButtonButtonClick); // // toolStripCheckPreviewButton // this.toolStripCheckPreviewButton.AutoToolTip = false; this.toolStripCheckPreviewButton.Checked = true; this.toolStripCheckPreviewButton.CheckOnClick = true; this.toolStripCheckPreviewButton.CheckState = System.Windows.Forms.CheckState.Checked; this.toolStripCheckPreviewButton.ImageTransparentColor = System.Drawing.Color.Magenta; this.toolStripCheckPreviewButton.Name = "toolStripCheckPreviewButton"; this.toolStripCheckPreviewButton.Size = new System.Drawing.Size(107, 22); this.toolStripCheckPreviewButton.Text = "Preview (checked)"; this.toolStripCheckPreviewButton.CheckedChanged += new System.EventHandler(this.ToolStripCheckPreviewButtonCheckedChanged); // // searchToolStrip // this.searchToolStrip.Dock = System.Windows.Forms.DockStyle.None; this.searchToolStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { searchLabel, this.searchTextBox, this.cancelButton}); this.searchToolStrip.Location = new System.Drawing.Point(0, 0); this.searchToolStrip.Name = "searchToolStrip"; this.searchToolStrip.Size = new System.Drawing.Size(597, 27); this.searchToolStrip.Stretch = true; this.searchToolStrip.TabIndex = 3; this.searchToolStrip.Text = "Search"; // // searchTextBox // this.searchTextBox.Margin = new System.Windows.Forms.Padding(1, 2, 1, 2); this.searchTextBox.Name = "searchTextBox"; this.searchTextBox.Size = new System.Drawing.Size(486, 23); this.searchTextBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.SearchTextBoxKeyDown); this.searchTextBox.TextChanged += new System.EventHandler(this.SearchTextBoxTextChanged); // // cancelButton // this.cancelButton.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right; this.cancelButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.cancelButton.Enabled = false; this.cancelButton.ImageTransparentColor = System.Drawing.Color.Magenta; this.cancelButton.Name = "cancelButton"; this.cancelButton.Size = new System.Drawing.Size(23, 24); this.cancelButton.Text = "Clear Search"; this.cancelButton.Click += new System.EventHandler(this.CancelButtonClick); // // mainToolStrip // this.mainToolStrip.Dock = System.Windows.Forms.DockStyle.None; this.mainToolStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.newToolStripButton, openToolStripButton, saveToolStripButton, toolStripSeparator6, this.copyToolStripButton, this.pasteToolStripButton, toolStripSeparator7, this.colorToolStripButton, toolStripSeparator9, helpToolStripButton}); this.mainToolStrip.Location = new System.Drawing.Point(3, 25); this.mainToolStrip.Name = "mainToolStrip"; this.mainToolStrip.Size = new System.Drawing.Size(215, 25); this.mainToolStrip.TabIndex = 0; this.mainToolStrip.Text = "Standard"; // // newToolStripButton // this.newToolStripButton.AutoToolTip = false; this.newToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta; this.newToolStripButton.Name = "newToolStripButton"; this.newToolStripButton.Size = new System.Drawing.Size(47, 22); this.newToolStripButton.Text = "New"; this.newToolStripButton.ButtonClick += new System.EventHandler(this.NewMenuItemClick); // // copyToolStripButton // this.copyToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.copyToolStripButton.Image = global::ToolStripCustomizer.Properties.Resources._2; this.copyToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta; this.copyToolStripButton.Name = "copyToolStripButton"; this.copyToolStripButton.Size = new System.Drawing.Size(23, 22); this.copyToolStripButton.Text = "Copy"; this.copyToolStripButton.Click += new System.EventHandler(this.CopyMenuItemClick); // // pasteToolStripButton // this.pasteToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.pasteToolStripButton.Image = global::ToolStripCustomizer.Properties.Resources._4; this.pasteToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta; this.pasteToolStripButton.Name = "pasteToolStripButton"; this.pasteToolStripButton.Size = new System.Drawing.Size(23, 22); this.pasteToolStripButton.Text = "Paste"; this.pasteToolStripButton.Click += new System.EventHandler(this.PasteMenuItemClick); // // colorToolStripButton // this.colorToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.colorToolStripButton.Image = global::ToolStripCustomizer.Properties.Resources._149; this.colorToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta; this.colorToolStripButton.Name = "colorToolStripButton"; this.colorToolStripButton.Size = new System.Drawing.Size(23, 22); this.colorToolStripButton.Text = "Color Adjustment"; this.colorToolStripButton.Click += new System.EventHandler(this.ColorAdjustmentMenuItemClick); // // menuStrip // this.menuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.fileToolStripMenuItem, this.editToolStripMenuItem, this.viewToolStripMenuItem, this.toolsToolStripMenuItem, this.helpToolStripMenuItem}); this.menuStrip.Location = new System.Drawing.Point(0, 0); this.menuStrip.Name = "menuStrip"; this.menuStrip.Size = new System.Drawing.Size(597, 24); this.menuStrip.TabIndex = 0; this.menuStrip.Text = "Main Menu"; // // fileToolStripMenuItem // this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.newMenuItem, this.newFromPresetMenuItem, this.openMenuItem, toolStripSeparator, this.saveMenuItem, this.miExportColors, toolStripSeparator1, this.exitMenuItem}); this.fileToolStripMenuItem.Name = "fileToolStripMenuItem"; this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20); this.fileToolStripMenuItem.Text = "&File"; // // newMenuItem // this.newMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta; this.newMenuItem.Name = "newMenuItem"; this.newMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.N))); this.newMenuItem.Size = new System.Drawing.Size(164, 22); this.newMenuItem.Text = "&New"; this.newMenuItem.Click += new System.EventHandler(this.NewMenuItemClick); // // newFromPresetMenuItem // this.newFromPresetMenuItem.Name = "newFromPresetMenuItem"; this.newFromPresetMenuItem.Size = new System.Drawing.Size(164, 22); this.newFromPresetMenuItem.Text = "New From Preset"; // // openMenuItem // this.openMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta; this.openMenuItem.Name = "openMenuItem"; this.openMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.O))); this.openMenuItem.Size = new System.Drawing.Size(164, 22); this.openMenuItem.Text = "&Open"; this.openMenuItem.Click += new System.EventHandler(this.OpenMenuItemClick); // // saveMenuItem // this.saveMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta; this.saveMenuItem.Name = "saveMenuItem"; this.saveMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.S))); this.saveMenuItem.Size = new System.Drawing.Size(164, 22); this.saveMenuItem.Text = "&Save As"; this.saveMenuItem.Click += new System.EventHandler(this.SaveMenuItemClick); // // exitMenuItem // this.exitMenuItem.Name = "exitMenuItem"; this.exitMenuItem.Size = new System.Drawing.Size(164, 22); this.exitMenuItem.Text = "E&xit"; this.exitMenuItem.Click += new System.EventHandler(this.ExitMenuItemClick); // // editToolStripMenuItem // this.editToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.copyMenuItem, this.pasteMenuItem, this.toolStripSeparator5, resetToolStripMenuItem, this.clearMainMenuItem, toolStripSeparator4, this.selectAllMenuItem, toolStripSeparator8, findMenuItem}); this.editToolStripMenuItem.Name = "editToolStripMenuItem"; this.editToolStripMenuItem.Size = new System.Drawing.Size(39, 20); this.editToolStripMenuItem.Text = "&Edit"; // // copyMenuItem // this.copyMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta; this.copyMenuItem.Name = "copyMenuItem"; this.copyMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.C))); this.copyMenuItem.Size = new System.Drawing.Size(164, 22); this.copyMenuItem.Text = "&Copy"; this.copyMenuItem.Click += new System.EventHandler(this.CopyMenuItemClick); // // pasteMenuItem // this.pasteMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta; this.pasteMenuItem.Name = "pasteMenuItem"; this.pasteMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.V))); this.pasteMenuItem.Size = new System.Drawing.Size(164, 22); this.pasteMenuItem.Text = "&Paste"; this.pasteMenuItem.Click += new System.EventHandler(this.PasteMenuItemClick); // // toolStripSeparator5 // this.toolStripSeparator5.Name = "toolStripSeparator5"; this.toolStripSeparator5.Size = new System.Drawing.Size(161, 6); // // selectAllMenuItem // this.selectAllMenuItem.Name = "selectAllMenuItem"; this.selectAllMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.A))); this.selectAllMenuItem.Size = new System.Drawing.Size(164, 22); this.selectAllMenuItem.Text = "Select &All"; this.selectAllMenuItem.Click += new System.EventHandler(this.SelectAllMenuItemClick); // // viewToolStripMenuItem // this.viewToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.roundedEdgesMenuItem}); this.viewToolStripMenuItem.Name = "viewToolStripMenuItem"; this.viewToolStripMenuItem.Size = new System.Drawing.Size(44, 20); this.viewToolStripMenuItem.Text = "&View"; // // roundedEdgesMenuItem // this.roundedEdgesMenuItem.Checked = true; this.roundedEdgesMenuItem.CheckOnClick = true; this.roundedEdgesMenuItem.CheckState = System.Windows.Forms.CheckState.Checked; this.roundedEdgesMenuItem.Name = "roundedEdgesMenuItem"; this.roundedEdgesMenuItem.Size = new System.Drawing.Size(156, 22); this.roundedEdgesMenuItem.Text = "&Rounded Edges"; this.roundedEdgesMenuItem.CheckedChanged += new System.EventHandler(this.RoundedEdgesMenuItemCheckedChanged); // // toolsToolStripMenuItem // this.toolsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.colorAdjustmentToolStripMenuItem, this.toolStripSeparator10, optionsMenuItem}); this.toolsToolStripMenuItem.Name = "toolsToolStripMenuItem"; this.toolsToolStripMenuItem.Size = new System.Drawing.Size(47, 20); this.toolsToolStripMenuItem.Text = "&Tools"; // // colorAdjustmentToolStripMenuItem // this.colorAdjustmentToolStripMenuItem.Name = "colorAdjustmentToolStripMenuItem"; this.colorAdjustmentToolStripMenuItem.Size = new System.Drawing.Size(177, 22); this.colorAdjustmentToolStripMenuItem.Text = "&Color Adjustment..."; this.colorAdjustmentToolStripMenuItem.Click += new System.EventHandler(this.ColorAdjustmentMenuItemClick); // // toolStripSeparator10 // this.toolStripSeparator10.Name = "toolStripSeparator10"; this.toolStripSeparator10.Size = new System.Drawing.Size(174, 6); // // helpToolStripMenuItem // this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { aboutMenuItem}); this.helpToolStripMenuItem.Name = "helpToolStripMenuItem"; this.helpToolStripMenuItem.Size = new System.Drawing.Size(44, 20); this.helpToolStripMenuItem.Text = "&Help"; // // toolStripContainer // // // toolStripContainer.BottomToolStripPanel // this.toolStripContainer.BottomToolStripPanel.Controls.Add(this.searchToolStrip); // // toolStripContainer.ContentPanel // this.toolStripContainer.ContentPanel.Controls.Add(this.gridView); this.toolStripContainer.ContentPanel.Size = new System.Drawing.Size(597, 389); this.toolStripContainer.Dock = System.Windows.Forms.DockStyle.Fill; this.toolStripContainer.Location = new System.Drawing.Point(0, 24); this.toolStripContainer.Name = "toolStripContainer"; this.toolStripContainer.Size = new System.Drawing.Size(597, 466); this.toolStripContainer.TabIndex = 2; this.toolStripContainer.Text = "toolStripContainer1"; // // toolStripContainer.TopToolStripPanel // this.toolStripContainer.TopToolStripPanel.Controls.Add(this.previewToolStrip); this.toolStripContainer.TopToolStripPanel.Controls.Add(this.mainToolStrip); // // gridView // this.gridView.AllowUserToAddRows = false; this.gridView.AllowUserToDeleteRows = false; this.gridView.AllowUserToResizeColumns = false; this.gridView.AllowUserToResizeRows = false; this.gridView.AutoSizeRowsMode = System.Windows.Forms.DataGridViewAutoSizeRowsMode.AllCells; this.gridView.BorderStyle = System.Windows.Forms.BorderStyle.None; this.gridView.ClipboardCopyMode = System.Windows.Forms.DataGridViewClipboardCopyMode.Disable; this.gridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing; this.gridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { this.ColorTableItemColumn, this.ColorValueColumn, this.ColorPreviewColumn, this.EditColorColumn}); this.gridView.ContextMenuStrip = this.rowContextMenu; this.gridView.Dock = System.Windows.Forms.DockStyle.Fill; this.gridView.GridColor = System.Drawing.SystemColors.ActiveCaption; this.gridView.Location = new System.Drawing.Point(0, 0); this.gridView.Name = "gridView"; this.gridView.RowHeadersVisible = false; this.gridView.RowTemplate.DefaultCellStyle.Padding = new System.Windows.Forms.Padding(3); this.gridView.ScrollBars = System.Windows.Forms.ScrollBars.Vertical; this.gridView.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect; this.gridView.Size = new System.Drawing.Size(597, 389); this.gridView.TabIndex = 2; this.gridView.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.GridViewCellContentClick); this.gridView.CellDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.GridViewCellDoubleClick); this.gridView.SelectionChanged += new System.EventHandler(this.GridViewSelectionChanged); this.gridView.Enter += new System.EventHandler(this.GridViewEnter); this.gridView.Leave += new System.EventHandler(this.GridViewLeave); this.gridView.MouseDown += new System.Windows.Forms.MouseEventHandler(this.GridViewMouseDown); // // ColorTableItemColumn // this.ColorTableItemColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill; this.ColorTableItemColumn.HeaderText = "Color Table Item"; this.ColorTableItemColumn.Name = "ColorTableItemColumn"; this.ColorTableItemColumn.ReadOnly = true; // // ColorValueColumn // this.ColorValueColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells; this.ColorValueColumn.HeaderText = "Color"; this.ColorValueColumn.Name = "ColorValueColumn"; this.ColorValueColumn.ReadOnly = true; this.ColorValueColumn.Width = 61; // // ColorPreviewColumn // this.ColorPreviewColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells; this.ColorPreviewColumn.HeaderText = "Preview"; this.ColorPreviewColumn.Name = "ColorPreviewColumn"; this.ColorPreviewColumn.ReadOnly = true; this.ColorPreviewColumn.Width = 54; // // EditColorColumn // this.EditColorColumn.HeaderText = "Edit"; this.EditColorColumn.Name = "EditColorColumn"; this.EditColorColumn.Width = 50; // // rowContextMenu // this.rowContextMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.copyPopupItem, this.pastePopupItem, this.selectAllPopupItem, toolStripSeparator3, this.fromKnownColorMenuItem, this.alphaMenuItem, this.screenColorMenuItem, toolStripMenuItem1, resetMenuItem, clearMenuItem}); this.rowContextMenu.Name = "rowContextMenu"; this.rowContextMenu.Size = new System.Drawing.Size(165, 192); this.rowContextMenu.Opening += new System.ComponentModel.CancelEventHandler(this.RowContextMenuOpening); // // copyPopupItem // this.copyPopupItem.Image = ((System.Drawing.Image)(resources.GetObject("copyPopupItem.Image"))); this.copyPopupItem.ImageTransparentColor = System.Drawing.Color.Magenta; this.copyPopupItem.Name = "copyPopupItem"; this.copyPopupItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.C))); this.copyPopupItem.Size = new System.Drawing.Size(164, 22); this.copyPopupItem.Text = "&Copy"; this.copyPopupItem.Click += new System.EventHandler(this.CopyMenuItemClick); // // pastePopupItem // this.pastePopupItem.Image = ((System.Drawing.Image)(resources.GetObject("pastePopupItem.Image"))); this.pastePopupItem.ImageTransparentColor = System.Drawing.Color.Magenta; this.pastePopupItem.Name = "pastePopupItem"; this.pastePopupItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.V))); this.pastePopupItem.Size = new System.Drawing.Size(164, 22); this.pastePopupItem.Text = "&Paste"; this.pastePopupItem.Click += new System.EventHandler(this.PasteMenuItemClick); // // selectAllPopupItem // this.selectAllPopupItem.Name = "selectAllPopupItem"; this.selectAllPopupItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.A))); this.selectAllPopupItem.Size = new System.Drawing.Size(164, 22); this.selectAllPopupItem.Text = "Select &All"; this.selectAllPopupItem.Click += new System.EventHandler(this.SelectAllMenuItemClick); // // fromKnownColorMenuItem // this.fromKnownColorMenuItem.Name = "fromKnownColorMenuItem"; this.fromKnownColorMenuItem.Size = new System.Drawing.Size(164, 22); this.fromKnownColorMenuItem.Text = "&System Color"; // // alphaMenuItem // this.alphaMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { toolStripMenuItem3, toolStripMenuItem4, toolStripMenuItem5, toolStripMenuItem6, toolStripMenuItem7, toolStripMenuItem8, toolStripMenuItem9, toolStripMenuItem10, toolStripMenuItem11, toolStripMenuItem12, toolStripMenuItem13, toolStripMenuItem14, toolStripMenuItem15, toolStripMenuItem16}); this.alphaMenuItem.Name = "alphaMenuItem"; this.alphaMenuItem.Size = new System.Drawing.Size(164, 22); this.alphaMenuItem.Text = "Alp&ha"; // // screenColorMenuItem // this.screenColorMenuItem.Name = "screenColorMenuItem"; this.screenColorMenuItem.Size = new System.Drawing.Size(164, 22); this.screenColorMenuItem.Text = "Scree&n Color"; this.screenColorMenuItem.Click += new System.EventHandler(this.screenColorMenuItem_Click); // // colorDialog // this.colorDialog.FullOpen = true; this.colorDialog.SolidColorOnly = true; // // openFileDialog // this.openFileDialog.Filter = "C# or VB.NET files|*.cs;*.vb|All files|*.*"; // // saveFileDialog // this.saveFileDialog.DefaultExt = "cs"; this.saveFileDialog.Filter = "C# class|*.cs|VB.NET class|*.vb|All files|*.*"; // // searchWorker // this.searchWorker.WorkerReportsProgress = true; this.searchWorker.WorkerSupportsCancellation = true; this.searchWorker.DoWork += new System.ComponentModel.DoWorkEventHandler(this.SearchWorkerDoWork); this.searchWorker.ProgressChanged += new System.ComponentModel.ProgressChangedEventHandler(this.OnSearchWorkerProgressChanged); // // miExportColors // this.miExportColors.Name = "miExportColors"; this.miExportColors.Size = new System.Drawing.Size(164, 22); this.miExportColors.Text = "Ex&port Colors"; this.miExportColors.Click += new System.EventHandler(this.miExportColors_Click); // // MainForm // this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi; this.ClientSize = new System.Drawing.Size(597, 512); this.Controls.Add(this.toolStripContainer); this.Controls.Add(this.menuStrip); this.Controls.Add(statusStrip); this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.MainMenuStrip = this.menuStrip; this.MinimumSize = new System.Drawing.Size(350, 350); this.Name = "MainForm"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Text = "ToolStrip Customizer for .NET WinForms"; this.Activated += new System.EventHandler(this.MainFormActivated); this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.MainFormFormClosed); this.Load += new System.EventHandler(this.MainFormLoad); statusStrip.ResumeLayout(false); statusStrip.PerformLayout(); this.previewToolStrip.ResumeLayout(false); this.previewToolStrip.PerformLayout(); this.searchToolStrip.ResumeLayout(false); this.searchToolStrip.PerformLayout(); this.mainToolStrip.ResumeLayout(false); this.mainToolStrip.PerformLayout(); this.menuStrip.ResumeLayout(false); this.menuStrip.PerformLayout(); this.toolStripContainer.BottomToolStripPanel.ResumeLayout(false); this.toolStripContainer.BottomToolStripPanel.PerformLayout(); this.toolStripContainer.ContentPanel.ResumeLayout(false); this.toolStripContainer.TopToolStripPanel.ResumeLayout(false); this.toolStripContainer.TopToolStripPanel.PerformLayout(); this.toolStripContainer.ResumeLayout(false); this.toolStripContainer.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.gridView)).EndInit(); this.rowContextMenu.ResumeLayout(false); this.ResumeLayout(false); this.PerformLayout(); }
/// <summary> /// Método necesario para admitir el Diseñador. No se puede modificar /// el contenido de este método con el editor de código. /// </summary> private void InitializeComponent() { System.Windows.Forms.StatusStrip statusStrip; System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmMain)); this.panel1 = new System.Windows.Forms.Panel(); this.dgRssItems = new System.Windows.Forms.DataGridView(); this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel(); this.lblUrl = new System.Windows.Forms.Label(); this.cmbUrl = new System.Windows.Forms.ComboBox(); this.btnUpdate = new System.Windows.Forms.Button(); this.RssTitle = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.RssDescription = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.RssPublishingDate = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.lblStatus = new System.Windows.Forms.ToolStripStatusLabel(); this.bwRssReader = new System.ComponentModel.BackgroundWorker(); statusStrip = new System.Windows.Forms.StatusStrip(); this.panel1.SuspendLayout(); statusStrip.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.dgRssItems)).BeginInit(); this.tableLayoutPanel1.SuspendLayout(); this.SuspendLayout(); // // panel1 // this.panel1.Controls.Add(this.tableLayoutPanel1); 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(524, 43); this.panel1.TabIndex = 0; // // statusStrip // statusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.lblStatus}); statusStrip.Location = new System.Drawing.Point(0, 239); statusStrip.Name = "statusStrip"; statusStrip.Size = new System.Drawing.Size(524, 22); statusStrip.TabIndex = 1; // // dgRssItems // this.dgRssItems.AllowUserToAddRows = false; this.dgRssItems.AllowUserToDeleteRows = false; this.dgRssItems.AllowUserToOrderColumns = true; this.dgRssItems.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; this.dgRssItems.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { this.RssTitle, this.RssDescription, this.RssPublishingDate}); this.dgRssItems.Dock = System.Windows.Forms.DockStyle.Fill; this.dgRssItems.Location = new System.Drawing.Point(0, 43); this.dgRssItems.MultiSelect = false; this.dgRssItems.Name = "dgRssItems"; this.dgRssItems.ReadOnly = true; this.dgRssItems.RowHeadersVisible = false; this.dgRssItems.ShowEditingIcon = false; this.dgRssItems.Size = new System.Drawing.Size(524, 196); this.dgRssItems.TabIndex = 2; // // tableLayoutPanel1 // this.tableLayoutPanel1.ColumnCount = 3; this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 10F)); this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 60F)); this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 30F)); this.tableLayoutPanel1.Controls.Add(this.lblUrl, 0, 0); this.tableLayoutPanel1.Controls.Add(this.cmbUrl, 1, 0); this.tableLayoutPanel1.Controls.Add(this.btnUpdate, 2, 0); this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill; 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.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F)); this.tableLayoutPanel1.Size = new System.Drawing.Size(524, 43); this.tableLayoutPanel1.TabIndex = 0; // // lblUrl // this.lblUrl.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); this.lblUrl.AutoSize = true; this.lblUrl.Location = new System.Drawing.Point(3, 15); this.lblUrl.Name = "lblUrl"; this.lblUrl.Size = new System.Drawing.Size(46, 13); this.lblUrl.TabIndex = 0; this.lblUrl.Text = "URL:"; // // cmbUrl // this.cmbUrl.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); this.cmbUrl.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest; this.cmbUrl.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.RecentlyUsedList; this.cmbUrl.FormattingEnabled = true; this.cmbUrl.Location = new System.Drawing.Point(55, 11); this.cmbUrl.Name = "cmbUrl"; this.cmbUrl.Size = new System.Drawing.Size(308, 21); this.cmbUrl.TabIndex = 1; // // btnUpdate // this.btnUpdate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); this.btnUpdate.Location = new System.Drawing.Point(369, 10); this.btnUpdate.Name = "btnUpdate"; this.btnUpdate.Size = new System.Drawing.Size(152, 23); this.btnUpdate.TabIndex = 2; this.btnUpdate.Text = "Actualizar"; this.btnUpdate.UseVisualStyleBackColor = true; this.btnUpdate.Click += new System.EventHandler(this.btnUpdate_Click); // // RssTitle // this.RssTitle.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill; this.RssTitle.DataPropertyName = "Title"; this.RssTitle.HeaderText = "Título"; this.RssTitle.Name = "RssTitle"; this.RssTitle.ReadOnly = true; // // RssDescription // this.RssDescription.DataPropertyName = "Description"; this.RssDescription.HeaderText = "Descripción"; this.RssDescription.Name = "RssDescription"; this.RssDescription.ReadOnly = true; this.RssDescription.Width = 300; // // RssPublishingDate // this.RssPublishingDate.DataPropertyName = "PublishingDate"; this.RssPublishingDate.HeaderText = "Publicación"; this.RssPublishingDate.Name = "RssPublishingDate"; this.RssPublishingDate.ReadOnly = true; // // lblStatus // this.lblStatus.Name = "lblStatus"; this.lblStatus.Size = new System.Drawing.Size(0, 17); // // bwRssReader // this.bwRssReader.DoWork += new System.ComponentModel.DoWorkEventHandler(this.bwRssReader_DoWork); this.bwRssReader.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.bwRssReader_RunWorkerCompleted); // // FrmMain // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(524, 261); this.Controls.Add(this.dgRssItems); this.Controls.Add(statusStrip); this.Controls.Add(this.panel1); this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.Name = "FrmMain"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Text = "RSS Example"; this.Load += new System.EventHandler(this.FrmMain_Load); this.panel1.ResumeLayout(false); statusStrip.ResumeLayout(false); statusStrip.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.dgRssItems)).EndInit(); 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.MenuStrip menuStrip; System.Windows.Forms.SplitContainer splitContainer1; System.Windows.Forms.SplitContainer splitContainer2; System.Windows.Forms.StatusStrip statusStrip1; System.Windows.Forms.Timer timer; System.Windows.Forms.ToolStripContainer toolStripContainer1; this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.openToolStripMenuItem = 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.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.searchBox = new System.Windows.Forms.TextBox(); this.hitsBox = new System.Windows.Forms.ListBox(); this.webBrowser = new System.Windows.Forms.WebBrowser(); this.searchStatusLabel = new System.Windows.Forms.ToolStripStatusLabel(); menuStrip = new System.Windows.Forms.MenuStrip(); splitContainer1 = new System.Windows.Forms.SplitContainer(); splitContainer2 = new System.Windows.Forms.SplitContainer(); statusStrip1 = new System.Windows.Forms.StatusStrip(); timer = new System.Windows.Forms.Timer(this.components); toolStripContainer1 = new System.Windows.Forms.ToolStripContainer(); menuStrip.SuspendLayout(); splitContainer1.Panel1.SuspendLayout(); splitContainer1.Panel2.SuspendLayout(); splitContainer1.SuspendLayout(); splitContainer2.Panel1.SuspendLayout(); splitContainer2.Panel2.SuspendLayout(); splitContainer2.SuspendLayout(); statusStrip1.SuspendLayout(); toolStripContainer1.BottomToolStripPanel.SuspendLayout(); toolStripContainer1.ContentPanel.SuspendLayout(); toolStripContainer1.SuspendLayout(); this.SuspendLayout(); // // menuStrip // menuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.fileToolStripMenuItem, this.helpToolStripMenuItem}); menuStrip.Location = new System.Drawing.Point(0, 0); menuStrip.Name = "menuStrip"; menuStrip.Size = new System.Drawing.Size(562, 24); menuStrip.TabIndex = 0; menuStrip.Text = "menuStrip"; // // fileToolStripMenuItem // this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.openToolStripMenuItem, this.closeToolStripMenuItem, this.toolStripSeparator1, this.exitToolStripMenuItem}); this.fileToolStripMenuItem.Name = "fileToolStripMenuItem"; this.fileToolStripMenuItem.Size = new System.Drawing.Size(35, 20); this.fileToolStripMenuItem.Text = "&File"; // // openToolStripMenuItem // this.openToolStripMenuItem.Name = "openToolStripMenuItem"; this.openToolStripMenuItem.Size = new System.Drawing.Size(100, 22); this.openToolStripMenuItem.Text = "&Open"; this.openToolStripMenuItem.Click += new System.EventHandler(this.openToolStripMenuItem_Click); // // closeToolStripMenuItem // this.closeToolStripMenuItem.Name = "closeToolStripMenuItem"; this.closeToolStripMenuItem.Size = new System.Drawing.Size(100, 22); this.closeToolStripMenuItem.Text = "&Close"; // // toolStripSeparator1 // this.toolStripSeparator1.Name = "toolStripSeparator1"; this.toolStripSeparator1.Size = new System.Drawing.Size(97, 6); // // exitToolStripMenuItem // this.exitToolStripMenuItem.Name = "exitToolStripMenuItem"; this.exitToolStripMenuItem.Size = new System.Drawing.Size(100, 22); this.exitToolStripMenuItem.Text = "E&xit"; this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click); // // helpToolStripMenuItem // this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.aboutToolStripMenuItem}); this.helpToolStripMenuItem.Name = "helpToolStripMenuItem"; this.helpToolStripMenuItem.Size = new System.Drawing.Size(40, 20); this.helpToolStripMenuItem.Text = "&Help"; // // aboutToolStripMenuItem // this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem"; this.aboutToolStripMenuItem.Size = new System.Drawing.Size(103, 22); this.aboutToolStripMenuItem.Text = "&About"; this.aboutToolStripMenuItem.Click += new System.EventHandler(this.aboutToolStripMenuItem_Click); // // splitContainer1 // splitContainer1.DataBindings.Add(new System.Windows.Forms.Binding("SplitterDistance", global::BzReader.Properties.Settings.Default, "SplitterDistance", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged)); splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill; splitContainer1.FixedPanel = System.Windows.Forms.FixedPanel.Panel1; splitContainer1.Location = new System.Drawing.Point(0, 0); splitContainer1.Name = "splitContainer1"; // // splitContainer1.Panel1 // splitContainer1.Panel1.Controls.Add(splitContainer2); splitContainer1.Panel1MinSize = 130; // // splitContainer1.Panel2 // splitContainer1.Panel2.Controls.Add(this.webBrowser); splitContainer1.Size = new System.Drawing.Size(562, 405); splitContainer1.SplitterDistance = global::BzReader.Properties.Settings.Default.SplitterDistance; splitContainer1.TabIndex = 1; // // splitContainer2 // splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill; splitContainer2.FixedPanel = System.Windows.Forms.FixedPanel.Panel1; splitContainer2.IsSplitterFixed = true; splitContainer2.Location = new System.Drawing.Point(0, 0); splitContainer2.Name = "splitContainer2"; splitContainer2.Orientation = System.Windows.Forms.Orientation.Horizontal; // // splitContainer2.Panel1 // splitContainer2.Panel1.Controls.Add(this.searchBox); splitContainer2.Panel1MinSize = 20; // // splitContainer2.Panel2 // splitContainer2.Panel2.Controls.Add(this.hitsBox); splitContainer2.Size = new System.Drawing.Size(130, 405); splitContainer2.SplitterDistance = 20; splitContainer2.TabIndex = 0; // // searchBox // this.searchBox.Dock = System.Windows.Forms.DockStyle.Fill; this.searchBox.Location = new System.Drawing.Point(0, 0); this.searchBox.Name = "searchBox"; this.searchBox.Size = new System.Drawing.Size(130, 20); this.searchBox.TabIndex = 0; this.searchBox.TextChanged += new System.EventHandler(this.searchBox_TextChanged); this.searchBox.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.searchBox_PreviewKeyDown); // // hitsBox // this.hitsBox.Dock = System.Windows.Forms.DockStyle.Fill; this.hitsBox.FormattingEnabled = true; this.hitsBox.Location = new System.Drawing.Point(0, 0); this.hitsBox.Name = "hitsBox"; this.hitsBox.Size = new System.Drawing.Size(130, 381); this.hitsBox.TabIndex = 0; this.hitsBox.SelectedValueChanged += new System.EventHandler(this.hitsBox_SelectedValueChanged); // // webBrowser // this.webBrowser.Dock = System.Windows.Forms.DockStyle.Fill; this.webBrowser.Location = new System.Drawing.Point(0, 0); this.webBrowser.MinimumSize = new System.Drawing.Size(20, 20); this.webBrowser.Name = "webBrowser"; this.webBrowser.Size = new System.Drawing.Size(428, 405); this.webBrowser.TabIndex = 0; // // statusStrip1 // statusStrip1.Dock = System.Windows.Forms.DockStyle.None; statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.searchStatusLabel}); statusStrip1.Location = new System.Drawing.Point(0, 0); statusStrip1.Name = "statusStrip1"; statusStrip1.Size = new System.Drawing.Size(562, 22); statusStrip1.TabIndex = 2; statusStrip1.Text = "statusStrip"; // // searchStatusLabel // this.searchStatusLabel.Name = "searchStatusLabel"; this.searchStatusLabel.Size = new System.Drawing.Size(0, 17); // // timer // timer.Enabled = true; timer.Tick += new System.EventHandler(this.timer_Tick); // // toolStripContainer1 // // // toolStripContainer1.BottomToolStripPanel // toolStripContainer1.BottomToolStripPanel.Controls.Add(statusStrip1); // // toolStripContainer1.ContentPanel // toolStripContainer1.ContentPanel.Controls.Add(splitContainer1); toolStripContainer1.ContentPanel.Size = new System.Drawing.Size(562, 405); toolStripContainer1.Dock = System.Windows.Forms.DockStyle.Fill; toolStripContainer1.LeftToolStripPanelVisible = false; toolStripContainer1.Location = new System.Drawing.Point(0, 24); toolStripContainer1.Name = "toolStripContainer1"; toolStripContainer1.RightToolStripPanelVisible = false; toolStripContainer1.Size = new System.Drawing.Size(562, 427); toolStripContainer1.TabIndex = 3; toolStripContainer1.Text = "toolStripContainer1"; toolStripContainer1.TopToolStripPanelVisible = false; // // BrowseForm // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(562, 451); this.Controls.Add(toolStripContainer1); this.Controls.Add(menuStrip); this.MainMenuStrip = menuStrip; this.Name = "BrowseForm"; this.StartPosition = System.Windows.Forms.FormStartPosition.Manual; this.Text = "BzReader"; this.WindowState = System.Windows.Forms.FormWindowState.Maximized; this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.BrowseForm_FormClosing); menuStrip.ResumeLayout(false); menuStrip.PerformLayout(); splitContainer1.Panel1.ResumeLayout(false); splitContainer1.Panel2.ResumeLayout(false); splitContainer1.ResumeLayout(false); splitContainer2.Panel1.ResumeLayout(false); splitContainer2.Panel1.PerformLayout(); splitContainer2.Panel2.ResumeLayout(false); splitContainer2.ResumeLayout(false); statusStrip1.ResumeLayout(false); statusStrip1.PerformLayout(); toolStripContainer1.BottomToolStripPanel.ResumeLayout(false); toolStripContainer1.BottomToolStripPanel.PerformLayout(); toolStripContainer1.ContentPanel.ResumeLayout(false); toolStripContainer1.ResumeLayout(false); toolStripContainer1.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.SplitContainer splitContainer1; System.Windows.Forms.StatusStrip StatusStrip; this.TagTreeView = new System.Windows.Forms.TreeView(); this.PropGrigTag = new System.Windows.Forms.PropertyGrid(); this.PropGridCache = new System.Windows.Forms.PropertyGrid(); this.FileOpen = new System.Windows.Forms.ToolStripMenuItem(); this.StatusProgressBar = new System.Windows.Forms.ToolStripProgressBar(); this.StatusProgressCancel = new System.Windows.Forms.ToolStripStatusLabel(); this.StatusProgressText = new System.Windows.Forms.ToolStripStatusLabel(); this.MainMenu = new System.Windows.Forms.MenuStrip(); this.FileMenu = new System.Windows.Forms.ToolStripMenuItem(); this.FileClose = new System.Windows.Forms.ToolStripMenuItem(); this.ToolsMenu = new System.Windows.Forms.ToolStripMenuItem(); this.CacheToolsExtractAll = new System.Windows.Forms.ToolStripMenuItem(); this.CacheToolsExtractAllChecked = new System.Windows.Forms.ToolStripMenuItem(); this.CacheToolsExtractAllUnchecked = new System.Windows.Forms.ToolStripMenuItem(); this.CacheToolsDontOverwrite = new System.Windows.Forms.ToolStripMenuItem(); this.CacheToolsOutputTagDatabase = new System.Windows.Forms.ToolStripMenuItem(); this.OpenFileDlg = new System.Windows.Forms.OpenFileDialog(); this.SaveFileDlg = new System.Windows.Forms.SaveFileDialog(); this.FolderDlg = new System.Windows.Forms.FolderBrowserDialog(); this.MenuTagInstance = new System.Windows.Forms.ContextMenuStrip(this.components); this.MenuTagInstanceExtractAs = new System.Windows.Forms.ToolStripMenuItem(); this.MenuTagInstanceExtractFolder = new System.Windows.Forms.ToolStripMenuItem(); this.MenuTagInstanceExtractFolderAll = new System.Windows.Forms.ToolStripMenuItem(); this.MenuTagInstanceExtractRsrc = new System.Windows.Forms.ToolStripMenuItem(); this.toolTip1 = new System.Windows.Forms.ToolTip(this.components); this.bgwTagExtract = new System.ComponentModel.BackgroundWorker(); this.bgwCacheOpen = new System.ComponentModel.BackgroundWorker(); splitContainer1 = new System.Windows.Forms.SplitContainer(); StatusStrip = new System.Windows.Forms.StatusStrip(); splitContainer1.Panel1.SuspendLayout(); splitContainer1.Panel2.SuspendLayout(); splitContainer1.SuspendLayout(); StatusStrip.SuspendLayout(); this.MainMenu.SuspendLayout(); this.MenuTagInstance.SuspendLayout(); this.SuspendLayout(); // // splitContainer1 // 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))); splitContainer1.Location = new System.Drawing.Point(0, 27); splitContainer1.Name = "splitContainer1"; // // splitContainer1.Panel1 // splitContainer1.Panel1.Controls.Add(this.TagTreeView); // // splitContainer1.Panel2 // splitContainer1.Panel2.Controls.Add(this.PropGrigTag); splitContainer1.Panel2.Controls.Add(this.PropGridCache); splitContainer1.Size = new System.Drawing.Size(792, 531); splitContainer1.SplitterDistance = 473; splitContainer1.TabIndex = 3; // // TagTreeView // this.TagTreeView.BackColor = System.Drawing.SystemColors.ControlDarkDark; this.TagTreeView.CheckBoxes = true; this.TagTreeView.Dock = System.Windows.Forms.DockStyle.Fill; this.TagTreeView.ForeColor = System.Drawing.Color.LightGreen; this.TagTreeView.Location = new System.Drawing.Point(0, 0); this.TagTreeView.Name = "TagTreeView"; this.TagTreeView.Size = new System.Drawing.Size(473, 531); this.TagTreeView.TabIndex = 1; this.TagTreeView.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.OnTagTreeAfterSelect); this.TagTreeView.BeforeCheck += new System.Windows.Forms.TreeViewCancelEventHandler(this.OnTagTreeBeforeCheck); // // PropGrigTag // this.PropGrigTag.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.PropGrigTag.BackColor = System.Drawing.SystemColors.Control; this.PropGrigTag.CommandsBackColor = System.Drawing.SystemColors.ControlDarkDark; this.PropGrigTag.HelpBackColor = System.Drawing.SystemColors.ControlDarkDark; this.PropGrigTag.HelpForeColor = System.Drawing.Color.LightGreen; this.PropGrigTag.LineColor = System.Drawing.SystemColors.ControlDarkDark; this.PropGrigTag.Location = new System.Drawing.Point(0, 310); this.PropGrigTag.Name = "PropGrigTag"; this.PropGrigTag.PropertySort = System.Windows.Forms.PropertySort.Categorized; this.PropGrigTag.Size = new System.Drawing.Size(315, 221); this.PropGrigTag.TabIndex = 3; this.PropGrigTag.ToolbarVisible = false; this.toolTip1.SetToolTip(this.PropGrigTag, "Tag Instance Properties"); this.PropGrigTag.ViewBackColor = System.Drawing.SystemColors.ControlDarkDark; this.PropGrigTag.ViewForeColor = System.Drawing.Color.LightGreen; // // PropGridCache // this.PropGridCache.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.PropGridCache.BackColor = System.Drawing.SystemColors.Control; this.PropGridCache.CommandsBackColor = System.Drawing.SystemColors.ControlDarkDark; this.PropGridCache.HelpBackColor = System.Drawing.SystemColors.ControlDarkDark; this.PropGridCache.HelpForeColor = System.Drawing.Color.LightGreen; this.PropGridCache.LineColor = System.Drawing.SystemColors.ControlDarkDark; this.PropGridCache.Location = new System.Drawing.Point(0, 0); this.PropGridCache.Name = "PropGridCache"; this.PropGridCache.PropertySort = System.Windows.Forms.PropertySort.Categorized; this.PropGridCache.Size = new System.Drawing.Size(315, 304); this.PropGridCache.TabIndex = 2; this.PropGridCache.ToolbarVisible = false; this.toolTip1.SetToolTip(this.PropGridCache, "Cache Properties"); this.PropGridCache.ViewBackColor = System.Drawing.SystemColors.ControlDarkDark; this.PropGridCache.ViewForeColor = System.Drawing.Color.LightGreen; // // FileOpen // this.FileOpen.BackColor = System.Drawing.SystemColors.ControlDarkDark; this.FileOpen.ForeColor = System.Drawing.Color.LightGreen; this.FileOpen.Name = "FileOpen"; this.FileOpen.Size = new System.Drawing.Size(152, 22); this.FileOpen.Text = "Open"; this.FileOpen.Click += new System.EventHandler(this.OnFileOpen); // // StatusStrip // StatusStrip.BackColor = System.Drawing.SystemColors.ControlDarkDark; StatusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.StatusProgressBar, this.StatusProgressCancel, this.StatusProgressText}); StatusStrip.Location = new System.Drawing.Point(0, 561); StatusStrip.Name = "StatusStrip"; StatusStrip.ShowItemToolTips = true; StatusStrip.Size = new System.Drawing.Size(792, 22); StatusStrip.TabIndex = 6; StatusStrip.Text = "StatusStrip"; // // StatusProgressBar // this.StatusProgressBar.Name = "StatusProgressBar"; this.StatusProgressBar.Size = new System.Drawing.Size(200, 16); this.StatusProgressBar.ToolTipText = "Progress of the current task"; // // StatusProgressCancel // this.StatusProgressCancel.Enabled = false; this.StatusProgressCancel.Name = "StatusProgressCancel"; this.StatusProgressCancel.Size = new System.Drawing.Size(64, 17); this.StatusProgressCancel.Text = "Cancel Task"; this.StatusProgressCancel.ToolTipText = "Cancel the current task"; // // StatusProgressText // this.StatusProgressText.Name = "StatusProgressText"; this.StatusProgressText.Padding = new System.Windows.Forms.Padding(10, 0, 0, 0); this.StatusProgressText.Size = new System.Drawing.Size(511, 17); this.StatusProgressText.Spring = true; this.StatusProgressText.Text = "trololo"; this.StatusProgressText.ToolTipText = "Description of the current task"; this.StatusProgressText.Click += new System.EventHandler(this.OnCancelTask); // // MainMenu // this.MainMenu.AllowMerge = false; this.MainMenu.BackColor = System.Drawing.SystemColors.ControlDarkDark; this.MainMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.FileMenu, this.ToolsMenu}); this.MainMenu.Location = new System.Drawing.Point(0, 0); this.MainMenu.Name = "MainMenu"; this.MainMenu.Size = new System.Drawing.Size(792, 24); this.MainMenu.TabIndex = 0; this.MainMenu.Text = "Main Menu"; // // FileMenu // this.FileMenu.BackColor = System.Drawing.SystemColors.ControlDarkDark; this.FileMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.FileOpen, this.FileClose}); this.FileMenu.ForeColor = System.Drawing.Color.LightGreen; this.FileMenu.Name = "FileMenu"; this.FileMenu.Size = new System.Drawing.Size(49, 20); this.FileMenu.Text = "Cache"; // // FileClose // this.FileClose.BackColor = System.Drawing.SystemColors.ControlDarkDark; this.FileClose.Enabled = false; this.FileClose.ForeColor = System.Drawing.Color.LightGreen; this.FileClose.Name = "FileClose"; this.FileClose.Size = new System.Drawing.Size(152, 22); this.FileClose.Text = "Close"; this.FileClose.Click += new System.EventHandler(this.OnFileClose); // // ToolsMenu // this.ToolsMenu.BackColor = System.Drawing.SystemColors.ControlDarkDark; this.ToolsMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.CacheToolsExtractAll, this.CacheToolsDontOverwrite, this.CacheToolsOutputTagDatabase}); this.ToolsMenu.ForeColor = System.Drawing.Color.LightGreen; this.ToolsMenu.Name = "ToolsMenu"; this.ToolsMenu.Size = new System.Drawing.Size(77, 20); this.ToolsMenu.Text = "Cache Tools"; // // CacheToolsExtractAll // this.CacheToolsExtractAll.BackColor = System.Drawing.SystemColors.ControlDarkDark; this.CacheToolsExtractAll.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.CacheToolsExtractAllChecked, this.CacheToolsExtractAllUnchecked}); this.CacheToolsExtractAll.Enabled = false; this.CacheToolsExtractAll.ForeColor = System.Drawing.Color.LimeGreen; this.CacheToolsExtractAll.Name = "CacheToolsExtractAll"; this.CacheToolsExtractAll.Size = new System.Drawing.Size(178, 22); this.CacheToolsExtractAll.Text = "Extract All"; this.CacheToolsExtractAll.Click += new System.EventHandler(this.OnTagInstanceExtractAll); // // CacheToolsExtractAllChecked // this.CacheToolsExtractAllChecked.BackColor = System.Drawing.SystemColors.ControlDarkDark; this.CacheToolsExtractAllChecked.ForeColor = System.Drawing.Color.LimeGreen; this.CacheToolsExtractAllChecked.Name = "CacheToolsExtractAllChecked"; this.CacheToolsExtractAllChecked.Size = new System.Drawing.Size(126, 22); this.CacheToolsExtractAllChecked.Text = "Checked"; this.CacheToolsExtractAllChecked.Click += new System.EventHandler(this.OnTagInstanceExtractAll); // // CacheToolsExtractAllUnchecked // this.CacheToolsExtractAllUnchecked.BackColor = System.Drawing.SystemColors.ControlDarkDark; this.CacheToolsExtractAllUnchecked.ForeColor = System.Drawing.Color.LimeGreen; this.CacheToolsExtractAllUnchecked.Name = "CacheToolsExtractAllUnchecked"; this.CacheToolsExtractAllUnchecked.Size = new System.Drawing.Size(126, 22); this.CacheToolsExtractAllUnchecked.Text = "Unchecked"; this.CacheToolsExtractAllUnchecked.Click += new System.EventHandler(this.OnTagInstanceExtractAll); // // CacheToolsDontOverwrite // this.CacheToolsDontOverwrite.BackColor = System.Drawing.SystemColors.ControlDarkDark; this.CacheToolsDontOverwrite.Checked = true; this.CacheToolsDontOverwrite.CheckOnClick = true; this.CacheToolsDontOverwrite.CheckState = System.Windows.Forms.CheckState.Checked; this.CacheToolsDontOverwrite.ForeColor = System.Drawing.Color.LimeGreen; this.CacheToolsDontOverwrite.Name = "CacheToolsDontOverwrite"; this.CacheToolsDontOverwrite.Size = new System.Drawing.Size(178, 22); this.CacheToolsDontOverwrite.Text = "Don\'t overwrite files"; this.CacheToolsDontOverwrite.ToolTipText = "Toggles existing file overwriting behavior"; // // CacheToolsOutputTagDatabase // this.CacheToolsOutputTagDatabase.BackColor = System.Drawing.SystemColors.ControlDarkDark; this.CacheToolsOutputTagDatabase.Checked = true; this.CacheToolsOutputTagDatabase.CheckOnClick = true; this.CacheToolsOutputTagDatabase.CheckState = System.Windows.Forms.CheckState.Checked; this.CacheToolsOutputTagDatabase.ForeColor = System.Drawing.Color.LimeGreen; this.CacheToolsOutputTagDatabase.Name = "CacheToolsOutputTagDatabase"; this.CacheToolsOutputTagDatabase.Size = new System.Drawing.Size(178, 22); this.CacheToolsOutputTagDatabase.Text = "Output tag_database"; this.CacheToolsOutputTagDatabase.ToolTipText = "Toggles the creation of a tag_database when extracting groups of tags"; // // OpenFileDlg // this.OpenFileDlg.Filter = "Cache files (.map)|*.map|All files|*.*"; this.OpenFileDlg.Title = "Open Cache file..."; // // SaveFileDlg // this.SaveFileDlg.Title = "Save File"; // // MenuTagInstance // this.MenuTagInstance.BackColor = System.Drawing.SystemColors.ControlDarkDark; this.MenuTagInstance.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.MenuTagInstanceExtractAs, this.MenuTagInstanceExtractFolder, this.MenuTagInstanceExtractRsrc}); this.MenuTagInstance.Name = "MenuTagInstance"; this.MenuTagInstance.Size = new System.Drawing.Size(163, 70); this.MenuTagInstance.Opening += new System.ComponentModel.CancelEventHandler(this.OnMenuTagInstanceOpening); // // MenuTagInstanceExtractAs // this.MenuTagInstanceExtractAs.ForeColor = System.Drawing.Color.LimeGreen; this.MenuTagInstanceExtractAs.Name = "MenuTagInstanceExtractAs"; this.MenuTagInstanceExtractAs.Size = new System.Drawing.Size(162, 22); this.MenuTagInstanceExtractAs.Text = "Extract As..."; this.MenuTagInstanceExtractAs.ToolTipText = "Extract the tag to a user defined filename"; this.MenuTagInstanceExtractAs.Click += new System.EventHandler(this.OnTagInstanceExtract); // // MenuTagInstanceExtractFolder // this.MenuTagInstanceExtractFolder.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.MenuTagInstanceExtractFolderAll}); this.MenuTagInstanceExtractFolder.ForeColor = System.Drawing.Color.LimeGreen; this.MenuTagInstanceExtractFolder.Name = "MenuTagInstanceExtractFolder"; this.MenuTagInstanceExtractFolder.Size = new System.Drawing.Size(162, 22); this.MenuTagInstanceExtractFolder.Text = "Extract to folder"; this.MenuTagInstanceExtractFolder.ToolTipText = "Extract tag to a folder"; this.MenuTagInstanceExtractFolder.Click += new System.EventHandler(this.OnTagInstanceExtract); // // MenuTagInstanceExtractFolderAll // this.MenuTagInstanceExtractFolderAll.BackColor = System.Drawing.SystemColors.ControlDarkDark; this.MenuTagInstanceExtractFolderAll.ForeColor = System.Drawing.Color.LimeGreen; this.MenuTagInstanceExtractFolderAll.Name = "MenuTagInstanceExtractFolderAll"; this.MenuTagInstanceExtractFolderAll.Size = new System.Drawing.Size(156, 22); this.MenuTagInstanceExtractFolderAll.Text = "With dependents"; this.MenuTagInstanceExtractFolderAll.ToolTipText = "Extract the tag to a folder with all its dependents"; this.MenuTagInstanceExtractFolderAll.Click += new System.EventHandler(this.OnTagInstanceExtract); // // MenuTagInstanceExtractRsrc // this.MenuTagInstanceExtractRsrc.ForeColor = System.Drawing.Color.LimeGreen; this.MenuTagInstanceExtractRsrc.Name = "MenuTagInstanceExtractRsrc"; this.MenuTagInstanceExtractRsrc.Size = new System.Drawing.Size(162, 22); this.MenuTagInstanceExtractRsrc.Text = "Extract Resources"; this.MenuTagInstanceExtractRsrc.Click += new System.EventHandler(this.OnTagInstanceExtract); // // bgwTagExtract // this.bgwTagExtract.WorkerReportsProgress = true; this.bgwTagExtract.WorkerSupportsCancellation = true; this.bgwTagExtract.DoWork += new System.ComponentModel.DoWorkEventHandler(this.bgwTagExtractDoWork); this.bgwTagExtract.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.bgwTagExtractRunWorkerCompleted); this.bgwTagExtract.ProgressChanged += new System.ComponentModel.ProgressChangedEventHandler(this.bgwTagExtractProgressChanged); // // bgwCacheOpen // this.bgwCacheOpen.DoWork += new System.ComponentModel.DoWorkEventHandler(this.bgwCacheOpenDoWork); this.bgwCacheOpen.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.bgwCacheOpenRunWorkerCompleted); this.bgwCacheOpen.ProgressChanged += new System.ComponentModel.ProgressChangedEventHandler(this.bgwCacheOpenProgressChanged); // // CacheView // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.BackColor = System.Drawing.SystemColors.ControlDarkDark; this.ClientSize = new System.Drawing.Size(792, 583); this.Controls.Add(splitContainer1); this.Controls.Add(this.MainMenu); this.Controls.Add(StatusStrip); this.ForeColor = System.Drawing.Color.LightGreen; this.MainMenuStrip = this.MainMenu; this.Name = "CacheView"; this.ShowIcon = false; this.ShowInTaskbar = false; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; this.Text = "Cache Viewer"; this.Shown += new System.EventHandler(this.OnFormShown); this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.OnFormClosing); splitContainer1.Panel1.ResumeLayout(false); splitContainer1.Panel2.ResumeLayout(false); splitContainer1.ResumeLayout(false); StatusStrip.ResumeLayout(false); StatusStrip.PerformLayout(); this.MainMenu.ResumeLayout(false); this.MainMenu.PerformLayout(); this.MenuTagInstance.ResumeLayout(false); this.ResumeLayout(false); this.PerformLayout(); }
/// <summary> /// Требуемый метод для поддержки конструктора — не изменяйте /// содержимое этого метода с помощью редактора кода. /// </summary> private void InitializeComponent() { System.Windows.Forms.GroupBox groupBox1; System.Windows.Forms.GroupBox groupBox2; System.Windows.Forms.GroupBox groupBox3; System.Windows.Forms.Label label4; System.Windows.Forms.Label label2; System.Windows.Forms.Label label1; System.Windows.Forms.GroupBox groupBox4; System.Windows.Forms.Label label5; System.Windows.Forms.Label label7; System.Windows.Forms.Label label8; System.Windows.Forms.StatusStrip statusStrip; this.sourcePictureBox = new System.Windows.Forms.PictureBox(); this.bluredPictureBox = new System.Windows.Forms.PictureBox(); this.standardTransitionDeviation = new System.Windows.Forms.Label(); this.standardColorDeviation = new System.Windows.Forms.Label(); this.reconstructedPictureBox = new System.Windows.Forms.PictureBox(); this.modifiedTransitionDeviation = new System.Windows.Forms.Label(); this.modifiedColorDeviation = new System.Windows.Forms.Label(); this.modifiedReconstructedPictureBox = new System.Windows.Forms.PictureBox(); this.toolStripStatusLabel = new System.Windows.Forms.ToolStripStatusLabel(); this.menuStrip1 = new System.Windows.Forms.MenuStrip(); this.newImageToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); groupBox1 = new System.Windows.Forms.GroupBox(); groupBox2 = new System.Windows.Forms.GroupBox(); groupBox3 = new System.Windows.Forms.GroupBox(); label4 = new System.Windows.Forms.Label(); label2 = new System.Windows.Forms.Label(); label1 = new System.Windows.Forms.Label(); groupBox4 = new System.Windows.Forms.GroupBox(); label5 = new System.Windows.Forms.Label(); label7 = new System.Windows.Forms.Label(); label8 = new System.Windows.Forms.Label(); statusStrip = new System.Windows.Forms.StatusStrip(); groupBox1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.sourcePictureBox)).BeginInit(); groupBox2.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.bluredPictureBox)).BeginInit(); groupBox3.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.reconstructedPictureBox)).BeginInit(); groupBox4.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.modifiedReconstructedPictureBox)).BeginInit(); statusStrip.SuspendLayout(); this.menuStrip1.SuspendLayout(); this.SuspendLayout(); // // groupBox1 // groupBox1.Controls.Add(this.sourcePictureBox); groupBox1.Location = new System.Drawing.Point(13, 32); groupBox1.Name = "groupBox1"; groupBox1.Size = new System.Drawing.Size(266, 210); groupBox1.TabIndex = 0; groupBox1.TabStop = false; groupBox1.Text = "Source image"; // // sourcePictureBox // this.sourcePictureBox.BackColor = System.Drawing.SystemColors.ControlLight; this.sourcePictureBox.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; this.sourcePictureBox.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.sourcePictureBox.Image = global::RecoveryModification.Properties.Resources.Loading; this.sourcePictureBox.Location = new System.Drawing.Point(6, 19); this.sourcePictureBox.Name = "sourcePictureBox"; this.sourcePictureBox.Size = new System.Drawing.Size(254, 185); this.sourcePictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom; this.sourcePictureBox.TabIndex = 2; this.sourcePictureBox.TabStop = false; this.sourcePictureBox.Click += new System.EventHandler(this.SaveImage); // // groupBox2 // groupBox2.Controls.Add(this.bluredPictureBox); groupBox2.Location = new System.Drawing.Point(285, 32); groupBox2.Name = "groupBox2"; groupBox2.Size = new System.Drawing.Size(266, 210); groupBox2.TabIndex = 1; groupBox2.TabStop = false; groupBox2.Text = "Blured image"; // // bluredPictureBox // this.bluredPictureBox.BackColor = System.Drawing.SystemColors.ControlLight; this.bluredPictureBox.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; this.bluredPictureBox.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.bluredPictureBox.Image = global::RecoveryModification.Properties.Resources.Loading; this.bluredPictureBox.Location = new System.Drawing.Point(6, 19); this.bluredPictureBox.Name = "bluredPictureBox"; this.bluredPictureBox.Size = new System.Drawing.Size(254, 185); this.bluredPictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom; this.bluredPictureBox.TabIndex = 3; this.bluredPictureBox.TabStop = false; this.bluredPictureBox.Click += new System.EventHandler(this.SaveImage); // // groupBox3 // groupBox3.Controls.Add(this.standardTransitionDeviation); groupBox3.Controls.Add(label4); groupBox3.Controls.Add(this.standardColorDeviation); groupBox3.Controls.Add(label2); groupBox3.Controls.Add(label1); groupBox3.Controls.Add(this.reconstructedPictureBox); groupBox3.Location = new System.Drawing.Point(13, 248); groupBox3.Name = "groupBox3"; groupBox3.Size = new System.Drawing.Size(266, 264); groupBox3.TabIndex = 3; groupBox3.TabStop = false; groupBox3.Text = "Reconstructed image"; // // standardTransitionDeviation // this.standardTransitionDeviation.AutoSize = true; this.standardTransitionDeviation.Location = new System.Drawing.Point(64, 242); this.standardTransitionDeviation.Name = "standardTransitionDeviation"; this.standardTransitionDeviation.Size = new System.Drawing.Size(13, 13); this.standardTransitionDeviation.TabIndex = 7; this.standardTransitionDeviation.Text = "?"; // // label4 // label4.AutoSize = true; label4.Location = new System.Drawing.Point(6, 242); label4.Name = "label4"; label4.Size = new System.Drawing.Size(61, 13); label4.TabIndex = 6; label4.Text = "Transitions:"; // // standardColorDeviation // this.standardColorDeviation.AutoSize = true; this.standardColorDeviation.Location = new System.Drawing.Point(64, 229); this.standardColorDeviation.Name = "standardColorDeviation"; this.standardColorDeviation.Size = new System.Drawing.Size(13, 13); this.standardColorDeviation.TabIndex = 5; this.standardColorDeviation.Text = "?"; // // label2 // label2.AutoSize = true; label2.Location = new System.Drawing.Point(6, 229); label2.Name = "label2"; label2.Size = new System.Drawing.Size(39, 13); label2.TabIndex = 4; label2.Text = "Colors:"; // // label1 // label1.AutoSize = true; label1.Location = new System.Drawing.Point(6, 211); label1.Name = "label1"; label1.Size = new System.Drawing.Size(118, 13); label1.TabIndex = 3; label1.Text = "Mean square deviation:"; // // reconstructedPictureBox // this.reconstructedPictureBox.BackColor = System.Drawing.SystemColors.ControlLight; this.reconstructedPictureBox.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; this.reconstructedPictureBox.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.reconstructedPictureBox.Image = global::RecoveryModification.Properties.Resources.Loading; this.reconstructedPictureBox.Location = new System.Drawing.Point(6, 19); this.reconstructedPictureBox.Name = "reconstructedPictureBox"; this.reconstructedPictureBox.Size = new System.Drawing.Size(254, 185); this.reconstructedPictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom; this.reconstructedPictureBox.TabIndex = 2; this.reconstructedPictureBox.TabStop = false; this.reconstructedPictureBox.Click += new System.EventHandler(this.SaveImage); // // groupBox4 // groupBox4.Controls.Add(this.modifiedTransitionDeviation); groupBox4.Controls.Add(label5); groupBox4.Controls.Add(this.modifiedColorDeviation); groupBox4.Controls.Add(label7); groupBox4.Controls.Add(label8); groupBox4.Controls.Add(this.modifiedReconstructedPictureBox); groupBox4.Location = new System.Drawing.Point(285, 248); groupBox4.Name = "groupBox4"; groupBox4.Size = new System.Drawing.Size(266, 264); groupBox4.TabIndex = 8; groupBox4.TabStop = false; groupBox4.Text = "Reconstructed by modified algorithm"; // // modifiedTransitionDeviation // this.modifiedTransitionDeviation.AutoSize = true; this.modifiedTransitionDeviation.Location = new System.Drawing.Point(64, 242); this.modifiedTransitionDeviation.Name = "modifiedTransitionDeviation"; this.modifiedTransitionDeviation.Size = new System.Drawing.Size(13, 13); this.modifiedTransitionDeviation.TabIndex = 7; this.modifiedTransitionDeviation.Text = "?"; // // label5 // label5.AutoSize = true; label5.Location = new System.Drawing.Point(6, 242); label5.Name = "label5"; label5.Size = new System.Drawing.Size(61, 13); label5.TabIndex = 6; label5.Text = "Transitions:"; // // modifiedColorDeviation // this.modifiedColorDeviation.AutoSize = true; this.modifiedColorDeviation.Location = new System.Drawing.Point(64, 229); this.modifiedColorDeviation.Name = "modifiedColorDeviation"; this.modifiedColorDeviation.Size = new System.Drawing.Size(13, 13); this.modifiedColorDeviation.TabIndex = 5; this.modifiedColorDeviation.Text = "?"; // // label7 // label7.AutoSize = true; label7.Location = new System.Drawing.Point(6, 229); label7.Name = "label7"; label7.Size = new System.Drawing.Size(39, 13); label7.TabIndex = 4; label7.Text = "Colors:"; // // label8 // label8.AutoSize = true; label8.Location = new System.Drawing.Point(6, 211); label8.Name = "label8"; label8.Size = new System.Drawing.Size(118, 13); label8.TabIndex = 3; label8.Text = "Mean square deviation:"; // // modifiedReconstructedPictureBox // this.modifiedReconstructedPictureBox.BackColor = System.Drawing.SystemColors.ControlLight; this.modifiedReconstructedPictureBox.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; this.modifiedReconstructedPictureBox.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.modifiedReconstructedPictureBox.Image = global::RecoveryModification.Properties.Resources.Loading; this.modifiedReconstructedPictureBox.Location = new System.Drawing.Point(6, 19); this.modifiedReconstructedPictureBox.Name = "modifiedReconstructedPictureBox"; this.modifiedReconstructedPictureBox.Size = new System.Drawing.Size(254, 185); this.modifiedReconstructedPictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom; this.modifiedReconstructedPictureBox.TabIndex = 2; this.modifiedReconstructedPictureBox.TabStop = false; this.modifiedReconstructedPictureBox.Click += new System.EventHandler(this.SaveImage); // // statusStrip // statusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.toolStripStatusLabel }); statusStrip.Location = new System.Drawing.Point(0, 519); statusStrip.Name = "statusStrip"; statusStrip.Size = new System.Drawing.Size(563, 22); statusStrip.TabIndex = 9; statusStrip.Text = "statusStrip1"; // // toolStripStatusLabel // this.toolStripStatusLabel.Name = "toolStripStatusLabel"; this.toolStripStatusLabel.Size = new System.Drawing.Size(118, 17); this.toolStripStatusLabel.Text = "toolStripStatusLabel1"; // // menuStrip1 // this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.newImageToolStripMenuItem }); this.menuStrip1.Location = new System.Drawing.Point(0, 0); this.menuStrip1.Name = "menuStrip1"; this.menuStrip1.Size = new System.Drawing.Size(563, 24); this.menuStrip1.TabIndex = 10; this.menuStrip1.Text = "menuStrip1"; // // newImageToolStripMenuItem // this.newImageToolStripMenuItem.Name = "newImageToolStripMenuItem"; this.newImageToolStripMenuItem.Size = new System.Drawing.Size(79, 20); this.newImageToolStripMenuItem.Text = "New Image"; this.newImageToolStripMenuItem.Click += new System.EventHandler(this.ChooseNewImage); // // MainForm // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(563, 541); this.Controls.Add(statusStrip); this.Controls.Add(this.menuStrip1); this.Controls.Add(groupBox4); this.Controls.Add(groupBox3); this.Controls.Add(groupBox2); this.Controls.Add(groupBox1); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle; this.MainMenuStrip = this.menuStrip1; this.MaximizeBox = false; this.Name = "MainForm"; this.Text = "Recovery modification"; this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.FormClose); groupBox1.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.sourcePictureBox)).EndInit(); groupBox2.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.bluredPictureBox)).EndInit(); groupBox3.ResumeLayout(false); groupBox3.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.reconstructedPictureBox)).EndInit(); groupBox4.ResumeLayout(false); groupBox4.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.modifiedReconstructedPictureBox)).EndInit(); statusStrip.ResumeLayout(false); statusStrip.PerformLayout(); this.menuStrip1.ResumeLayout(false); this.menuStrip1.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() { lstBoxOperaciones = new System.Windows.Forms.ListBox(); label1 = new System.Windows.Forms.Label(); picGUI = new System.Windows.Forms.PictureBox(); picRESTA = new System.Windows.Forms.PictureBox(); picMULT = new System.Windows.Forms.PictureBox(); picDIV = new System.Windows.Forms.PictureBox(); picSUMA = new System.Windows.Forms.PictureBox(); statusStrip1 = new System.Windows.Forms.StatusStrip(); toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel(); lblNODO = new System.Windows.Forms.ToolStripStatusLabel(); statuslabel2 = new System.Windows.Forms.ToolStripStatusLabel(); lblPUERTO = new System.Windows.Forms.ToolStripStatusLabel(); toolStripStatusLabel2 = new System.Windows.Forms.ToolStripStatusLabel(); lblCELLID = new System.Windows.Forms.ToolStripStatusLabel(); lblTextoAcuses = new System.Windows.Forms.Label(); lblAcuses = new System.Windows.Forms.Label(); ((System.ComponentModel.ISupportInitialize)(picGUI)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(picRESTA)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(picMULT)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(picDIV)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(picSUMA)).BeginInit(); statusStrip1.SuspendLayout(); SuspendLayout(); // // lstBoxOperaciones // lstBoxOperaciones.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F); lstBoxOperaciones.FormattingEnabled = true; lstBoxOperaciones.ItemHeight = 16; lstBoxOperaciones.Location = new System.Drawing.Point(1, 164); lstBoxOperaciones.Name = "lstBoxOperaciones"; lstBoxOperaciones.Size = new System.Drawing.Size(545, 180); lstBoxOperaciones.TabIndex = 0; // // label1 // label1.AutoSize = true; label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 15F); label1.Location = new System.Drawing.Point(12, 9); label1.Name = "label1"; label1.Size = new System.Drawing.Size(161, 25); label1.TabIndex = 1; label1.Text = "Servicios Activos"; // // picGUI // picGUI.BackColor = System.Drawing.Color.Transparent; picGUI.Image = global::CELULA.Properties.Resources.calc; picGUI.Location = new System.Drawing.Point(128, 31); picGUI.Name = "picGUI"; picGUI.Size = new System.Drawing.Size(97, 124); picGUI.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; picGUI.TabIndex = 11; picGUI.TabStop = false; picGUI.Visible = false; // // picRESTA // picRESTA.Image = global::CELULA.Properties.Resources.minus; picRESTA.Location = new System.Drawing.Point(73, 37); picRESTA.Name = "picRESTA"; picRESTA.Size = new System.Drawing.Size(50, 50); picRESTA.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; picRESTA.TabIndex = 10; picRESTA.TabStop = false; picRESTA.Visible = false; // // picMULT // picMULT.Image = global::CELULA.Properties.Resources.mult; picMULT.Location = new System.Drawing.Point(17, 93); picMULT.Name = "picMULT"; picMULT.Size = new System.Drawing.Size(50, 50); picMULT.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; picMULT.TabIndex = 9; picMULT.TabStop = false; picMULT.Visible = false; // // picDIV // picDIV.Image = global::CELULA.Properties.Resources.div3; picDIV.Location = new System.Drawing.Point(73, 93); picDIV.Name = "picDIV"; picDIV.Size = new System.Drawing.Size(50, 50); picDIV.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; picDIV.TabIndex = 8; picDIV.TabStop = false; picDIV.Visible = false; // // picSUMA // picSUMA.Image = global::CELULA.Properties.Resources.plus2; picSUMA.Location = new System.Drawing.Point(17, 38); picSUMA.Name = "picSUMA"; picSUMA.Size = new System.Drawing.Size(50, 50); picSUMA.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; picSUMA.TabIndex = 7; picSUMA.TabStop = false; picSUMA.Visible = false; // // statusStrip1 // statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { toolStripStatusLabel1, lblNODO, statuslabel2, lblPUERTO, toolStripStatusLabel2, lblCELLID}); statusStrip1.Location = new System.Drawing.Point(0, 344); statusStrip1.Name = "statusStrip1"; statusStrip1.Size = new System.Drawing.Size(557, 22); statusStrip1.TabIndex = 14; statusStrip1.Text = "statusStrip1"; // // toolStripStatusLabel1 // toolStripStatusLabel1.Name = "toolStripStatusLabel1"; toolStripStatusLabel1.Size = new System.Drawing.Size(76, 17); toolStripStatusLabel1.Text = "Nodo Padre: "; // // lblNODO // lblNODO.Name = "lblNODO"; lblNODO.Size = new System.Drawing.Size(0, 17); // // statuslabel2 // statuslabel2.Name = "statuslabel2"; statuslabel2.Size = new System.Drawing.Size(48, 17); statuslabel2.Text = "Puerto: "; // // lblPUERTO // lblPUERTO.Name = "lblPUERTO"; lblPUERTO.Size = new System.Drawing.Size(0, 17); // // toolStripStatusLabel2 // toolStripStatusLabel2.Name = "toolStripStatusLabel2"; toolStripStatusLabel2.Size = new System.Drawing.Size(57, 17); toolStripStatusLabel2.Text = "ID Célula:"; // // lblCELLID // lblCELLID.Name = "lblCELLID"; lblCELLID.Size = new System.Drawing.Size(0, 17); // // lblTextoAcuses // lblTextoAcuses.AutoSize = true; lblTextoAcuses.Font = new System.Drawing.Font("Microsoft Sans Serif", 25F); lblTextoAcuses.Location = new System.Drawing.Point(401, 27); lblTextoAcuses.Name = "lblTextoAcuses"; lblTextoAcuses.Size = new System.Drawing.Size(129, 39); lblTextoAcuses.TabIndex = 15; lblTextoAcuses.Text = "Acuses"; // // lblAcuses // lblAcuses.AutoSize = true; lblAcuses.Font = new System.Drawing.Font("Microsoft Sans Serif", 50F); lblAcuses.Location = new System.Drawing.Point(433, 66); lblAcuses.Name = "lblAcuses"; lblAcuses.Size = new System.Drawing.Size(70, 76); lblAcuses.TabIndex = 16; lblAcuses.Text = "0"; lblAcuses.Visible = false; // // FrmCelula // AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; ClientSize = new System.Drawing.Size(557, 366); ControlBox = false; Controls.Add(lblAcuses); Controls.Add(lblTextoAcuses); Controls.Add(statusStrip1); Controls.Add(picGUI); Controls.Add(picRESTA); Controls.Add(picMULT); Controls.Add(picDIV); Controls.Add(picSUMA); Controls.Add(label1); Controls.Add(lstBoxOperaciones); MaximizeBox = false; MinimizeBox = false; Name = "FrmCelula"; Text = "Celula"; Shown += new System.EventHandler(FrmCelula_Shown); ((System.ComponentModel.ISupportInitialize)(picGUI)).EndInit(); ((System.ComponentModel.ISupportInitialize)(picRESTA)).EndInit(); ((System.ComponentModel.ISupportInitialize)(picMULT)).EndInit(); ((System.ComponentModel.ISupportInitialize)(picDIV)).EndInit(); ((System.ComponentModel.ISupportInitialize)(picSUMA)).EndInit(); statusStrip1.ResumeLayout(false); statusStrip1.PerformLayout(); ResumeLayout(false); PerformLayout(); }
/// <summary> /// Tasarımcı desteği için gerekli metot - bu metodun ///içeriğini kod düzenleyici ile değiştirmeyin. /// </summary> private void InitializeComponent() { System.Windows.Forms.StatusStrip statusStrip1; System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1)); this.lblWsClientConnection = new System.Windows.Forms.ToolStripStatusLabel(); this.fileDownload = new System.Windows.Forms.ToolStripProgressBar(); this.pictureBox1 = new System.Windows.Forms.PictureBox(); this.menuStrip1 = new System.Windows.Forms.MenuStrip(); this.settingsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.runOnStartUp = new System.Windows.Forms.ToolStripMenuItem(); this.cmbOrderPrinters = new System.Windows.Forms.ComboBox(); this.lblOrderPrinter = new System.Windows.Forms.Label(); this.btnSavePrinters = new System.Windows.Forms.Button(); this.bgwListPrinters = new System.ComponentModel.BackgroundWorker(); this.btnReloadPrinters = new System.Windows.Forms.Button(); statusStrip1 = new System.Windows.Forms.StatusStrip(); statusStrip1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit(); this.menuStrip1.SuspendLayout(); this.SuspendLayout(); // // statusStrip1 // statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.lblWsClientConnection, this.fileDownload }); statusStrip1.Location = new System.Drawing.Point(0, 209); statusStrip1.Name = "statusStrip1"; statusStrip1.Size = new System.Drawing.Size(273, 22); statusStrip1.TabIndex = 1; statusStrip1.Text = "statusStrip1"; // // lblWsClientConnection // this.lblWsClientConnection.ForeColor = System.Drawing.Color.Black; this.lblWsClientConnection.Name = "lblWsClientConnection"; this.lblWsClientConnection.Size = new System.Drawing.Size(97, 17); this.lblWsClientConnection.Text = "Not Connected..."; // // fileDownload // this.fileDownload.Name = "fileDownload"; this.fileDownload.Size = new System.Drawing.Size(100, 16); this.fileDownload.Visible = false; // // pictureBox1 // this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image"))); this.pictureBox1.Location = new System.Drawing.Point(15, 27); this.pictureBox1.Name = "pictureBox1"; this.pictureBox1.Size = new System.Drawing.Size(246, 94); this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom; this.pictureBox1.TabIndex = 0; this.pictureBox1.TabStop = false; // // menuStrip1 // this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.settingsToolStripMenuItem }); this.menuStrip1.Location = new System.Drawing.Point(0, 0); this.menuStrip1.Name = "menuStrip1"; this.menuStrip1.Size = new System.Drawing.Size(273, 24); this.menuStrip1.TabIndex = 2; this.menuStrip1.Text = "menuStrip1"; // // settingsToolStripMenuItem // this.settingsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.runOnStartUp }); this.settingsToolStripMenuItem.Name = "settingsToolStripMenuItem"; this.settingsToolStripMenuItem.Size = new System.Drawing.Size(61, 20); this.settingsToolStripMenuItem.Text = "Settings"; // // runOnStartUp // this.runOnStartUp.Name = "runOnStartUp"; this.runOnStartUp.Size = new System.Drawing.Size(180, 22); this.runOnStartUp.Text = "Run on start"; this.runOnStartUp.Click += new System.EventHandler(this.runOnStartUp_Click); // // cmbOrderPrinters // this.cmbOrderPrinters.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbOrderPrinters.FormattingEnabled = true; this.cmbOrderPrinters.Location = new System.Drawing.Point(15, 140); this.cmbOrderPrinters.Name = "cmbOrderPrinters"; this.cmbOrderPrinters.Size = new System.Drawing.Size(246, 21); this.cmbOrderPrinters.TabIndex = 8; // // lblOrderPrinter // this.lblOrderPrinter.AutoSize = true; this.lblOrderPrinter.Location = new System.Drawing.Point(12, 124); this.lblOrderPrinter.Name = "lblOrderPrinter"; this.lblOrderPrinter.Size = new System.Drawing.Size(37, 13); this.lblOrderPrinter.TabIndex = 7; this.lblOrderPrinter.Text = "Printer"; // // btnSavePrinters // this.btnSavePrinters.Location = new System.Drawing.Point(15, 167); this.btnSavePrinters.Name = "btnSavePrinters"; this.btnSavePrinters.Size = new System.Drawing.Size(126, 34); this.btnSavePrinters.TabIndex = 9; this.btnSavePrinters.Text = "Save"; this.btnSavePrinters.UseVisualStyleBackColor = true; this.btnSavePrinters.Click += new System.EventHandler(this.btnSavePrinters_Click); // // bgwListPrinters // this.bgwListPrinters.DoWork += new System.ComponentModel.DoWorkEventHandler(this.bgwListPrinters_DoWork); // // btnReloadPrinters // this.btnReloadPrinters.Location = new System.Drawing.Point(147, 167); this.btnReloadPrinters.Name = "btnReloadPrinters"; this.btnReloadPrinters.Size = new System.Drawing.Size(114, 34); this.btnReloadPrinters.TabIndex = 10; this.btnReloadPrinters.Text = "Reload Printers"; this.btnReloadPrinters.UseVisualStyleBackColor = true; this.btnReloadPrinters.Click += new System.EventHandler(this.btnReloadPrinters_Click); // // Form1 // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(273, 231); this.Controls.Add(this.btnReloadPrinters); this.Controls.Add(this.btnSavePrinters); this.Controls.Add(this.cmbOrderPrinters); this.Controls.Add(this.lblOrderPrinter); this.Controls.Add(statusStrip1); this.Controls.Add(this.menuStrip1); this.Controls.Add(this.pictureBox1); this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.MainMenuStrip = this.menuStrip1; this.MaximumSize = new System.Drawing.Size(289, 270); this.MinimumSize = new System.Drawing.Size(289, 270); this.Name = "Form1"; this.Text = "Needza POS Printer"; this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Form1_FormClosing); this.Load += new System.EventHandler(this.Form1_Load); statusStrip1.ResumeLayout(false); statusStrip1.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit(); this.menuStrip1.ResumeLayout(false); this.menuStrip1.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.GroupBox groupBox1; System.Windows.Forms.Button btnSend; System.Windows.Forms.MenuStrip menu; System.Windows.Forms.ToolStripMenuItem fileToolStripMenuItem; System.Windows.Forms.ToolStripMenuItem menuItemClearScreen; System.Windows.Forms.ToolStripSeparator toolStripSeparator5; System.Windows.Forms.ToolStripMenuItem reloadSpecialControlFileToolStripMenuItem; System.Windows.Forms.ToolStripMenuItem menuItemReloadGemXml; System.Windows.Forms.ToolStripSeparator toolStripSeparator1; System.Windows.Forms.ToolStripMenuItem publishZServiceToolStripMenuItem; System.Windows.Forms.ToolStripMenuItem menuItemExit; System.Windows.Forms.ToolStripMenuItem sECSToolStripMenuItem; System.Windows.Forms.ToolStripMenuItem menuItemSECSMessageList; System.Windows.Forms.ToolStripMenuItem defineLinkToolStripMenuItem; System.Windows.Forms.ToolStripSeparator toolStripSeparator2; System.Windows.Forms.ToolStripSeparator toolStripSeparator3; System.Windows.Forms.ToolStripMenuItem menuItemEnableLinkTest; System.Windows.Forms.ToolStripSeparator toolStripSeparator4; System.Windows.Forms.ToolStripMenuItem configToolStripMenuItem; System.Windows.Forms.ToolStripMenuItem menuItemEapConfig; System.Windows.Forms.ToolStripMenuItem menuItemGemConfig; System.Windows.Forms.StatusStrip statusbar; System.Windows.Forms.SplitContainer splitContainer2; this.txtMsg = new System.Windows.Forms.TextBox(); this.menuItemGemEnable = new System.Windows.Forms.ToolStripMenuItem(); this.menuItemGemDisable = new System.Windows.Forms.ToolStripMenuItem(); this.menuItemSecsTrace = new System.Windows.Forms.ToolStripMenuItem(); this.eqpAddressStatusLabel = new System.Windows.Forms.ToolStripStatusLabel(); this.eapDriverLabel = new System.Windows.Forms.ToolStripStatusLabel(); this.gemStatusLabel = new System.Windows.Forms.ToolStripStatusLabel(); this.listBoxSecsMessages = new System.Windows.Forms.ListBox(); this.splitContainer1 = new System.Windows.Forms.SplitContainer(); this.rtxtScreen = new System.Windows.Forms.RichTextBox(); groupBox1 = new System.Windows.Forms.GroupBox(); btnSend = new System.Windows.Forms.Button(); menu = new System.Windows.Forms.MenuStrip(); fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); menuItemClearScreen = new System.Windows.Forms.ToolStripMenuItem(); toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator(); reloadSpecialControlFileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); menuItemReloadGemXml = new System.Windows.Forms.ToolStripMenuItem(); toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator(); publishZServiceToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); menuItemExit = new System.Windows.Forms.ToolStripMenuItem(); sECSToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); menuItemSECSMessageList = new System.Windows.Forms.ToolStripMenuItem(); defineLinkToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator(); toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator(); menuItemEnableLinkTest = new System.Windows.Forms.ToolStripMenuItem(); toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator(); configToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); menuItemEapConfig = new System.Windows.Forms.ToolStripMenuItem(); menuItemGemConfig = new System.Windows.Forms.ToolStripMenuItem(); statusbar = new System.Windows.Forms.StatusStrip(); splitContainer2 = new System.Windows.Forms.SplitContainer(); groupBox1.SuspendLayout(); menu.SuspendLayout(); statusbar.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(splitContainer2)).BeginInit(); splitContainer2.Panel1.SuspendLayout(); splitContainer2.Panel2.SuspendLayout(); splitContainer2.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit(); this.splitContainer1.Panel1.SuspendLayout(); this.splitContainer1.Panel2.SuspendLayout(); this.splitContainer1.SuspendLayout(); this.SuspendLayout(); // // groupBox1 // groupBox1.Controls.Add(this.txtMsg); groupBox1.Controls.Add(btnSend); groupBox1.Dock = System.Windows.Forms.DockStyle.Fill; groupBox1.FlatStyle = System.Windows.Forms.FlatStyle.Flat; groupBox1.Location = new System.Drawing.Point(0, 0); groupBox1.Name = "groupBox1"; groupBox1.Size = new System.Drawing.Size(96, 207); groupBox1.TabIndex = 5; groupBox1.TabStop = false; groupBox1.Text = "Message"; // // txtMsg // this.txtMsg.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtMsg.Dock = System.Windows.Forms.DockStyle.Fill; this.txtMsg.Location = new System.Drawing.Point(3, 18); this.txtMsg.Multiline = true; this.txtMsg.Name = "txtMsg"; this.txtMsg.ScrollBars = System.Windows.Forms.ScrollBars.Both; this.txtMsg.Size = new System.Drawing.Size(90, 162); this.txtMsg.TabIndex = 2; this.txtMsg.WordWrap = false; // // btnSend // btnSend.Dock = System.Windows.Forms.DockStyle.Bottom; btnSend.Location = new System.Drawing.Point(3, 180); btnSend.Name = "btnSend"; btnSend.Size = new System.Drawing.Size(90, 24); btnSend.TabIndex = 1; btnSend.Text = "Send"; btnSend.Click += new System.EventHandler(this.btnSend_Click); // // menu // menu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { fileToolStripMenuItem, sECSToolStripMenuItem, configToolStripMenuItem }); menu.Location = new System.Drawing.Point(0, 0); menu.Name = "menu"; menu.Size = new System.Drawing.Size(642, 24); menu.TabIndex = 0; menu.Text = "menuStrip1"; // // fileToolStripMenuItem // fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { menuItemClearScreen, toolStripSeparator5, reloadSpecialControlFileToolStripMenuItem, menuItemReloadGemXml, toolStripSeparator1, publishZServiceToolStripMenuItem, menuItemExit }); fileToolStripMenuItem.Name = "fileToolStripMenuItem"; fileToolStripMenuItem.Size = new System.Drawing.Size(38, 20); fileToolStripMenuItem.Text = "File"; // // menuItemClearScreen // menuItemClearScreen.Name = "menuItemClearScreen"; menuItemClearScreen.Size = new System.Drawing.Size(226, 22); menuItemClearScreen.Text = "Clear Screen"; menuItemClearScreen.Click += new System.EventHandler(this.menuItemClearScreen_Click); // // toolStripSeparator5 // toolStripSeparator5.Name = "toolStripSeparator5"; toolStripSeparator5.Size = new System.Drawing.Size(223, 6); // // reloadSpecialControlFileToolStripMenuItem // reloadSpecialControlFileToolStripMenuItem.Name = "reloadSpecialControlFileToolStripMenuItem"; reloadSpecialControlFileToolStripMenuItem.Size = new System.Drawing.Size(226, 22); reloadSpecialControlFileToolStripMenuItem.Text = "Reload Special Control File"; reloadSpecialControlFileToolStripMenuItem.Click += new System.EventHandler(this.reloadSpecialControlFileToolStripMenuItem_Click); // // menuItemReloadGemXml // menuItemReloadGemXml.Name = "menuItemReloadGemXml"; menuItemReloadGemXml.Size = new System.Drawing.Size(226, 22); menuItemReloadGemXml.Text = "Reload Gem.xml"; menuItemReloadGemXml.Click += new System.EventHandler(this.menuItemReloadGemXml_Click); // // toolStripSeparator1 // toolStripSeparator1.Name = "toolStripSeparator1"; toolStripSeparator1.Size = new System.Drawing.Size(223, 6); // // publishZServiceToolStripMenuItem // publishZServiceToolStripMenuItem.Name = "publishZServiceToolStripMenuItem"; publishZServiceToolStripMenuItem.Size = new System.Drawing.Size(226, 22); publishZServiceToolStripMenuItem.Text = "Publish Z Service"; publishZServiceToolStripMenuItem.Click += new System.EventHandler(this.publishZServiceToolStripMenuItem_Click); // // menuItemExit // menuItemExit.Name = "menuItemExit"; menuItemExit.Size = new System.Drawing.Size(226, 22); menuItemExit.Text = "Exit"; menuItemExit.Click += new System.EventHandler(this.menuItemExit_Click); // // sECSToolStripMenuItem // sECSToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { menuItemSECSMessageList, defineLinkToolStripMenuItem, toolStripSeparator2, this.menuItemGemEnable, this.menuItemGemDisable, toolStripSeparator3, menuItemEnableLinkTest, toolStripSeparator4, this.menuItemSecsTrace }); sECSToolStripMenuItem.Name = "sECSToolStripMenuItem"; sECSToolStripMenuItem.Size = new System.Drawing.Size(48, 20); sECSToolStripMenuItem.Text = "SECS"; // // menuItemSECSMessageList // menuItemSECSMessageList.CheckOnClick = true; menuItemSECSMessageList.Name = "menuItemSECSMessageList"; menuItemSECSMessageList.Size = new System.Drawing.Size(178, 22); menuItemSECSMessageList.Text = "SECS Message List"; menuItemSECSMessageList.Click += new System.EventHandler(this.menuItemSecsMessagestList_Click); // // defineLinkToolStripMenuItem // defineLinkToolStripMenuItem.Name = "defineLinkToolStripMenuItem"; defineLinkToolStripMenuItem.Size = new System.Drawing.Size(178, 22); defineLinkToolStripMenuItem.Text = "Define Link"; defineLinkToolStripMenuItem.Click += new System.EventHandler(this.defineLinkToolStripMenuItem_Click); // // toolStripSeparator2 // toolStripSeparator2.Name = "toolStripSeparator2"; toolStripSeparator2.Size = new System.Drawing.Size(175, 6); // // menuItemGemEnable // this.menuItemGemEnable.Name = "menuItemGemEnable"; this.menuItemGemEnable.Size = new System.Drawing.Size(178, 22); this.menuItemGemEnable.Text = "Enable"; this.menuItemGemEnable.Click += new System.EventHandler(this.menuItemGemEnable_Click); // // menuItemGemDisable // this.menuItemGemDisable.Name = "menuItemGemDisable"; this.menuItemGemDisable.Size = new System.Drawing.Size(178, 22); this.menuItemGemDisable.Text = "Disable"; this.menuItemGemDisable.Click += new System.EventHandler(this.menuItemGemDisable_Click); // // toolStripSeparator3 // toolStripSeparator3.Name = "toolStripSeparator3"; toolStripSeparator3.Size = new System.Drawing.Size(175, 6); // // menuItemEnableLinkTest // menuItemEnableLinkTest.CheckOnClick = true; menuItemEnableLinkTest.Name = "menuItemEnableLinkTest"; menuItemEnableLinkTest.Size = new System.Drawing.Size(178, 22); menuItemEnableLinkTest.Text = "Link Test"; menuItemEnableLinkTest.Click += new System.EventHandler(this.enableTraceLogToolStripMenuItem_Click); // // toolStripSeparator4 // toolStripSeparator4.Name = "toolStripSeparator4"; toolStripSeparator4.Size = new System.Drawing.Size(175, 6); // // menuItemSecsTrace // this.menuItemSecsTrace.CheckOnClick = true; this.menuItemSecsTrace.Name = "menuItemSecsTrace"; this.menuItemSecsTrace.Size = new System.Drawing.Size(178, 22); this.menuItemSecsTrace.Text = "Trace On Screen"; this.menuItemSecsTrace.Click += new System.EventHandler(this.menuItemSecsTrace_Click); // // configToolStripMenuItem // configToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { menuItemEapConfig, menuItemGemConfig }); configToolStripMenuItem.Name = "configToolStripMenuItem"; configToolStripMenuItem.Size = new System.Drawing.Size(57, 20); configToolStripMenuItem.Text = "Config"; // // menuItemEapConfig // menuItemEapConfig.Name = "menuItemEapConfig"; menuItemEapConfig.Size = new System.Drawing.Size(102, 22); menuItemEapConfig.Text = "EAP"; menuItemEapConfig.Click += new System.EventHandler(this.menuItemEapConfig_Click); // // menuItemGemConfig // menuItemGemConfig.Name = "menuItemGemConfig"; menuItemGemConfig.Size = new System.Drawing.Size(102, 22); menuItemGemConfig.Text = "GEM"; menuItemGemConfig.Click += new System.EventHandler(this.menuItemGemConfig_Click); // // statusbar // statusbar.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.eqpAddressStatusLabel, this.eapDriverLabel, this.gemStatusLabel }); statusbar.Location = new System.Drawing.Point(0, 441); statusbar.Name = "statusbar"; statusbar.Size = new System.Drawing.Size(642, 22); statusbar.TabIndex = 1; // // eqpAddressStatusLabel // this.eqpAddressStatusLabel.BorderStyle = System.Windows.Forms.Border3DStyle.Bump; this.eqpAddressStatusLabel.Name = "eqpAddressStatusLabel"; this.eqpAddressStatusLabel.Size = new System.Drawing.Size(47, 17); this.eqpAddressStatusLabel.Text = "EQP IP:"; // // eapDriverLabel // this.eapDriverLabel.BorderSides = ((System.Windows.Forms.ToolStripStatusLabelBorderSides)(((System.Windows.Forms.ToolStripStatusLabelBorderSides.Left | System.Windows.Forms.ToolStripStatusLabelBorderSides.Top) | System.Windows.Forms.ToolStripStatusLabelBorderSides.Right))); this.eapDriverLabel.BorderStyle = System.Windows.Forms.Border3DStyle.SunkenOuter; this.eapDriverLabel.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; this.eapDriverLabel.Name = "eapDriverLabel"; this.eapDriverLabel.Size = new System.Drawing.Size(476, 17); this.eapDriverLabel.Spring = true; this.eapDriverLabel.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // gemStatusLabel // this.gemStatusLabel.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; this.gemStatusLabel.Name = "gemStatusLabel"; this.gemStatusLabel.Size = new System.Drawing.Size(104, 17); this.gemStatusLabel.Text = "SECS GEM Status"; // // splitContainer2 // splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill; splitContainer2.Location = new System.Drawing.Point(0, 0); splitContainer2.Name = "splitContainer2"; // // splitContainer2.Panel1 // splitContainer2.Panel1.Controls.Add(this.listBoxSecsMessages); // // splitContainer2.Panel2 // splitContainer2.Panel2.Controls.Add(groupBox1); splitContainer2.Size = new System.Drawing.Size(150, 207); splitContainer2.TabIndex = 0; splitContainer2.TabStop = false; // // listBoxSecsMessages // this.listBoxSecsMessages.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.listBoxSecsMessages.Dock = System.Windows.Forms.DockStyle.Fill; this.listBoxSecsMessages.ItemHeight = 12; this.listBoxSecsMessages.Location = new System.Drawing.Point(0, 0); this.listBoxSecsMessages.Name = "listBoxSecsMessages"; this.listBoxSecsMessages.Size = new System.Drawing.Size(50, 207); this.listBoxSecsMessages.TabIndex = 1; this.listBoxSecsMessages.SelectedIndexChanged += new System.EventHandler(this.listBoxSecsMessageList_SelectedIndexChanged); // // splitContainer1 // this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill; this.splitContainer1.IsSplitterFixed = true; this.splitContainer1.Location = new System.Drawing.Point(0, 24); this.splitContainer1.Name = "splitContainer1"; this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal; // // splitContainer1.Panel1 // this.splitContainer1.Panel1.Controls.Add(splitContainer2); this.splitContainer1.Panel1Collapsed = true; // // splitContainer1.Panel2 // this.splitContainer1.Panel2.Controls.Add(this.rtxtScreen); this.splitContainer1.Size = new System.Drawing.Size(642, 417); this.splitContainer1.SplitterDistance = 207; this.splitContainer1.TabIndex = 10; // // rtxtScreen // this.rtxtScreen.BackColor = System.Drawing.Color.White; this.rtxtScreen.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.rtxtScreen.DetectUrls = false; this.rtxtScreen.Dock = System.Windows.Forms.DockStyle.Fill; this.rtxtScreen.Font = new System.Drawing.Font("Courier New", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.rtxtScreen.Location = new System.Drawing.Point(0, 0); this.rtxtScreen.MaxLength = 8192; this.rtxtScreen.Name = "rtxtScreen"; this.rtxtScreen.ReadOnly = true; this.rtxtScreen.ShortcutsEnabled = false; this.rtxtScreen.Size = new System.Drawing.Size(642, 417); this.rtxtScreen.TabIndex = 8; this.rtxtScreen.TabStop = false; this.rtxtScreen.Text = ""; this.rtxtScreen.WordWrap = false; // // HostMainForm // this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None; this.ClientSize = new System.Drawing.Size(642, 463); this.Controls.Add(this.splitContainer1); this.Controls.Add(statusbar); this.Controls.Add(menu); this.MainMenuStrip = menu; this.Name = "HostMainForm"; this.Text = "MainForm"; this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainForm_FormClosing); groupBox1.ResumeLayout(false); groupBox1.PerformLayout(); menu.ResumeLayout(false); menu.PerformLayout(); statusbar.ResumeLayout(false); statusbar.PerformLayout(); splitContainer2.Panel1.ResumeLayout(false); splitContainer2.Panel2.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(splitContainer2)).EndInit(); splitContainer2.ResumeLayout(false); this.splitContainer1.Panel1.ResumeLayout(false); this.splitContainer1.Panel2.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit(); this.splitContainer1.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() { System.Windows.Forms.ToolStrip m_toolstrip; System.Windows.Forms.ToolStripButton m_tsbAddActions; System.Windows.Forms.ToolStripButton m_tsbClear; System.Windows.Forms.StatusStrip m_statusStrip; System.Windows.Forms.SplitContainer m_splitter; System.Windows.Forms.ColumnHeader m_colClientID; System.Windows.Forms.ColumnHeader m_colStatus; System.Windows.Forms.ColumnHeader m_colAction; System.Windows.Forms.ColumnHeader m_colDate; System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(RunOnceWindow)); this.m_tsbDelete = new System.Windows.Forms.ToolStripButton(); this.m_sslblActionCount = new System.Windows.Forms.ToolStripStatusLabel(); this.m_lvClients = new System.Windows.Forms.ListView(); this.m_lvActions = new System.Windows.Forms.ListView(); m_toolstrip = new System.Windows.Forms.ToolStrip(); m_tsbAddActions = new System.Windows.Forms.ToolStripButton(); m_tsbClear = new System.Windows.Forms.ToolStripButton(); m_statusStrip = new System.Windows.Forms.StatusStrip(); m_splitter = new System.Windows.Forms.SplitContainer(); m_colClientID = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); m_colStatus = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); m_colAction = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); m_colDate = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); m_toolstrip.SuspendLayout(); m_statusStrip.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(m_splitter)).BeginInit(); m_splitter.Panel1.SuspendLayout(); m_splitter.Panel2.SuspendLayout(); m_splitter.SuspendLayout(); this.SuspendLayout(); // // m_toolstrip // m_toolstrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { m_tsbAddActions, this.m_tsbDelete, m_tsbClear }); m_toolstrip.Location = new System.Drawing.Point(0, 0); m_toolstrip.Name = "m_toolstrip"; m_toolstrip.Size = new System.Drawing.Size(569, 25); m_toolstrip.TabIndex = 0; // // m_tsbAddActions // m_tsbAddActions.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; m_tsbAddActions.Image = global::DGD.HubGovernor.Properties.Resources.add_actions_16; m_tsbAddActions.ImageTransparentColor = System.Drawing.Color.Magenta; m_tsbAddActions.Name = "m_tsbAddActions"; m_tsbAddActions.Size = new System.Drawing.Size(23, 22); m_tsbAddActions.Text = "Ajouter des actions.."; m_tsbAddActions.Click += new System.EventHandler(this.AddActions_Click); // // m_tsbDelete // this.m_tsbDelete.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.m_tsbDelete.Enabled = false; this.m_tsbDelete.Image = global::DGD.HubGovernor.Properties.Resources.delete_16; this.m_tsbDelete.ImageTransparentColor = System.Drawing.Color.Magenta; this.m_tsbDelete.Name = "m_tsbDelete"; this.m_tsbDelete.Size = new System.Drawing.Size(23, 22); this.m_tsbDelete.Text = "Supprimer l\'action sélectionnée"; // // m_tsbClear // m_tsbClear.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; m_tsbClear.Image = global::DGD.HubGovernor.Properties.Resources.clear_16; m_tsbClear.ImageTransparentColor = System.Drawing.Color.Magenta; m_tsbClear.Name = "m_tsbClear"; m_tsbClear.Size = new System.Drawing.Size(23, 22); m_tsbClear.Text = "Effacer toutes les actions en attente du client"; // // m_statusStrip // m_statusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.m_sslblActionCount }); m_statusStrip.Location = new System.Drawing.Point(0, 367); m_statusStrip.Name = "m_statusStrip"; m_statusStrip.Size = new System.Drawing.Size(569, 22); m_statusStrip.TabIndex = 1; // // m_sslblActionCount // this.m_sslblActionCount.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; this.m_sslblActionCount.Name = "m_sslblActionCount"; this.m_sslblActionCount.Size = new System.Drawing.Size(554, 17); this.m_sslblActionCount.Spring = true; this.m_sslblActionCount.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // m_splitter // m_splitter.Dock = System.Windows.Forms.DockStyle.Fill; m_splitter.FixedPanel = System.Windows.Forms.FixedPanel.Panel1; m_splitter.Location = new System.Drawing.Point(0, 25); m_splitter.Name = "m_splitter"; // // m_splitter.Panel1 // m_splitter.Panel1.Controls.Add(this.m_lvClients); // // m_splitter.Panel2 // m_splitter.Panel2.Controls.Add(this.m_lvActions); m_splitter.Size = new System.Drawing.Size(569, 342); m_splitter.SplitterDistance = 189; m_splitter.TabIndex = 2; // // m_lvClients // this.m_lvClients.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { m_colClientID, m_colStatus }); this.m_lvClients.Dock = System.Windows.Forms.DockStyle.Fill; this.m_lvClients.FullRowSelect = true; this.m_lvClients.Location = new System.Drawing.Point(0, 0); this.m_lvClients.Name = "m_lvClients"; this.m_lvClients.Size = new System.Drawing.Size(189, 342); this.m_lvClients.TabIndex = 0; this.m_lvClients.UseCompatibleStateImageBehavior = false; this.m_lvClients.View = System.Windows.Forms.View.Details; // // m_colClientID // m_colClientID.Text = "Client"; m_colClientID.Width = 85; // // m_colStatus // m_colStatus.Text = "Statut"; // // m_lvActions // this.m_lvActions.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { m_colAction, m_colDate }); this.m_lvActions.Dock = System.Windows.Forms.DockStyle.Fill; this.m_lvActions.FullRowSelect = true; this.m_lvActions.Location = new System.Drawing.Point(0, 0); this.m_lvActions.Name = "m_lvActions"; this.m_lvActions.Size = new System.Drawing.Size(376, 342); this.m_lvActions.TabIndex = 0; this.m_lvActions.UseCompatibleStateImageBehavior = false; this.m_lvActions.View = System.Windows.Forms.View.Details; // // m_colAction // m_colAction.Text = "Action"; m_colAction.Width = 119; // // m_colDate // m_colDate.Text = "Ajoutée le"; m_colDate.Width = 213; // // RunOnceWindow // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(569, 389); this.Controls.Add(m_splitter); this.Controls.Add(m_statusStrip); this.Controls.Add(m_toolstrip); this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.MaximizeBox = false; this.Name = "RunOnceWindow"; this.Text = "Gestionnaire RunOnce"; m_toolstrip.ResumeLayout(false); m_toolstrip.PerformLayout(); m_statusStrip.ResumeLayout(false); m_statusStrip.PerformLayout(); m_splitter.Panel1.ResumeLayout(false); m_splitter.Panel2.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(m_splitter)).EndInit(); m_splitter.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.StatusStrip statusStrip1; System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle(); System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle(); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DeleteUnusedBranchesForm)); this.pnlBranchesArea = new System.Windows.Forms.Panel(); this.imgLoading = new System.Windows.Forms.PictureBox(); this.BranchesGrid = new System.Windows.Forms.DataGridView(); this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel(); this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel(); this.buttonSettings = new System.Windows.Forms.Button(); this.Cancel = new System.Windows.Forms.Button(); this.Delete = new System.Windows.Forms.Button(); this.instructionLabel = new System.Windows.Forms.Label(); this.tableLayoutPanel3 = new System.Windows.Forms.TableLayoutPanel(); this.regexFilter = new System.Windows.Forms.TextBox(); this.IncludeRemoteBranches = new System.Windows.Forms.CheckBox(); this.remote = new System.Windows.Forms.TextBox(); this.useRegexFilter = new System.Windows.Forms.CheckBox(); this.Refresh = new System.Windows.Forms.Button(); this.label1 = new System.Windows.Forms.Label(); this.label2 = new System.Windows.Forms.Label(); this.mergedIntoBranch = new System.Windows.Forms.TextBox(); this.olderThanDays = new System.Windows.Forms.NumericUpDown(); this.includeUnmergedBranches = new System.Windows.Forms.CheckBox(); this.lblStatus = new System.Windows.Forms.ToolStripStatusLabel(); this.branchBindingSource = new System.Windows.Forms.BindingSource(this.components); this.deleteDataGridViewCheckBoxColumn = new System.Windows.Forms.DataGridViewCheckBoxColumn(); this.nameDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.dateDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.Author = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.Message = new System.Windows.Forms.DataGridViewTextBoxColumn(); statusStrip1 = new System.Windows.Forms.StatusStrip(); this.pnlBranchesArea.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.imgLoading)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.BranchesGrid)).BeginInit(); this.tableLayoutPanel1.SuspendLayout(); this.tableLayoutPanel2.SuspendLayout(); this.tableLayoutPanel3.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.olderThanDays)).BeginInit(); statusStrip1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.branchBindingSource)).BeginInit(); this.SuspendLayout(); // // statusStrip1 // statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.lblStatus}); statusStrip1.Location = new System.Drawing.Point(0, 399); statusStrip1.Name = "statusStrip1"; statusStrip1.Size = new System.Drawing.Size(760, 22); statusStrip1.TabIndex = 2; statusStrip1.Text = "statusStrip1"; // // lblStatus // this.lblStatus.Name = "lblStatus"; this.lblStatus.Size = new System.Drawing.Size(0, 17); // // pnlBranchesArea // this.pnlBranchesArea.Controls.Add(this.imgLoading); this.pnlBranchesArea.Controls.Add(this.BranchesGrid); this.pnlBranchesArea.Dock = System.Windows.Forms.DockStyle.Fill; this.pnlBranchesArea.Location = new System.Drawing.Point(3, 218); this.pnlBranchesArea.Name = "pnlBranchesArea"; this.pnlBranchesArea.Size = new System.Drawing.Size(754, 141); this.pnlBranchesArea.TabIndex = 2; // // imgLoading // this.imgLoading.BackColor = System.Drawing.SystemColors.AppWorkspace; this.imgLoading.Dock = System.Windows.Forms.DockStyle.Fill; this.imgLoading.Location = new System.Drawing.Point(0, 0); this.imgLoading.Name = "imgLoading"; this.imgLoading.Size = new System.Drawing.Size(754, 141); this.imgLoading.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage; this.imgLoading.TabIndex = 1; this.imgLoading.TabStop = false; this.imgLoading.Visible = false; // // BranchesGrid // this.BranchesGrid.AllowUserToAddRows = false; this.BranchesGrid.AllowUserToDeleteRows = false; this.BranchesGrid.AutoGenerateColumns = false; this.BranchesGrid.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; this.BranchesGrid.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { this.deleteDataGridViewCheckBoxColumn, this.nameDataGridViewTextBoxColumn, this.dateDataGridViewTextBoxColumn, this.Author, this.Message}); this.BranchesGrid.DataSource = this.branchBindingSource; this.BranchesGrid.Dock = System.Windows.Forms.DockStyle.Fill; this.BranchesGrid.Location = new System.Drawing.Point(0, 0); this.BranchesGrid.Name = "BranchesGrid"; this.BranchesGrid.RowHeadersVisible = false; this.BranchesGrid.Size = new System.Drawing.Size(754, 141); this.BranchesGrid.TabIndex = 0; this.BranchesGrid.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.BranchesGrid_CellContentClick); // // deleteDataGridViewCheckBoxColumn // this.deleteDataGridViewCheckBoxColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None; this.deleteDataGridViewCheckBoxColumn.DataPropertyName = "Delete"; this.deleteDataGridViewCheckBoxColumn.FillWeight = 20F; this.deleteDataGridViewCheckBoxColumn.HeaderText = "Delete"; this.deleteDataGridViewCheckBoxColumn.Name = "deleteDataGridViewCheckBoxColumn"; this.deleteDataGridViewCheckBoxColumn.Width = 50; // // nameDataGridViewTextBoxColumn // this.nameDataGridViewTextBoxColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells; this.nameDataGridViewTextBoxColumn.DataPropertyName = "Name"; dataGridViewCellStyle1.Padding = new System.Windows.Forms.Padding(5, 0, 5, 0); this.nameDataGridViewTextBoxColumn.DefaultCellStyle = dataGridViewCellStyle1; this.nameDataGridViewTextBoxColumn.FillWeight = 2F; this.nameDataGridViewTextBoxColumn.HeaderText = "Name"; this.nameDataGridViewTextBoxColumn.MinimumWidth = 100; this.nameDataGridViewTextBoxColumn.Name = "nameDataGridViewTextBoxColumn"; this.nameDataGridViewTextBoxColumn.ReadOnly = true; // // dateDataGridViewTextBoxColumn // this.dateDataGridViewTextBoxColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None; this.dateDataGridViewTextBoxColumn.DataPropertyName = "Date"; this.dateDataGridViewTextBoxColumn.FillWeight = 300F; this.dateDataGridViewTextBoxColumn.HeaderText = "Last activity"; this.dateDataGridViewTextBoxColumn.Name = "dateDataGridViewTextBoxColumn"; this.dateDataGridViewTextBoxColumn.ReadOnly = true; this.dateDataGridViewTextBoxColumn.Width = 175; // // Author // this.Author.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells; this.Author.DataPropertyName = "Author"; dataGridViewCellStyle2.Padding = new System.Windows.Forms.Padding(5, 0, 5, 0); this.Author.DefaultCellStyle = dataGridViewCellStyle2; this.Author.FillWeight = 2F; this.Author.HeaderText = "Last author"; this.Author.Name = "Author"; this.Author.ReadOnly = true; this.Author.Width = 85; // // Message // this.Message.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill; this.Message.DataPropertyName = "Message"; this.Message.HeaderText = "Last message"; this.Message.Name = "Message"; this.Message.ReadOnly = true; this.Message.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; // // branchBindingSource // this.branchBindingSource.DataSource = typeof(DeleteUnusedBranches.Branch); // // tableLayoutPanel1 // this.tableLayoutPanel1.ColumnCount = 1; this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); this.tableLayoutPanel1.Controls.Add(this.pnlBranchesArea, 0, 2); this.tableLayoutPanel1.Controls.Add(this.tableLayoutPanel2, 0, 3); this.tableLayoutPanel1.Controls.Add(this.instructionLabel, 0, 0); this.tableLayoutPanel1.Controls.Add(this.tableLayoutPanel3, 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 = 4; 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, 190F)); 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, 37F)); this.tableLayoutPanel1.Size = new System.Drawing.Size(760, 399); this.tableLayoutPanel1.TabIndex = 1; // // tableLayoutPanel2 // this.tableLayoutPanel2.ColumnCount = 4; this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 20F)); this.tableLayoutPanel2.Controls.Add(this.buttonSettings, 0, 0); this.tableLayoutPanel2.Controls.Add(this.Cancel, 3, 0); this.tableLayoutPanel2.Controls.Add(this.Delete, 2, 0); this.tableLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Fill; this.tableLayoutPanel2.Location = new System.Drawing.Point(3, 365); 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(754, 31); this.tableLayoutPanel2.TabIndex = 2; // // buttonSettings // this.buttonSettings.Location = new System.Drawing.Point(3, 3); this.buttonSettings.Name = "buttonSettings"; this.buttonSettings.Size = new System.Drawing.Size(75, 25); this.buttonSettings.TabIndex = 2; this.buttonSettings.Text = "Settings"; this.buttonSettings.UseVisualStyleBackColor = true; this.buttonSettings.Click += new System.EventHandler(this.buttonSettings_Click); // // Cancel // this.Cancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.Cancel.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.Cancel.Location = new System.Drawing.Point(676, 3); this.Cancel.Name = "Cancel"; this.Cancel.Size = new System.Drawing.Size(75, 25); this.Cancel.TabIndex = 0; this.Cancel.Text = "Close"; this.Cancel.UseVisualStyleBackColor = true; // // Delete // this.Delete.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.Delete.Location = new System.Drawing.Point(595, 3); this.Delete.Name = "Delete"; this.Delete.Size = new System.Drawing.Size(75, 25); this.Delete.TabIndex = 1; this.Delete.Text = "Delete"; this.Delete.UseVisualStyleBackColor = true; this.Delete.Click += new System.EventHandler(this.Delete_Click); // // instructionLabel // this.instructionLabel.Anchor = System.Windows.Forms.AnchorStyles.Left; this.instructionLabel.AutoSize = true; this.instructionLabel.Location = new System.Drawing.Point(3, 6); this.instructionLabel.Name = "instructionLabel"; this.instructionLabel.Size = new System.Drawing.Size(19, 13); this.instructionLabel.TabIndex = 1; this.instructionLabel.Text = "...."; // // 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.regexFilter, 1, 3); this.tableLayoutPanel3.Controls.Add(this.IncludeRemoteBranches, 0, 2); this.tableLayoutPanel3.Controls.Add(this.remote, 1, 2); this.tableLayoutPanel3.Controls.Add(this.useRegexFilter, 0, 3); this.tableLayoutPanel3.Controls.Add(this.Refresh, 1, 5); this.tableLayoutPanel3.Controls.Add(this.label1, 0, 0); this.tableLayoutPanel3.Controls.Add(this.label2, 0, 1); this.tableLayoutPanel3.Controls.Add(this.mergedIntoBranch, 1, 1); this.tableLayoutPanel3.Controls.Add(this.olderThanDays, 1, 0); this.tableLayoutPanel3.Controls.Add(this.includeUnmergedBranches, 0, 4); this.tableLayoutPanel3.Dock = System.Windows.Forms.DockStyle.Fill; this.tableLayoutPanel3.Location = new System.Drawing.Point(3, 28); this.tableLayoutPanel3.Name = "tableLayoutPanel3"; this.tableLayoutPanel3.RowCount = 6; this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F)); this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F)); this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F)); this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F)); this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F)); this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F)); this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F)); this.tableLayoutPanel3.Size = new System.Drawing.Size(754, 184); this.tableLayoutPanel3.TabIndex = 3; // // regexFilter // this.regexFilter.Location = new System.Drawing.Point(380, 93); this.regexFilter.Name = "regexFilter"; this.regexFilter.Size = new System.Drawing.Size(218, 20); this.regexFilter.TabIndex = 6; this.regexFilter.Text = "/(feature|develop)/"; this.regexFilter.TextChanged += new System.EventHandler(this.regexFilter_TextChanged); // // IncludeRemoteBranches // this.IncludeRemoteBranches.AutoSize = true; this.IncludeRemoteBranches.Location = new System.Drawing.Point(3, 63); this.IncludeRemoteBranches.Name = "IncludeRemoteBranches"; this.IncludeRemoteBranches.Size = new System.Drawing.Size(162, 17); this.IncludeRemoteBranches.TabIndex = 3; this.IncludeRemoteBranches.Text = "Delete remote branches from"; this.IncludeRemoteBranches.UseVisualStyleBackColor = true; this.IncludeRemoteBranches.CheckedChanged += new System.EventHandler(this.IncludeRemoteBranches_CheckedChanged); // // remote // this.remote.Location = new System.Drawing.Point(380, 63); this.remote.Name = "remote"; this.remote.Size = new System.Drawing.Size(218, 20); this.remote.TabIndex = 4; this.remote.Text = "origin"; this.remote.TextChanged += new System.EventHandler(this.remote_TextChanged); // // useRegexFilter // this.useRegexFilter.AutoSize = true; this.useRegexFilter.Location = new System.Drawing.Point(3, 93); this.useRegexFilter.Name = "useRegexFilter"; this.useRegexFilter.Size = new System.Drawing.Size(155, 17); this.useRegexFilter.TabIndex = 5; this.useRegexFilter.Text = "Use regex to filter branches"; this.useRegexFilter.UseVisualStyleBackColor = true; this.useRegexFilter.CheckedChanged += new System.EventHandler(this.useRegexFilter_CheckedChanged); // // Refresh // this.Refresh.Location = new System.Drawing.Point(380, 153); this.Refresh.Name = "Refresh"; this.Refresh.Size = new System.Drawing.Size(124, 23); this.Refresh.TabIndex = 7; this.Refresh.Text = "Search branches"; this.Refresh.UseVisualStyleBackColor = true; this.Refresh.Click += new System.EventHandler(this.Refresh_Click); // // label1 // this.label1.AutoSize = true; this.label1.Location = new System.Drawing.Point(3, 5); this.label1.Margin = new System.Windows.Forms.Padding(3, 5, 3, 0); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(168, 13); this.label1.TabIndex = 9; this.label1.Text = "Delete branches older than x days"; // // label2 // this.label2.AutoSize = true; this.label2.Location = new System.Drawing.Point(3, 35); this.label2.Margin = new System.Windows.Forms.Padding(3, 5, 3, 0); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(200, 13); this.label2.TabIndex = 10; this.label2.Text = "Delete branches fully merged into branch"; // // mergedIntoBranch // this.mergedIntoBranch.Location = new System.Drawing.Point(380, 33); this.mergedIntoBranch.Name = "mergedIntoBranch"; this.mergedIntoBranch.Size = new System.Drawing.Size(218, 20); this.mergedIntoBranch.TabIndex = 12; this.mergedIntoBranch.TextChanged += new System.EventHandler(this.mergedIntoBranch_TextChanged); // // olderThanDays // this.olderThanDays.Location = new System.Drawing.Point(380, 3); this.olderThanDays.Maximum = new decimal(new int[] { 100000, 0, 0, 0}); this.olderThanDays.Name = "olderThanDays"; this.olderThanDays.Size = new System.Drawing.Size(120, 20); this.olderThanDays.TabIndex = 13; this.olderThanDays.ValueChanged += new System.EventHandler(this.olderThanDays_ValueChanged); // // includeUnmergedBranches // this.includeUnmergedBranches.AutoSize = true; this.includeUnmergedBranches.Location = new System.Drawing.Point(3, 123); this.includeUnmergedBranches.Name = "includeUnmergedBranches"; this.includeUnmergedBranches.Size = new System.Drawing.Size(158, 17); this.includeUnmergedBranches.TabIndex = 14; this.includeUnmergedBranches.Text = "Include unmerged branches"; this.includeUnmergedBranches.UseVisualStyleBackColor = true; this.includeUnmergedBranches.CheckedChanged += new System.EventHandler(this.includeUnmergedBranches_CheckedChanged); // // DeleteUnusedBranchesForm // this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi; this.CancelButton = this.Cancel; this.ClientSize = new System.Drawing.Size(760, 421); this.Controls.Add(this.tableLayoutPanel1); this.Controls.Add(statusStrip1); this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.MinimumSize = new System.Drawing.Size(600, 400); this.Name = "DeleteUnusedBranchesForm"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; this.Text = "Delete obsolete branches"; this.pnlBranchesArea.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.imgLoading)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.BranchesGrid)).EndInit(); this.tableLayoutPanel1.ResumeLayout(false); this.tableLayoutPanel1.PerformLayout(); this.tableLayoutPanel2.ResumeLayout(false); this.tableLayoutPanel3.ResumeLayout(false); this.tableLayoutPanel3.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.olderThanDays)).EndInit(); statusStrip1.ResumeLayout(false); statusStrip1.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.branchBindingSource)).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.StatusStrip statusStrip1; System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Main)); this.toolStripStatusLabel2 = new System.Windows.Forms.ToolStripStatusLabel(); this.toolStripStatusLabel3 = new System.Windows.Forms.ToolStripStatusLabel(); this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel(); this.menuStrip1 = new System.Windows.Forms.MenuStrip(); this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.checkForUpdateToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator(); this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.settingsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.statusToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.StitchingStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem(); this.stitchingOffsetToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.stitchOverlapToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.testToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.checkedListBox1 = new System.Windows.Forms.CheckedListBox(); this.button1 = new System.Windows.Forms.Button(); this.comboBox1 = new System.Windows.Forms.ComboBox(); this.notifyIcon1 = new System.Windows.Forms.NotifyIcon(this.components); this.label1 = new System.Windows.Forms.Label(); this.pictureBox1 = new System.Windows.Forms.PictureBox(); this.label2 = new System.Windows.Forms.Label(); this.button2 = new System.Windows.Forms.Button(); this.label3 = new System.Windows.Forms.Label(); statusStrip1 = new System.Windows.Forms.StatusStrip(); statusStrip1.SuspendLayout(); this.menuStrip1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit(); this.SuspendLayout(); // // statusStrip1 // statusStrip1.AllowMerge = false; statusStrip1.AutoSize = false; statusStrip1.ImageScalingSize = new System.Drawing.Size(20, 20); statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.toolStripStatusLabel2, this.toolStripStatusLabel3, this.toolStripStatusLabel1 }); statusStrip1.Location = new System.Drawing.Point(0, 136); statusStrip1.Name = "statusStrip1"; statusStrip1.Size = new System.Drawing.Size(340, 22); statusStrip1.SizingGrip = false; statusStrip1.Stretch = false; statusStrip1.TabIndex = 1; statusStrip1.Text = "statusStrip1"; // // toolStripStatusLabel2 // this.toolStripStatusLabel2.Name = "toolStripStatusLabel2"; this.toolStripStatusLabel2.Size = new System.Drawing.Size(42, 17); this.toolStripStatusLabel2.Text = "Status:"; // // toolStripStatusLabel3 // this.toolStripStatusLabel3.Name = "toolStripStatusLabel3"; this.toolStripStatusLabel3.Size = new System.Drawing.Size(26, 17); this.toolStripStatusLabel3.Text = "Idle"; // // toolStripStatusLabel1 // this.toolStripStatusLabel1.Name = "toolStripStatusLabel1"; this.toolStripStatusLabel1.Size = new System.Drawing.Size(118, 17); this.toolStripStatusLabel1.Text = "toolStripStatusLabel1"; this.toolStripStatusLabel1.Visible = false; // // menuStrip1 // this.menuStrip1.ImageScalingSize = new System.Drawing.Size(20, 20); this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.fileToolStripMenuItem, this.settingsToolStripMenuItem, this.statusToolStripMenuItem, this.StitchingStripMenuItem1, this.aboutToolStripMenuItem, this.testToolStripMenuItem }); this.menuStrip1.Location = new System.Drawing.Point(0, 0); this.menuStrip1.Name = "menuStrip1"; this.menuStrip1.Size = new System.Drawing.Size(340, 24); this.menuStrip1.TabIndex = 2; this.menuStrip1.Text = "menuStrip1"; // // fileToolStripMenuItem // this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.checkForUpdateToolStripMenuItem, this.toolStripSeparator1, this.exitToolStripMenuItem }); this.fileToolStripMenuItem.Name = "fileToolStripMenuItem"; this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20); this.fileToolStripMenuItem.Text = "File"; // // checkForUpdateToolStripMenuItem // this.checkForUpdateToolStripMenuItem.Name = "checkForUpdateToolStripMenuItem"; this.checkForUpdateToolStripMenuItem.Size = new System.Drawing.Size(166, 22); this.checkForUpdateToolStripMenuItem.Text = "Check for Update"; this.checkForUpdateToolStripMenuItem.Click += new System.EventHandler(this.CheckForUpdateToolStripMenuItem_Click); // // toolStripSeparator1 // this.toolStripSeparator1.Name = "toolStripSeparator1"; this.toolStripSeparator1.Size = new System.Drawing.Size(163, 6); // // exitToolStripMenuItem // this.exitToolStripMenuItem.Name = "exitToolStripMenuItem"; this.exitToolStripMenuItem.Size = new System.Drawing.Size(166, 22); this.exitToolStripMenuItem.Text = "Exit"; this.exitToolStripMenuItem.Click += new System.EventHandler(this.ExitToolStripMenuItem_Click); // // settingsToolStripMenuItem // this.settingsToolStripMenuItem.Enabled = false; this.settingsToolStripMenuItem.Name = "settingsToolStripMenuItem"; this.settingsToolStripMenuItem.Size = new System.Drawing.Size(61, 20); this.settingsToolStripMenuItem.Text = "Settings"; this.settingsToolStripMenuItem.Click += new System.EventHandler(this.SettingsToolStripMenuItem_Click); // // statusToolStripMenuItem // this.statusToolStripMenuItem.Enabled = false; this.statusToolStripMenuItem.Name = "statusToolStripMenuItem"; this.statusToolStripMenuItem.Size = new System.Drawing.Size(51, 20); this.statusToolStripMenuItem.Text = "Status"; this.statusToolStripMenuItem.Click += new System.EventHandler(this.StatusToolStripMenuItem_Click); // // StitchingStripMenuItem1 // this.StitchingStripMenuItem1.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.stitchingOffsetToolStripMenuItem, this.stitchOverlapToolStripMenuItem }); this.StitchingStripMenuItem1.Enabled = false; this.StitchingStripMenuItem1.Name = "StitchingStripMenuItem1"; this.StitchingStripMenuItem1.Size = new System.Drawing.Size(66, 20); this.StitchingStripMenuItem1.Text = "Stitching"; // // stitchingOffsetToolStripMenuItem // this.stitchingOffsetToolStripMenuItem.Enabled = false; this.stitchingOffsetToolStripMenuItem.Name = "stitchingOffsetToolStripMenuItem"; this.stitchingOffsetToolStripMenuItem.Size = new System.Drawing.Size(156, 22); this.stitchingOffsetToolStripMenuItem.Text = "Stitching Offset"; this.stitchingOffsetToolStripMenuItem.Click += new System.EventHandler(this.StitchingOffsetToolStripMenuItem_Click); // // stitchOverlapToolStripMenuItem // this.stitchOverlapToolStripMenuItem.Name = "stitchOverlapToolStripMenuItem"; this.stitchOverlapToolStripMenuItem.Size = new System.Drawing.Size(156, 22); this.stitchOverlapToolStripMenuItem.Text = "Stitch Overlap"; this.stitchOverlapToolStripMenuItem.Click += new System.EventHandler(this.StitchOverlapToolStripMenuItem_Click); // // aboutToolStripMenuItem // this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem"; this.aboutToolStripMenuItem.Size = new System.Drawing.Size(52, 20); this.aboutToolStripMenuItem.Text = "About"; this.aboutToolStripMenuItem.Click += new System.EventHandler(this.AboutToolStripMenuItem_Click); // // testToolStripMenuItem // this.testToolStripMenuItem.Name = "testToolStripMenuItem"; this.testToolStripMenuItem.Size = new System.Drawing.Size(40, 20); this.testToolStripMenuItem.Text = "Test"; this.testToolStripMenuItem.Visible = false; this.testToolStripMenuItem.Click += new System.EventHandler(this.TestToolStripMenuItem_Click_1); // // checkedListBox1 // this.checkedListBox1.CheckOnClick = true; this.checkedListBox1.FormattingEnabled = true; this.checkedListBox1.Location = new System.Drawing.Point(158, 187); this.checkedListBox1.Name = "checkedListBox1"; this.checkedListBox1.Size = new System.Drawing.Size(148, 79); this.checkedListBox1.TabIndex = 3; this.checkedListBox1.Visible = false; this.checkedListBox1.SelectedIndexChanged += new System.EventHandler(this.CheckedListBox1_SelectedIndexChanged); // // button1 // this.button1.Location = new System.Drawing.Point(231, 272); this.button1.Name = "button1"; this.button1.Size = new System.Drawing.Size(75, 23); this.button1.TabIndex = 4; this.button1.Text = "Restart"; this.button1.UseVisualStyleBackColor = true; this.button1.Click += new System.EventHandler(this.Button1_Click); // // comboBox1 // this.comboBox1.FormattingEnabled = true; this.comboBox1.Location = new System.Drawing.Point(23, 187); this.comboBox1.Name = "comboBox1"; this.comboBox1.Size = new System.Drawing.Size(121, 21); this.comboBox1.TabIndex = 5; this.comboBox1.SelectedIndexChanged += new System.EventHandler(this.ComboBox1_SelectedIndexChanged); // // notifyIcon1 // this.notifyIcon1.Icon = ((System.Drawing.Icon)(resources.GetObject("notifyIcon1.Icon"))); this.notifyIcon1.Text = "Superweb Restart Application"; this.notifyIcon1.Visible = true; // // label1 // this.label1.AutoSize = true; this.label1.BackColor = System.Drawing.SystemColors.Control; this.label1.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.label1.Font = new System.Drawing.Font("Franklin Gothic Medium Cond", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label1.ForeColor = System.Drawing.SystemColors.ControlDarkDark; this.label1.Location = new System.Drawing.Point(243, 63); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(76, 15); this.label1.TabIndex = 7; this.label1.Text = "System Restarter"; // // pictureBox1 // this.pictureBox1.Image = global::Superweb_Restart_Application.Properties.Resources.SuperWeb_logo_02; this.pictureBox1.Location = new System.Drawing.Point(23, 27); this.pictureBox1.Name = "pictureBox1"; this.pictureBox1.Size = new System.Drawing.Size(283, 51); this.pictureBox1.TabIndex = 0; this.pictureBox1.TabStop = false; // // label2 // this.label2.AutoSize = true; this.label2.Location = new System.Drawing.Point(66, 100); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(58, 13); this.label2.TabIndex = 8; this.label2.Text = "Stitching is"; this.label2.Click += new System.EventHandler(this.label2_Click); // // button2 // this.button2.Location = new System.Drawing.Point(196, 95); this.button2.Name = "button2"; this.button2.Size = new System.Drawing.Size(110, 23); this.button2.TabIndex = 9; this.button2.Text = "button2"; this.button2.UseVisualStyleBackColor = true; this.button2.Click += new System.EventHandler(this.button2_Click_2); // // label3 // this.label3.AutoSize = true; this.label3.Location = new System.Drawing.Point(130, 100); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(35, 13); this.label3.TabIndex = 10; this.label3.Text = "label3"; // // Main // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.AutoValidate = System.Windows.Forms.AutoValidate.EnableAllowFocusChange; this.ClientSize = new System.Drawing.Size(340, 158); this.Controls.Add(this.label3); this.Controls.Add(this.button2); this.Controls.Add(this.label2); this.Controls.Add(this.label1); this.Controls.Add(this.comboBox1); this.Controls.Add(this.button1); this.Controls.Add(this.checkedListBox1); this.Controls.Add(statusStrip1); this.Controls.Add(this.menuStrip1); this.Controls.Add(this.pictureBox1); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle; this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.MainMenuStrip = this.menuStrip1; this.MaximizeBox = false; this.Name = "Main"; this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Text = "Superweb System Restarter"; this.Load += new System.EventHandler(this.Main_Load); statusStrip1.ResumeLayout(false); statusStrip1.PerformLayout(); this.menuStrip1.ResumeLayout(false); this.menuStrip1.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).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.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(); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.components = new System.ComponentModel.Container(); System.Windows.Forms.ToolStrip commands; System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(CurrentStatusWindow)); System.Windows.Forms.StatusStrip statusBar; System.Windows.Forms.ImageList explorerImages; this.refreshCommand = new System.Windows.Forms.ToolStripButton(); this.currentStatus = new System.Windows.Forms.ToolStripStatusLabel(); this.splitContainer1 = new System.Windows.Forms.SplitContainer(); this.statusExplorer = new System.Windows.Forms.TreeView(); this.statusDetails = new System.Windows.Forms.PropertyGrid(); this.statusProgress = new System.Windows.Forms.ProgressBar(); this.displayWorker = new System.ComponentModel.BackgroundWorker(); this.refreshTimer = new System.Windows.Forms.Timer(this.components); commands = new System.Windows.Forms.ToolStrip(); statusBar = new System.Windows.Forms.StatusStrip(); explorerImages = new System.Windows.Forms.ImageList(this.components); commands.SuspendLayout(); statusBar.SuspendLayout(); this.splitContainer1.Panel1.SuspendLayout(); this.splitContainer1.Panel2.SuspendLayout(); this.splitContainer1.SuspendLayout(); this.SuspendLayout(); // // commands // commands.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden; commands.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.refreshCommand }); commands.Location = new System.Drawing.Point(0, 0); commands.Name = "commands"; commands.Size = new System.Drawing.Size(533, 25); commands.TabIndex = 0; commands.Text = "toolStrip1"; // // refreshCommand // this.refreshCommand.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.refreshCommand.Image = ((System.Drawing.Image)(resources.GetObject("refreshCommand.Image"))); this.refreshCommand.ImageTransparentColor = System.Drawing.Color.Magenta; this.refreshCommand.Name = "refreshCommand"; this.refreshCommand.Size = new System.Drawing.Size(23, 22); this.refreshCommand.Text = "Refresh"; this.refreshCommand.Click += new System.EventHandler(this.refreshCommand_Click); // // statusBar // statusBar.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.currentStatus }); statusBar.Location = new System.Drawing.Point(0, 366); statusBar.Name = "statusBar"; statusBar.Size = new System.Drawing.Size(533, 22); statusBar.TabIndex = 1; statusBar.Text = "statusStrip1"; // // currentStatus // this.currentStatus.Name = "currentStatus"; this.currentStatus.Size = new System.Drawing.Size(518, 17); this.currentStatus.Spring = true; this.currentStatus.Text = "Loading status..."; this.currentStatus.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // explorerImages // explorerImages.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("explorerImages.ImageStream"))); explorerImages.TransparentColor = System.Drawing.Color.Transparent; explorerImages.Images.SetKeyName(0, "Unknown"); explorerImages.Images.SetKeyName(1, "CompletedSuccess"); explorerImages.Images.SetKeyName(2, "CompletedFailed"); explorerImages.Images.SetKeyName(3, "Pending"); explorerImages.Images.SetKeyName(4, "Cancelled"); explorerImages.Images.SetKeyName(5, "Running"); // // splitContainer1 // this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill; this.splitContainer1.Location = new System.Drawing.Point(0, 25); this.splitContainer1.Name = "splitContainer1"; // // splitContainer1.Panel1 // this.splitContainer1.Panel1.Controls.Add(this.statusExplorer); // // splitContainer1.Panel2 // this.splitContainer1.Panel2.Controls.Add(this.statusDetails); this.splitContainer1.Panel2.Controls.Add(this.statusProgress); this.splitContainer1.Size = new System.Drawing.Size(533, 341); this.splitContainer1.SplitterDistance = 177; this.splitContainer1.TabIndex = 2; // // statusExplorer // this.statusExplorer.Dock = System.Windows.Forms.DockStyle.Fill; this.statusExplorer.ImageKey = "Unknown"; this.statusExplorer.ImageList = explorerImages; this.statusExplorer.Location = new System.Drawing.Point(0, 0); this.statusExplorer.Name = "statusExplorer"; this.statusExplorer.SelectedImageIndex = 0; this.statusExplorer.Size = new System.Drawing.Size(177, 341); this.statusExplorer.TabIndex = 0; this.statusExplorer.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.statusExplorer_AfterSelect); // // statusDetails // this.statusDetails.CommandsVisibleIfAvailable = false; this.statusDetails.Dock = System.Windows.Forms.DockStyle.Fill; this.statusDetails.Location = new System.Drawing.Point(0, 23); this.statusDetails.Name = "statusDetails"; this.statusDetails.PropertySort = System.Windows.Forms.PropertySort.Alphabetical; this.statusDetails.Size = new System.Drawing.Size(352, 318); this.statusDetails.TabIndex = 0; this.statusDetails.ToolbarVisible = false; // // statusProgress // this.statusProgress.Dock = System.Windows.Forms.DockStyle.Top; this.statusProgress.Location = new System.Drawing.Point(0, 0); this.statusProgress.Name = "statusProgress"; this.statusProgress.Size = new System.Drawing.Size(352, 23); this.statusProgress.Style = System.Windows.Forms.ProgressBarStyle.Continuous; this.statusProgress.TabIndex = 1; // // displayWorker // this.displayWorker.DoWork += new System.ComponentModel.DoWorkEventHandler(this.displayWorker_DoWork); this.displayWorker.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.displayWorker_RunWorkerCompleted); // // refreshTimer // this.refreshTimer.Interval = 5000; this.refreshTimer.Tick += new System.EventHandler(this.refreshTimer_Tick); // // CurrentStatusWindow // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(533, 388); this.Controls.Add(this.splitContainer1); this.Controls.Add(statusBar); this.Controls.Add(commands); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.SizableToolWindow; this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.Name = "CurrentStatusWindow"; this.Text = "Current Status for ..."; commands.ResumeLayout(false); commands.PerformLayout(); statusBar.ResumeLayout(false); statusBar.PerformLayout(); this.splitContainer1.Panel1.ResumeLayout(false); this.splitContainer1.Panel2.ResumeLayout(false); this.splitContainer1.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() { System.Windows.Forms.StatusStrip statusStrip1; this.m_lbStatus = new System.Windows.Forms.ToolStripStatusLabel(); this.splitContainer2 = new System.Windows.Forms.SplitContainer(); this.ucTreeView = new SharpTerminal.ObjectsTreeViewUserControl(); this.mInternalPanel = new System.Windows.Forms.SplitContainer(); this.ucConsole = new SharpTerminal.ConsoleUserControl(); statusStrip1 = new System.Windows.Forms.StatusStrip(); statusStrip1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).BeginInit(); this.splitContainer2.Panel1.SuspendLayout(); this.splitContainer2.Panel2.SuspendLayout(); this.splitContainer2.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.mInternalPanel)).BeginInit(); this.mInternalPanel.Panel2.SuspendLayout(); this.mInternalPanel.SuspendLayout(); this.SuspendLayout(); // // statusStrip1 // statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.m_lbStatus }); statusStrip1.Location = new System.Drawing.Point(0, 666); statusStrip1.Name = "statusStrip1"; statusStrip1.Size = new System.Drawing.Size(784, 22); statusStrip1.TabIndex = 5; statusStrip1.Text = "statusStrip1"; // // m_lbStatus // this.m_lbStatus.Name = "m_lbStatus"; this.m_lbStatus.Size = new System.Drawing.Size(118, 17); this.m_lbStatus.Text = "toolStripStatusLabel1"; // // splitContainer2 // this.splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill; this.splitContainer2.Location = new System.Drawing.Point(0, 0); this.splitContainer2.Name = "splitContainer2"; // // splitContainer2.Panel1 // this.splitContainer2.Panel1.Controls.Add(this.ucTreeView); // // splitContainer2.Panel2 // this.splitContainer2.Panel2.Controls.Add(this.mInternalPanel); this.splitContainer2.Size = new System.Drawing.Size(784, 666); this.splitContainer2.SplitterDistance = 261; this.splitContainer2.TabIndex = 7; // // ucTreeView // this.ucTreeView.Dock = System.Windows.Forms.DockStyle.Fill; this.ucTreeView.Location = new System.Drawing.Point(0, 0); this.ucTreeView.MainDisplayPanel = this.mInternalPanel.Panel1; this.ucTreeView.Name = "ucTreeView"; this.ucTreeView.Size = new System.Drawing.Size(261, 666); this.ucTreeView.TabIndex = 0; // // mInternalPanel // this.mInternalPanel.Dock = System.Windows.Forms.DockStyle.Fill; this.mInternalPanel.Location = new System.Drawing.Point(0, 0); this.mInternalPanel.Name = "mInternalPanel"; this.mInternalPanel.Orientation = System.Windows.Forms.Orientation.Horizontal; // // mInternalPanel.Panel2 // this.mInternalPanel.Panel2.Controls.Add(this.ucConsole); this.mInternalPanel.Size = new System.Drawing.Size(519, 666); this.mInternalPanel.SplitterDistance = 400; this.mInternalPanel.TabIndex = 6; // // ucConsole // this.ucConsole.Dock = System.Windows.Forms.DockStyle.Fill; this.ucConsole.Location = new System.Drawing.Point(0, 0); this.ucConsole.Name = "ucConsole"; this.ucConsole.Size = new System.Drawing.Size(519, 262); this.ucConsole.TabIndex = 0; // // Console // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(784, 688); this.Controls.Add(this.splitContainer2); this.Controls.Add(statusStrip1); this.Name = "Console"; this.Text = "Form1"; statusStrip1.ResumeLayout(false); statusStrip1.PerformLayout(); this.splitContainer2.Panel1.ResumeLayout(false); this.splitContainer2.Panel2.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).EndInit(); this.splitContainer2.ResumeLayout(false); this.mInternalPanel.Panel2.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.mInternalPanel)).EndInit(); this.mInternalPanel.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() { System.Windows.Forms.ToolStrip m_toolStrip; System.Windows.Forms.ToolStripButton m_tsbAddRow; System.Windows.Forms.ToolStripButton m_tsbImportData; System.Windows.Forms.ToolStripButton m_tsbAdjustColumns; System.Windows.Forms.ToolStripButton m_tsbOptions; System.Windows.Forms.ToolStripButton m_tsbHelp; System.Windows.Forms.ToolStripComboBox m_tscbSessions; System.Windows.Forms.StatusStrip m_statuStrip; System.Windows.Forms.ColumnHeader m_colSession; System.Windows.Forms.ColumnHeader m_colSubHeading; System.Windows.Forms.ColumnHeader m_colLabel; System.Windows.Forms.ColumnHeader m_colTRLabel; System.Windows.Forms.ColumnHeader m_colPrice; System.Windows.Forms.ColumnHeader m_colCurrency; System.Windows.Forms.ColumnHeader m_colIncoterm; System.Windows.Forms.ColumnHeader m_colPlace; System.Windows.Forms.ColumnHeader m_colTime; System.Windows.Forms.ColumnHeader m_colUnit; System.Windows.Forms.ColumnHeader m_colOrigin; System.Windows.Forms.ColumnHeader m_colPruductNber; System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(TRSpotViewer)); this.m_tsbDeleteRow = new System.Windows.Forms.ToolStripButton(); this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator(); this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator(); this.m_slRowCount = new System.Windows.Forms.ToolStripStatusLabel(); this.m_lvData = new System.Windows.Forms.ListView(); m_toolStrip = new System.Windows.Forms.ToolStrip(); m_tsbAddRow = new System.Windows.Forms.ToolStripButton(); m_tsbImportData = new System.Windows.Forms.ToolStripButton(); m_tsbAdjustColumns = new System.Windows.Forms.ToolStripButton(); m_tsbOptions = new System.Windows.Forms.ToolStripButton(); m_tsbHelp = new System.Windows.Forms.ToolStripButton(); m_tscbSessions = new System.Windows.Forms.ToolStripComboBox(); m_statuStrip = new System.Windows.Forms.StatusStrip(); m_colSession = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); m_colSubHeading = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); m_colLabel = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); m_colTRLabel = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); m_colPrice = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); m_colCurrency = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); m_colIncoterm = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); m_colPlace = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); m_colTime = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); m_colUnit = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); m_colOrigin = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); m_colPruductNber = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); m_toolStrip.SuspendLayout(); m_statuStrip.SuspendLayout(); this.SuspendLayout(); // // m_toolStrip // m_toolStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { m_tsbAddRow, this.m_tsbDeleteRow, this.toolStripSeparator1, m_tsbImportData, this.toolStripSeparator3, m_tsbAdjustColumns, m_tsbOptions, m_tsbHelp, m_tscbSessions }); m_toolStrip.Location = new System.Drawing.Point(0, 0); m_toolStrip.Name = "m_toolStrip"; m_toolStrip.Size = new System.Drawing.Size(798, 25); m_toolStrip.TabIndex = 0; // // m_tsbAddRow // m_tsbAddRow.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; m_tsbAddRow.Enabled = false; m_tsbAddRow.Image = global::DGD.HubGovernor.Properties.Resources.new_row_16; m_tsbAddRow.ImageTransparentColor = System.Drawing.Color.Magenta; m_tsbAddRow.Name = "m_tsbAddRow"; m_tsbAddRow.Size = new System.Drawing.Size(23, 22); m_tsbAddRow.Text = "Nouvelle donnée..."; // // m_tsbDeleteRow // this.m_tsbDeleteRow.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.m_tsbDeleteRow.Enabled = false; this.m_tsbDeleteRow.Image = global::DGD.HubGovernor.Properties.Resources.delete_16; this.m_tsbDeleteRow.ImageTransparentColor = System.Drawing.Color.Magenta; this.m_tsbDeleteRow.Name = "m_tsbDeleteRow"; this.m_tsbDeleteRow.Size = new System.Drawing.Size(23, 22); this.m_tsbDeleteRow.Text = "Supprimer les données sélectionnées..."; // // toolStripSeparator1 // this.toolStripSeparator1.Name = "toolStripSeparator1"; this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25); // // m_tsbImportData // m_tsbImportData.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; m_tsbImportData.Image = global::DGD.HubGovernor.Properties.Resources.import_16; m_tsbImportData.ImageTransparentColor = System.Drawing.Color.Magenta; m_tsbImportData.Name = "m_tsbImportData"; m_tsbImportData.Size = new System.Drawing.Size(23, 22); m_tsbImportData.Text = "Importer..."; m_tsbImportData.Click += new System.EventHandler(this.ImportData_Click); // // toolStripSeparator3 // this.toolStripSeparator3.Name = "toolStripSeparator3"; this.toolStripSeparator3.Size = new System.Drawing.Size(6, 25); // // m_tsbAdjustColumns // m_tsbAdjustColumns.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; m_tsbAdjustColumns.Image = global::DGD.HubGovernor.Properties.Resources.auto_size_columns_16; m_tsbAdjustColumns.ImageTransparentColor = System.Drawing.Color.Magenta; m_tsbAdjustColumns.Name = "m_tsbAdjustColumns"; m_tsbAdjustColumns.Size = new System.Drawing.Size(23, 22); m_tsbAdjustColumns.Text = "Ajuster les colonnes"; // // m_tsbOptions // m_tsbOptions.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; m_tsbOptions.Enabled = false; m_tsbOptions.Image = global::DGD.HubGovernor.Properties.Resources.option_16; m_tsbOptions.ImageTransparentColor = System.Drawing.Color.Magenta; m_tsbOptions.Name = "m_tsbOptions"; m_tsbOptions.Size = new System.Drawing.Size(23, 22); m_tsbOptions.Text = "Options..."; // // m_tsbHelp // m_tsbHelp.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right; m_tsbHelp.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; m_tsbHelp.Image = global::DGD.HubGovernor.Properties.Resources.help_16; m_tsbHelp.ImageTransparentColor = System.Drawing.Color.Magenta; m_tsbHelp.Name = "m_tsbHelp"; m_tsbHelp.Size = new System.Drawing.Size(23, 22); m_tsbHelp.Text = "toolStripButton5"; // // m_tscbSessions // m_tscbSessions.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; m_tscbSessions.IntegralHeight = false; m_tscbSessions.Name = "m_tscbSessions"; m_tscbSessions.Size = new System.Drawing.Size(121, 25); m_tscbSessions.Sorted = true; // // m_statuStrip // m_statuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.m_slRowCount }); m_statuStrip.Location = new System.Drawing.Point(0, 301); m_statuStrip.Name = "m_statuStrip"; m_statuStrip.Size = new System.Drawing.Size(798, 22); m_statuStrip.TabIndex = 2; // // m_slRowCount // this.m_slRowCount.BackColor = System.Drawing.Color.Transparent; this.m_slRowCount.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; this.m_slRowCount.Name = "m_slRowCount"; this.m_slRowCount.Size = new System.Drawing.Size(112, 17); this.m_slRowCount.Text = "0 enregistrement(s )"; this.m_slRowCount.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // m_colSession // m_colSession.Tag = ColumnDataType_t.Integer; m_colSession.Text = "N° Session"; m_colSession.Width = 86; // // m_colSubHeading // m_colSubHeading.Tag = easyLib.DB.ColumnDataType_t.Text; m_colSubHeading.Text = "SPT10"; // // m_colLabel // m_colLabel.Tag = easyLib.DB.ColumnDataType_t.Text; m_colLabel.Text = "Libellé"; // // m_colTRLabel // m_colTRLabel.Tag = easyLib.DB.ColumnDataType_t.Text; m_colTRLabel.Text = "Libellé TR"; // // m_colPrice // m_colPrice.Tag = easyLib.DB.ColumnDataType_t.Float; m_colPrice.Text = "Prix"; // // m_colCurrency // m_colCurrency.Tag = easyLib.DB.ColumnDataType_t.Text; m_colCurrency.Text = "Monnaie"; // // m_colIncoterm // m_colIncoterm.Tag = easyLib.DB.ColumnDataType_t.Text; m_colIncoterm.Text = "Incoterm"; // // m_colPlace // m_colPlace.Tag = easyLib.DB.ColumnDataType_t.Text; m_colPlace.Text = "Lieu"; // // m_colTime // m_colTime.Tag = easyLib.DB.ColumnDataType_t.Time; m_colTime.Text = "Date"; // // m_colUnit // m_colUnit.Tag = easyLib.DB.ColumnDataType_t.Text; m_colUnit.Text = "Unité"; // // m_colOrigin // m_colOrigin.Tag = easyLib.DB.ColumnDataType_t.Text; m_colOrigin.Text = "Origine"; // // m_colPruductNber // m_colPruductNber.Text = "N° Produit"; // // m_lvData // this.m_lvData.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { m_colSession, m_colSubHeading, m_colLabel, m_colTRLabel, m_colPrice, m_colCurrency, m_colIncoterm, m_colPlace, m_colTime, m_colUnit, m_colOrigin, m_colPruductNber }); this.m_lvData.Dock = System.Windows.Forms.DockStyle.Fill; this.m_lvData.FullRowSelect = true; this.m_lvData.GridLines = true; this.m_lvData.HideSelection = false; this.m_lvData.Location = new System.Drawing.Point(0, 25); this.m_lvData.Name = "m_lvData"; this.m_lvData.Size = new System.Drawing.Size(798, 276); this.m_lvData.TabIndex = 3; this.m_lvData.UseCompatibleStateImageBehavior = false; this.m_lvData.View = System.Windows.Forms.View.Details; this.m_lvData.ColumnClick += new System.Windows.Forms.ColumnClickEventHandler(this.View_ColumnClick); // // TRSpotViewer // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.BackColor = System.Drawing.SystemColors.Window; this.ClientSize = new System.Drawing.Size(798, 323); this.Controls.Add(this.m_lvData); this.Controls.Add(m_statuStrip); this.Controls.Add(m_toolStrip); this.ForeColor = System.Drawing.SystemColors.WindowText; this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.MaximizeBox = false; this.Name = "TRSpotViewer"; this.Text = "Valeurs Spots (TR)"; m_toolStrip.ResumeLayout(false); m_toolStrip.PerformLayout(); m_statuStrip.ResumeLayout(false); m_statuStrip.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.ToolStripSeparator toolStripSeparator1; System.Windows.Forms.StatusStrip statusStrip1; System.Windows.Forms.GroupBox groupBox1; System.Windows.Forms.GroupBox groupBox2; System.Windows.Forms.SplitContainer splitContainer2; System.Windows.Forms.ImageList imageList1; System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Main)); System.Windows.Forms.SplitContainer splitContainer1; System.Windows.Forms.ToolStripSeparator toolStripSeparator2; System.Windows.Forms.ToolStripButton CmdAbout; this.ServerConnectStatus = new System.Windows.Forms.ToolStripStatusLabel(); this.StripStatusLabel_Job_Groups = new System.Windows.Forms.ToolStripStatusLabel(); this.RefreshDate = new System.Windows.Forms.ToolStripStatusLabel(); this.RunningJobs = new System.Windows.Forms.ListView(); this.JobName = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.JobDuration = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.SchedulerView = new System.Windows.Forms.TreeView(); this.pnlDetails = new System.Windows.Forms.Panel(); this.ScheduleToolstrip = new System.Windows.Forms.ToolStrip(); this.CmdRefreshScheduled = new System.Windows.Forms.ToolStripButton(); this.CmdRunJobNow = new System.Windows.Forms.ToolStripButton(); this.CmdPause = new System.Windows.Forms.ToolStripButton(); this.CmdDelete = new System.Windows.Forms.ToolStripButton(); this.CmdAdd = new System.Windows.Forms.ToolStripButton(); this.CmdEdit = new System.Windows.Forms.ToolStripButton(); this.MainTab = new System.Windows.Forms.TabControl(); this.SchedulesTab = new System.Windows.Forms.TabPage(); this.SpecificationTab = new System.Windows.Forms.TabPage(); this.RefreshScheduler = new System.Windows.Forms.Timer(this.components); toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator(); statusStrip1 = new System.Windows.Forms.StatusStrip(); groupBox1 = new System.Windows.Forms.GroupBox(); groupBox2 = new System.Windows.Forms.GroupBox(); splitContainer2 = new System.Windows.Forms.SplitContainer(); imageList1 = new System.Windows.Forms.ImageList(this.components); splitContainer1 = new System.Windows.Forms.SplitContainer(); toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator(); CmdAbout = new System.Windows.Forms.ToolStripButton(); statusStrip1.SuspendLayout(); groupBox1.SuspendLayout(); groupBox2.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(splitContainer2)).BeginInit(); splitContainer2.Panel1.SuspendLayout(); splitContainer2.Panel2.SuspendLayout(); splitContainer2.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(splitContainer1)).BeginInit(); splitContainer1.Panel1.SuspendLayout(); splitContainer1.Panel2.SuspendLayout(); splitContainer1.SuspendLayout(); this.ScheduleToolstrip.SuspendLayout(); this.MainTab.SuspendLayout(); this.SchedulesTab.SuspendLayout(); this.SuspendLayout(); // // toolStripSeparator1 // toolStripSeparator1.Name = "toolStripSeparator1"; toolStripSeparator1.Size = new System.Drawing.Size(6, 39); // // statusStrip1 // statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.ServerConnectStatus, this.StripStatusLabel_Job_Groups, this.RefreshDate }); statusStrip1.Location = new System.Drawing.Point(0, 620); statusStrip1.Name = "statusStrip1"; statusStrip1.Padding = new System.Windows.Forms.Padding(1, 0, 19, 0); statusStrip1.Size = new System.Drawing.Size(935, 25); statusStrip1.TabIndex = 1; statusStrip1.Text = "statusStrip1"; // // ServerConnectStatus // this.ServerConnectStatus.Name = "ServerConnectStatus"; this.ServerConnectStatus.Size = new System.Drawing.Size(107, 20); this.ServerConnectStatus.Text = "Not connected"; // // StripStatusLabel_Job_Groups // this.StripStatusLabel_Job_Groups.BackColor = System.Drawing.Color.LightCyan; this.StripStatusLabel_Job_Groups.Name = "StripStatusLabel_Job_Groups"; this.StripStatusLabel_Job_Groups.Size = new System.Drawing.Size(0, 20); this.StripStatusLabel_Job_Groups.ToolTipText = "Last Refresh of Running Jobs"; // // RefreshDate // this.RefreshDate.BackColor = System.Drawing.Color.LightCyan; this.RefreshDate.Name = "RefreshDate"; this.RefreshDate.Size = new System.Drawing.Size(0, 20); this.RefreshDate.ToolTipText = "Last Refresh Date of Running Jobs"; // // groupBox1 // groupBox1.Controls.Add(this.RunningJobs); groupBox1.Dock = System.Windows.Forms.DockStyle.Fill; groupBox1.Location = new System.Drawing.Point(4, 4); groupBox1.Margin = new System.Windows.Forms.Padding(4); groupBox1.Name = "groupBox1"; groupBox1.Padding = new System.Windows.Forms.Padding(4); groupBox1.Size = new System.Drawing.Size(913, 260); groupBox1.TabIndex = 0; groupBox1.TabStop = false; groupBox1.Text = "Running"; // // RunningJobs // this.RunningJobs.AllowColumnReorder = true; this.RunningJobs.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { this.JobName, this.JobDuration }); this.RunningJobs.Dock = System.Windows.Forms.DockStyle.Fill; this.RunningJobs.Location = new System.Drawing.Point(4, 19); this.RunningJobs.Margin = new System.Windows.Forms.Padding(4); this.RunningJobs.Name = "RunningJobs"; this.RunningJobs.Size = new System.Drawing.Size(905, 237); this.RunningJobs.Sorting = System.Windows.Forms.SortOrder.Ascending; this.RunningJobs.TabIndex = 0; this.RunningJobs.UseCompatibleStateImageBehavior = false; this.RunningJobs.View = System.Windows.Forms.View.Details; // // JobName // this.JobName.Text = "Job Name"; this.JobName.Width = 250; // // JobDuration // this.JobDuration.Text = "Duration (s)"; this.JobDuration.Width = 80; // // groupBox2 // groupBox2.Controls.Add(splitContainer2); groupBox2.Dock = System.Windows.Forms.DockStyle.Fill; groupBox2.Location = new System.Drawing.Point(4, 4); groupBox2.Margin = new System.Windows.Forms.Padding(4); groupBox2.Name = "groupBox2"; groupBox2.Padding = new System.Windows.Forms.Padding(4); groupBox2.Size = new System.Drawing.Size(913, 265); groupBox2.TabIndex = 0; groupBox2.TabStop = false; groupBox2.Text = "Scheduled"; // // splitContainer2 // splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill; splitContainer2.Location = new System.Drawing.Point(4, 19); splitContainer2.Margin = new System.Windows.Forms.Padding(4); splitContainer2.Name = "splitContainer2"; // // splitContainer2.Panel1 // splitContainer2.Panel1.Controls.Add(this.SchedulerView); // // splitContainer2.Panel2 // splitContainer2.Panel2.Controls.Add(this.pnlDetails); splitContainer2.Size = new System.Drawing.Size(905, 242); splitContainer2.SplitterDistance = 413; splitContainer2.SplitterWidth = 5; splitContainer2.TabIndex = 13; // // SchedulerView // this.SchedulerView.Dock = System.Windows.Forms.DockStyle.Fill; this.SchedulerView.HideSelection = false; this.SchedulerView.ImageIndex = 0; this.SchedulerView.ImageList = imageList1; this.SchedulerView.Location = new System.Drawing.Point(0, 0); this.SchedulerView.Margin = new System.Windows.Forms.Padding(4); this.SchedulerView.Name = "SchedulerView"; this.SchedulerView.SelectedImageIndex = 0; this.SchedulerView.Size = new System.Drawing.Size(413, 242); this.SchedulerView.TabIndex = 0; this.SchedulerView.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.SchedulerView_AfterSelect); // // imageList1 // imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream"))); imageList1.TransparentColor = System.Drawing.Color.Transparent; imageList1.Images.SetKeyName(0, "calendar_16x16.png"); imageList1.Images.SetKeyName(1, "clock_16x16.png"); imageList1.Images.SetKeyName(2, "hardhat_16x16.png"); imageList1.Images.SetKeyName(3, "windup_key_6x16.png"); imageList1.Images.SetKeyName(4, "users_family_16x16.png"); imageList1.Images.SetKeyName(5, "date_time_16x16.png"); imageList1.Images.SetKeyName(6, "schoolboy_16x16.png"); imageList1.Images.SetKeyName(7, "factory_16x16.png"); // // pnlDetails // this.pnlDetails.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.pnlDetails.Dock = System.Windows.Forms.DockStyle.Fill; this.pnlDetails.Location = new System.Drawing.Point(0, 0); this.pnlDetails.Margin = new System.Windows.Forms.Padding(4); this.pnlDetails.Name = "pnlDetails"; this.pnlDetails.Size = new System.Drawing.Size(487, 242); this.pnlDetails.TabIndex = 0; // // splitContainer1 // splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill; splitContainer1.Location = new System.Drawing.Point(3, 3); splitContainer1.Margin = new System.Windows.Forms.Padding(4); splitContainer1.Name = "splitContainer1"; splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal; // // splitContainer1.Panel1 // splitContainer1.Panel1.Controls.Add(groupBox2); splitContainer1.Panel1.Padding = new System.Windows.Forms.Padding(4); // // splitContainer1.Panel2 // splitContainer1.Panel2.Controls.Add(groupBox1); splitContainer1.Panel2.Padding = new System.Windows.Forms.Padding(4); splitContainer1.Size = new System.Drawing.Size(921, 546); splitContainer1.SplitterDistance = 273; splitContainer1.SplitterWidth = 5; splitContainer1.TabIndex = 18; // // toolStripSeparator2 // toolStripSeparator2.Name = "toolStripSeparator2"; toolStripSeparator2.Size = new System.Drawing.Size(6, 39); // // CmdAbout // CmdAbout.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; CmdAbout.Image = global::RobotWare.Runtime.Server.Manager.Properties.Resources.information_32x32; CmdAbout.ImageTransparentColor = System.Drawing.Color.Magenta; CmdAbout.Name = "CmdAbout"; CmdAbout.Size = new System.Drawing.Size(36, 36); CmdAbout.Text = "About..."; CmdAbout.Click += new System.EventHandler(this.CmdAbout_Click); // // ScheduleToolstrip // this.ScheduleToolstrip.ImageScalingSize = new System.Drawing.Size(32, 32); this.ScheduleToolstrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.CmdRefreshScheduled, this.CmdRunJobNow, this.CmdPause, toolStripSeparator1, this.CmdDelete, this.CmdAdd, this.CmdEdit, toolStripSeparator2, CmdAbout }); this.ScheduleToolstrip.Location = new System.Drawing.Point(0, 0); this.ScheduleToolstrip.Name = "ScheduleToolstrip"; this.ScheduleToolstrip.Size = new System.Drawing.Size(935, 39); this.ScheduleToolstrip.TabIndex = 0; this.ScheduleToolstrip.Text = "toolStrip1"; // // CmdRefreshScheduled // this.CmdRefreshScheduled.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.CmdRefreshScheduled.Image = global::RobotWare.Runtime.Server.Manager.Properties.Resources.refresh_32x32; this.CmdRefreshScheduled.ImageTransparentColor = System.Drawing.Color.Magenta; this.CmdRefreshScheduled.Name = "CmdRefreshScheduled"; this.CmdRefreshScheduled.Size = new System.Drawing.Size(36, 36); this.CmdRefreshScheduled.Text = "Refresh"; this.CmdRefreshScheduled.ToolTipText = "Refresh scheduled jobs"; this.CmdRefreshScheduled.Click += new System.EventHandler(this.CmdRefreshScheduled_Click); // // CmdRunJobNow // this.CmdRunJobNow.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.CmdRunJobNow.Enabled = false; this.CmdRunJobNow.Image = global::RobotWare.Runtime.Server.Manager.Properties.Resources.media_play_green_32x32; this.CmdRunJobNow.ImageTransparentColor = System.Drawing.Color.Magenta; this.CmdRunJobNow.Name = "CmdRunJobNow"; this.CmdRunJobNow.Size = new System.Drawing.Size(36, 36); this.CmdRunJobNow.Text = "Run"; this.CmdRunJobNow.ToolTipText = "Run selected job"; this.CmdRunJobNow.Click += new System.EventHandler(this.CmdRunJobNow_Click); // // CmdPause // this.CmdPause.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.CmdPause.Enabled = false; this.CmdPause.Image = global::RobotWare.Runtime.Server.Manager.Properties.Resources.media_pause_32x32; this.CmdPause.ImageTransparentColor = System.Drawing.Color.Magenta; this.CmdPause.Name = "CmdPause"; this.CmdPause.Size = new System.Drawing.Size(36, 36); this.CmdPause.Text = "Pause"; this.CmdPause.Click += new System.EventHandler(this.CmdPause_Click); // // CmdDelete // this.CmdDelete.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.CmdDelete.Enabled = false; this.CmdDelete.Image = global::RobotWare.Runtime.Server.Manager.Properties.Resources.delete_32x32; this.CmdDelete.ImageTransparentColor = System.Drawing.Color.Magenta; this.CmdDelete.Name = "CmdDelete"; this.CmdDelete.Size = new System.Drawing.Size(36, 36); this.CmdDelete.Text = "Delete"; this.CmdDelete.Click += new System.EventHandler(this.CmdDelete_Click); // // CmdAdd // this.CmdAdd.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.CmdAdd.Enabled = false; this.CmdAdd.Image = global::RobotWare.Runtime.Server.Manager.Properties.Resources.add_32x32; this.CmdAdd.ImageTransparentColor = System.Drawing.Color.Magenta; this.CmdAdd.Name = "CmdAdd"; this.CmdAdd.Size = new System.Drawing.Size(36, 36); this.CmdAdd.Text = "Add..."; this.CmdAdd.Click += new System.EventHandler(this.CmdAdd_Click); // // CmdEdit // this.CmdEdit.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.CmdEdit.Enabled = false; this.CmdEdit.Image = global::RobotWare.Runtime.Server.Manager.Properties.Resources.pencil_32x32; this.CmdEdit.ImageTransparentColor = System.Drawing.Color.Magenta; this.CmdEdit.Name = "CmdEdit"; this.CmdEdit.Size = new System.Drawing.Size(36, 36); this.CmdEdit.Text = "Edit..."; this.CmdEdit.ToolTipText = "Edit..."; this.CmdEdit.Click += new System.EventHandler(this.CmdEdit_Click); // // MainTab // this.MainTab.Controls.Add(this.SchedulesTab); this.MainTab.Controls.Add(this.SpecificationTab); this.MainTab.Dock = System.Windows.Forms.DockStyle.Fill; this.MainTab.Location = new System.Drawing.Point(0, 39); this.MainTab.Name = "MainTab"; this.MainTab.SelectedIndex = 0; this.MainTab.Size = new System.Drawing.Size(935, 581); this.MainTab.TabIndex = 19; this.MainTab.SelectedIndexChanged += new System.EventHandler(this.Tab_SelectedIndexChanged); // // SchedulesTab // this.SchedulesTab.Controls.Add(splitContainer1); this.SchedulesTab.Location = new System.Drawing.Point(4, 25); this.SchedulesTab.Name = "SchedulesTab"; this.SchedulesTab.Padding = new System.Windows.Forms.Padding(3); this.SchedulesTab.Size = new System.Drawing.Size(927, 552); this.SchedulesTab.TabIndex = 0; this.SchedulesTab.Text = "Schedules"; this.SchedulesTab.UseVisualStyleBackColor = true; // // SpecificationTab // this.SpecificationTab.Location = new System.Drawing.Point(4, 25); this.SpecificationTab.Name = "SpecificationTab"; this.SpecificationTab.Padding = new System.Windows.Forms.Padding(3); this.SpecificationTab.Size = new System.Drawing.Size(927, 552); this.SpecificationTab.TabIndex = 1; this.SpecificationTab.Text = "Jobs"; this.SpecificationTab.UseVisualStyleBackColor = true; // // RefreshScheduler // this.RefreshScheduler.Interval = 5000; this.RefreshScheduler.Tick += new System.EventHandler(this.RefreshScheduler_Tick); // // Main // this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(935, 645); this.Controls.Add(this.MainTab); this.Controls.Add(statusStrip1); this.Controls.Add(this.ScheduleToolstrip); this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.Margin = new System.Windows.Forms.Padding(4); this.Name = "Main"; this.Text = "Form1"; statusStrip1.ResumeLayout(false); statusStrip1.PerformLayout(); groupBox1.ResumeLayout(false); groupBox2.ResumeLayout(false); splitContainer2.Panel1.ResumeLayout(false); splitContainer2.Panel2.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(splitContainer2)).EndInit(); splitContainer2.ResumeLayout(false); splitContainer1.Panel1.ResumeLayout(false); splitContainer1.Panel2.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(splitContainer1)).EndInit(); splitContainer1.ResumeLayout(false); this.ScheduleToolstrip.ResumeLayout(false); this.ScheduleToolstrip.PerformLayout(); this.MainTab.ResumeLayout(false); this.SchedulesTab.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() { System.Windows.Forms.GroupBox groupBox1; System.Windows.Forms.Label label2; System.Windows.Forms.Label label1; System.Windows.Forms.MenuStrip menuStrip1; System.Windows.Forms.ToolStripSeparator toolStripMenuItem1; System.Windows.Forms.ToolStripSeparator toolStripMenuItem3; System.Windows.Forms.StatusStrip statusStrip1; this.txtMaxRings = new System.Windows.Forms.TextBox(); this.cmoSelectedSection = new System.Windows.Forms.ComboBox(); this.mnuFile = new System.Windows.Forms.ToolStripMenuItem(); this.mnuOpen = new System.Windows.Forms.ToolStripMenuItem(); this.mnuSave = new System.Windows.Forms.ToolStripMenuItem(); this.mnuExportData = new System.Windows.Forms.ToolStripMenuItem(); this.mnuExit = new System.Windows.Forms.ToolStripMenuItem(); this.lblStatus = new System.Windows.Forms.ToolStripStatusLabel(); this.prbStatus = new System.Windows.Forms.ToolStripProgressBar(); this.picSectionImage = new System.Windows.Forms.PictureBox(); groupBox1 = new System.Windows.Forms.GroupBox(); label2 = new System.Windows.Forms.Label(); label1 = new System.Windows.Forms.Label(); menuStrip1 = new System.Windows.Forms.MenuStrip(); toolStripMenuItem1 = new System.Windows.Forms.ToolStripSeparator(); toolStripMenuItem3 = new System.Windows.Forms.ToolStripSeparator(); statusStrip1 = new System.Windows.Forms.StatusStrip(); groupBox1.SuspendLayout(); menuStrip1.SuspendLayout(); statusStrip1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.picSectionImage)).BeginInit(); this.SuspendLayout(); // // groupBox1 // groupBox1.Controls.Add(this.txtMaxRings); groupBox1.Controls.Add(label2); groupBox1.Controls.Add(this.cmoSelectedSection); groupBox1.Controls.Add(label1); groupBox1.Dock = System.Windows.Forms.DockStyle.Right; groupBox1.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); groupBox1.Location = new System.Drawing.Point(469, 24); groupBox1.Name = "groupBox1"; groupBox1.Size = new System.Drawing.Size(200, 474); groupBox1.TabIndex = 0; groupBox1.TabStop = false; groupBox1.Text = "Sections"; // // txtMaxRings // this.txtMaxRings.Location = new System.Drawing.Point(94, 62); this.txtMaxRings.Name = "txtMaxRings"; this.txtMaxRings.Size = new System.Drawing.Size(44, 20); this.txtMaxRings.TabIndex = 4; this.txtMaxRings.Leave += new System.EventHandler(this.txtMaxRings_Leave); // // label2 // label2.AutoSize = true; label2.Location = new System.Drawing.Point(6, 65); label2.Name = "label2"; label2.Size = new System.Drawing.Size(57, 14); label2.TabIndex = 3; label2.Text = "Max Rings"; // // cmoSelectedSection // this.cmoSelectedSection.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmoSelectedSection.FormattingEnabled = true; this.cmoSelectedSection.Location = new System.Drawing.Point(94, 26); this.cmoSelectedSection.Name = "cmoSelectedSection"; this.cmoSelectedSection.Size = new System.Drawing.Size(90, 22); this.cmoSelectedSection.TabIndex = 1; this.cmoSelectedSection.SelectedIndexChanged += new System.EventHandler(this.cmoSelectedSection_SelectedIndexChanged); // // label1 // label1.AutoSize = true; label1.Location = new System.Drawing.Point(6, 29); label1.Name = "label1"; label1.Size = new System.Drawing.Size(82, 14); label1.TabIndex = 0; label1.Text = "Current Section"; // // menuStrip1 // menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.mnuFile}); menuStrip1.Location = new System.Drawing.Point(0, 0); menuStrip1.Name = "menuStrip1"; menuStrip1.Size = new System.Drawing.Size(669, 24); menuStrip1.TabIndex = 2; menuStrip1.Text = "menuStrip1"; // // mnuFile // this.mnuFile.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.mnuOpen, this.mnuSave, toolStripMenuItem1, this.mnuExportData, toolStripMenuItem3, this.mnuExit}); this.mnuFile.Name = "mnuFile"; this.mnuFile.Size = new System.Drawing.Size(37, 20); this.mnuFile.Text = "&File"; // // mnuOpen // this.mnuOpen.Name = "mnuOpen"; this.mnuOpen.Size = new System.Drawing.Size(142, 22); this.mnuOpen.Text = "&Open..."; this.mnuOpen.Click += new System.EventHandler(this.mnuOpen_Click); // // mnuSave // this.mnuSave.Name = "mnuSave"; this.mnuSave.Size = new System.Drawing.Size(142, 22); this.mnuSave.Text = "&Save..."; this.mnuSave.Click += new System.EventHandler(this.mnuSave_Click); // // toolStripMenuItem1 // toolStripMenuItem1.Name = "toolStripMenuItem1"; toolStripMenuItem1.Size = new System.Drawing.Size(139, 6); // // mnuExportData // this.mnuExportData.Name = "mnuExportData"; this.mnuExportData.Size = new System.Drawing.Size(142, 22); this.mnuExportData.Text = "Export data..."; this.mnuExportData.Click += new System.EventHandler(this.mnuExportData_Click); // // toolStripMenuItem3 // toolStripMenuItem3.Name = "toolStripMenuItem3"; toolStripMenuItem3.Size = new System.Drawing.Size(139, 6); // // mnuExit // this.mnuExit.Name = "mnuExit"; this.mnuExit.Size = new System.Drawing.Size(142, 22); this.mnuExit.Text = "&Exit"; this.mnuExit.Click += new System.EventHandler(this.mnuExit_Click); // // statusStrip1 // statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.lblStatus, this.prbStatus}); statusStrip1.Location = new System.Drawing.Point(0, 476); statusStrip1.Name = "statusStrip1"; statusStrip1.Size = new System.Drawing.Size(469, 22); statusStrip1.TabIndex = 3; statusStrip1.Text = "statusStrip1"; // // lblStatus // this.lblStatus.Name = "lblStatus"; this.lblStatus.Size = new System.Drawing.Size(52, 17); this.lblStatus.Text = "lblStatus"; // // prbStatus // this.prbStatus.Name = "prbStatus"; this.prbStatus.Size = new System.Drawing.Size(100, 16); // // picSectionImage // this.picSectionImage.BackColor = System.Drawing.Color.Black; this.picSectionImage.Dock = System.Windows.Forms.DockStyle.Fill; this.picSectionImage.Location = new System.Drawing.Point(0, 24); this.picSectionImage.Name = "picSectionImage"; this.picSectionImage.Size = new System.Drawing.Size(469, 474); this.picSectionImage.TabIndex = 1; this.picSectionImage.TabStop = false; this.picSectionImage.Paint += new System.Windows.Forms.PaintEventHandler(this.picSectionImage_Paint); this.picSectionImage.MouseDown += new System.Windows.Forms.MouseEventHandler(this.picSectionImage_MouseDown); // // MainForm // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(669, 498); this.Controls.Add(statusStrip1); this.Controls.Add(this.picSectionImage); this.Controls.Add(groupBox1); this.Controls.Add(menuStrip1); this.Name = "MainForm"; this.Text = "Sonic 3 Special Stage - Section Decoder"; groupBox1.ResumeLayout(false); groupBox1.PerformLayout(); menuStrip1.ResumeLayout(false); menuStrip1.PerformLayout(); statusStrip1.ResumeLayout(false); statusStrip1.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.picSectionImage)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); }
/// <summary> /// デザイナー サポートに必要なメソッドです。このメソッドの内容を /// コード エディターで変更しないでください。 /// </summary> void InitializeComponent() { System.Windows.Forms.ToolStripMenuItem itmFile; System.Windows.Forms.ToolStripMenuItem itmNew; System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(EditorForm)); System.Windows.Forms.ToolStripMenuItem itmOpen; System.Windows.Forms.ToolStripSeparator sepFile1; System.Windows.Forms.ToolStripMenuItem itmSave; System.Windows.Forms.ToolStripMenuItem itmSaveAs; System.Windows.Forms.ToolStripSeparator sepFile2; System.Windows.Forms.ToolStripMenuItem itmDocumentSettings; System.Windows.Forms.ToolStripSeparator sepFile3; System.Windows.Forms.ToolStripMenuItem itmExit; System.Windows.Forms.ToolStripMenuItem itmEdit; System.Windows.Forms.ToolStripMenuItem itmSelectAll; System.Windows.Forms.ToolStripMenuItem itmInvertSelections; System.Windows.Forms.ToolStripMenuItem itmImage; System.Windows.Forms.ToolStripMenuItem itmAdd; System.Windows.Forms.ToolStripMenuItem itmFromFiles; System.Windows.Forms.ToolStripMenuItem itmFromFolder; System.Windows.Forms.ToolStripSeparator sepImage1; System.Windows.Forms.ToolStripSeparator sepImage2; System.Windows.Forms.ToolStripSeparator sepImage3; System.Windows.Forms.ToolStripMenuItem itmSetViewMode; System.Windows.Forms.ToolStripMenuItem itmInvertViewMode; System.Windows.Forms.ToolStripMenuItem itmBookmark; System.Windows.Forms.ToolStripMenuItem itmTool; System.Windows.Forms.ToolStripMenuItem itmOption; System.Windows.Forms.ToolStripMenuItem itmHelp; System.Windows.Forms.ToolStripMenuItem itmAbout; System.Windows.Forms.StatusStrip stsMain; System.Windows.Forms.ToolStripMenuItem itmView; System.Windows.Forms.ToolStripMenuItem itmContentsWindow; System.Windows.Forms.ToolStripMenuItem itmBookmarksWindow; System.Windows.Forms.ToolStripButton btnNew; System.Windows.Forms.ToolStripButton btnOpen; System.Windows.Forms.ToolStripButton btnSave; WeifenLuo.WinFormsUI.Docking.DockPanelSkin dockPanelSkin1 = new WeifenLuo.WinFormsUI.Docking.DockPanelSkin(); WeifenLuo.WinFormsUI.Docking.AutoHideStripSkin autoHideStripSkin1 = new WeifenLuo.WinFormsUI.Docking.AutoHideStripSkin(); WeifenLuo.WinFormsUI.Docking.DockPanelGradient dockPanelGradient1 = new WeifenLuo.WinFormsUI.Docking.DockPanelGradient(); WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient1 = new WeifenLuo.WinFormsUI.Docking.TabGradient(); WeifenLuo.WinFormsUI.Docking.DockPaneStripSkin dockPaneStripSkin1 = new WeifenLuo.WinFormsUI.Docking.DockPaneStripSkin(); WeifenLuo.WinFormsUI.Docking.DockPaneStripGradient dockPaneStripGradient1 = new WeifenLuo.WinFormsUI.Docking.DockPaneStripGradient(); WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient2 = new WeifenLuo.WinFormsUI.Docking.TabGradient(); WeifenLuo.WinFormsUI.Docking.DockPanelGradient dockPanelGradient2 = new WeifenLuo.WinFormsUI.Docking.DockPanelGradient(); WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient3 = new WeifenLuo.WinFormsUI.Docking.TabGradient(); WeifenLuo.WinFormsUI.Docking.DockPaneStripToolWindowGradient dockPaneStripToolWindowGradient1 = new WeifenLuo.WinFormsUI.Docking.DockPaneStripToolWindowGradient(); WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient4 = new WeifenLuo.WinFormsUI.Docking.TabGradient(); WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient5 = new WeifenLuo.WinFormsUI.Docking.TabGradient(); WeifenLuo.WinFormsUI.Docking.DockPanelGradient dockPanelGradient3 = new WeifenLuo.WinFormsUI.Docking.DockPanelGradient(); WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient6 = new WeifenLuo.WinFormsUI.Docking.TabGradient(); WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient7 = new WeifenLuo.WinFormsUI.Docking.TabGradient(); this.itmOpenImage = new System.Windows.Forms.ToolStripMenuItem(); this.itmExclude = new System.Windows.Forms.ToolStripMenuItem(); this.itmExport = new System.Windows.Forms.ToolStripMenuItem(); this.itmExtract = new System.Windows.Forms.ToolStripMenuItem(); this.itmAddBookmark = new System.Windows.Forms.ToolStripMenuItem(); this.itmDeleteBookmark = new System.Windows.Forms.ToolStripMenuItem(); this.lblStatus = new System.Windows.Forms.ToolStripStatusLabel(); this.prgStatus = new System.Windows.Forms.ToolStripProgressBar(); this.lblImageCount = new System.Windows.Forms.ToolStripStatusLabel(); this.menMain = new System.Windows.Forms.MenuStrip(); this.tsMain = new System.Windows.Forms.ToolStrip(); this.dpMain = new WeifenLuo.WinFormsUI.Docking.DockPanel(); itmFile = new System.Windows.Forms.ToolStripMenuItem(); itmNew = new System.Windows.Forms.ToolStripMenuItem(); itmOpen = new System.Windows.Forms.ToolStripMenuItem(); sepFile1 = new System.Windows.Forms.ToolStripSeparator(); itmSave = new System.Windows.Forms.ToolStripMenuItem(); itmSaveAs = new System.Windows.Forms.ToolStripMenuItem(); sepFile2 = new System.Windows.Forms.ToolStripSeparator(); itmDocumentSettings = new System.Windows.Forms.ToolStripMenuItem(); sepFile3 = new System.Windows.Forms.ToolStripSeparator(); itmExit = new System.Windows.Forms.ToolStripMenuItem(); itmEdit = new System.Windows.Forms.ToolStripMenuItem(); itmSelectAll = new System.Windows.Forms.ToolStripMenuItem(); itmInvertSelections = new System.Windows.Forms.ToolStripMenuItem(); itmImage = new System.Windows.Forms.ToolStripMenuItem(); itmAdd = new System.Windows.Forms.ToolStripMenuItem(); itmFromFiles = new System.Windows.Forms.ToolStripMenuItem(); itmFromFolder = new System.Windows.Forms.ToolStripMenuItem(); sepImage1 = new System.Windows.Forms.ToolStripSeparator(); sepImage2 = new System.Windows.Forms.ToolStripSeparator(); sepImage3 = new System.Windows.Forms.ToolStripSeparator(); itmSetViewMode = new System.Windows.Forms.ToolStripMenuItem(); itmInvertViewMode = new System.Windows.Forms.ToolStripMenuItem(); itmBookmark = new System.Windows.Forms.ToolStripMenuItem(); itmTool = new System.Windows.Forms.ToolStripMenuItem(); itmOption = new System.Windows.Forms.ToolStripMenuItem(); itmHelp = new System.Windows.Forms.ToolStripMenuItem(); itmAbout = new System.Windows.Forms.ToolStripMenuItem(); stsMain = new System.Windows.Forms.StatusStrip(); itmView = new System.Windows.Forms.ToolStripMenuItem(); itmContentsWindow = new System.Windows.Forms.ToolStripMenuItem(); itmBookmarksWindow = new System.Windows.Forms.ToolStripMenuItem(); btnNew = new System.Windows.Forms.ToolStripButton(); btnOpen = new System.Windows.Forms.ToolStripButton(); btnSave = new System.Windows.Forms.ToolStripButton(); stsMain.SuspendLayout(); this.menMain.SuspendLayout(); this.tsMain.SuspendLayout(); this.SuspendLayout(); // // itmFile // itmFile.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { itmNew, itmOpen, sepFile1, itmSave, itmSaveAs, sepFile2, itmDocumentSettings, sepFile3, itmExit}); itmFile.Name = "itmFile"; resources.ApplyResources(itmFile, "itmFile"); // // itmNew // resources.ApplyResources(itmNew, "itmNew"); itmNew.Name = "itmNew"; itmNew.Click += new System.EventHandler(this.itmNew_Click); // // itmOpen // resources.ApplyResources(itmOpen, "itmOpen"); itmOpen.Name = "itmOpen"; itmOpen.Click += new System.EventHandler(this.itmOpen_Click); // // sepFile1 // sepFile1.Name = "sepFile1"; resources.ApplyResources(sepFile1, "sepFile1"); // // itmSave // resources.ApplyResources(itmSave, "itmSave"); itmSave.Name = "itmSave"; itmSave.Click += new System.EventHandler(this.itmSave_Click); // // itmSaveAs // itmSaveAs.Name = "itmSaveAs"; resources.ApplyResources(itmSaveAs, "itmSaveAs"); itmSaveAs.Click += new System.EventHandler(this.itmSaveAs_Click); // // sepFile2 // sepFile2.Name = "sepFile2"; resources.ApplyResources(sepFile2, "sepFile2"); // // itmDocumentSettings // resources.ApplyResources(itmDocumentSettings, "itmDocumentSettings"); itmDocumentSettings.Name = "itmDocumentSettings"; itmDocumentSettings.Click += new System.EventHandler(this.itmDocumentSettings_Click); // // sepFile3 // sepFile3.Name = "sepFile3"; resources.ApplyResources(sepFile3, "sepFile3"); // // itmExit // itmExit.Name = "itmExit"; resources.ApplyResources(itmExit, "itmExit"); itmExit.Click += new System.EventHandler(this.itmExit_Click); // // itmEdit // itmEdit.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { itmSelectAll, itmInvertSelections}); itmEdit.Name = "itmEdit"; resources.ApplyResources(itmEdit, "itmEdit"); // // itmSelectAll // itmSelectAll.Name = "itmSelectAll"; resources.ApplyResources(itmSelectAll, "itmSelectAll"); itmSelectAll.Click += new System.EventHandler(this.itmSelectAll_Click); // // itmInvertSelections // itmInvertSelections.Name = "itmInvertSelections"; resources.ApplyResources(itmInvertSelections, "itmInvertSelections"); itmInvertSelections.Click += new System.EventHandler(this.itmInvertSelections_Click); // // itmImage // itmImage.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { itmAdd, sepImage1, this.itmOpenImage, this.itmExclude, sepImage2, this.itmExport, this.itmExtract, sepImage3, itmSetViewMode, itmInvertViewMode}); itmImage.Name = "itmImage"; resources.ApplyResources(itmImage, "itmImage"); // // itmAdd // itmAdd.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { itmFromFiles, itmFromFolder}); itmAdd.Name = "itmAdd"; resources.ApplyResources(itmAdd, "itmAdd"); // // itmFromFiles // resources.ApplyResources(itmFromFiles, "itmFromFiles"); itmFromFiles.Name = "itmFromFiles"; itmFromFiles.Click += new System.EventHandler(this.itmFromFile_Click); // // itmFromFolder // resources.ApplyResources(itmFromFolder, "itmFromFolder"); itmFromFolder.Name = "itmFromFolder"; itmFromFolder.Click += new System.EventHandler(this.itmFromFolder_Click); // // sepImage1 // sepImage1.Name = "sepImage1"; resources.ApplyResources(sepImage1, "sepImage1"); // // itmOpenImage // this.itmOpenImage.Name = "itmOpenImage"; resources.ApplyResources(this.itmOpenImage, "itmOpenImage"); this.itmOpenImage.Click += new System.EventHandler(this.itmOpenImage_Click); // // itmExclude // resources.ApplyResources(this.itmExclude, "itmExclude"); this.itmExclude.Name = "itmExclude"; this.itmExclude.Click += new System.EventHandler(this.itmDelete_Click); // // sepImage2 // sepImage2.Name = "sepImage2"; resources.ApplyResources(sepImage2, "sepImage2"); // // itmExport // resources.ApplyResources(this.itmExport, "itmExport"); this.itmExport.Name = "itmExport"; this.itmExport.Click += new System.EventHandler(this.itmExport_Click); // // itmExtract // resources.ApplyResources(this.itmExtract, "itmExtract"); this.itmExtract.Name = "itmExtract"; this.itmExtract.Click += new System.EventHandler(this.itmExtract_Click); // // sepImage3 // sepImage3.Name = "sepImage3"; resources.ApplyResources(sepImage3, "sepImage3"); // // itmSetViewMode // resources.ApplyResources(itmSetViewMode, "itmSetViewMode"); itmSetViewMode.Name = "itmSetViewMode"; itmSetViewMode.Click += new System.EventHandler(this.itmSetViewMode_Click); // // itmInvertViewMode // itmInvertViewMode.Name = "itmInvertViewMode"; resources.ApplyResources(itmInvertViewMode, "itmInvertViewMode"); itmInvertViewMode.Click += new System.EventHandler(this.itmInvertViewMode_Click); // // itmBookmark // itmBookmark.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.itmAddBookmark, this.itmDeleteBookmark}); itmBookmark.Name = "itmBookmark"; resources.ApplyResources(itmBookmark, "itmBookmark"); // // itmAddBookmark // resources.ApplyResources(this.itmAddBookmark, "itmAddBookmark"); this.itmAddBookmark.Name = "itmAddBookmark"; this.itmAddBookmark.Click += new System.EventHandler(this.itmAddBookmark_Click); // // itmDeleteBookmark // resources.ApplyResources(this.itmDeleteBookmark, "itmDeleteBookmark"); this.itmDeleteBookmark.Name = "itmDeleteBookmark"; this.itmDeleteBookmark.Click += new System.EventHandler(this.itmDeleteBookmark_Click); // // itmTool // itmTool.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { itmOption}); itmTool.Name = "itmTool"; resources.ApplyResources(itmTool, "itmTool"); // // itmOption // itmOption.Name = "itmOption"; resources.ApplyResources(itmOption, "itmOption"); itmOption.Click += new System.EventHandler(this.itmOption_Click); // // itmHelp // itmHelp.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { itmAbout}); itmHelp.Name = "itmHelp"; resources.ApplyResources(itmHelp, "itmHelp"); // // itmAbout // itmAbout.Name = "itmAbout"; resources.ApplyResources(itmAbout, "itmAbout"); itmAbout.Click += new System.EventHandler(this.itmAbout_Click); // // stsMain // stsMain.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.lblStatus, this.prgStatus, this.lblImageCount}); resources.ApplyResources(stsMain, "stsMain"); stsMain.Name = "stsMain"; stsMain.RenderMode = System.Windows.Forms.ToolStripRenderMode.Professional; // // lblStatus // this.lblStatus.Name = "lblStatus"; resources.ApplyResources(this.lblStatus, "lblStatus"); this.lblStatus.Spring = true; // // prgStatus // this.prgStatus.Name = "prgStatus"; resources.ApplyResources(this.prgStatus, "prgStatus"); // // lblImageCount // resources.ApplyResources(this.lblImageCount, "lblImageCount"); this.lblImageCount.Name = "lblImageCount"; // // itmView // itmView.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { itmContentsWindow, itmBookmarksWindow}); itmView.Name = "itmView"; resources.ApplyResources(itmView, "itmView"); // // itmContentsWindow // resources.ApplyResources(itmContentsWindow, "itmContentsWindow"); itmContentsWindow.Name = "itmContentsWindow"; itmContentsWindow.Click += new System.EventHandler(this.itmContentsWindow_Click); // // itmBookmarksWindow // resources.ApplyResources(itmBookmarksWindow, "itmBookmarksWindow"); itmBookmarksWindow.Name = "itmBookmarksWindow"; itmBookmarksWindow.Click += new System.EventHandler(this.itmBookmarksWindow_Click); // // btnNew // btnNew.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; resources.ApplyResources(btnNew, "btnNew"); btnNew.Name = "btnNew"; btnNew.Click += new System.EventHandler(this.itmNew_Click); // // btnOpen // btnOpen.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; resources.ApplyResources(btnOpen, "btnOpen"); btnOpen.Name = "btnOpen"; btnOpen.Click += new System.EventHandler(this.itmOpen_Click); // // btnSave // btnSave.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; resources.ApplyResources(btnSave, "btnSave"); btnSave.Name = "btnSave"; btnSave.Click += new System.EventHandler(this.itmSave_Click); // // menMain // this.menMain.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { itmFile, itmEdit, itmView, itmImage, itmBookmark, itmTool, itmHelp}); resources.ApplyResources(this.menMain, "menMain"); this.menMain.Name = "menMain"; this.menMain.RenderMode = System.Windows.Forms.ToolStripRenderMode.Professional; // // tsMain // this.tsMain.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { btnNew, btnOpen, btnSave}); resources.ApplyResources(this.tsMain, "tsMain"); this.tsMain.Name = "tsMain"; this.tsMain.RenderMode = System.Windows.Forms.ToolStripRenderMode.Professional; // // dpMain // resources.ApplyResources(this.dpMain, "dpMain"); this.dpMain.DockBackColor = System.Drawing.SystemColors.Control; this.dpMain.DocumentStyle = WeifenLuo.WinFormsUI.Docking.DocumentStyle.DockingWindow; this.dpMain.Name = "dpMain"; dockPanelGradient1.EndColor = System.Drawing.SystemColors.ControlLight; dockPanelGradient1.StartColor = System.Drawing.SystemColors.ControlLight; autoHideStripSkin1.DockStripGradient = dockPanelGradient1; tabGradient1.EndColor = System.Drawing.SystemColors.Control; tabGradient1.StartColor = System.Drawing.SystemColors.Control; tabGradient1.TextColor = System.Drawing.SystemColors.ControlDarkDark; autoHideStripSkin1.TabGradient = tabGradient1; autoHideStripSkin1.TextFont = new System.Drawing.Font("メイリオ", 9F); dockPanelSkin1.AutoHideStripSkin = autoHideStripSkin1; tabGradient2.EndColor = System.Drawing.SystemColors.ControlLightLight; tabGradient2.StartColor = System.Drawing.SystemColors.ControlLightLight; tabGradient2.TextColor = System.Drawing.SystemColors.ControlText; dockPaneStripGradient1.ActiveTabGradient = tabGradient2; dockPanelGradient2.EndColor = System.Drawing.SystemColors.Control; dockPanelGradient2.StartColor = System.Drawing.SystemColors.Control; dockPaneStripGradient1.DockStripGradient = dockPanelGradient2; tabGradient3.EndColor = System.Drawing.SystemColors.ControlLight; tabGradient3.StartColor = System.Drawing.SystemColors.ControlLight; tabGradient3.TextColor = System.Drawing.SystemColors.ControlText; dockPaneStripGradient1.InactiveTabGradient = tabGradient3; dockPaneStripSkin1.DocumentGradient = dockPaneStripGradient1; dockPaneStripSkin1.TextFont = new System.Drawing.Font("メイリオ", 9F); tabGradient4.EndColor = System.Drawing.SystemColors.ActiveCaption; tabGradient4.LinearGradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical; tabGradient4.StartColor = System.Drawing.SystemColors.GradientActiveCaption; tabGradient4.TextColor = System.Drawing.SystemColors.ActiveCaptionText; dockPaneStripToolWindowGradient1.ActiveCaptionGradient = tabGradient4; tabGradient5.EndColor = System.Drawing.SystemColors.Control; tabGradient5.StartColor = System.Drawing.SystemColors.Control; tabGradient5.TextColor = System.Drawing.SystemColors.ControlText; dockPaneStripToolWindowGradient1.ActiveTabGradient = tabGradient5; dockPanelGradient3.EndColor = System.Drawing.SystemColors.ControlLight; dockPanelGradient3.StartColor = System.Drawing.SystemColors.ControlLight; dockPaneStripToolWindowGradient1.DockStripGradient = dockPanelGradient3; tabGradient6.EndColor = System.Drawing.SystemColors.InactiveCaption; tabGradient6.LinearGradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical; tabGradient6.StartColor = System.Drawing.SystemColors.GradientInactiveCaption; tabGradient6.TextColor = System.Drawing.SystemColors.InactiveCaptionText; dockPaneStripToolWindowGradient1.InactiveCaptionGradient = tabGradient6; tabGradient7.EndColor = System.Drawing.Color.Transparent; tabGradient7.StartColor = System.Drawing.Color.Transparent; tabGradient7.TextColor = System.Drawing.SystemColors.ControlDarkDark; dockPaneStripToolWindowGradient1.InactiveTabGradient = tabGradient7; dockPaneStripSkin1.ToolWindowGradient = dockPaneStripToolWindowGradient1; dockPanelSkin1.DockPaneStripSkin = dockPaneStripSkin1; this.dpMain.Skin = dockPanelSkin1; // // EditorForm // this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None; resources.ApplyResources(this, "$this"); this.Controls.Add(this.dpMain); this.Controls.Add(stsMain); this.Controls.Add(this.tsMain); this.Controls.Add(this.menMain); this.MainMenuStrip = this.menMain; this.Name = "EditorForm"; stsMain.ResumeLayout(false); stsMain.PerformLayout(); this.menMain.ResumeLayout(false); this.menMain.PerformLayout(); this.tsMain.ResumeLayout(false); this.tsMain.PerformLayout(); this.ResumeLayout(false); this.PerformLayout(); }
/// <summary> /// 此為設計工具支援所需的方法 - 請勿使用程式碼編輯器修改 /// 這個方法的內容。 /// </summary> private void InitializeComponent() { System.Windows.Forms.GroupBox groupBox2; System.Windows.Forms.GroupBox groupBox1; System.Windows.Forms.StatusStrip statusStrip1; System.Windows.Forms.GroupBox groupBox3; System.Windows.Forms.GroupBox groupBox4; System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea(); System.Windows.Forms.DataVisualization.Charting.Legend legend1 = new System.Windows.Forms.DataVisualization.Charting.Legend(); this.textBox1 = new System.Windows.Forms.TextBox(); this.pictureBox1 = new System.Windows.Forms.PictureBox(); this.toolStripStatusLabel0 = new System.Windows.Forms.ToolStripStatusLabel(); this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel(); this.toolStripStatusLabel2 = new System.Windows.Forms.ToolStripStatusLabel(); this.pictureBox2 = new System.Windows.Forms.PictureBox(); this.chart1 = new System.Windows.Forms.DataVisualization.Charting.Chart(); this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog(); this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel(); this.menuStrip1 = new System.Windows.Forms.MenuStrip(); this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.openFileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.modeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.originalToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.negativeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.grayToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.redToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.greenToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.blueToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.operateToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.thresholdToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.resizeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.rotateToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.stretchToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.equalizeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.specificationToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.outlierToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.lowPassToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.edgeCrispenToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.highBoostToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.gradientToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.toolToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.penetrateToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.bitPlaneToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.fractalToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); groupBox2 = new System.Windows.Forms.GroupBox(); groupBox1 = new System.Windows.Forms.GroupBox(); statusStrip1 = new System.Windows.Forms.StatusStrip(); groupBox3 = new System.Windows.Forms.GroupBox(); groupBox4 = new System.Windows.Forms.GroupBox(); groupBox2.SuspendLayout(); groupBox1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit(); statusStrip1.SuspendLayout(); groupBox3.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit(); groupBox4.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.chart1)).BeginInit(); this.tableLayoutPanel1.SuspendLayout(); this.menuStrip1.SuspendLayout(); this.SuspendLayout(); // // groupBox2 // groupBox2.Controls.Add(this.textBox1); groupBox2.Dock = System.Windows.Forms.DockStyle.Fill; groupBox2.Location = new System.Drawing.Point(502, 36); groupBox2.Name = "groupBox2"; groupBox2.Size = new System.Drawing.Size(490, 301); groupBox2.TabIndex = 8; groupBox2.TabStop = false; groupBox2.Text = "Infomation"; // // textBox1 // this.textBox1.CausesValidation = false; this.textBox1.Dock = System.Windows.Forms.DockStyle.Fill; this.textBox1.Location = new System.Drawing.Point(3, 25); this.textBox1.Multiline = true; this.textBox1.Name = "textBox1"; this.textBox1.ReadOnly = true; this.textBox1.ScrollBars = System.Windows.Forms.ScrollBars.Vertical; this.textBox1.Size = new System.Drawing.Size(484, 273); this.textBox1.TabIndex = 6; this.textBox1.TabStop = false; // // groupBox1 // groupBox1.Controls.Add(this.pictureBox1); groupBox1.Dock = System.Windows.Forms.DockStyle.Fill; groupBox1.Location = new System.Drawing.Point(6, 36); groupBox1.Name = "groupBox1"; groupBox1.Size = new System.Drawing.Size(490, 301); groupBox1.TabIndex = 7; groupBox1.TabStop = false; groupBox1.Text = "Graphic"; // // pictureBox1 // this.pictureBox1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.pictureBox1.Dock = System.Windows.Forms.DockStyle.Fill; this.pictureBox1.Location = new System.Drawing.Point(3, 25); this.pictureBox1.Name = "pictureBox1"; this.pictureBox1.Size = new System.Drawing.Size(484, 273); this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage; this.pictureBox1.TabIndex = 5; this.pictureBox1.TabStop = false; this.pictureBox1.MouseLeave += new System.EventHandler(this.pictureBox1_MouseLeave); this.pictureBox1.MouseMove += new System.Windows.Forms.MouseEventHandler(this.pictureBox1_MouseMove); // // statusStrip1 // this.tableLayoutPanel1.SetColumnSpan(statusStrip1, 2); statusStrip1.ImageScalingSize = new System.Drawing.Size(24, 24); statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.toolStripStatusLabel0, this.toolStripStatusLabel1, this.toolStripStatusLabel2 }); statusStrip1.Location = new System.Drawing.Point(3, 548); statusStrip1.Name = "statusStrip1"; statusStrip1.Size = new System.Drawing.Size(992, 28); statusStrip1.TabIndex = 1; statusStrip1.Text = "statusStrip1"; // // toolStripStatusLabel0 // this.toolStripStatusLabel0.AutoSize = false; this.toolStripStatusLabel0.Name = "toolStripStatusLabel0"; this.toolStripStatusLabel0.Size = new System.Drawing.Size(100, 23); this.toolStripStatusLabel0.Text = "Original"; // // toolStripStatusLabel1 // this.toolStripStatusLabel1.Name = "toolStripStatusLabel1"; this.toolStripStatusLabel1.Size = new System.Drawing.Size(64, 23); this.toolStripStatusLabel1.Text = "( x , y )"; // // toolStripStatusLabel2 // this.toolStripStatusLabel2.Name = "toolStripStatusLabel2"; this.toolStripStatusLabel2.Size = new System.Drawing.Size(96, 23); this.toolStripStatusLabel2.Text = "( R , G , B )"; // // groupBox3 // groupBox3.CausesValidation = false; groupBox3.Controls.Add(this.pictureBox2); groupBox3.Dock = System.Windows.Forms.DockStyle.Fill; groupBox3.Location = new System.Drawing.Point(502, 343); groupBox3.Name = "groupBox3"; groupBox3.Size = new System.Drawing.Size(490, 199); groupBox3.TabIndex = 9; groupBox3.TabStop = false; groupBox3.Text = "Palette"; // // pictureBox2 // this.pictureBox2.Dock = System.Windows.Forms.DockStyle.Fill; this.pictureBox2.Location = new System.Drawing.Point(3, 25); this.pictureBox2.Name = "pictureBox2"; this.pictureBox2.Size = new System.Drawing.Size(484, 171); this.pictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage; this.pictureBox2.TabIndex = 0; this.pictureBox2.TabStop = false; this.pictureBox2.MouseLeave += new System.EventHandler(this.pictureBox2_MouseLeave); this.pictureBox2.MouseMove += new System.Windows.Forms.MouseEventHandler(this.pictureBox2_MouseMove); // // groupBox4 // groupBox4.Controls.Add(this.chart1); groupBox4.Dock = System.Windows.Forms.DockStyle.Fill; groupBox4.Location = new System.Drawing.Point(6, 343); groupBox4.Name = "groupBox4"; groupBox4.Size = new System.Drawing.Size(490, 199); groupBox4.TabIndex = 10; groupBox4.TabStop = false; groupBox4.Text = "Histogram"; // // chart1 // chartArea1.AxisX.Interval = 255D; chartArea1.AxisX.LabelStyle.Interval = 0D; chartArea1.AxisY.Enabled = System.Windows.Forms.DataVisualization.Charting.AxisEnabled.False; chartArea1.AxisY.LabelStyle.IsEndLabelVisible = false; chartArea1.Name = "ChartArea1"; this.chart1.ChartAreas.Add(chartArea1); this.chart1.Dock = System.Windows.Forms.DockStyle.Fill; legend1.Name = "Legend1"; this.chart1.Legends.Add(legend1); this.chart1.Location = new System.Drawing.Point(3, 25); this.chart1.Name = "chart1"; this.chart1.Size = new System.Drawing.Size(484, 171); this.chart1.TabIndex = 0; this.chart1.TabStop = false; // // openFileDialog1 // this.openFileDialog1.FileName = "openFileDialog1"; this.openFileDialog1.FileOk += new System.ComponentModel.CancelEventHandler(this.openFileDialog1_FileOk); // // tableLayoutPanel1 // this.tableLayoutPanel1.ColumnCount = 2; 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, 50F)); this.tableLayoutPanel1.Controls.Add(groupBox2, 1, 1); this.tableLayoutPanel1.Controls.Add(groupBox1, 0, 1); this.tableLayoutPanel1.Controls.Add(statusStrip1, 0, 3); this.tableLayoutPanel1.Controls.Add(this.menuStrip1, 0, 0); this.tableLayoutPanel1.Controls.Add(groupBox3, 1, 2); this.tableLayoutPanel1.Controls.Add(groupBox4, 0, 2); this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill; this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0); this.tableLayoutPanel1.Name = "tableLayoutPanel1"; this.tableLayoutPanel1.Padding = new System.Windows.Forms.Padding(3); this.tableLayoutPanel1.RowCount = 3; this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F)); this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 60F)); this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 40F)); this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F)); this.tableLayoutPanel1.Size = new System.Drawing.Size(998, 579); this.tableLayoutPanel1.TabIndex = 4; this.tableLayoutPanel1.Paint += new System.Windows.Forms.PaintEventHandler(this.tableLayoutPanel1_Paint_1); // // menuStrip1 // this.tableLayoutPanel1.SetColumnSpan(this.menuStrip1, 2); this.menuStrip1.ImageScalingSize = new System.Drawing.Size(24, 24); this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.fileToolStripMenuItem, this.modeToolStripMenuItem, this.operateToolStripMenuItem, this.toolToolStripMenuItem }); this.menuStrip1.Location = new System.Drawing.Point(3, 3); this.menuStrip1.Name = "menuStrip1"; this.menuStrip1.Size = new System.Drawing.Size(992, 30); this.menuStrip1.TabIndex = 3; this.menuStrip1.Text = "menuStrip1"; // // fileToolStripMenuItem // this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.openFileToolStripMenuItem }); this.fileToolStripMenuItem.Name = "fileToolStripMenuItem"; this.fileToolStripMenuItem.ShortcutKeyDisplayString = ""; this.fileToolStripMenuItem.Size = new System.Drawing.Size(61, 26); this.fileToolStripMenuItem.Text = "start"; // // openFileToolStripMenuItem // this.openFileToolStripMenuItem.Name = "openFileToolStripMenuItem"; this.openFileToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.O))); this.openFileToolStripMenuItem.Size = new System.Drawing.Size(235, 30); this.openFileToolStripMenuItem.Text = "open file"; this.openFileToolStripMenuItem.Click += new System.EventHandler(this.openFileToolStripMenuItem_Click_1); // // modeToolStripMenuItem // this.modeToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.originalToolStripMenuItem, this.negativeToolStripMenuItem, this.grayToolStripMenuItem, this.redToolStripMenuItem, this.greenToolStripMenuItem, this.blueToolStripMenuItem }); this.modeToolStripMenuItem.Name = "modeToolStripMenuItem"; this.modeToolStripMenuItem.Size = new System.Drawing.Size(71, 26); this.modeToolStripMenuItem.Text = "mode"; // // originalToolStripMenuItem // this.originalToolStripMenuItem.Name = "originalToolStripMenuItem"; this.originalToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.D1))); this.originalToolStripMenuItem.Size = new System.Drawing.Size(233, 30); this.originalToolStripMenuItem.Text = "Original"; this.originalToolStripMenuItem.Click += new System.EventHandler(this.originalToolStripMenuItem_Click); // // negativeToolStripMenuItem // this.negativeToolStripMenuItem.Name = "negativeToolStripMenuItem"; this.negativeToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.D2))); this.negativeToolStripMenuItem.Size = new System.Drawing.Size(233, 30); this.negativeToolStripMenuItem.Text = "Negative"; this.negativeToolStripMenuItem.Click += new System.EventHandler(this.negativeToolStripMenuItem_Click); // // grayToolStripMenuItem // this.grayToolStripMenuItem.Name = "grayToolStripMenuItem"; this.grayToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.D3))); this.grayToolStripMenuItem.Size = new System.Drawing.Size(233, 30); this.grayToolStripMenuItem.Text = "Gray"; this.grayToolStripMenuItem.Click += new System.EventHandler(this.grayToolStripMenuItem_Click); // // redToolStripMenuItem // this.redToolStripMenuItem.Name = "redToolStripMenuItem"; this.redToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.D4))); this.redToolStripMenuItem.Size = new System.Drawing.Size(233, 30); this.redToolStripMenuItem.Text = "Red"; this.redToolStripMenuItem.Click += new System.EventHandler(this.RedToolStripMenuItem_Click); // // greenToolStripMenuItem // this.greenToolStripMenuItem.Name = "greenToolStripMenuItem"; this.greenToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.D5))); this.greenToolStripMenuItem.Size = new System.Drawing.Size(233, 30); this.greenToolStripMenuItem.Text = "Green"; this.greenToolStripMenuItem.Click += new System.EventHandler(this.GreenToolStripMenuItem_Click); // // blueToolStripMenuItem // this.blueToolStripMenuItem.Name = "blueToolStripMenuItem"; this.blueToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.D6))); this.blueToolStripMenuItem.Size = new System.Drawing.Size(233, 30); this.blueToolStripMenuItem.Text = "Blue"; this.blueToolStripMenuItem.Click += new System.EventHandler(this.BlueToolStripMenuItem_Click); // // operateToolStripMenuItem // this.operateToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.thresholdToolStripMenuItem, this.resizeToolStripMenuItem, this.rotateToolStripMenuItem, this.stretchToolStripMenuItem, this.equalizeToolStripMenuItem, this.specificationToolStripMenuItem, this.outlierToolStripMenuItem, this.lowPassToolStripMenuItem, this.edgeCrispenToolStripMenuItem, this.highBoostToolStripMenuItem, this.gradientToolStripMenuItem }); this.operateToolStripMenuItem.Name = "operateToolStripMenuItem"; this.operateToolStripMenuItem.Size = new System.Drawing.Size(88, 26); this.operateToolStripMenuItem.Text = "operate"; // // thresholdToolStripMenuItem // this.thresholdToolStripMenuItem.Name = "thresholdToolStripMenuItem"; this.thresholdToolStripMenuItem.Size = new System.Drawing.Size(221, 30); this.thresholdToolStripMenuItem.Text = "Threshold"; this.thresholdToolStripMenuItem.Click += new System.EventHandler(this.thresholdToolStripMenuItem_Click); // // resizeToolStripMenuItem // this.resizeToolStripMenuItem.Name = "resizeToolStripMenuItem"; this.resizeToolStripMenuItem.Size = new System.Drawing.Size(221, 30); this.resizeToolStripMenuItem.Text = "Resize"; this.resizeToolStripMenuItem.Click += new System.EventHandler(this.resizeToolStripMenuItem_Click); // // rotateToolStripMenuItem // this.rotateToolStripMenuItem.Name = "rotateToolStripMenuItem"; this.rotateToolStripMenuItem.Size = new System.Drawing.Size(221, 30); this.rotateToolStripMenuItem.Text = "Rotate / Mirror"; this.rotateToolStripMenuItem.Click += new System.EventHandler(this.rotateToolStripMenuItem_Click); // // stretchToolStripMenuItem // this.stretchToolStripMenuItem.Name = "stretchToolStripMenuItem"; this.stretchToolStripMenuItem.Size = new System.Drawing.Size(221, 30); this.stretchToolStripMenuItem.Text = "Stretch"; this.stretchToolStripMenuItem.Click += new System.EventHandler(this.stretchToolStripMenuItem_Click); // // equalizeToolStripMenuItem // this.equalizeToolStripMenuItem.Name = "equalizeToolStripMenuItem"; this.equalizeToolStripMenuItem.Size = new System.Drawing.Size(221, 30); this.equalizeToolStripMenuItem.Text = "Equalize"; this.equalizeToolStripMenuItem.Click += new System.EventHandler(this.equalizeToolStripMenuItem_Click); // // specificationToolStripMenuItem // this.specificationToolStripMenuItem.Name = "specificationToolStripMenuItem"; this.specificationToolStripMenuItem.Size = new System.Drawing.Size(221, 30); this.specificationToolStripMenuItem.Text = "Specification"; this.specificationToolStripMenuItem.Click += new System.EventHandler(this.specificationToolStripMenuItem_Click); // // outlierToolStripMenuItem // this.outlierToolStripMenuItem.Name = "outlierToolStripMenuItem"; this.outlierToolStripMenuItem.Size = new System.Drawing.Size(221, 30); this.outlierToolStripMenuItem.Text = "Outlier"; this.outlierToolStripMenuItem.Click += new System.EventHandler(this.outlierToolStripMenuItem_Click); // // lowPassToolStripMenuItem // this.lowPassToolStripMenuItem.Name = "lowPassToolStripMenuItem"; this.lowPassToolStripMenuItem.Size = new System.Drawing.Size(221, 30); this.lowPassToolStripMenuItem.Text = "LowPass"; this.lowPassToolStripMenuItem.Click += new System.EventHandler(this.lowPassToolStripMenuItem_Click); // // edgeCrispenToolStripMenuItem // this.edgeCrispenToolStripMenuItem.Name = "edgeCrispenToolStripMenuItem"; this.edgeCrispenToolStripMenuItem.Size = new System.Drawing.Size(221, 30); this.edgeCrispenToolStripMenuItem.Text = "EdgeCrispen"; this.edgeCrispenToolStripMenuItem.Click += new System.EventHandler(this.edgeCrispenToolStripMenuItem_Click); // // highBoostToolStripMenuItem // this.highBoostToolStripMenuItem.Name = "highBoostToolStripMenuItem"; this.highBoostToolStripMenuItem.Size = new System.Drawing.Size(221, 30); this.highBoostToolStripMenuItem.Text = "HighBoost"; this.highBoostToolStripMenuItem.Click += new System.EventHandler(this.highBoostToolStripMenuItem_Click); // // gradientToolStripMenuItem // this.gradientToolStripMenuItem.Name = "gradientToolStripMenuItem"; this.gradientToolStripMenuItem.Size = new System.Drawing.Size(221, 30); this.gradientToolStripMenuItem.Text = "Gradient"; this.gradientToolStripMenuItem.Click += new System.EventHandler(this.gradientToolStripMenuItem_Click); // // toolToolStripMenuItem // this.toolToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.penetrateToolStripMenuItem, this.bitPlaneToolStripMenuItem, this.fractalToolStripMenuItem }); this.toolToolStripMenuItem.Name = "toolToolStripMenuItem"; this.toolToolStripMenuItem.Size = new System.Drawing.Size(56, 26); this.toolToolStripMenuItem.Text = "tool"; // // penetrateToolStripMenuItem // this.penetrateToolStripMenuItem.Name = "penetrateToolStripMenuItem"; this.penetrateToolStripMenuItem.Size = new System.Drawing.Size(210, 30); this.penetrateToolStripMenuItem.Text = "Penetrate"; this.penetrateToolStripMenuItem.Click += new System.EventHandler(this.penetrateToolStripMenuItem_Click); // // bitPlaneToolStripMenuItem // this.bitPlaneToolStripMenuItem.Name = "bitPlaneToolStripMenuItem"; this.bitPlaneToolStripMenuItem.Size = new System.Drawing.Size(210, 30); this.bitPlaneToolStripMenuItem.Text = "BitPlane"; this.bitPlaneToolStripMenuItem.Click += new System.EventHandler(this.bitPlaneToolStripMenuItem_Click); // // fractalToolStripMenuItem // this.fractalToolStripMenuItem.Name = "fractalToolStripMenuItem"; this.fractalToolStripMenuItem.Size = new System.Drawing.Size(210, 30); this.fractalToolStripMenuItem.Text = "Fractal"; this.fractalToolStripMenuItem.Click += new System.EventHandler(this.fractalToolStripMenuItem_Click); // // Form1 // this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 18F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.AutoScroll = true; this.BackColor = System.Drawing.SystemColors.Control; this.ClientSize = new System.Drawing.Size(998, 579); this.Controls.Add(this.tableLayoutPanel1); this.Name = "Form1"; this.Text = "PCX reader by B043040044"; groupBox2.ResumeLayout(false); groupBox2.PerformLayout(); groupBox1.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit(); statusStrip1.ResumeLayout(false); statusStrip1.PerformLayout(); groupBox3.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit(); groupBox4.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.chart1)).EndInit(); this.tableLayoutPanel1.ResumeLayout(false); this.tableLayoutPanel1.PerformLayout(); this.menuStrip1.ResumeLayout(false); this.menuStrip1.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.ToolStrip _MainToolStrip; System.Windows.Forms.ToolStripButton _SaveButton; System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(TableViewer)); System.Windows.Forms.ToolStripSeparator _ToolStripSeparator1; System.Windows.Forms.ToolStripButton _CopyHashesButton; System.Windows.Forms.ToolStrip _TableToolStrip; System.Windows.Forms.ToolStripButton _LoadFromFileButton; System.Windows.Forms.ToolStripButton _SaveToFileButton; System.Windows.Forms.StatusStrip _StatusStrip; this._TableComboBox = new System.Windows.Forms.ComboBox(); this._DataGrid = new System.Windows.Forms.DataGridView(); this._HintLabel = new System.Windows.Forms.ToolStripStatusLabel(); _MainToolStrip = new System.Windows.Forms.ToolStrip(); _SaveButton = new System.Windows.Forms.ToolStripButton(); _ToolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator(); _CopyHashesButton = new System.Windows.Forms.ToolStripButton(); _TableToolStrip = new System.Windows.Forms.ToolStrip(); _LoadFromFileButton = new System.Windows.Forms.ToolStripButton(); _SaveToFileButton = new System.Windows.Forms.ToolStripButton(); _StatusStrip = new System.Windows.Forms.StatusStrip(); _MainToolStrip.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this._DataGrid)).BeginInit(); _TableToolStrip.SuspendLayout(); _StatusStrip.SuspendLayout(); this.SuspendLayout(); // // _MainToolStrip // _MainToolStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { _SaveButton, _ToolStripSeparator1, _CopyHashesButton }); _MainToolStrip.Location = new System.Drawing.Point(0, 0); _MainToolStrip.Name = "_MainToolStrip"; _MainToolStrip.Size = new System.Drawing.Size(640, 25); _MainToolStrip.TabIndex = 0; _MainToolStrip.Text = "toolStrip1"; // // _SaveButton // _SaveButton.Enabled = false; _SaveButton.Image = ((System.Drawing.Image)(resources.GetObject("_SaveButton.Image"))); _SaveButton.ImageTransparentColor = System.Drawing.Color.Magenta; _SaveButton.Name = "_SaveButton"; _SaveButton.Size = new System.Drawing.Size(51, 22); _SaveButton.Text = "Save"; // // _ToolStripSeparator1 // _ToolStripSeparator1.Name = "_ToolStripSeparator1"; _ToolStripSeparator1.Size = new System.Drawing.Size(6, 25); // // _CopyHashesButton // _CopyHashesButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; _CopyHashesButton.Image = ((System.Drawing.Image)(resources.GetObject("_CopyHashesButton.Image"))); _CopyHashesButton.ImageTransparentColor = System.Drawing.Color.Magenta; _CopyHashesButton.Name = "_CopyHashesButton"; _CopyHashesButton.Size = new System.Drawing.Size(23, 22); _CopyHashesButton.Text = "Copy Hashes"; _CopyHashesButton.Click += new System.EventHandler(this.OnCopyHashes); // // _TableComboBox // this._TableComboBox.Dock = System.Windows.Forms.DockStyle.Top; this._TableComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this._TableComboBox.FormattingEnabled = true; this._TableComboBox.Location = new System.Drawing.Point(0, 25); this._TableComboBox.Name = "_TableComboBox"; this._TableComboBox.Size = new System.Drawing.Size(640, 21); this._TableComboBox.TabIndex = 1; this._TableComboBox.SelectedIndexChanged += new System.EventHandler(this.OnSelectTable); // // _DataGrid // this._DataGrid.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; this._DataGrid.Dock = System.Windows.Forms.DockStyle.Fill; this._DataGrid.Location = new System.Drawing.Point(0, 71); this._DataGrid.Name = "_DataGrid"; this._DataGrid.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.AutoSizeToAllHeaders; this._DataGrid.Size = new System.Drawing.Size(640, 227); this._DataGrid.TabIndex = 2; this._DataGrid.CurrentCellChanged += new System.EventHandler(this.OnCurrentCellChanged); this._DataGrid.DataError += new System.Windows.Forms.DataGridViewDataErrorEventHandler(this.OnDataError); // // _TableToolStrip // _TableToolStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { _LoadFromFileButton, _SaveToFileButton }); _TableToolStrip.Location = new System.Drawing.Point(0, 46); _TableToolStrip.Name = "_TableToolStrip"; _TableToolStrip.Size = new System.Drawing.Size(640, 25); _TableToolStrip.TabIndex = 3; _TableToolStrip.Text = "toolStrip2"; // // _LoadFromFileButton // _LoadFromFileButton.Enabled = false; _LoadFromFileButton.Image = ((System.Drawing.Image)(resources.GetObject("_LoadFromFileButton.Image"))); _LoadFromFileButton.ImageTransparentColor = System.Drawing.Color.Magenta; _LoadFromFileButton.Name = "_LoadFromFileButton"; _LoadFromFileButton.Size = new System.Drawing.Size(105, 22); _LoadFromFileButton.Text = "Load From File"; _LoadFromFileButton.Click += new System.EventHandler(this.OnLoadFromFile); // // _SaveToFileButton // _SaveToFileButton.Enabled = false; _SaveToFileButton.Image = ((System.Drawing.Image)(resources.GetObject("_SaveToFileButton.Image"))); _SaveToFileButton.ImageTransparentColor = System.Drawing.Color.Magenta; _SaveToFileButton.Name = "_SaveToFileButton"; _SaveToFileButton.Size = new System.Drawing.Size(89, 22); _SaveToFileButton.Text = "Save To File"; _SaveToFileButton.Click += new System.EventHandler(this.OnSaveToFile); // // _StatusStrip // _StatusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this._HintLabel }); _StatusStrip.Location = new System.Drawing.Point(0, 298); _StatusStrip.Name = "_StatusStrip"; _StatusStrip.Size = new System.Drawing.Size(640, 22); _StatusStrip.TabIndex = 4; _StatusStrip.Text = "statusStrip1"; // // _HintLabel // this._HintLabel.Name = "_HintLabel"; this._HintLabel.Size = new System.Drawing.Size(30, 17); this._HintLabel.Text = "Hint"; // // TableViewer // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(640, 320); this.Controls.Add(this._DataGrid); this.Controls.Add(_StatusStrip); this.Controls.Add(_TableToolStrip); this.Controls.Add(this._TableComboBox); this.Controls.Add(_MainToolStrip); this.Name = "TableViewer"; this.Text = "Table"; _MainToolStrip.ResumeLayout(false); _MainToolStrip.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this._DataGrid)).EndInit(); _TableToolStrip.ResumeLayout(false); _TableToolStrip.PerformLayout(); _StatusStrip.ResumeLayout(false); _StatusStrip.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.StatusStrip MainStatus; System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmMain)); System.Windows.Forms.TreeNode treeNode1 = new System.Windows.Forms.TreeNode("Quản lý Chủng loại hàng"); System.Windows.Forms.TreeNode treeNode2 = new System.Windows.Forms.TreeNode("Quản lý Loại hàng"); System.Windows.Forms.TreeNode treeNode3 = new System.Windows.Forms.TreeNode("Quản lý hàng hóa"); System.Windows.Forms.TreeNode treeNode4 = new System.Windows.Forms.TreeNode("Danh mục Hàng hóa", new System.Windows.Forms.TreeNode[] { treeNode1, treeNode2, treeNode3 }); System.Windows.Forms.TreeNode treeNode5 = new System.Windows.Forms.TreeNode("Danh mục Nhà cung cấp"); System.Windows.Forms.TreeNode treeNode6 = new System.Windows.Forms.TreeNode("Quản lý Danh mục", new System.Windows.Forms.TreeNode[] { treeNode4, treeNode5 }); System.Windows.Forms.TreeNode treeNode7 = new System.Windows.Forms.TreeNode("Lập Hóa đơn Bán hàng"); System.Windows.Forms.TreeNode treeNode8 = new System.Windows.Forms.TreeNode("Hóa đơn Bán hàng"); System.Windows.Forms.TreeNode treeNode9 = new System.Windows.Forms.TreeNode("Báo cáo Thống kê", new System.Windows.Forms.TreeNode[] { treeNode8 }); System.Windows.Forms.TreeNode treeNode10 = new System.Windows.Forms.TreeNode("Quản lý Nghiệp vụ", new System.Windows.Forms.TreeNode[] { treeNode7, treeNode9 }); this.LblUer = new System.Windows.Forms.ToolStripStatusLabel(); this.MainMenu = new System.Windows.Forms.MenuStrip(); this.HeThongToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.logoutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.thoatToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.TroGiupToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel(); this.imageList1 = new System.Windows.Forms.ImageList(this.components); this.MainTreeMenu = new System.Windows.Forms.TreeView(); this.gbMain = new System.Windows.Forms.GroupBox(); this.loginToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); MainStatus = new System.Windows.Forms.StatusStrip(); MainStatus.SuspendLayout(); this.MainMenu.SuspendLayout(); this.SuspendLayout(); // // MainStatus // MainStatus.AllowDrop = true; MainStatus.AutoSize = false; MainStatus.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.LblUer }); MainStatus.Location = new System.Drawing.Point(0, 490); MainStatus.Name = "MainStatus"; MainStatus.RenderMode = System.Windows.Forms.ToolStripRenderMode.ManagerRenderMode; MainStatus.RightToLeft = System.Windows.Forms.RightToLeft.No; MainStatus.Size = new System.Drawing.Size(764, 22); MainStatus.TabIndex = 2; MainStatus.Text = "MainStatus"; // // LblUer // this.LblUer.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.LblUer.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(64))))); this.LblUer.Name = "LblUer"; this.LblUer.RightToLeft = System.Windows.Forms.RightToLeft.Yes; this.LblUer.Size = new System.Drawing.Size(59, 17); this.LblUer.Text = "Welcome"; // // MainMenu // this.MainMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.HeThongToolStripMenuItem, this.TroGiupToolStripMenuItem }); this.MainMenu.Location = new System.Drawing.Point(0, 0); this.MainMenu.Name = "MainMenu"; this.MainMenu.Size = new System.Drawing.Size(764, 24); this.MainMenu.TabIndex = 1; this.MainMenu.Text = "menuStrip1"; // // HeThongToolStripMenuItem // this.HeThongToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.logoutToolStripMenuItem, this.thoatToolStripMenuItem, this.loginToolStripMenuItem }); this.HeThongToolStripMenuItem.Name = "HeThongToolStripMenuItem"; this.HeThongToolStripMenuItem.Size = new System.Drawing.Size(63, 20); this.HeThongToolStripMenuItem.Text = "&Hệ thống"; // // logoutToolStripMenuItem // this.logoutToolStripMenuItem.Name = "logoutToolStripMenuItem"; this.logoutToolStripMenuItem.Size = new System.Drawing.Size(152, 22); this.logoutToolStripMenuItem.Text = "&Logout"; this.logoutToolStripMenuItem.Click += new System.EventHandler(this.logoutToolStripMenuItem_Click); // // thoatToolStripMenuItem // this.thoatToolStripMenuItem.Name = "thoatToolStripMenuItem"; this.thoatToolStripMenuItem.Size = new System.Drawing.Size(152, 22); this.thoatToolStripMenuItem.Text = "&Thoát"; this.thoatToolStripMenuItem.Click += new System.EventHandler(this.thoatToolStripMenuItem_Click); // // TroGiupToolStripMenuItem // this.TroGiupToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.aboutToolStripMenuItem }); this.TroGiupToolStripMenuItem.Name = "TroGiupToolStripMenuItem"; this.TroGiupToolStripMenuItem.Size = new System.Drawing.Size(58, 20); this.TroGiupToolStripMenuItem.Text = "Trợ &giúp"; // // aboutToolStripMenuItem // this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem"; this.aboutToolStripMenuItem.Size = new System.Drawing.Size(114, 22); this.aboutToolStripMenuItem.Text = "&About"; // // toolStripStatusLabel1 // this.toolStripStatusLabel1.BorderSides = System.Windows.Forms.ToolStripStatusLabelBorderSides.Left; this.toolStripStatusLabel1.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.toolStripStatusLabel1.Name = "toolStripStatusLabel1"; this.toolStripStatusLabel1.Size = new System.Drawing.Size(231, 17); this.toolStripStatusLabel1.Text = "Super Market Management Version 1.0"; this.toolStripStatusLabel1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // imageList1 // this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream"))); this.imageList1.TransparentColor = System.Drawing.Color.Transparent; this.imageList1.Images.SetKeyName(0, "Finder.ico"); this.imageList1.Images.SetKeyName(1, "Apps.ico"); this.imageList1.Images.SetKeyName(2, "Applications.ico"); // // MainTreeMenu // this.MainTreeMenu.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuBar; this.MainTreeMenu.BackColor = System.Drawing.SystemColors.ControlLightLight; this.MainTreeMenu.Dock = System.Windows.Forms.DockStyle.Left; this.MainTreeMenu.FullRowSelect = true; this.MainTreeMenu.ImageKey = "Apps.ico"; this.MainTreeMenu.ImageList = this.imageList1; this.MainTreeMenu.Location = new System.Drawing.Point(0, 24); this.MainTreeMenu.Name = "MainTreeMenu"; treeNode1.ImageIndex = 0; treeNode1.Name = "DanhMucChungLoaiSP"; treeNode1.Text = "Quản lý Chủng loại hàng"; treeNode2.ImageIndex = 0; treeNode2.Name = "DanhMucLoaiSP"; treeNode2.Text = "Quản lý Loại hàng"; treeNode3.ImageIndex = 0; treeNode3.Name = "QLHangHoa"; treeNode3.Text = "Quản lý hàng hóa"; treeNode4.ImageIndex = 0; treeNode4.Name = "DanhMucSP"; treeNode4.Text = "Danh mục Hàng hóa"; treeNode5.ImageIndex = 0; treeNode5.Name = "DanhMucNhaCungCap"; treeNode5.Text = "Danh mục Nhà cung cấp"; treeNode6.ImageIndex = 0; treeNode6.Name = "QLDanhMuc"; treeNode6.Text = "Quản lý Danh mục"; treeNode7.ImageIndex = 0; treeNode7.Name = "LapHoaDonBH"; treeNode7.Text = "Lập Hóa đơn Bán hàng"; treeNode8.ImageIndex = 0; treeNode8.Name = "HoaDonBH"; treeNode8.Text = "Hóa đơn Bán hàng"; treeNode9.ImageIndex = 0; treeNode9.Name = "BaoCaoThongKe"; treeNode9.Text = "Báo cáo Thống kê"; treeNode10.ImageIndex = 0; treeNode10.Name = "quan_ly_nghiep_vu"; treeNode10.Text = "Quản lý Nghiệp vụ"; this.MainTreeMenu.Nodes.AddRange(new System.Windows.Forms.TreeNode[] { treeNode6, treeNode10 }); this.MainTreeMenu.SelectedImageIndex = 1; this.MainTreeMenu.ShowNodeToolTips = true; this.MainTreeMenu.Size = new System.Drawing.Size(224, 466); this.MainTreeMenu.TabIndex = 10; this.MainTreeMenu.DoubleClick += new System.EventHandler(this.MainTreeMenu_DoubleClick); // // gbMain // this.gbMain.BackColor = System.Drawing.Color.Transparent; this.gbMain.BackgroundImage = global::Super_Market.Properties.Resources.bg; this.gbMain.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; this.gbMain.Dock = System.Windows.Forms.DockStyle.Fill; this.gbMain.Location = new System.Drawing.Point(224, 24); this.gbMain.Name = "gbMain"; this.gbMain.Size = new System.Drawing.Size(540, 466); this.gbMain.TabIndex = 11; this.gbMain.TabStop = false; // // loginToolStripMenuItem // this.loginToolStripMenuItem.Name = "loginToolStripMenuItem"; this.loginToolStripMenuItem.Size = new System.Drawing.Size(152, 22); this.loginToolStripMenuItem.Text = "Login"; this.loginToolStripMenuItem.Click += new System.EventHandler(this.loginToolStripMenuItem_Click); // // frmMain // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(764, 512); this.Controls.Add(this.gbMain); this.Controls.Add(this.MainTreeMenu); this.Controls.Add(MainStatus); this.Controls.Add(this.MainMenu); this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.IsMdiContainer = true; this.MainMenuStrip = this.MainMenu; this.Name = "frmMain"; this.Text = "Smart Market"; this.WindowState = System.Windows.Forms.FormWindowState.Maximized; this.Load += new System.EventHandler(this.frmMain_Load); MainStatus.ResumeLayout(false); MainStatus.PerformLayout(); this.MainMenu.ResumeLayout(false); this.MainMenu.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.StatusStrip statusStrip1; System.Windows.Forms.ContextMenuStrip cmsItems; System.Windows.Forms.ToolStripMenuItem tsmiClearItems; System.Windows.Forms.ToolStripSeparator toolStripSeparator1; System.Windows.Forms.ToolStripMenuItem tsmiRemoveItem; System.Windows.Forms.ToolStrip tsMainStrip; System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm)); System.Windows.Forms.ToolStripSeparator toolStripSeparator2; this.tsslCommittingChanges = new System.Windows.Forms.ToolStripStatusLabel(); this.tsslLoadingFiles = new System.Windows.Forms.ToolStripStatusLabel(); this.tsslDragDropInfo = new System.Windows.Forms.ToolStripStatusLabel(); this.tsmiCommitSelected = new System.Windows.Forms.ToolStripMenuItem(); this.tsmiRevertChanges = new System.Windows.Forms.ToolStripMenuItem(); this.tsddbRenameFiles = new System.Windows.Forms.ToolStripDropDownButton(); this.tsddbRenameFolders = new System.Windows.Forms.ToolStripDropDownButton(); this.tsddbTagsFromName = new System.Windows.Forms.ToolStripDropDownButton(); this.tsmiTitleFromFileName = new System.Windows.Forms.ToolStripMenuItem(); this.tsmiVideoNameFromFileName = new System.Windows.Forms.ToolStripMenuItem(); this.tsmiFixTitleAndName = new System.Windows.Forms.ToolStripMenuItem(); this.tsmiClearTitle = new System.Windows.Forms.ToolStripMenuItem(); this.tsmiClearVideoName = new System.Windows.Forms.ToolStripMenuItem(); this.tsmiSwapTitleAndName = new System.Windows.Forms.ToolStripMenuItem(); this.tsmiRecoverSpaces = new System.Windows.Forms.ToolStripMenuItem(); this.tsmiRemoveBracketContent = new System.Windows.Forms.ToolStripMenuItem(); this.dgvResults = new System.Windows.Forms.DataGridView(); this.tsmiAutoFillFromFileName = new System.Windows.Forms.ToolStripMenuItem(); statusStrip1 = new System.Windows.Forms.StatusStrip(); cmsItems = new System.Windows.Forms.ContextMenuStrip(this.components); tsmiClearItems = new System.Windows.Forms.ToolStripMenuItem(); toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator(); tsmiRemoveItem = new System.Windows.Forms.ToolStripMenuItem(); tsMainStrip = new System.Windows.Forms.ToolStrip(); toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator(); statusStrip1.SuspendLayout(); cmsItems.SuspendLayout(); tsMainStrip.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.dgvResults)).BeginInit(); this.SuspendLayout(); // // statusStrip1 // statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.tsslCommittingChanges, this.tsslLoadingFiles, this.tsslDragDropInfo }); statusStrip1.Location = new System.Drawing.Point(0, 405); statusStrip1.Name = "statusStrip1"; statusStrip1.Size = new System.Drawing.Size(818, 22); statusStrip1.TabIndex = 1; statusStrip1.Text = "statusStrip1"; // // tsslCommittingChanges // this.tsslCommittingChanges.Image = global::MassMediaEdit.Properties.Resources._16x11_Loading_Animation; this.tsslCommittingChanges.Name = "tsslCommittingChanges"; this.tsslCommittingChanges.Size = new System.Drawing.Size(118, 17); this.tsslCommittingChanges.Text = "Writing changes..."; this.tsslCommittingChanges.Visible = false; // // tsslLoadingFiles // this.tsslLoadingFiles.Image = global::MassMediaEdit.Properties.Resources._16x11_Loading_Animation; this.tsslLoadingFiles.Name = "tsslLoadingFiles"; this.tsslLoadingFiles.Size = new System.Drawing.Size(99, 17); this.tsslLoadingFiles.Text = "Loading files..."; this.tsslLoadingFiles.Visible = false; // // tsslDragDropInfo // this.tsslDragDropInfo.Name = "tsslDragDropInfo"; this.tsslDragDropInfo.Size = new System.Drawing.Size(229, 17); this.tsslDragDropInfo.Text = "Please Drag && Drop Files into this Window"; // // cmsItems // cmsItems.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { tsmiClearItems, toolStripSeparator1, tsmiRemoveItem, this.tsmiCommitSelected, this.tsmiRevertChanges }); cmsItems.Name = "cmsItems"; cmsItems.Size = new System.Drawing.Size(119, 98); cmsItems.Opening += new System.ComponentModel.CancelEventHandler(this.cmsItems_Opening); // // tsmiClearItems // tsmiClearItems.Image = global::MassMediaEdit.Properties.Resources.Clear; tsmiClearItems.Name = "tsmiClearItems"; tsmiClearItems.Size = new System.Drawing.Size(118, 22); tsmiClearItems.Text = "Clear"; tsmiClearItems.Click += new System.EventHandler(this.tsmiClearItems_Click); // // toolStripSeparator1 // toolStripSeparator1.Name = "toolStripSeparator1"; toolStripSeparator1.Size = new System.Drawing.Size(115, 6); // // tsmiRemoveItem // tsmiRemoveItem.Image = global::MassMediaEdit.Properties.Resources._24x24_Delete__2_; tsmiRemoveItem.Name = "tsmiRemoveItem"; tsmiRemoveItem.Size = new System.Drawing.Size(118, 22); tsmiRemoveItem.Text = "Remove"; tsmiRemoveItem.Click += new System.EventHandler(this.tsmiRemoveItem_Click); // // tsmiCommitSelected // this.tsmiCommitSelected.Image = global::MassMediaEdit.Properties.Resources._16x16_Blue_Disk; this.tsmiCommitSelected.Name = "tsmiCommitSelected"; this.tsmiCommitSelected.Size = new System.Drawing.Size(118, 22); this.tsmiCommitSelected.Text = "Commit"; this.tsmiCommitSelected.Click += new System.EventHandler(this.tsmiCommitSelected_Click); // // tsmiRevertChanges // this.tsmiRevertChanges.Image = global::MassMediaEdit.Properties.Resources._16x16_Undo; this.tsmiRevertChanges.Name = "tsmiRevertChanges"; this.tsmiRevertChanges.Size = new System.Drawing.Size(118, 22); this.tsmiRevertChanges.Text = "Revert"; this.tsmiRevertChanges.Click += new System.EventHandler(this.tsmiRevertChanges_Click); // // tsMainStrip // tsMainStrip.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden; tsMainStrip.ImageScalingSize = new System.Drawing.Size(24, 24); tsMainStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.tsddbRenameFiles, this.tsddbRenameFolders, this.tsddbTagsFromName }); tsMainStrip.Location = new System.Drawing.Point(0, 0); tsMainStrip.Name = "tsMainStrip"; tsMainStrip.Size = new System.Drawing.Size(818, 31); tsMainStrip.TabIndex = 2; tsMainStrip.Text = "toolStrip1"; // // tsddbRenameFiles // this.tsddbRenameFiles.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.tsddbRenameFiles.Enabled = false; this.tsddbRenameFiles.Image = ((System.Drawing.Image)(resources.GetObject("tsddbRenameFiles.Image"))); this.tsddbRenameFiles.ImageTransparentColor = System.Drawing.Color.Magenta; this.tsddbRenameFiles.Name = "tsddbRenameFiles"; this.tsddbRenameFiles.Size = new System.Drawing.Size(37, 28); this.tsddbRenameFiles.Text = "Rename Files"; this.tsddbRenameFiles.Click += new System.EventHandler(this.tsddbRenameFiles_Click); // // tsddbRenameFolders // this.tsddbRenameFolders.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.tsddbRenameFolders.Enabled = false; this.tsddbRenameFolders.Image = global::MassMediaEdit.Properties.Resources._24x24_Rename_Folders; this.tsddbRenameFolders.ImageTransparentColor = System.Drawing.Color.Magenta; this.tsddbRenameFolders.Name = "tsddbRenameFolders"; this.tsddbRenameFolders.Size = new System.Drawing.Size(37, 28); this.tsddbRenameFolders.Text = "Rename Source Folder"; this.tsddbRenameFolders.Click += new System.EventHandler(this.tsddbRenameFolders_Click); // // tsddbTagsFromName // this.tsddbTagsFromName.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.tsddbTagsFromName.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.tsmiTitleFromFileName, this.tsmiVideoNameFromFileName, this.tsmiFixTitleAndName, this.tsmiClearTitle, this.tsmiClearVideoName, this.tsmiSwapTitleAndName, this.tsmiRecoverSpaces, this.tsmiRemoveBracketContent, toolStripSeparator2, this.tsmiAutoFillFromFileName }); this.tsddbTagsFromName.Enabled = false; this.tsddbTagsFromName.Image = global::MassMediaEdit.Properties.Resources._24x24_Tags_From_Data; this.tsddbTagsFromName.ImageTransparentColor = System.Drawing.Color.Magenta; this.tsddbTagsFromName.Name = "tsddbTagsFromName"; this.tsddbTagsFromName.Size = new System.Drawing.Size(37, 28); this.tsddbTagsFromName.Text = "Tags From Name"; this.tsddbTagsFromName.Click += new System.EventHandler(this.tsddbTagsFromName_Click); // // tsmiTitleFromFileName // this.tsmiTitleFromFileName.Name = "tsmiTitleFromFileName"; this.tsmiTitleFromFileName.Size = new System.Drawing.Size(205, 22); this.tsmiTitleFromFileName.Text = "Title From Filename"; this.tsmiTitleFromFileName.Click += new System.EventHandler(this.tsmiTitleFromFilename_Click); // // tsmiVideoNameFromFileName // this.tsmiVideoNameFromFileName.Name = "tsmiVideoNameFromFileName"; this.tsmiVideoNameFromFileName.Size = new System.Drawing.Size(205, 22); this.tsmiVideoNameFromFileName.Text = "Name From Filename"; this.tsmiVideoNameFromFileName.Click += new System.EventHandler(this.tsmiVideoNameFromFileName_Click); // // tsmiFixTitleAndName // this.tsmiFixTitleAndName.Name = "tsmiFixTitleAndName"; this.tsmiFixTitleAndName.Size = new System.Drawing.Size(205, 22); this.tsmiFixTitleAndName.Text = "Fix Title/Name"; this.tsmiFixTitleAndName.Click += new System.EventHandler(this.tsmiFixTitleAndName_Click); // // tsmiClearTitle // this.tsmiClearTitle.Name = "tsmiClearTitle"; this.tsmiClearTitle.Size = new System.Drawing.Size(205, 22); this.tsmiClearTitle.Text = "Clear Title"; this.tsmiClearTitle.Click += new System.EventHandler(this.tsmiClearTitle_Click); // // tsmiClearVideoName // this.tsmiClearVideoName.Name = "tsmiClearVideoName"; this.tsmiClearVideoName.Size = new System.Drawing.Size(205, 22); this.tsmiClearVideoName.Text = "Clear Name"; this.tsmiClearVideoName.Click += new System.EventHandler(this.tsmiClearVideoName_Click); // // tsmiSwapTitleAndName // this.tsmiSwapTitleAndName.Name = "tsmiSwapTitleAndName"; this.tsmiSwapTitleAndName.Size = new System.Drawing.Size(205, 22); this.tsmiSwapTitleAndName.Text = "Swap Title && Name"; this.tsmiSwapTitleAndName.Click += new System.EventHandler(this.tsmiSwapTitleAndName_Click); // // tsmiRecoverSpaces // this.tsmiRecoverSpaces.Name = "tsmiRecoverSpaces"; this.tsmiRecoverSpaces.Size = new System.Drawing.Size(205, 22); this.tsmiRecoverSpaces.Text = "Recover Spaces"; this.tsmiRecoverSpaces.Click += new System.EventHandler(this.tsmiRecoverSpaces_Click); // // tsmiRemoveBracketContent // this.tsmiRemoveBracketContent.Name = "tsmiRemoveBracketContent"; this.tsmiRemoveBracketContent.Size = new System.Drawing.Size(205, 22); this.tsmiRemoveBracketContent.Text = "Remove Bracket Content"; this.tsmiRemoveBracketContent.Click += new System.EventHandler(this.tsmiRemoveBracketContent_Click); // // dgvResults // this.dgvResults.AllowDrop = true; this.dgvResults.AllowUserToAddRows = false; this.dgvResults.AllowUserToDeleteRows = false; this.dgvResults.AllowUserToResizeRows = false; this.dgvResults.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill; this.dgvResults.BackgroundColor = System.Drawing.SystemColors.Window; this.dgvResults.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; this.dgvResults.ContextMenuStrip = cmsItems; this.dgvResults.Dock = System.Windows.Forms.DockStyle.Fill; this.dgvResults.Location = new System.Drawing.Point(0, 31); this.dgvResults.Name = "dgvResults"; this.dgvResults.RowHeadersVisible = false; this.dgvResults.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect; this.dgvResults.Size = new System.Drawing.Size(818, 374); this.dgvResults.TabIndex = 0; this.dgvResults.SelectionChanged += new System.EventHandler(this.dgvResults_SelectionChanged); this.dgvResults.DragDrop += new System.Windows.Forms.DragEventHandler(this.dgvResults_DragDrop); this.dgvResults.DragEnter += new System.Windows.Forms.DragEventHandler(this.dgvResults_DragEnter); // // toolStripSeparator2 // toolStripSeparator2.Name = "toolStripSeparator2"; toolStripSeparator2.Size = new System.Drawing.Size(202, 6); // // tsmiAutoFillFromFileName // this.tsmiAutoFillFromFileName.Name = "tsmiAutoFillFromFileName"; this.tsmiAutoFillFromFileName.Size = new System.Drawing.Size(205, 22); this.tsmiAutoFillFromFileName.Text = "Auto-Fill from Filename"; this.tsmiAutoFillFromFileName.Click += new System.EventHandler(this.tsmiAutoFillFromFileName_Click); // // MainForm // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(818, 427); this.Controls.Add(this.dgvResults); this.Controls.Add(tsMainStrip); this.Controls.Add(statusStrip1); this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.Name = "MainForm"; this.Text = "MainForm"; statusStrip1.ResumeLayout(false); statusStrip1.PerformLayout(); cmsItems.ResumeLayout(false); tsMainStrip.ResumeLayout(false); tsMainStrip.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.dgvResults)).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.ImageList _TypeImageList; System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ArchiveViewer)); System.Windows.Forms.ToolStrip _ToolStrip; System.Windows.Forms.ToolStripSeparator _ToolStripSeparator1; System.Windows.Forms.StatusStrip _StatusStrip; this._OpenArchiveButton = new System.Windows.Forms.ToolStripButton(); this._SaveArchiveButton = new System.Windows.Forms.ToolStripButton(); this._OptionsButton = new System.Windows.Forms.ToolStripDropDownButton(); this.tsCompression = new System.Windows.Forms.ToolStripMenuItem(); this.tsNone = new System.Windows.Forms.ToolStripMenuItem(); this.tsBest = new System.Windows.Forms.ToolStripMenuItem(); this.tsOne = new System.Windows.Forms.ToolStripMenuItem(); this.tsOpenSelected = new System.Windows.Forms.ToolStripMenuItem(); this.tsHexMode = new System.Windows.Forms.ToolStripMenuItem(); this._StripSeparator = new System.Windows.Forms.ToolStripSeparator(); this.tsPackage = new System.Windows.Forms.ToolStripMenuItem(); this.tsFnvHash = new System.Windows.Forms.ToolStripMenuItem(); this._HelpButton = new System.Windows.Forms.ToolStripButton(); this._HintLabel = new System.Windows.Forms.ToolStripStatusLabel(); this._EntryTreeView = new System.Windows.Forms.TreeView(); this._ContextMenu = new System.Windows.Forms.ContextMenuStrip(this.components); this._ContextMenuExtract = new System.Windows.Forms.ToolStripMenuItem(); this._SaveArchiveDialog = new System.Windows.Forms.SaveFileDialog(); this._OpenArchiveDialog = new System.Windows.Forms.OpenFileDialog(); this._SplitContainer = new System.Windows.Forms.SplitContainer(); _TypeImageList = new System.Windows.Forms.ImageList(this.components); _ToolStrip = new System.Windows.Forms.ToolStrip(); _ToolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator(); _StatusStrip = new System.Windows.Forms.StatusStrip(); _ToolStrip.SuspendLayout(); _StatusStrip.SuspendLayout(); this._ContextMenu.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this._SplitContainer)).BeginInit(); this._SplitContainer.Panel1.SuspendLayout(); this._SplitContainer.SuspendLayout(); this.SuspendLayout(); // // _TypeImageList // _TypeImageList.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("_TypeImageList.ImageStream"))); _TypeImageList.TransparentColor = System.Drawing.Color.Transparent; _TypeImageList.Images.SetKeyName(0, "Unknown"); _TypeImageList.Images.SetKeyName(1, "SDS"); _TypeImageList.Images.SetKeyName(2, "MemFile"); _TypeImageList.Images.SetKeyName(3, "XML"); _TypeImageList.Images.SetKeyName(4, "SystemObjectDatabase"); _TypeImageList.Images.SetKeyName(5, "Script"); _TypeImageList.Images.SetKeyName(6, "Texture"); _TypeImageList.Images.SetKeyName(7, "Sound"); _TypeImageList.Images.SetKeyName(8, "Cutscene"); _TypeImageList.Images.SetKeyName(9, "Generic"); _TypeImageList.Images.SetKeyName(10, "hkAnimation"); // // _ToolStrip // _ToolStrip.BackColor = System.Drawing.Color.Transparent; _ToolStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this._OpenArchiveButton, this._SaveArchiveButton, _ToolStripSeparator1, this._OptionsButton, this._HelpButton }); _ToolStrip.Location = new System.Drawing.Point(0, 0); _ToolStrip.Name = "_ToolStrip"; _ToolStrip.Size = new System.Drawing.Size(934, 25); _ToolStrip.TabIndex = 1; _ToolStrip.Text = "toolStrip1"; // // _OpenArchiveButton // this._OpenArchiveButton.Image = ((System.Drawing.Image)(resources.GetObject("_OpenArchiveButton.Image"))); this._OpenArchiveButton.ImageTransparentColor = System.Drawing.Color.White; this._OpenArchiveButton.Name = "_OpenArchiveButton"; this._OpenArchiveButton.Size = new System.Drawing.Size(99, 22); this._OpenArchiveButton.Text = "Open Archive"; this._OpenArchiveButton.Click += new System.EventHandler(this.OnOpen); // // _SaveArchiveButton // this._SaveArchiveButton.Image = ((System.Drawing.Image)(resources.GetObject("_SaveArchiveButton.Image"))); this._SaveArchiveButton.ImageTransparentColor = System.Drawing.Color.White; this._SaveArchiveButton.Name = "_SaveArchiveButton"; this._SaveArchiveButton.Size = new System.Drawing.Size(94, 22); this._SaveArchiveButton.Text = "Save Archive"; this._SaveArchiveButton.Click += new System.EventHandler(this.OnSaveArchive); // // _ToolStripSeparator1 // _ToolStripSeparator1.Name = "_ToolStripSeparator1"; _ToolStripSeparator1.Size = new System.Drawing.Size(6, 25); // // _OptionsButton // this._OptionsButton.AutoToolTip = false; this._OptionsButton.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.tsCompression, this.tsOpenSelected, this.tsHexMode, this._StripSeparator, this.tsPackage, this.tsFnvHash }); this._OptionsButton.Image = ((System.Drawing.Image)(resources.GetObject("_OptionsButton.Image"))); this._OptionsButton.ImageTransparentColor = System.Drawing.Color.White; this._OptionsButton.Name = "_OptionsButton"; this._OptionsButton.Size = new System.Drawing.Size(78, 22); this._OptionsButton.Text = "Options"; // // tsCompression // this.tsCompression.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.tsNone, this.tsBest, this.tsOne }); this.tsCompression.Name = "tsCompression"; this.tsCompression.Size = new System.Drawing.Size(149, 22); this.tsCompression.Text = "Compression"; // // tsNone // this.tsNone.Checked = true; this.tsNone.CheckState = System.Windows.Forms.CheckState.Checked; this.tsNone.Name = "tsNone"; this.tsNone.Size = new System.Drawing.Size(169, 22); this.tsNone.Text = "No Compression"; this.tsNone.Click += new System.EventHandler(this.OnCheckNone); // // tsBest // this.tsBest.Name = "tsBest"; this.tsBest.Size = new System.Drawing.Size(169, 22); this.tsBest.Text = "Best Compression"; this.tsBest.Click += new System.EventHandler(this.OnCheckBest); // // tsOne // this.tsOne.CheckOnClick = true; this.tsOne.Name = "tsOne"; this.tsOne.Size = new System.Drawing.Size(169, 22); this.tsOne.Text = "One Block"; this.tsOne.Click += new System.EventHandler(this.OnCheckOne); // // tsOpenSelected // this.tsOpenSelected.CheckOnClick = true; this.tsOpenSelected.Name = "tsOpenSelected"; this.tsOpenSelected.Size = new System.Drawing.Size(149, 22); this.tsOpenSelected.Text = "Open selected"; // // tsHexMode // this.tsHexMode.CheckOnClick = true; this.tsHexMode.Name = "tsHexMode"; this.tsHexMode.Size = new System.Drawing.Size(149, 22); this.tsHexMode.Text = "Hex View"; this.tsHexMode.Click += new System.EventHandler(this.OnCheckHex); // // _StripSeparator // this._StripSeparator.Name = "_StripSeparator"; this._StripSeparator.Size = new System.Drawing.Size(146, 6); // // tsPackage // this.tsPackage.Name = "tsPackage"; this.tsPackage.Size = new System.Drawing.Size(149, 22); this.tsPackage.Text = "Package"; this.tsPackage.Click += new System.EventHandler(this.OnPackageShow); // // tsFnvHash // this.tsFnvHash.Name = "tsFnvHash"; this.tsFnvHash.ShortcutKeyDisplayString = ""; this.tsFnvHash.Size = new System.Drawing.Size(149, 22); this.tsFnvHash.Text = "Hash"; this.tsFnvHash.Click += new System.EventHandler(this.OnFnvShow); // // _HelpButton // this._HelpButton.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right; this._HelpButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this._HelpButton.Image = ((System.Drawing.Image)(resources.GetObject("_HelpButton.Image"))); this._HelpButton.ImageTransparentColor = System.Drawing.Color.White; this._HelpButton.Name = "_HelpButton"; this._HelpButton.Size = new System.Drawing.Size(23, 22); this._HelpButton.Text = "About"; this._HelpButton.Click += new System.EventHandler(this.OnAboutShow); // // _StatusStrip // _StatusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this._HintLabel }); _StatusStrip.Location = new System.Drawing.Point(0, 417); _StatusStrip.Name = "_StatusStrip"; _StatusStrip.Size = new System.Drawing.Size(934, 22); _StatusStrip.TabIndex = 2; _StatusStrip.Text = "statusStrip1"; // // _HintLabel // this._HintLabel.Name = "_HintLabel"; this._HintLabel.Size = new System.Drawing.Size(30, 17); this._HintLabel.Text = "Hint"; // // _EntryTreeView // this._EntryTreeView.BorderStyle = System.Windows.Forms.BorderStyle.None; this._EntryTreeView.ContextMenuStrip = this._ContextMenu; this._EntryTreeView.Dock = System.Windows.Forms.DockStyle.Fill; this._EntryTreeView.HideSelection = false; this._EntryTreeView.ImageIndex = 0; this._EntryTreeView.ImageList = _TypeImageList; this._EntryTreeView.Location = new System.Drawing.Point(0, 0); this._EntryTreeView.Name = "_EntryTreeView"; this._EntryTreeView.SelectedImageIndex = 0; this._EntryTreeView.Size = new System.Drawing.Size(287, 390); this._EntryTreeView.TabIndex = 0; this._EntryTreeView.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.OnSelectEntry); this._EntryTreeView.NodeMouseClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.OnOpenEntry1); // // _ContextMenu // this._ContextMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this._ContextMenuExtract }); this._ContextMenu.Name = "_ContextMenu"; this._ContextMenu.Size = new System.Drawing.Size(110, 26); this._ContextMenu.Opening += new System.ComponentModel.CancelEventHandler(this.OnOpenContextMenu); // // _ContextMenuExtract // this._ContextMenuExtract.Name = "_ContextMenuExtract"; this._ContextMenuExtract.Size = new System.Drawing.Size(109, 22); this._ContextMenuExtract.Text = "Extract"; this._ContextMenuExtract.Click += new System.EventHandler(this.OnContextMenuExtract); // // _SaveArchiveDialog // this._SaveArchiveDialog.DefaultExt = "sds"; this._SaveArchiveDialog.Filter = "Mafia III SDS archives (*.sds)|*.sds|All Files (*.*)|*.*"; // // _OpenArchiveDialog // this._OpenArchiveDialog.DefaultExt = "sds"; this._OpenArchiveDialog.Filter = "Mafia III SDS archives (*.sds)|*.sds|All Files (*.*)|*.*"; // // _SplitContainer // this._SplitContainer.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this._SplitContainer.Dock = System.Windows.Forms.DockStyle.Fill; this._SplitContainer.Location = new System.Drawing.Point(0, 25); this._SplitContainer.Name = "_SplitContainer"; // // _SplitContainer.Panel1 // this._SplitContainer.Panel1.Controls.Add(this._EntryTreeView); this._SplitContainer.Size = new System.Drawing.Size(934, 392); this._SplitContainer.SplitterDistance = 289; this._SplitContainer.TabIndex = 4; // // ArchiveViewer // this.AllowDrop = true; this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(934, 439); this.Controls.Add(this._SplitContainer); this.Controls.Add(_StatusStrip); this.Controls.Add(_ToolStrip); this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.Name = "ArchiveViewer"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Text = "Mafia III Resource Explorer"; _ToolStrip.ResumeLayout(false); _ToolStrip.PerformLayout(); _StatusStrip.ResumeLayout(false); _StatusStrip.PerformLayout(); this._ContextMenu.ResumeLayout(false); this._SplitContainer.Panel1.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this._SplitContainer)).EndInit(); this._SplitContainer.ResumeLayout(false); this.ResumeLayout(false); this.PerformLayout(); }
/// <summary> /// Erforderliche Methode für die Designerunterstützung. /// Der Inhalt der Methode darf nicht mit dem Code-Editor geändert werden. /// </summary> private void InitializeComponent() { System.Windows.Forms.ToolStrip tsMain; System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1)); System.Windows.Forms.StatusStrip stsStrip; this.btnSave = new System.Windows.Forms.ToolStripButton(); this.btnAdd = new System.Windows.Forms.ToolStripButton(); this.btnDelete = new System.Windows.Forms.ToolStripButton(); this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator(); this.btnUp = new System.Windows.Forms.ToolStripButton(); this.btnDown = new System.Windows.Forms.ToolStripButton(); this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator(); this.mnuListType = new System.Windows.Forms.ToolStripDropDownButton(); this.miListTypeRelative = new System.Windows.Forms.ToolStripMenuItem(); this.miListTypeAbsolute = new System.Windows.Forms.ToolStripMenuItem(); this.txtNumber = new System.Windows.Forms.ToolStripStatusLabel(); this.lbFiles = new System.Windows.Forms.ListBox(); this.dlgSave = new System.Windows.Forms.SaveFileDialog(); this.dlgOpen = new System.Windows.Forms.OpenFileDialog(); tsMain = new System.Windows.Forms.ToolStrip(); stsStrip = new System.Windows.Forms.StatusStrip(); tsMain.SuspendLayout(); stsStrip.SuspendLayout(); this.SuspendLayout(); // // tsMain // tsMain.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden; tsMain.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.btnSave, this.btnAdd, this.btnDelete, this.toolStripSeparator1, this.btnUp, this.btnDown, this.toolStripSeparator2, this.mnuListType }); tsMain.LayoutStyle = System.Windows.Forms.ToolStripLayoutStyle.HorizontalStackWithOverflow; tsMain.Location = new System.Drawing.Point(0, 0); tsMain.Name = "tsMain"; tsMain.Size = new System.Drawing.Size(602, 25); tsMain.TabIndex = 6; tsMain.Text = "ToolStrip"; // // btnSave // this.btnSave.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.btnSave.Image = ((System.Drawing.Image)(resources.GetObject("btnSave.Image"))); this.btnSave.ImageTransparentColor = System.Drawing.Color.Magenta; this.btnSave.Name = "btnSave"; this.btnSave.Size = new System.Drawing.Size(23, 22); this.btnSave.Text = "Save this list"; this.btnSave.Click += new System.EventHandler(this.btnSave_Click); // // btnAdd // this.btnAdd.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.btnAdd.Image = ((System.Drawing.Image)(resources.GetObject("btnAdd.Image"))); this.btnAdd.ImageTransparentColor = System.Drawing.Color.Magenta; this.btnAdd.Name = "btnAdd"; this.btnAdd.Size = new System.Drawing.Size(23, 22); this.btnAdd.Text = "Add Files"; this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click); // // btnDelete // this.btnDelete.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.btnDelete.Image = ((System.Drawing.Image)(resources.GetObject("btnDelete.Image"))); this.btnDelete.ImageTransparentColor = System.Drawing.Color.Magenta; this.btnDelete.Name = "btnDelete"; this.btnDelete.Size = new System.Drawing.Size(23, 22); this.btnDelete.Text = "Delete Files"; this.btnDelete.Click += new System.EventHandler(this.btnDelete_Click); // // toolStripSeparator1 // this.toolStripSeparator1.Name = "toolStripSeparator1"; this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25); // // btnUp // this.btnUp.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.btnUp.Image = ((System.Drawing.Image)(resources.GetObject("btnUp.Image"))); this.btnUp.ImageTransparentColor = System.Drawing.Color.Magenta; this.btnUp.Name = "btnUp"; this.btnUp.Size = new System.Drawing.Size(23, 22); this.btnUp.Text = "Move Up"; this.btnUp.Click += new System.EventHandler(this.btnUp_Click); // // btnDown // this.btnDown.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.btnDown.Image = ((System.Drawing.Image)(resources.GetObject("btnDown.Image"))); this.btnDown.ImageTransparentColor = System.Drawing.Color.Magenta; this.btnDown.Name = "btnDown"; this.btnDown.Size = new System.Drawing.Size(23, 22); this.btnDown.Text = "Move Down"; this.btnDown.Click += new System.EventHandler(this.btnDown_Click); // // toolStripSeparator2 // this.toolStripSeparator2.Name = "toolStripSeparator2"; this.toolStripSeparator2.Size = new System.Drawing.Size(6, 25); // // mnuListType // this.mnuListType.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; this.mnuListType.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.miListTypeRelative, this.miListTypeAbsolute }); this.mnuListType.Image = ((System.Drawing.Image)(resources.GetObject("mnuListType.Image"))); this.mnuListType.ImageTransparentColor = System.Drawing.Color.Magenta; this.mnuListType.Name = "mnuListType"; this.mnuListType.Size = new System.Drawing.Size(60, 22); this.mnuListType.Text = "ListType"; // // miListTypeRelative // this.miListTypeRelative.Checked = true; this.miListTypeRelative.CheckOnClick = true; this.miListTypeRelative.CheckState = System.Windows.Forms.CheckState.Checked; this.miListTypeRelative.Name = "miListTypeRelative"; this.miListTypeRelative.Size = new System.Drawing.Size(152, 22); this.miListTypeRelative.Text = "relative"; this.miListTypeRelative.Click += new System.EventHandler(this.miListType_Click); // // miListTypeAbsolute // this.miListTypeAbsolute.CheckOnClick = true; this.miListTypeAbsolute.Name = "miListTypeAbsolute"; this.miListTypeAbsolute.Size = new System.Drawing.Size(152, 22); this.miListTypeAbsolute.Text = "absolute"; this.miListTypeAbsolute.Click += new System.EventHandler(this.miListType_Click); // // stsStrip // stsStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.txtNumber }); stsStrip.Location = new System.Drawing.Point(0, 588); stsStrip.Name = "stsStrip"; stsStrip.RenderMode = System.Windows.Forms.ToolStripRenderMode.ManagerRenderMode; stsStrip.ShowItemToolTips = true; stsStrip.Size = new System.Drawing.Size(602, 22); stsStrip.TabIndex = 7; stsStrip.Text = "statusStrip1"; // // txtNumber // this.txtNumber.AutoSize = false; this.txtNumber.BorderSides = ((System.Windows.Forms.ToolStripStatusLabelBorderSides)((System.Windows.Forms.ToolStripStatusLabelBorderSides.Right | System.Windows.Forms.ToolStripStatusLabelBorderSides.Bottom))); this.txtNumber.BorderStyle = System.Windows.Forms.Border3DStyle.SunkenOuter; this.txtNumber.Name = "txtNumber"; this.txtNumber.Size = new System.Drawing.Size(50, 17); this.txtNumber.Text = "0"; this.txtNumber.ToolTipText = "Number of Files in the playlist"; // // lbFiles // this.lbFiles.AllowDrop = true; this.lbFiles.Dock = System.Windows.Forms.DockStyle.Fill; this.lbFiles.FormattingEnabled = true; this.lbFiles.HorizontalScrollbar = true; this.lbFiles.Location = new System.Drawing.Point(0, 25); this.lbFiles.Name = "lbFiles"; this.lbFiles.SelectionMode = System.Windows.Forms.SelectionMode.MultiExtended; this.lbFiles.Size = new System.Drawing.Size(602, 563); this.lbFiles.TabIndex = 0; this.lbFiles.MouseUp += new System.Windows.Forms.MouseEventHandler(this.lbFiles_MouseUp); this.lbFiles.SelectedIndexChanged += new System.EventHandler(this.lbFiles_SelectedIndexChanged); this.lbFiles.DragDrop += new System.Windows.Forms.DragEventHandler(this.lbFiles_DragDrop); this.lbFiles.MouseMove += new System.Windows.Forms.MouseEventHandler(this.lbFiles_MouseMove); this.lbFiles.MouseDown += new System.Windows.Forms.MouseEventHandler(this.lbFiles_MouseDown); this.lbFiles.DragEnter += new System.Windows.Forms.DragEventHandler(this.lbFiles_DragEnter); // // dlgSave // this.dlgSave.DefaultExt = "m3u"; this.dlgSave.Filter = "Filelists (*.lst)|*.lst|All Files|*.*"; this.dlgSave.Title = "Save the list"; // // dlgOpen // this.dlgOpen.AddExtension = false; this.dlgOpen.Filter = "Alle Files|*.*"; this.dlgOpen.Multiselect = true; this.dlgOpen.Title = "Add Files to the list"; // // Form1 // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(602, 610); this.Controls.Add(this.lbFiles); this.Controls.Add(tsMain); this.Controls.Add(stsStrip); this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.Name = "Form1"; this.Text = "FileBox"; tsMain.ResumeLayout(false); tsMain.PerformLayout(); stsStrip.ResumeLayout(false); stsStrip.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.StatusStrip statusStrip1; System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle(); System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle(); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DeleteUnusedBranchesForm)); this.lblStatus = new System.Windows.Forms.ToolStripStatusLabel(); this.pnlBranchesArea = new System.Windows.Forms.Panel(); this.imgLoading = new System.Windows.Forms.PictureBox(); this.BranchesGrid = new System.Windows.Forms.DataGridView(); this._NO_TRANSLATE_deleteDataGridViewCheckBoxColumn = new System.Windows.Forms.DataGridViewCheckBoxColumn(); this.nameDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.dateDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.checkBoxHeaderCell = new DataGridViewCheckBoxHeaderCell(); this.Author = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.Message = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.branchBindingSource = new System.Windows.Forms.BindingSource(this.components); this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel(); this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel(); this.buttonSettings = new System.Windows.Forms.Button(); this.Cancel = new System.Windows.Forms.Button(); this.Delete = new System.Windows.Forms.Button(); this.instructionLabel = new System.Windows.Forms.Label(); this.tableLayoutPanel3 = new System.Windows.Forms.TableLayoutPanel(); this.regexFilter = new System.Windows.Forms.TextBox(); this.IncludeRemoteBranches = new System.Windows.Forms.CheckBox(); this._NO_TRANSLATE_Remote = new System.Windows.Forms.TextBox(); this.useRegexFilter = new System.Windows.Forms.CheckBox(); this.label1 = new System.Windows.Forms.Label(); this.label2 = new System.Windows.Forms.Label(); this.mergedIntoBranch = new System.Windows.Forms.TextBox(); this.olderThanDays = new System.Windows.Forms.NumericUpDown(); this.RefreshBtn = new System.Windows.Forms.Button(); this.includeUnmergedBranches = new System.Windows.Forms.CheckBox(); this.useRegexCaseInsensitive = new System.Windows.Forms.CheckBox(); this.regexDoesNotMatch = new System.Windows.Forms.CheckBox(); statusStrip1 = new System.Windows.Forms.StatusStrip(); statusStrip1.SuspendLayout(); this.pnlBranchesArea.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.imgLoading)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.BranchesGrid)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.branchBindingSource)).BeginInit(); this.tableLayoutPanel1.SuspendLayout(); this.tableLayoutPanel2.SuspendLayout(); this.tableLayoutPanel3.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.olderThanDays)).BeginInit(); this.SuspendLayout(); // // statusStrip1 // statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.lblStatus }); statusStrip1.Location = new System.Drawing.Point(0, 399); statusStrip1.Name = "statusStrip1"; statusStrip1.Size = new System.Drawing.Size(760, 22); statusStrip1.TabIndex = 2; statusStrip1.Text = "statusStrip1"; // // lblStatus // this.lblStatus.Name = "lblStatus"; this.lblStatus.Size = new System.Drawing.Size(0, 17); // // pnlBranchesArea // this.pnlBranchesArea.Controls.Add(this.imgLoading); this.pnlBranchesArea.Controls.Add(this.BranchesGrid); this.pnlBranchesArea.Dock = System.Windows.Forms.DockStyle.Fill; this.pnlBranchesArea.Location = new System.Drawing.Point(3, 275); this.pnlBranchesArea.Name = "pnlBranchesArea"; this.pnlBranchesArea.Size = new System.Drawing.Size(754, 84); this.pnlBranchesArea.TabIndex = 2; // // imgLoading // this.imgLoading.BackColor = System.Drawing.SystemColors.AppWorkspace; this.imgLoading.Dock = System.Windows.Forms.DockStyle.Fill; this.imgLoading.Location = new System.Drawing.Point(0, 0); this.imgLoading.Name = "imgLoading"; this.imgLoading.Size = new System.Drawing.Size(754, 84); this.imgLoading.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage; this.imgLoading.TabIndex = 1; this.imgLoading.TabStop = false; this.imgLoading.Visible = false; // // BranchesGrid // this.BranchesGrid.AllowUserToAddRows = false; this.BranchesGrid.AllowUserToDeleteRows = false; this.BranchesGrid.AutoGenerateColumns = false; this.BranchesGrid.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; this.BranchesGrid.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { this._NO_TRANSLATE_deleteDataGridViewCheckBoxColumn, this.nameDataGridViewTextBoxColumn, this.dateDataGridViewTextBoxColumn, this.Author, this.Message }); this.BranchesGrid.DataSource = this.branchBindingSource; this.BranchesGrid.Dock = System.Windows.Forms.DockStyle.Fill; this.BranchesGrid.Location = new System.Drawing.Point(0, 0); this.BranchesGrid.Name = "BranchesGrid"; this.BranchesGrid.RowHeadersVisible = false; this.BranchesGrid.Size = new System.Drawing.Size(754, 84); this.BranchesGrid.TabIndex = 0; this.BranchesGrid.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.BranchesGrid_CellContentClick); // // _NO_TRANSLATE_deleteDataGridViewCheckBoxColumn // this._NO_TRANSLATE_deleteDataGridViewCheckBoxColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None; this._NO_TRANSLATE_deleteDataGridViewCheckBoxColumn.FillWeight = 20F; this._NO_TRANSLATE_deleteDataGridViewCheckBoxColumn.Name = "_NO_TRANSLATE_deleteDataGridViewCheckBoxColumn"; this._NO_TRANSLATE_deleteDataGridViewCheckBoxColumn.HeaderCell = checkBoxHeaderCell; // // nameDataGridViewTextBoxColumn // this.nameDataGridViewTextBoxColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells; dataGridViewCellStyle1.Padding = new System.Windows.Forms.Padding(5, 0, 5, 0); this.nameDataGridViewTextBoxColumn.DefaultCellStyle = dataGridViewCellStyle1; this.nameDataGridViewTextBoxColumn.FillWeight = 2F; this.nameDataGridViewTextBoxColumn.HeaderText = "Name"; this.nameDataGridViewTextBoxColumn.MinimumWidth = 100; this.nameDataGridViewTextBoxColumn.Name = "nameDataGridViewTextBoxColumn"; this.nameDataGridViewTextBoxColumn.ReadOnly = true; // // dateDataGridViewTextBoxColumn // this.dateDataGridViewTextBoxColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None; this.dateDataGridViewTextBoxColumn.FillWeight = 300F; this.dateDataGridViewTextBoxColumn.HeaderText = "Last activity"; this.dateDataGridViewTextBoxColumn.Name = "dateDataGridViewTextBoxColumn"; this.dateDataGridViewTextBoxColumn.ReadOnly = true; // // Author // this.Author.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells; dataGridViewCellStyle2.Padding = new System.Windows.Forms.Padding(5, 0, 5, 0); this.Author.DefaultCellStyle = dataGridViewCellStyle2; this.Author.FillWeight = 2F; this.Author.HeaderText = "Last author"; this.Author.Name = "Author"; this.Author.ReadOnly = true; // // Message // this.Message.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill; this.Message.HeaderText = "Last message"; this.Message.Name = "Message"; this.Message.ReadOnly = true; this.Message.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; // // branchBindingSource // this.branchBindingSource.DataSource = typeof(DeleteUnusedBranches.Branch); // // tableLayoutPanel1 // this.tableLayoutPanel1.ColumnCount = 1; this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); this.tableLayoutPanel1.Controls.Add(this.pnlBranchesArea, 0, 2); this.tableLayoutPanel1.Controls.Add(this.tableLayoutPanel2, 0, 3); this.tableLayoutPanel1.Controls.Add(this.instructionLabel, 0, 0); this.tableLayoutPanel1.Controls.Add(this.tableLayoutPanel3, 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 = 4; 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, 247F)); 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, 37F)); this.tableLayoutPanel1.Size = new System.Drawing.Size(760, 399); this.tableLayoutPanel1.TabIndex = 1; // // tableLayoutPanel2 // this.tableLayoutPanel2.ColumnCount = 4; this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 20F)); this.tableLayoutPanel2.Controls.Add(this.buttonSettings, 0, 0); this.tableLayoutPanel2.Controls.Add(this.Cancel, 3, 0); this.tableLayoutPanel2.Controls.Add(this.Delete, 2, 0); this.tableLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Fill; this.tableLayoutPanel2.Location = new System.Drawing.Point(3, 365); 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(754, 31); this.tableLayoutPanel2.TabIndex = 2; // // buttonSettings // this.buttonSettings.Location = new System.Drawing.Point(3, 3); this.buttonSettings.Name = "buttonSettings"; this.buttonSettings.Size = new System.Drawing.Size(75, 25); this.buttonSettings.TabIndex = 2; this.buttonSettings.Text = "Settings"; this.buttonSettings.UseVisualStyleBackColor = true; this.buttonSettings.Click += new System.EventHandler(this.buttonSettings_Click); // // Cancel // this.Cancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.Cancel.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.Cancel.Location = new System.Drawing.Point(676, 3); this.Cancel.Name = "Cancel"; this.Cancel.Size = new System.Drawing.Size(75, 25); this.Cancel.TabIndex = 0; this.Cancel.Text = "Close"; this.Cancel.UseVisualStyleBackColor = true; // // Delete // this.Delete.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.Delete.Location = new System.Drawing.Point(595, 3); this.Delete.Name = "Delete"; this.Delete.Size = new System.Drawing.Size(75, 25); this.Delete.TabIndex = 1; this.Delete.Text = "Delete"; this.Delete.UseVisualStyleBackColor = true; this.Delete.Click += new System.EventHandler(this.Delete_Click); // // instructionLabel // this.instructionLabel.Anchor = System.Windows.Forms.AnchorStyles.Left; this.instructionLabel.AutoSize = true; this.instructionLabel.Location = new System.Drawing.Point(3, 5); this.instructionLabel.Name = "instructionLabel"; this.instructionLabel.Size = new System.Drawing.Size(19, 15); this.instructionLabel.TabIndex = 1; this.instructionLabel.Text = "...."; // // 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.regexFilter, 1, 3); this.tableLayoutPanel3.Controls.Add(this.IncludeRemoteBranches, 0, 2); this.tableLayoutPanel3.Controls.Add(this._NO_TRANSLATE_Remote, 1, 2); this.tableLayoutPanel3.Controls.Add(this.useRegexFilter, 0, 3); this.tableLayoutPanel3.Controls.Add(this.label1, 0, 0); this.tableLayoutPanel3.Controls.Add(this.label2, 0, 1); this.tableLayoutPanel3.Controls.Add(this.mergedIntoBranch, 1, 1); this.tableLayoutPanel3.Controls.Add(this.olderThanDays, 1, 0); this.tableLayoutPanel3.Controls.Add(this.useRegexCaseInsensitive, 1, 4); this.tableLayoutPanel3.Controls.Add(this.RefreshBtn, 1, 7); this.tableLayoutPanel3.Controls.Add(this.includeUnmergedBranches, 0, 6); this.tableLayoutPanel3.Controls.Add(this.regexDoesNotMatch, 1, 5); this.tableLayoutPanel3.Dock = System.Windows.Forms.DockStyle.Fill; this.tableLayoutPanel3.Location = new System.Drawing.Point(3, 28); this.tableLayoutPanel3.Name = "tableLayoutPanel3"; this.tableLayoutPanel3.RowCount = 8; this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F)); this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F)); this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F)); this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F)); this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F)); this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F)); this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F)); this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F)); this.tableLayoutPanel3.Size = new System.Drawing.Size(754, 241); this.tableLayoutPanel3.TabIndex = 3; // // regexFilter // this.regexFilter.Location = new System.Drawing.Point(380, 93); this.regexFilter.Name = "regexFilter"; this.regexFilter.Size = new System.Drawing.Size(218, 23); this.regexFilter.TabIndex = 6; this.regexFilter.Text = "/(feature|develop)/"; this.regexFilter.TextChanged += new System.EventHandler(this.ClearResults); // // IncludeRemoteBranches // this.IncludeRemoteBranches.AutoSize = true; this.IncludeRemoteBranches.Location = new System.Drawing.Point(3, 63); this.IncludeRemoteBranches.Name = "IncludeRemoteBranches"; this.IncludeRemoteBranches.Size = new System.Drawing.Size(180, 19); this.IncludeRemoteBranches.TabIndex = 3; this.IncludeRemoteBranches.Text = "Delete remote branches from"; this.IncludeRemoteBranches.UseVisualStyleBackColor = true; this.IncludeRemoteBranches.CheckedChanged += new System.EventHandler(this.ClearResults); // // _NO_TRANSLATE_Remote // this._NO_TRANSLATE_Remote.Location = new System.Drawing.Point(380, 63); this._NO_TRANSLATE_Remote.Name = "_NO_TRANSLATE_Remote"; this._NO_TRANSLATE_Remote.Size = new System.Drawing.Size(218, 23); this._NO_TRANSLATE_Remote.TabIndex = 4; this._NO_TRANSLATE_Remote.Text = "origin"; this._NO_TRANSLATE_Remote.TextChanged += new System.EventHandler(this.ClearResults); // // useRegexFilter // this.useRegexFilter.AutoSize = true; this.useRegexFilter.Location = new System.Drawing.Point(3, 93); this.useRegexFilter.Name = "useRegexFilter"; this.useRegexFilter.Size = new System.Drawing.Size(168, 19); this.useRegexFilter.TabIndex = 5; this.useRegexFilter.Text = "Use regex to filter branches"; this.useRegexFilter.UseVisualStyleBackColor = true; this.useRegexFilter.CheckedChanged += new System.EventHandler(this.ClearResults); // // label1 // this.label1.AutoSize = true; this.label1.Location = new System.Drawing.Point(3, 5); this.label1.Margin = new System.Windows.Forms.Padding(3, 5, 3, 0); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(183, 15); this.label1.TabIndex = 9; this.label1.Text = "Delete branches older than x days"; // // label2 // this.label2.AutoSize = true; this.label2.Location = new System.Drawing.Point(3, 35); this.label2.Margin = new System.Windows.Forms.Padding(3, 5, 3, 0); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(225, 15); this.label2.TabIndex = 10; this.label2.Text = "Delete branches fully merged into branch"; // // mergedIntoBranch // this.mergedIntoBranch.Location = new System.Drawing.Point(380, 33); this.mergedIntoBranch.Name = "mergedIntoBranch"; this.mergedIntoBranch.Size = new System.Drawing.Size(218, 23); this.mergedIntoBranch.TabIndex = 12; this.mergedIntoBranch.TextChanged += new System.EventHandler(this.ClearResults); // // olderThanDays // this.olderThanDays.Location = new System.Drawing.Point(380, 3); this.olderThanDays.Maximum = new decimal(new int[] { 100000, 0, 0, 0 }); this.olderThanDays.Name = "olderThanDays"; this.olderThanDays.Size = new System.Drawing.Size(120, 23); this.olderThanDays.TabIndex = 13; this.olderThanDays.ValueChanged += new System.EventHandler(this.ClearResults); // // RefreshBtn // this.RefreshBtn.Location = new System.Drawing.Point(380, 213); this.RefreshBtn.Name = "RefreshBtn"; this.RefreshBtn.Size = new System.Drawing.Size(124, 23); this.RefreshBtn.TabIndex = 7; this.RefreshBtn.Text = "Search branches"; this.RefreshBtn.UseVisualStyleBackColor = true; this.RefreshBtn.Click += new System.EventHandler(this.Refresh_Click); // // includeUnmergedBranches // this.includeUnmergedBranches.AutoSize = true; this.includeUnmergedBranches.Location = new System.Drawing.Point(3, 183); this.includeUnmergedBranches.Name = "includeUnmergedBranches"; this.includeUnmergedBranches.Size = new System.Drawing.Size(174, 19); this.includeUnmergedBranches.TabIndex = 14; this.includeUnmergedBranches.Text = "Include unmerged branches"; this.includeUnmergedBranches.UseVisualStyleBackColor = true; this.includeUnmergedBranches.CheckedChanged += new System.EventHandler(this.includeUnmergedBranches_CheckedChanged); // // useRegexCaseInsensitive // this.useRegexCaseInsensitive.AutoSize = true; this.useRegexCaseInsensitive.Location = new System.Drawing.Point(380, 123); this.useRegexCaseInsensitive.Name = "useRegexCaseInsensitive"; this.useRegexCaseInsensitive.Size = new System.Drawing.Size(109, 19); this.useRegexCaseInsensitive.TabIndex = 15; this.useRegexCaseInsensitive.Text = "Case insensitive"; this.useRegexCaseInsensitive.UseVisualStyleBackColor = true; // // regexDoesNotMatch // this.regexDoesNotMatch.AutoSize = true; this.regexDoesNotMatch.Location = new System.Drawing.Point(380, 153); this.regexDoesNotMatch.Name = "regexDoesNotMatch"; this.regexDoesNotMatch.Size = new System.Drawing.Size(110, 19); this.regexDoesNotMatch.TabIndex = 16; this.regexDoesNotMatch.Text = "Does not match"; this.regexDoesNotMatch.UseVisualStyleBackColor = true; // // DeleteUnusedBranchesForm // this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi; this.CancelButton = this.Cancel; this.ClientSize = new System.Drawing.Size(760, 421); this.Controls.Add(this.tableLayoutPanel1); this.Controls.Add(statusStrip1); this.MinimumSize = new System.Drawing.Size(600, 400); this.Name = "DeleteUnusedBranchesForm"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; this.Text = "Delete obsolete branches"; statusStrip1.ResumeLayout(false); statusStrip1.PerformLayout(); this.pnlBranchesArea.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.imgLoading)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.BranchesGrid)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.branchBindingSource)).EndInit(); this.tableLayoutPanel1.ResumeLayout(false); this.tableLayoutPanel1.PerformLayout(); this.tableLayoutPanel2.ResumeLayout(false); this.tableLayoutPanel3.ResumeLayout(false); this.tableLayoutPanel3.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.olderThanDays)).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.StatusStrip statusStrip1; this.tssTime = new System.Windows.Forms.ToolStripStatusLabel(); this.tssMessage = new System.Windows.Forms.ToolStripStatusLabel(); this.timer = new System.Windows.Forms.Timer(this.components); this.tbLog = new System.Windows.Forms.TextBox(); statusStrip1 = new System.Windows.Forms.StatusStrip(); statusStrip1.SuspendLayout(); this.SuspendLayout(); // // statusStrip1 // statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.tssTime, this.tssMessage}); statusStrip1.Location = new System.Drawing.Point(0, 137); statusStrip1.Name = "statusStrip1"; statusStrip1.Size = new System.Drawing.Size(600, 22); statusStrip1.TabIndex = 0; statusStrip1.Text = "statusStrip1"; // // tssTime // this.tssTime.AutoSize = false; this.tssTime.Name = "tssTime"; this.tssTime.Size = new System.Drawing.Size(100, 17); this.tssTime.Text = "TIME"; // // tssMessage // this.tssMessage.Name = "tssMessage"; this.tssMessage.Size = new System.Drawing.Size(485, 17); this.tssMessage.Spring = true; this.tssMessage.Text = "TRACK MESSAGE"; this.tssMessage.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // timer // this.timer.Interval = 150; this.timer.Tick += new System.EventHandler(this.timer_Tick); // // tbLog // this.tbLog.BackColor = System.Drawing.Color.Black; this.tbLog.Dock = System.Windows.Forms.DockStyle.Fill; this.tbLog.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204))); this.tbLog.ForeColor = System.Drawing.Color.Lime; this.tbLog.Location = new System.Drawing.Point(0, 0); this.tbLog.MaxLength = 1024000000; this.tbLog.Multiline = true; this.tbLog.Name = "tbLog"; this.tbLog.ReadOnly = true; this.tbLog.ScrollBars = System.Windows.Forms.ScrollBars.Vertical; this.tbLog.Size = new System.Drawing.Size(600, 137); this.tbLog.TabIndex = 1; this.tbLog.WordWrap = false; // // RunTargetTracker // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(600, 159); this.ControlBox = false; this.Controls.Add(this.tbLog); this.Controls.Add(statusStrip1); this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "RunTargetTracker"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; this.Text = "RunTargetTracker"; statusStrip1.ResumeLayout(false); statusStrip1.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.ToolStripMenuItem fileToolStripMenuItem; System.Windows.Forms.ToolStripSeparator toolStripMenuItem1; System.Windows.Forms.ToolStripSeparator toolStripMenuItem2; System.Windows.Forms.SplitContainer splitContainer1; System.Windows.Forms.StatusStrip statusStrip1; System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabel1; System.Windows.Forms.SplitContainer splitContainer2; System.Windows.Forms.ToolStripSeparator toolStripSeparator1; System.Windows.Forms.MenuStrip menuStrip1; this.newToolStripMenuItem = 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.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.canvas = new TouhouSpring.Particle.Canvas(); this.toolStripStatusLabelNumParticles = new System.Windows.Forms.ToolStripStatusLabel(); this.toolStripStatusLabelFps = new System.Windows.Forms.ToolStripStatusLabel(); this.toolStripStatusColor = new System.Windows.Forms.ToolStripStatusLabel(); this.toolStrip1 = new System.Windows.Forms.ToolStrip(); this.toolStripButtonPlayPause = new System.Windows.Forms.ToolStripButton(); this.toolStripButtonRestart = new System.Windows.Forms.ToolStripButton(); this.treeView = new System.Windows.Forms.TreeView(); this.toolStrip = new System.Windows.Forms.ToolStrip(); this.toolStripButtonNewEffect = new System.Windows.Forms.ToolStripButton(); this.toolStripDropDownButtonNewModifier = new System.Windows.Forms.ToolStripDropDownButton(); this.toolStripButtonDelete = new System.Windows.Forms.ToolStripButton(); this.toolStripButtonMoveUp = new System.Windows.Forms.ToolStripButton(); this.toolStripButtonMoveDown = new System.Windows.Forms.ToolStripButton(); this.propertyGrid = new System.Windows.Forms.PropertyGrid(); this.timerFps = new System.Windows.Forms.Timer(this.components); this.colorDialog = new System.Windows.Forms.ColorDialog(); this.saveFileDialog = new System.Windows.Forms.SaveFileDialog(); this.openFileDialog = new System.Windows.Forms.OpenFileDialog(); fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); toolStripMenuItem1 = new System.Windows.Forms.ToolStripSeparator(); toolStripMenuItem2 = new System.Windows.Forms.ToolStripSeparator(); splitContainer1 = new System.Windows.Forms.SplitContainer(); statusStrip1 = new System.Windows.Forms.StatusStrip(); toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel(); splitContainer2 = new System.Windows.Forms.SplitContainer(); toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator(); menuStrip1 = new System.Windows.Forms.MenuStrip(); ((System.ComponentModel.ISupportInitialize)(splitContainer1)).BeginInit(); splitContainer1.Panel1.SuspendLayout(); splitContainer1.Panel2.SuspendLayout(); splitContainer1.SuspendLayout(); statusStrip1.SuspendLayout(); this.toolStrip1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(splitContainer2)).BeginInit(); splitContainer2.Panel1.SuspendLayout(); splitContainer2.Panel2.SuspendLayout(); splitContainer2.SuspendLayout(); this.toolStrip.SuspendLayout(); menuStrip1.SuspendLayout(); this.SuspendLayout(); // // fileToolStripMenuItem // fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.newToolStripMenuItem, this.openToolStripMenuItem, toolStripMenuItem1, this.saveToolStripMenuItem, this.saveAsToolStripMenuItem, toolStripMenuItem2, this.exitToolStripMenuItem}); fileToolStripMenuItem.Name = "fileToolStripMenuItem"; fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20); fileToolStripMenuItem.Text = "&File"; // // newToolStripMenuItem // this.newToolStripMenuItem.Name = "newToolStripMenuItem"; this.newToolStripMenuItem.Size = new System.Drawing.Size(114, 22); this.newToolStripMenuItem.Text = "&New"; this.newToolStripMenuItem.Click += new System.EventHandler(this.newToolStripMenuItem_Click); // // 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); // // toolStripMenuItem1 // toolStripMenuItem1.Name = "toolStripMenuItem1"; toolStripMenuItem1.Size = new System.Drawing.Size(111, 6); // // saveToolStripMenuItem // this.saveToolStripMenuItem.Enabled = false; 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.Enabled = false; this.saveAsToolStripMenuItem.Name = "saveAsToolStripMenuItem"; this.saveAsToolStripMenuItem.Size = new System.Drawing.Size(114, 22); this.saveAsToolStripMenuItem.Text = "Save &As"; // // toolStripMenuItem2 // toolStripMenuItem2.Name = "toolStripMenuItem2"; toolStripMenuItem2.Size = new System.Drawing.Size(111, 6); // // exitToolStripMenuItem // this.exitToolStripMenuItem.Name = "exitToolStripMenuItem"; this.exitToolStripMenuItem.Size = new System.Drawing.Size(114, 22); this.exitToolStripMenuItem.Text = "E&xit"; this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click); // // splitContainer1 // splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill; splitContainer1.Location = new System.Drawing.Point(0, 24); splitContainer1.Name = "splitContainer1"; // // splitContainer1.Panel1 // splitContainer1.Panel1.Controls.Add(this.canvas); splitContainer1.Panel1.Controls.Add(statusStrip1); splitContainer1.Panel1.Controls.Add(this.toolStrip1); // // splitContainer1.Panel2 // splitContainer1.Panel2.Controls.Add(splitContainer2); splitContainer1.Size = new System.Drawing.Size(716, 464); splitContainer1.SplitterDistance = 510; splitContainer1.TabIndex = 1; // // canvas // this.canvas.ClearColor = new Microsoft.Xna.Framework.Color(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); this.canvas.Dock = System.Windows.Forms.DockStyle.Fill; this.canvas.GridColor = new Microsoft.Xna.Framework.Color(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); this.canvas.KeepUpdating = false; this.canvas.Location = new System.Drawing.Point(0, 25); this.canvas.Name = "canvas"; this.canvas.Size = new System.Drawing.Size(510, 417); this.canvas.SystemInstance = null; this.canvas.TabIndex = 0; this.canvas.Text = "canvas1"; // // statusStrip1 // statusStrip1.GripStyle = System.Windows.Forms.ToolStripGripStyle.Visible; statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.toolStripStatusLabelNumParticles, this.toolStripStatusLabelFps, toolStripStatusLabel1, this.toolStripStatusColor}); statusStrip1.Location = new System.Drawing.Point(0, 442); statusStrip1.Name = "statusStrip1"; statusStrip1.Size = new System.Drawing.Size(510, 22); statusStrip1.SizingGrip = false; statusStrip1.TabIndex = 1; statusStrip1.Text = "statusStrip1"; // // toolStripStatusLabelNumParticles // this.toolStripStatusLabelNumParticles.Name = "toolStripStatusLabelNumParticles"; this.toolStripStatusLabelNumParticles.Size = new System.Drawing.Size(76, 17); this.toolStripStatusLabelNumParticles.Text = "Nb Particles :"; // // toolStripStatusLabelFps // this.toolStripStatusLabelFps.Name = "toolStripStatusLabelFps"; this.toolStripStatusLabelFps.Size = new System.Drawing.Size(29, 17); this.toolStripStatusLabelFps.Text = "FPS:"; // // toolStripStatusLabel1 // toolStripStatusLabel1.Name = "toolStripStatusLabel1"; toolStripStatusLabel1.Size = new System.Drawing.Size(74, 17); toolStripStatusLabel1.Text = "Background:"; // // toolStripStatusColor // this.toolStripStatusColor.BackColor = System.Drawing.Color.Black; this.toolStripStatusColor.Name = "toolStripStatusColor"; this.toolStripStatusColor.Size = new System.Drawing.Size(19, 17); this.toolStripStatusColor.Text = " "; this.toolStripStatusColor.Click += new System.EventHandler(this.toolStripStatusColor_Click); // // toolStrip1 // this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.toolStripButtonPlayPause, this.toolStripButtonRestart}); this.toolStrip1.Location = new System.Drawing.Point(0, 0); this.toolStrip1.Name = "toolStrip1"; this.toolStrip1.Size = new System.Drawing.Size(510, 25); this.toolStrip1.TabIndex = 2; this.toolStrip1.Text = "toolStrip1"; // // toolStripButtonPlayPause // this.toolStripButtonPlayPause.Checked = true; this.toolStripButtonPlayPause.CheckOnClick = true; this.toolStripButtonPlayPause.CheckState = System.Windows.Forms.CheckState.Checked; this.toolStripButtonPlayPause.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.toolStripButtonPlayPause.Image = global::TouhouSpring.Particle.Properties.Resources.Pause_16x16; this.toolStripButtonPlayPause.Name = "toolStripButtonPlayPause"; this.toolStripButtonPlayPause.Size = new System.Drawing.Size(23, 22); this.toolStripButtonPlayPause.Click += new System.EventHandler(this.toolStripButtonPlayPause_Click); // // toolStripButtonRestart // this.toolStripButtonRestart.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.toolStripButtonRestart.Image = global::TouhouSpring.Particle.Properties.Resources.Restart_16x16; this.toolStripButtonRestart.Name = "toolStripButtonRestart"; this.toolStripButtonRestart.Size = new System.Drawing.Size(23, 22); this.toolStripButtonRestart.Text = "toolStripButtonRestart"; this.toolStripButtonRestart.Click += new System.EventHandler(this.toolStripButtonRestart_Click); // // splitContainer2 // splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill; splitContainer2.Location = new System.Drawing.Point(0, 0); splitContainer2.Name = "splitContainer2"; splitContainer2.Orientation = System.Windows.Forms.Orientation.Horizontal; // // splitContainer2.Panel1 // splitContainer2.Panel1.Controls.Add(this.treeView); splitContainer2.Panel1.Controls.Add(this.toolStrip); // // splitContainer2.Panel2 // splitContainer2.Panel2.Controls.Add(this.propertyGrid); splitContainer2.Size = new System.Drawing.Size(202, 464); splitContainer2.SplitterDistance = 158; splitContainer2.TabIndex = 0; // // treeView // this.treeView.Dock = System.Windows.Forms.DockStyle.Fill; this.treeView.Enabled = false; this.treeView.HideSelection = false; this.treeView.Location = new System.Drawing.Point(0, 25); this.treeView.Name = "treeView"; this.treeView.ShowRootLines = false; this.treeView.Size = new System.Drawing.Size(202, 133); this.treeView.TabIndex = 0; this.treeView.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.treeView_AfterSelect); // // toolStrip // this.toolStrip.Enabled = false; this.toolStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.toolStripButtonNewEffect, this.toolStripDropDownButtonNewModifier, toolStripSeparator1, this.toolStripButtonDelete, this.toolStripButtonMoveUp, this.toolStripButtonMoveDown}); this.toolStrip.Location = new System.Drawing.Point(0, 0); this.toolStrip.Name = "toolStrip"; this.toolStrip.Size = new System.Drawing.Size(202, 25); this.toolStrip.TabIndex = 1; this.toolStrip.Text = "toolStrip1"; // // toolStripButtonNewEffect // this.toolStripButtonNewEffect.Image = global::TouhouSpring.Particle.Properties.Resources.Add_16x16; this.toolStripButtonNewEffect.Name = "toolStripButtonNewEffect"; this.toolStripButtonNewEffect.Size = new System.Drawing.Size(84, 22); this.toolStripButtonNewEffect.Text = "New Effect"; this.toolStripButtonNewEffect.Click += new System.EventHandler(this.toolStripButtonNewEffect_Click); // // toolStripDropDownButtonNewModifier // this.toolStripDropDownButtonNewModifier.Image = global::TouhouSpring.Particle.Properties.Resources.Add_16x16; this.toolStripDropDownButtonNewModifier.Name = "toolStripDropDownButtonNewModifier"; this.toolStripDropDownButtonNewModifier.Size = new System.Drawing.Size(108, 20); this.toolStripDropDownButtonNewModifier.Text = "New Modifier"; this.toolStripDropDownButtonNewModifier.Visible = false; // // toolStripSeparator1 // toolStripSeparator1.Name = "toolStripSeparator1"; toolStripSeparator1.Size = new System.Drawing.Size(6, 25); // // toolStripButtonDelete // this.toolStripButtonDelete.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.toolStripButtonDelete.Image = global::TouhouSpring.Particle.Properties.Resources.Delete_16x16; this.toolStripButtonDelete.Name = "toolStripButtonDelete"; this.toolStripButtonDelete.Size = new System.Drawing.Size(23, 22); this.toolStripButtonDelete.Text = "Delete"; this.toolStripButtonDelete.Visible = false; this.toolStripButtonDelete.Click += new System.EventHandler(this.toolStripButtonDelete_Click); // // toolStripButtonMoveUp // this.toolStripButtonMoveUp.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.toolStripButtonMoveUp.Image = global::TouhouSpring.Particle.Properties.Resources.UpArrow_16x16; this.toolStripButtonMoveUp.Name = "toolStripButtonMoveUp"; this.toolStripButtonMoveUp.Size = new System.Drawing.Size(23, 22); this.toolStripButtonMoveUp.Text = "Move Up"; this.toolStripButtonMoveUp.Visible = false; this.toolStripButtonMoveUp.Click += new System.EventHandler(this.toolStripButtonMoveUp_Click); // // toolStripButtonMoveDown // this.toolStripButtonMoveDown.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.toolStripButtonMoveDown.Image = global::TouhouSpring.Particle.Properties.Resources.DownArrow_16x16; this.toolStripButtonMoveDown.Name = "toolStripButtonMoveDown"; this.toolStripButtonMoveDown.Size = new System.Drawing.Size(23, 22); this.toolStripButtonMoveDown.Text = "Move Down"; this.toolStripButtonMoveDown.Visible = false; this.toolStripButtonMoveDown.Click += new System.EventHandler(this.toolStripButtonMoveDown_Click); // // propertyGrid // this.propertyGrid.Dock = System.Windows.Forms.DockStyle.Fill; this.propertyGrid.Enabled = false; this.propertyGrid.Location = new System.Drawing.Point(0, 0); this.propertyGrid.Name = "propertyGrid"; this.propertyGrid.Size = new System.Drawing.Size(202, 302); this.propertyGrid.TabIndex = 0; this.propertyGrid.PropertyValueChanged += new System.Windows.Forms.PropertyValueChangedEventHandler(this.propertyGrid_PropertyValueChanged); // // menuStrip1 // menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { fileToolStripMenuItem}); menuStrip1.Location = new System.Drawing.Point(0, 0); menuStrip1.Name = "menuStrip1"; menuStrip1.Size = new System.Drawing.Size(716, 24); menuStrip1.TabIndex = 0; menuStrip1.Text = "menuStrip1"; // // timerFps // this.timerFps.Enabled = true; this.timerFps.Interval = 500; this.timerFps.Tick += new System.EventHandler(this.timerFps_Tick); // // saveFileDialog // this.saveFileDialog.Filter = "XML File (*.xml)|*.xml"; this.saveFileDialog.FileOk += new System.ComponentModel.CancelEventHandler(this.fileDialog_FileOk); // // openFileDialog // this.openFileDialog.Filter = "XML File (*.xml)|*.xml"; this.openFileDialog.FileOk += new System.ComponentModel.CancelEventHandler(this.fileDialog_FileOk); // // Main // this.ClientSize = new System.Drawing.Size(716, 488); this.Controls.Add(splitContainer1); this.Controls.Add(menuStrip1); this.MainMenuStrip = menuStrip1; this.Name = "Main"; this.Text = "Particle Workshop"; this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Main_FormClosing); splitContainer1.Panel1.ResumeLayout(false); splitContainer1.Panel1.PerformLayout(); splitContainer1.Panel2.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(splitContainer1)).EndInit(); splitContainer1.ResumeLayout(false); statusStrip1.ResumeLayout(false); statusStrip1.PerformLayout(); this.toolStrip1.ResumeLayout(false); this.toolStrip1.PerformLayout(); splitContainer2.Panel1.ResumeLayout(false); splitContainer2.Panel1.PerformLayout(); splitContainer2.Panel2.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(splitContainer2)).EndInit(); splitContainer2.ResumeLayout(false); this.toolStrip.ResumeLayout(false); this.toolStrip.PerformLayout(); menuStrip1.ResumeLayout(false); menuStrip1.PerformLayout(); this.ResumeLayout(false); this.PerformLayout(); }