TemplateToolDialog.Designer.cs (6144B)
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 TemplateToolDialog 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.splitContainer1 = new System.Windows.Forms.SplitContainer(); 46 this.templateTypeListView = new System.Windows.Forms.ListView(); 47 this.templateTypeMapPanel = new MobiusEditor.Controls.MapPanel(); 48 ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit(); 49 this.splitContainer1.Panel1.SuspendLayout(); 50 this.splitContainer1.Panel2.SuspendLayout(); 51 this.splitContainer1.SuspendLayout(); 52 this.SuspendLayout(); 53 // 54 // splitContainer1 55 // 56 this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill; 57 this.splitContainer1.Location = new System.Drawing.Point(2, 2); 58 this.splitContainer1.Name = "splitContainer1"; 59 this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal; 60 // 61 // splitContainer1.Panel1 62 // 63 this.splitContainer1.Panel1.Controls.Add(this.templateTypeListView); 64 // 65 // splitContainer1.Panel2 66 // 67 this.splitContainer1.Panel2.Controls.Add(this.templateTypeMapPanel); 68 this.splitContainer1.Size = new System.Drawing.Size(270, 545); 69 this.splitContainer1.SplitterDistance = 275; 70 this.splitContainer1.TabIndex = 7; 71 // 72 // templateTypeListView 73 // 74 this.templateTypeListView.Dock = System.Windows.Forms.DockStyle.Fill; 75 this.templateTypeListView.HideSelection = false; 76 this.templateTypeListView.Location = new System.Drawing.Point(0, 0); 77 this.templateTypeListView.Margin = new System.Windows.Forms.Padding(0); 78 this.templateTypeListView.MultiSelect = false; 79 this.templateTypeListView.Name = "templateTypeListView"; 80 this.templateTypeListView.Size = new System.Drawing.Size(270, 275); 81 this.templateTypeListView.TabIndex = 7; 82 this.templateTypeListView.UseCompatibleStateImageBehavior = false; 83 // 84 // templateTypeMapPanel 85 // 86 this.templateTypeMapPanel.Dock = System.Windows.Forms.DockStyle.Fill; 87 this.templateTypeMapPanel.Location = new System.Drawing.Point(0, 0); 88 this.templateTypeMapPanel.MapImage = null; 89 this.templateTypeMapPanel.Margin = new System.Windows.Forms.Padding(0); 90 this.templateTypeMapPanel.MaxZoom = 8; 91 this.templateTypeMapPanel.MinZoom = 1; 92 this.templateTypeMapPanel.Name = "templateTypeMapPanel"; 93 this.templateTypeMapPanel.Quality = 1; 94 this.templateTypeMapPanel.Size = new System.Drawing.Size(270, 266); 95 this.templateTypeMapPanel.TabIndex = 6; 96 this.templateTypeMapPanel.Zoom = 1; 97 this.templateTypeMapPanel.ZoomStep = 1; 98 // 99 // TemplateToolDialog 100 // 101 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); 102 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 103 this.ClientSize = new System.Drawing.Size(274, 549); 104 this.ControlBox = false; 105 this.Controls.Add(this.splitContainer1); 106 this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.SizableToolWindow; 107 this.MaximizeBox = false; 108 this.MinimizeBox = false; 109 this.MinimumSize = new System.Drawing.Size(288, 287); 110 this.Name = "TemplateToolDialog"; 111 this.Padding = new System.Windows.Forms.Padding(2, 2, 2, 2); 112 this.ShowIcon = false; 113 this.ShowInTaskbar = false; 114 this.StartPosition = System.Windows.Forms.FormStartPosition.Manual; 115 this.Text = "Map"; 116 this.splitContainer1.Panel1.ResumeLayout(false); 117 this.splitContainer1.Panel2.ResumeLayout(false); 118 ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit(); 119 this.splitContainer1.ResumeLayout(false); 120 this.ResumeLayout(false); 121 122 } 123 124 #endregion 125 126 private System.Windows.Forms.SplitContainer splitContainer1; 127 private System.Windows.Forms.ListView templateTypeListView; 128 private Controls.MapPanel templateTypeMapPanel; 129 } 130 }