TerrainToolDialog.Designer.cs (7818B)
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 TerrainToolDialog 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 System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(TerrainToolDialog)); 46 this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel(); 47 this.terrainTypeMapPanel = new MobiusEditor.Controls.MapPanel(); 48 this.terrainTypeComboBox = new MobiusEditor.Controls.TypeComboBox(); 49 this.terrainProperties = new MobiusEditor.Controls.TerrainProperties(); 50 this.tableLayoutPanel1.SuspendLayout(); 51 this.SuspendLayout(); 52 // 53 // tableLayoutPanel1 54 // 55 this.tableLayoutPanel1.AutoSize = true; 56 this.tableLayoutPanel1.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; 57 this.tableLayoutPanel1.ColumnCount = 1; 58 this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); 59 this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 20F)); 60 this.tableLayoutPanel1.Controls.Add(this.terrainTypeMapPanel, 0, 1); 61 this.tableLayoutPanel1.Controls.Add(this.terrainTypeComboBox, 0, 0); 62 this.tableLayoutPanel1.Controls.Add(this.terrainProperties, 0, 3); 63 this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill; 64 this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0); 65 this.tableLayoutPanel1.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); 66 this.tableLayoutPanel1.Name = "tableLayoutPanel1"; 67 this.tableLayoutPanel1.RowCount = 4; 68 this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle()); 69 this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle()); 70 this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle()); 71 this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F)); 72 this.tableLayoutPanel1.Size = new System.Drawing.Size(411, 466); 73 this.tableLayoutPanel1.TabIndex = 0; 74 // 75 // terrainTypeMapPanel 76 // 77 this.terrainTypeMapPanel.Dock = System.Windows.Forms.DockStyle.Fill; 78 this.terrainTypeMapPanel.Location = new System.Drawing.Point(4, 42); 79 this.terrainTypeMapPanel.MapImage = null; 80 this.terrainTypeMapPanel.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); 81 this.terrainTypeMapPanel.MaxZoom = 8; 82 this.terrainTypeMapPanel.MinZoom = 1; 83 this.terrainTypeMapPanel.Name = "terrainTypeMapPanel"; 84 this.terrainTypeMapPanel.Quality = 1; 85 this.terrainTypeMapPanel.Size = new System.Drawing.Size(403, 370); 86 this.terrainTypeMapPanel.TabIndex = 3; 87 this.terrainTypeMapPanel.Zoom = 1; 88 this.terrainTypeMapPanel.ZoomStep = 1; 89 // 90 // terrainTypeComboBox 91 // 92 this.terrainTypeComboBox.DisplayMember = "Name"; 93 this.terrainTypeComboBox.Dock = System.Windows.Forms.DockStyle.Fill; 94 this.terrainTypeComboBox.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawVariable; 95 this.terrainTypeComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; 96 this.terrainTypeComboBox.FormattingEnabled = true; 97 this.terrainTypeComboBox.Location = new System.Drawing.Point(4, 5); 98 this.terrainTypeComboBox.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); 99 this.terrainTypeComboBox.MissingThumbnail = ((System.Drawing.Image)(resources.GetObject("terrainTypeComboBox.MissingThumbnail"))); 100 this.terrainTypeComboBox.Name = "terrainTypeComboBox"; 101 this.terrainTypeComboBox.Size = new System.Drawing.Size(403, 27); 102 this.terrainTypeComboBox.TabIndex = 2; 103 this.terrainTypeComboBox.ValueMember = "Type"; 104 // 105 // terrainProperties 106 // 107 this.terrainProperties.Dock = System.Windows.Forms.DockStyle.Top; 108 this.terrainProperties.Location = new System.Drawing.Point(4, 422); 109 this.terrainProperties.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); 110 this.terrainProperties.Name = "terrainProperties"; 111 this.terrainProperties.Size = new System.Drawing.Size(403, 38); 112 this.terrainProperties.TabIndex = 4; 113 this.terrainProperties.Terrain = null; 114 // 115 // TerrainToolDialog 116 // 117 this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F); 118 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 119 this.AutoSize = true; 120 this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; 121 this.ClientSize = new System.Drawing.Size(411, 466); 122 this.ControlBox = false; 123 this.Controls.Add(this.tableLayoutPanel1); 124 this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.SizableToolWindow; 125 this.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); 126 this.MaximizeBox = false; 127 this.MinimizeBox = false; 128 this.MinimumSize = new System.Drawing.Size(424, 421); 129 this.Name = "TerrainToolDialog"; 130 this.ShowIcon = false; 131 this.ShowInTaskbar = false; 132 this.StartPosition = System.Windows.Forms.FormStartPosition.Manual; 133 this.Text = "Terrain"; 134 this.tableLayoutPanel1.ResumeLayout(false); 135 this.ResumeLayout(false); 136 this.PerformLayout(); 137 138 } 139 140 #endregion 141 142 private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1; 143 private Controls.TypeComboBox terrainTypeComboBox; 144 private Controls.MapPanel terrainTypeMapPanel; 145 private Controls.TerrainProperties terrainProperties; 146 } 147 }