Titanic/Titanic/new_project_form.Designer.cs
2023-02-02 18:49:14 +05:30

161 lines
6.2 KiB
C#

namespace Titanic
{
partial class new_project_form
{
/// <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.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.textBox2 = new System.Windows.Forms.TextBox();
this.button1 = new System.Windows.Forms.Button();
this.button2 = new System.Windows.Forms.Button();
this.button3 = new System.Windows.Forms.Button();
this.label3 = new System.Windows.Forms.Label();
this.lbl_name = new System.Windows.Forms.Label();
this.lbl_status = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(12, 75);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(85, 15);
this.label1.TabIndex = 0;
this.label1.Text = "Project Name :";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(36, 20);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(55, 15);
this.label2.TabIndex = 1;
this.label2.Text = "Directory";
//
// textBox2
//
this.textBox2.Location = new System.Drawing.Point(99, 17);
this.textBox2.Name = "textBox2";
this.textBox2.Size = new System.Drawing.Size(286, 23);
this.textBox2.TabIndex = 3;
//
// button1
//
this.button1.Location = new System.Drawing.Point(391, 17);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(67, 23);
this.button1.TabIndex = 4;
this.button1.Text = "Browse...";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// button2
//
this.button2.Location = new System.Drawing.Point(302, 184);
this.button2.Name = "button2";
this.button2.Size = new System.Drawing.Size(75, 23);
this.button2.TabIndex = 5;
this.button2.Text = "Add";
this.button2.UseVisualStyleBackColor = true;
this.button2.Click += new System.EventHandler(this.button2_Click);
//
// button3
//
this.button3.Location = new System.Drawing.Point(383, 184);
this.button3.Name = "button3";
this.button3.Size = new System.Drawing.Size(75, 23);
this.button3.TabIndex = 6;
this.button3.Text = "Cancel";
this.button3.UseVisualStyleBackColor = true;
this.button3.Click += new System.EventHandler(this.button3_Click);
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(33, 100);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(63, 15);
this.label3.TabIndex = 7;
this.label3.Text = "Git Status :";
//
// lbl_name
//
this.lbl_name.AutoSize = true;
this.lbl_name.Location = new System.Drawing.Point(102, 76);
this.lbl_name.Name = "lbl_name";
this.lbl_name.Size = new System.Drawing.Size(16, 15);
this.lbl_name.TabIndex = 8;
this.lbl_name.Text = "...";
//
// lbl_status
//
this.lbl_status.AutoSize = true;
this.lbl_status.Location = new System.Drawing.Point(102, 100);
this.lbl_status.Name = "lbl_status";
this.lbl_status.Size = new System.Drawing.Size(16, 15);
this.lbl_status.TabIndex = 9;
this.lbl_status.Text = "...";
this.lbl_status.Click += new System.EventHandler(this.lbl_status_Click);
//
// new_project_form
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(470, 214);
this.Controls.Add(this.lbl_status);
this.Controls.Add(this.lbl_name);
this.Controls.Add(this.label3);
this.Controls.Add(this.button3);
this.Controls.Add(this.button2);
this.Controls.Add(this.button1);
this.Controls.Add(this.textBox2);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "new_project_form";
this.Text = "New Project";
this.Load += new System.EventHandler(this.new_project_form_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private Label label1;
private Label label2;
private TextBox textBox2;
private Button button1;
private Button button2;
private Button button3;
private Label label3;
private Label lbl_name;
private Label lbl_status;
}
}