CodeWalker/Project/Panels/EditProjectPanel.Designer.cs
2018-03-04 00:03:08 +11:00

88 lines
3.7 KiB
C#

namespace CodeWalker.Project.Panels
{
partial class EditProjectPanel
{
/// <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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(EditProjectPanel));
this.ProjectNameTextBox = new System.Windows.Forms.TextBox();
this.ProjectVersionLabel = new System.Windows.Forms.Label();
this.label1 = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// ProjectNameTextBox
//
this.ProjectNameTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.ProjectNameTextBox.Location = new System.Drawing.Point(95, 22);
this.ProjectNameTextBox.MinimumSize = new System.Drawing.Size(100, 0);
this.ProjectNameTextBox.Name = "ProjectNameTextBox";
this.ProjectNameTextBox.Size = new System.Drawing.Size(328, 20);
this.ProjectNameTextBox.TabIndex = 4;
this.ProjectNameTextBox.TextChanged += new System.EventHandler(this.ProjectNameTextBox_TextChanged);
//
// ProjectVersionLabel
//
this.ProjectVersionLabel.AutoSize = true;
this.ProjectVersionLabel.Location = new System.Drawing.Point(32, 66);
this.ProjectVersionLabel.Name = "ProjectVersionLabel";
this.ProjectVersionLabel.Size = new System.Drawing.Size(51, 13);
this.ProjectVersionLabel.TabIndex = 5;
this.ProjectVersionLabel.Text = "Version: -";
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(32, 25);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(38, 13);
this.label1.TabIndex = 3;
this.label1.Text = "Name:";
//
// EditProjectPanel
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(540, 328);
this.Controls.Add(this.ProjectNameTextBox);
this.Controls.Add(this.ProjectVersionLabel);
this.Controls.Add(this.label1);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Name = "EditProjectPanel";
this.Text = "Project Properties";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.TextBox ProjectNameTextBox;
private System.Windows.Forms.Label ProjectVersionLabel;
private System.Windows.Forms.Label label1;
}
}