CnC_Remastered_Collection

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

WaypointsToolDialog.Designer.cs (5903B)


      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 WaypointsToolDialog
     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.waypointCombo = 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.waypointCombo, 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(75, 38);
     77             this.label1.TabIndex = 0;
     78             this.label1.Text = "Waypoint";
     79             this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     80             // 
     81             // waypointCombo
     82             // 
     83             this.waypointCombo.DisplayMember = "Name";
     84             this.waypointCombo.Dock = System.Windows.Forms.DockStyle.Fill;
     85             this.waypointCombo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     86             this.waypointCombo.FormattingEnabled = true;
     87             this.waypointCombo.Location = new System.Drawing.Point(87, 5);
     88             this.waypointCombo.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
     89             this.waypointCombo.Name = "waypointCombo";
     90             this.waypointCombo.Size = new System.Drawing.Size(127, 28);
     91             this.waypointCombo.TabIndex = 1;
     92             this.waypointCombo.ValueMember = "Type";
     93             // 
     94             // WaypointsToolDialog
     95             // 
     96             this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);
     97             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     98             this.AutoSize = true;
     99             this.ClientSize = new System.Drawing.Size(218, 118);
    100             this.ControlBox = false;
    101             this.Controls.Add(this.tableLayoutPanel4);
    102             this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
    103             this.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
    104             this.MaximizeBox = false;
    105             this.MinimizeBox = false;
    106             this.MinimumSize = new System.Drawing.Size(210, 91);
    107             this.Name = "WaypointsToolDialog";
    108             this.ShowIcon = false;
    109             this.ShowInTaskbar = false;
    110             this.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
    111             this.Text = "Waypoints";
    112             this.tableLayoutPanel4.ResumeLayout(false);
    113             this.tableLayoutPanel4.PerformLayout();
    114             this.ResumeLayout(false);
    115             this.PerformLayout();
    116 
    117         }
    118 
    119         #endregion
    120 
    121         private System.Windows.Forms.TableLayoutPanel tableLayoutPanel4;
    122         private System.Windows.Forms.Label label1;
    123         private System.Windows.Forms.ComboBox waypointCombo;
    124     }
    125 }