ObjectToolDialog.Designer.cs (7684B)
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 ObjectToolDialog 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(ObjectToolDialog)); 46 this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel(); 47 this.objectTypeMapPanel = new MobiusEditor.Controls.MapPanel(); 48 this.objectTypeComboBox = new MobiusEditor.Controls.TypeComboBox(); 49 this.objectProperties = new MobiusEditor.Controls.ObjectProperties(); 50 this.tableLayoutPanel1.SuspendLayout(); 51 this.SuspendLayout(); 52 // 53 // tableLayoutPanel1 54 // 55 this.tableLayoutPanel1.ColumnCount = 1; 56 this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); 57 this.tableLayoutPanel1.Controls.Add(this.objectTypeMapPanel, 0, 1); 58 this.tableLayoutPanel1.Controls.Add(this.objectTypeComboBox, 0, 0); 59 this.tableLayoutPanel1.Controls.Add(this.objectProperties, 0, 2); 60 this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill; 61 this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0); 62 this.tableLayoutPanel1.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4); 63 this.tableLayoutPanel1.Name = "tableLayoutPanel1"; 64 this.tableLayoutPanel1.RowCount = 3; 65 this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle()); 66 this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle()); 67 this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F)); 68 this.tableLayoutPanel1.Size = new System.Drawing.Size(365, 582); 69 this.tableLayoutPanel1.TabIndex = 0; 70 // 71 // objectTypeMapPanel 72 // 73 this.objectTypeMapPanel.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 74 | System.Windows.Forms.AnchorStyles.Left) 75 | System.Windows.Forms.AnchorStyles.Right))); 76 this.objectTypeMapPanel.Location = new System.Drawing.Point(4, 35); 77 this.objectTypeMapPanel.MapImage = null; 78 this.objectTypeMapPanel.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4); 79 this.objectTypeMapPanel.MaxZoom = 8; 80 this.objectTypeMapPanel.MinZoom = 1; 81 this.objectTypeMapPanel.Name = "objectTypeMapPanel"; 82 this.objectTypeMapPanel.Quality = 1; 83 this.objectTypeMapPanel.Size = new System.Drawing.Size(357, 272); 84 this.objectTypeMapPanel.TabIndex = 3; 85 this.objectTypeMapPanel.Zoom = 1; 86 this.objectTypeMapPanel.ZoomStep = 1; 87 // 88 // objectTypeComboBox 89 // 90 this.objectTypeComboBox.DisplayMember = "Name"; 91 this.objectTypeComboBox.Dock = System.Windows.Forms.DockStyle.Fill; 92 this.objectTypeComboBox.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawVariable; 93 this.objectTypeComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; 94 this.objectTypeComboBox.FormattingEnabled = true; 95 this.objectTypeComboBox.Location = new System.Drawing.Point(4, 4); 96 this.objectTypeComboBox.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4); 97 this.objectTypeComboBox.MissingThumbnail = ((System.Drawing.Image)(resources.GetObject("objectTypeComboBox.MissingThumbnail"))); 98 this.objectTypeComboBox.Name = "objectTypeComboBox"; 99 this.objectTypeComboBox.Size = new System.Drawing.Size(357, 23); 100 this.objectTypeComboBox.TabIndex = 2; 101 this.objectTypeComboBox.ValueMember = "Type"; 102 // 103 // objectProperties 104 // 105 this.objectProperties.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 106 | System.Windows.Forms.AnchorStyles.Left) 107 | System.Windows.Forms.AnchorStyles.Right))); 108 this.objectProperties.Location = new System.Drawing.Point(5, 316); 109 this.objectProperties.Margin = new System.Windows.Forms.Padding(5, 5, 5, 5); 110 this.objectProperties.Name = "objectProperties"; 111 this.objectProperties.Object = null; 112 this.objectProperties.Size = new System.Drawing.Size(355, 261); 113 this.objectProperties.TabIndex = 4; 114 // 115 // ObjectToolDialog 116 // 117 this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F); 118 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 119 this.ClientSize = new System.Drawing.Size(365, 582); 120 this.ControlBox = false; 121 this.Controls.Add(this.tableLayoutPanel1); 122 this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.SizableToolWindow; 123 this.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4); 124 this.MaximizeBox = false; 125 this.MinimizeBox = false; 126 this.MinimumSize = new System.Drawing.Size(381, 528); 127 this.Name = "ObjectToolDialog"; 128 this.ShowIcon = false; 129 this.ShowInTaskbar = false; 130 this.StartPosition = System.Windows.Forms.FormStartPosition.Manual; 131 this.Text = "Map"; 132 this.tableLayoutPanel1.ResumeLayout(false); 133 this.ResumeLayout(false); 134 135 } 136 137 #endregion 138 139 private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1; 140 private Controls.TypeComboBox objectTypeComboBox; 141 private Controls.MapPanel objectTypeMapPanel; 142 private Controls.ObjectProperties objectProperties; 143 } 144 }