LevelPropertiesForm.Designer.cs 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. namespace Cobble {
  2. partial class LevelPropertiesForm {
  3. /// <summary>
  4. /// Required designer variable.
  5. /// </summary>
  6. private System.ComponentModel.IContainer components = null;
  7. /// <summary>
  8. /// Clean up any resources being used.
  9. /// </summary>
  10. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  11. protected override void Dispose(bool disposing) {
  12. if (disposing && (components != null)) {
  13. components.Dispose();
  14. }
  15. base.Dispose(disposing);
  16. }
  17. #region Windows Form Designer generated code
  18. /// <summary>
  19. /// Required method for Designer support - do not modify
  20. /// the contents of this method with the code editor.
  21. /// </summary>
  22. private void InitializeComponent() {
  23. this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
  24. this.label1 = new System.Windows.Forms.Label();
  25. this.label2 = new System.Windows.Forms.Label();
  26. this.tbName = new System.Windows.Forms.TextBox();
  27. this.tbAuthor = new System.Windows.Forms.TextBox();
  28. this.button1 = new System.Windows.Forms.Button();
  29. this.tableLayoutPanel1.SuspendLayout();
  30. this.SuspendLayout();
  31. //
  32. // tableLayoutPanel1
  33. //
  34. this.tableLayoutPanel1.ColumnCount = 2;
  35. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 64F));
  36. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
  37. this.tableLayoutPanel1.Controls.Add(this.label1, 0, 0);
  38. this.tableLayoutPanel1.Controls.Add(this.label2, 0, 1);
  39. this.tableLayoutPanel1.Controls.Add(this.tbName, 1, 0);
  40. this.tableLayoutPanel1.Controls.Add(this.tbAuthor, 1, 1);
  41. this.tableLayoutPanel1.Location = new System.Drawing.Point(12, 12);
  42. this.tableLayoutPanel1.Name = "tableLayoutPanel1";
  43. this.tableLayoutPanel1.RowCount = 2;
  44. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
  45. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
  46. this.tableLayoutPanel1.Size = new System.Drawing.Size(225, 54);
  47. this.tableLayoutPanel1.TabIndex = 0;
  48. //
  49. // label1
  50. //
  51. this.label1.AutoSize = true;
  52. this.label1.Dock = System.Windows.Forms.DockStyle.Fill;
  53. this.label1.Location = new System.Drawing.Point(3, 0);
  54. this.label1.Name = "label1";
  55. this.label1.Size = new System.Drawing.Size(58, 27);
  56. this.label1.TabIndex = 0;
  57. this.label1.Text = "Name:";
  58. this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  59. //
  60. // label2
  61. //
  62. this.label2.AutoSize = true;
  63. this.label2.Dock = System.Windows.Forms.DockStyle.Fill;
  64. this.label2.Location = new System.Drawing.Point(3, 27);
  65. this.label2.Name = "label2";
  66. this.label2.Size = new System.Drawing.Size(58, 27);
  67. this.label2.TabIndex = 1;
  68. this.label2.Text = "Author:";
  69. this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  70. //
  71. // tbName
  72. //
  73. this.tbName.Dock = System.Windows.Forms.DockStyle.Fill;
  74. this.tbName.Location = new System.Drawing.Point(67, 3);
  75. this.tbName.Name = "tbName";
  76. this.tbName.Size = new System.Drawing.Size(155, 20);
  77. this.tbName.TabIndex = 2;
  78. //
  79. // tbAuthor
  80. //
  81. this.tbAuthor.Dock = System.Windows.Forms.DockStyle.Fill;
  82. this.tbAuthor.Location = new System.Drawing.Point(67, 30);
  83. this.tbAuthor.Name = "tbAuthor";
  84. this.tbAuthor.Size = new System.Drawing.Size(155, 20);
  85. this.tbAuthor.TabIndex = 3;
  86. //
  87. // button1
  88. //
  89. this.button1.DialogResult = System.Windows.Forms.DialogResult.OK;
  90. this.button1.Location = new System.Drawing.Point(158, 82);
  91. this.button1.Name = "button1";
  92. this.button1.Size = new System.Drawing.Size(75, 23);
  93. this.button1.TabIndex = 1;
  94. this.button1.Text = "OK";
  95. this.button1.UseVisualStyleBackColor = true;
  96. this.button1.Click += new System.EventHandler(this.button1_Click);
  97. //
  98. // LevelPropertiesForm
  99. //
  100. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  101. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  102. this.ClientSize = new System.Drawing.Size(245, 117);
  103. this.Controls.Add(this.button1);
  104. this.Controls.Add(this.tableLayoutPanel1);
  105. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
  106. this.Name = "LevelPropertiesForm";
  107. this.Text = "Level Properties";
  108. this.tableLayoutPanel1.ResumeLayout(false);
  109. this.tableLayoutPanel1.PerformLayout();
  110. this.ResumeLayout(false);
  111. }
  112. #endregion
  113. private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
  114. private System.Windows.Forms.Label label1;
  115. private System.Windows.Forms.Label label2;
  116. private System.Windows.Forms.TextBox tbName;
  117. private System.Windows.Forms.TextBox tbAuthor;
  118. private System.Windows.Forms.Button button1;
  119. }
  120. }