CellTriggersToolDialog.Designer.cs 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  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.Tools.Dialogs
  15. {
  16. partial class CellTriggersToolDialog
  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 Windows Form 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.tableLayoutPanel4 = new System.Windows.Forms.TableLayoutPanel();
  42. this.label1 = new System.Windows.Forms.Label();
  43. this.triggerCombo = new System.Windows.Forms.ComboBox();
  44. this.tableLayoutPanel4.SuspendLayout();
  45. this.SuspendLayout();
  46. //
  47. // tableLayoutPanel4
  48. //
  49. this.tableLayoutPanel4.AutoSize = true;
  50. this.tableLayoutPanel4.ColumnCount = 2;
  51. this.tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
  52. this.tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
  53. this.tableLayoutPanel4.Controls.Add(this.label1, 0, 0);
  54. this.tableLayoutPanel4.Controls.Add(this.triggerCombo, 1, 0);
  55. this.tableLayoutPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
  56. this.tableLayoutPanel4.Location = new System.Drawing.Point(0, 0);
  57. this.tableLayoutPanel4.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  58. this.tableLayoutPanel4.Name = "tableLayoutPanel4";
  59. this.tableLayoutPanel4.RowCount = 2;
  60. this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle());
  61. this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle());
  62. this.tableLayoutPanel4.Size = new System.Drawing.Size(218, 118);
  63. this.tableLayoutPanel4.TabIndex = 3;
  64. //
  65. // label1
  66. //
  67. this.label1.AutoSize = true;
  68. this.label1.Dock = System.Windows.Forms.DockStyle.Fill;
  69. this.label1.Location = new System.Drawing.Point(4, 0);
  70. this.label1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  71. this.label1.Name = "label1";
  72. this.label1.Size = new System.Drawing.Size(58, 38);
  73. this.label1.TabIndex = 0;
  74. this.label1.Text = "Trigger";
  75. this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  76. //
  77. // triggerCombo
  78. //
  79. this.triggerCombo.Dock = System.Windows.Forms.DockStyle.Fill;
  80. this.triggerCombo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  81. this.triggerCombo.FormattingEnabled = true;
  82. this.triggerCombo.Location = new System.Drawing.Point(70, 5);
  83. this.triggerCombo.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  84. this.triggerCombo.Name = "triggerCombo";
  85. this.triggerCombo.Size = new System.Drawing.Size(144, 28);
  86. this.triggerCombo.TabIndex = 1;
  87. //
  88. // CellTriggersToolDialog
  89. //
  90. this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);
  91. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  92. this.AutoSize = true;
  93. this.ClientSize = new System.Drawing.Size(218, 118);
  94. this.ControlBox = false;
  95. this.Controls.Add(this.tableLayoutPanel4);
  96. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
  97. this.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  98. this.MaximizeBox = false;
  99. this.MinimizeBox = false;
  100. this.MinimumSize = new System.Drawing.Size(210, 91);
  101. this.Name = "CellTriggersToolDialog";
  102. this.ShowIcon = false;
  103. this.ShowInTaskbar = false;
  104. this.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
  105. this.Text = "Cell Triggers";
  106. this.tableLayoutPanel4.ResumeLayout(false);
  107. this.tableLayoutPanel4.PerformLayout();
  108. this.ResumeLayout(false);
  109. this.PerformLayout();
  110. }
  111. #endregion
  112. private System.Windows.Forms.TableLayoutPanel tableLayoutPanel4;
  113. private System.Windows.Forms.Label label1;
  114. private System.Windows.Forms.ComboBox triggerCombo;
  115. }
  116. }