123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 |
- namespace Cobble {
- partial class LevelPropertiesForm {
- /// <summary>
- /// Required designer variable.
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// Clean up any resources being used.
- /// </summary>
- /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
- protected override void Dispose(bool disposing) {
- if (disposing && (components != null)) {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows Form Designer generated code
- /// <summary>
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- /// </summary>
- private void InitializeComponent() {
- this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
- this.label1 = new System.Windows.Forms.Label();
- this.label2 = new System.Windows.Forms.Label();
- this.tbName = new System.Windows.Forms.TextBox();
- this.tbAuthor = new System.Windows.Forms.TextBox();
- this.button1 = new System.Windows.Forms.Button();
- this.tableLayoutPanel1.SuspendLayout();
- this.SuspendLayout();
- //
- // tableLayoutPanel1
- //
- this.tableLayoutPanel1.ColumnCount = 2;
- this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 64F));
- this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
- this.tableLayoutPanel1.Controls.Add(this.label1, 0, 0);
- this.tableLayoutPanel1.Controls.Add(this.label2, 0, 1);
- this.tableLayoutPanel1.Controls.Add(this.tbName, 1, 0);
- this.tableLayoutPanel1.Controls.Add(this.tbAuthor, 1, 1);
- this.tableLayoutPanel1.Location = new System.Drawing.Point(12, 12);
- this.tableLayoutPanel1.Name = "tableLayoutPanel1";
- this.tableLayoutPanel1.RowCount = 2;
- this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
- this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
- this.tableLayoutPanel1.Size = new System.Drawing.Size(225, 54);
- this.tableLayoutPanel1.TabIndex = 0;
- //
- // label1
- //
- this.label1.AutoSize = true;
- this.label1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.label1.Location = new System.Drawing.Point(3, 0);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(58, 27);
- this.label1.TabIndex = 0;
- this.label1.Text = "Name:";
- this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- //
- // label2
- //
- this.label2.AutoSize = true;
- this.label2.Dock = System.Windows.Forms.DockStyle.Fill;
- this.label2.Location = new System.Drawing.Point(3, 27);
- this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(58, 27);
- this.label2.TabIndex = 1;
- this.label2.Text = "Author:";
- this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- //
- // tbName
- //
- this.tbName.Dock = System.Windows.Forms.DockStyle.Fill;
- this.tbName.Location = new System.Drawing.Point(67, 3);
- this.tbName.Name = "tbName";
- this.tbName.Size = new System.Drawing.Size(155, 20);
- this.tbName.TabIndex = 2;
- //
- // tbAuthor
- //
- this.tbAuthor.Dock = System.Windows.Forms.DockStyle.Fill;
- this.tbAuthor.Location = new System.Drawing.Point(67, 30);
- this.tbAuthor.Name = "tbAuthor";
- this.tbAuthor.Size = new System.Drawing.Size(155, 20);
- this.tbAuthor.TabIndex = 3;
- //
- // button1
- //
- this.button1.DialogResult = System.Windows.Forms.DialogResult.OK;
- this.button1.Location = new System.Drawing.Point(158, 82);
- this.button1.Name = "button1";
- this.button1.Size = new System.Drawing.Size(75, 23);
- this.button1.TabIndex = 1;
- this.button1.Text = "OK";
- this.button1.UseVisualStyleBackColor = true;
- this.button1.Click += new System.EventHandler(this.button1_Click);
- //
- // LevelPropertiesForm
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(245, 117);
- this.Controls.Add(this.button1);
- this.Controls.Add(this.tableLayoutPanel1);
- this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
- this.Name = "LevelPropertiesForm";
- this.Text = "Level Properties";
- this.tableLayoutPanel1.ResumeLayout(false);
- this.tableLayoutPanel1.PerformLayout();
- this.ResumeLayout(false);
- }
- #endregion
- private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
- private System.Windows.Forms.Label label1;
- private System.Windows.Forms.Label label2;
- private System.Windows.Forms.TextBox tbName;
- private System.Windows.Forms.TextBox tbAuthor;
- private System.Windows.Forms.Button button1;
- }
- }
|