TerrainProperties.Designer.cs 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  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. // The Command & Conquer Map Editor and corresponding source code is distributed
  9. // in the hope that it will be useful, but with permitted additional restrictions
  10. // under Section 7 of the GPL. See the GNU General Public License in LICENSE.TXT
  11. // distributed with this program. You should have received a copy of the
  12. // GNU General Public License along with permitted additional restrictions
  13. // with this program. If not, see https://github.com/electronicarts/CnC_Remastered_Collection
  14. namespace MobiusEditor.Controls
  15. {
  16. partial class TerrainProperties
  17. {
  18. /// <summary>
  19. /// Required designer variable.
  20. /// </summary>
  21. private System.ComponentModel.IContainer components = null;
  22. /// <summary>
  23. /// Clean up any resources being used.
  24. /// </summary>
  25. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  26. protected override void Dispose(bool disposing)
  27. {
  28. if (disposing && (components != null))
  29. {
  30. components.Dispose();
  31. }
  32. base.Dispose(disposing);
  33. }
  34. #region Component Designer generated code
  35. /// <summary>
  36. /// Required method for Designer support - do not modify
  37. /// the contents of this method with the code editor.
  38. /// </summary>
  39. private void InitializeComponent()
  40. {
  41. this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
  42. this.label5 = new System.Windows.Forms.Label();
  43. this.triggerComboBox = new MobiusEditor.Controls.PropertiesComboBox();
  44. this.tableLayoutPanel1.SuspendLayout();
  45. this.SuspendLayout();
  46. //
  47. // tableLayoutPanel1
  48. //
  49. this.tableLayoutPanel1.ColumnCount = 2;
  50. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 31.25F));
  51. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 68.75F));
  52. this.tableLayoutPanel1.Controls.Add(this.label5, 0, 0);
  53. this.tableLayoutPanel1.Controls.Add(this.triggerComboBox, 1, 0);
  54. this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
  55. this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
  56. this.tableLayoutPanel1.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  57. this.tableLayoutPanel1.Name = "tableLayoutPanel1";
  58. this.tableLayoutPanel1.RowCount = 1;
  59. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
  60. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
  61. this.tableLayoutPanel1.Size = new System.Drawing.Size(336, 38);
  62. this.tableLayoutPanel1.TabIndex = 0;
  63. //
  64. // label5
  65. //
  66. this.label5.AutoSize = true;
  67. this.label5.Dock = System.Windows.Forms.DockStyle.Fill;
  68. this.label5.Location = new System.Drawing.Point(4, 0);
  69. this.label5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  70. this.label5.Name = "label5";
  71. this.label5.Size = new System.Drawing.Size(97, 38);
  72. this.label5.TabIndex = 4;
  73. this.label5.Text = "Trigger";
  74. this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  75. //
  76. // triggerComboBox
  77. //
  78. this.triggerComboBox.Dock = System.Windows.Forms.DockStyle.Fill;
  79. this.triggerComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  80. this.triggerComboBox.FormattingEnabled = true;
  81. this.triggerComboBox.Location = new System.Drawing.Point(109, 5);
  82. this.triggerComboBox.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  83. this.triggerComboBox.Name = "triggerComboBox";
  84. this.triggerComboBox.Size = new System.Drawing.Size(223, 28);
  85. this.triggerComboBox.TabIndex = 9;
  86. this.triggerComboBox.SelectedIndexChanged += new System.EventHandler(this.comboBox_SelectedValueChanged);
  87. //
  88. // TriggerProperties
  89. //
  90. this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);
  91. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  92. this.Controls.Add(this.tableLayoutPanel1);
  93. this.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  94. this.Name = "TriggerProperties";
  95. this.Size = new System.Drawing.Size(336, 38);
  96. this.tableLayoutPanel1.ResumeLayout(false);
  97. this.tableLayoutPanel1.PerformLayout();
  98. this.ResumeLayout(false);
  99. }
  100. #endregion
  101. private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
  102. private System.Windows.Forms.Label label5;
  103. private MobiusEditor.Controls.PropertiesComboBox triggerComboBox;
  104. }
  105. }