GenericToolDialog.Designer.cs 6.0 KB

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