CellTriggersToolDialog.Designer.cs (5794B)
1 // 2 // Copyright 2020 Electronic Arts Inc. 3 // 4 // The Command & Conquer Map Editor and corresponding source code is free 5 // software: you can redistribute it and/or modify it under the terms of 6 // the GNU General Public License as published by the Free Software Foundation, 7 // either version 3 of the License, or (at your option) any later version. 8 9 // The Command & Conquer Map Editor and corresponding source code is distributed 10 // in the hope that it will be useful, but with permitted additional restrictions 11 // under Section 7 of the GPL. See the GNU General Public License in LICENSE.TXT 12 // distributed with this program. You should have received a copy of the 13 // GNU General Public License along with permitted additional restrictions 14 // with this program. If not, see https://github.com/electronicarts/CnC_Remastered_Collection 15 namespace MobiusEditor.Tools.Dialogs 16 { 17 partial class CellTriggersToolDialog 18 { 19 /// <summary> 20 /// Required designer variable. 21 /// </summary> 22 private System.ComponentModel.IContainer components = null; 23 24 /// <summary> 25 /// Clean up any resources being used. 26 /// </summary> 27 /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> 28 protected override void Dispose(bool disposing) 29 { 30 if (disposing && (components != null)) 31 { 32 components.Dispose(); 33 } 34 base.Dispose(disposing); 35 } 36 37 #region Windows Form Designer generated code 38 39 /// <summary> 40 /// Required method for Designer support - do not modify 41 /// the contents of this method with the code editor. 42 /// </summary> 43 private void InitializeComponent() 44 { 45 this.tableLayoutPanel4 = new System.Windows.Forms.TableLayoutPanel(); 46 this.label1 = new System.Windows.Forms.Label(); 47 this.triggerCombo = new System.Windows.Forms.ComboBox(); 48 this.tableLayoutPanel4.SuspendLayout(); 49 this.SuspendLayout(); 50 // 51 // tableLayoutPanel4 52 // 53 this.tableLayoutPanel4.AutoSize = true; 54 this.tableLayoutPanel4.ColumnCount = 2; 55 this.tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); 56 this.tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); 57 this.tableLayoutPanel4.Controls.Add(this.label1, 0, 0); 58 this.tableLayoutPanel4.Controls.Add(this.triggerCombo, 1, 0); 59 this.tableLayoutPanel4.Dock = System.Windows.Forms.DockStyle.Fill; 60 this.tableLayoutPanel4.Location = new System.Drawing.Point(0, 0); 61 this.tableLayoutPanel4.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); 62 this.tableLayoutPanel4.Name = "tableLayoutPanel4"; 63 this.tableLayoutPanel4.RowCount = 2; 64 this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle()); 65 this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle()); 66 this.tableLayoutPanel4.Size = new System.Drawing.Size(218, 118); 67 this.tableLayoutPanel4.TabIndex = 3; 68 // 69 // label1 70 // 71 this.label1.AutoSize = true; 72 this.label1.Dock = System.Windows.Forms.DockStyle.Fill; 73 this.label1.Location = new System.Drawing.Point(4, 0); 74 this.label1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); 75 this.label1.Name = "label1"; 76 this.label1.Size = new System.Drawing.Size(58, 38); 77 this.label1.TabIndex = 0; 78 this.label1.Text = "Trigger"; 79 this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; 80 // 81 // triggerCombo 82 // 83 this.triggerCombo.Dock = System.Windows.Forms.DockStyle.Fill; 84 this.triggerCombo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; 85 this.triggerCombo.FormattingEnabled = true; 86 this.triggerCombo.Location = new System.Drawing.Point(70, 5); 87 this.triggerCombo.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); 88 this.triggerCombo.Name = "triggerCombo"; 89 this.triggerCombo.Size = new System.Drawing.Size(144, 28); 90 this.triggerCombo.TabIndex = 1; 91 // 92 // CellTriggersToolDialog 93 // 94 this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F); 95 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 96 this.AutoSize = true; 97 this.ClientSize = new System.Drawing.Size(218, 118); 98 this.ControlBox = false; 99 this.Controls.Add(this.tableLayoutPanel4); 100 this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow; 101 this.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); 102 this.MaximizeBox = false; 103 this.MinimizeBox = false; 104 this.MinimumSize = new System.Drawing.Size(210, 91); 105 this.Name = "CellTriggersToolDialog"; 106 this.ShowIcon = false; 107 this.ShowInTaskbar = false; 108 this.StartPosition = System.Windows.Forms.FormStartPosition.Manual; 109 this.Text = "Cell Triggers"; 110 this.tableLayoutPanel4.ResumeLayout(false); 111 this.tableLayoutPanel4.PerformLayout(); 112 this.ResumeLayout(false); 113 this.PerformLayout(); 114 115 } 116 117 #endregion 118 119 private System.Windows.Forms.TableLayoutPanel tableLayoutPanel4; 120 private System.Windows.Forms.Label label1; 121 private System.Windows.Forms.ComboBox triggerCombo; 122 } 123 }