CnC_Remastered_Collection

Command and Conquer: Red Alert
Log | Files | Refs | README | LICENSE

GenericToolDialog.Designer.cs (6114B)


      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 GenericToolDialog
     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(TemplateToolDialog));
     46             this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
     47             this.genericTypeMapPanel = new MobiusEditor.Controls.MapPanel();
     48             this.genericTypeComboBox = new MobiusEditor.Controls.TypeComboBox();
     49             this.tableLayoutPanel1.SuspendLayout();
     50             this.SuspendLayout();
     51             // 
     52             // tableLayoutPanel1
     53             // 
     54             this.tableLayoutPanel1.ColumnCount = 1;
     55             this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     56             this.tableLayoutPanel1.Controls.Add(this.genericTypeMapPanel, 0, 1);
     57             this.tableLayoutPanel1.Controls.Add(this.genericTypeComboBox, 0, 0);
     58             this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     59             this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
     60             this.tableLayoutPanel1.Name = "tableLayoutPanel1";
     61             this.tableLayoutPanel1.RowCount = 2;
     62             this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
     63             this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
     64             this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     65             this.tableLayoutPanel1.Size = new System.Drawing.Size(274, 254);
     66             this.tableLayoutPanel1.TabIndex = 0;
     67             // 
     68             // templateTypeMapPanel
     69             // 
     70             this.genericTypeMapPanel.Dock = System.Windows.Forms.DockStyle.Fill;
     71             this.genericTypeMapPanel.Location = new System.Drawing.Point(3, 30);
     72             this.genericTypeMapPanel.MaxZoom = 8;
     73             this.genericTypeMapPanel.MinZoom = 1;
     74             this.genericTypeMapPanel.Name = "templateTypeMapPanel";
     75             this.genericTypeMapPanel.Quality = 1;
     76             this.genericTypeMapPanel.Size = new System.Drawing.Size(268, 221);
     77             this.genericTypeMapPanel.TabIndex = 3;
     78             this.genericTypeMapPanel.Zoom = 1;
     79             // 
     80             // templateTypeComboBox
     81             // 
     82             this.genericTypeComboBox.DisplayMember = "Name";
     83             this.genericTypeComboBox.Dock = System.Windows.Forms.DockStyle.Fill;
     84             this.genericTypeComboBox.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawVariable;
     85             this.genericTypeComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     86             this.genericTypeComboBox.FormattingEnabled = true;
     87             this.genericTypeComboBox.Location = new System.Drawing.Point(3, 3);
     88             this.genericTypeComboBox.MissingThumbnail = ((System.Drawing.Image)(resources.GetObject("templateTypeComboBox.MissingThumbnail")));
     89             this.genericTypeComboBox.Name = "templateTypeComboBox";
     90             this.genericTypeComboBox.Size = new System.Drawing.Size(268, 21);
     91             this.genericTypeComboBox.TabIndex = 2;
     92             this.genericTypeComboBox.ValueMember = "Type";
     93             // 
     94             // TemplateToolDialog
     95             // 
     96             this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     97             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     98             this.ClientSize = new System.Drawing.Size(274, 254);
     99             this.ControlBox = false;
    100             this.Controls.Add(this.tableLayoutPanel1);
    101             this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.SizableToolWindow;
    102             this.MaximizeBox = false;
    103             this.MinimizeBox = false;
    104             this.MinimumSize = new System.Drawing.Size(290, 293);
    105             this.Name = "TemplateToolDialog";
    106             this.ShowIcon = false;
    107             this.ShowInTaskbar = false;
    108             this.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
    109             this.Text = "Map";
    110             this.tableLayoutPanel1.ResumeLayout(false);
    111             this.ResumeLayout(false);
    112 
    113         }
    114 
    115         #endregion
    116 
    117         private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
    118         private Controls.TypeComboBox genericTypeComboBox;
    119         private Controls.MapPanel genericTypeMapPanel;
    120     }
    121 }