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

186 lines
7.7 KiB
C#

namespace Titanic
{
partial class Form1
{
/// <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.listView1 = new System.Windows.Forms.ListView();
this.name = new System.Windows.Forms.ColumnHeader();
this.path = new System.Windows.Forms.ColumnHeader();
this.last_change = new System.Windows.Forms.ColumnHeader();
this.author = new System.Windows.Forms.ColumnHeader();
this.last_modifier = new System.Windows.Forms.ColumnHeader();
this.btn_new_project = new System.Windows.Forms.Button();
this.btn_remove_selected_project = new System.Windows.Forms.Button();
this.btn_exit = new System.Windows.Forms.Button();
this.button1 = new System.Windows.Forms.Button();
this.button2 = new System.Windows.Forms.Button();
this.button3 = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// listView1
//
this.listView1.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.name,
this.path,
this.last_change,
this.author,
this.last_modifier});
this.listView1.FullRowSelect = true;
this.listView1.Location = new System.Drawing.Point(12, 12);
this.listView1.MultiSelect = false;
this.listView1.Name = "listView1";
this.listView1.ShowItemToolTips = true;
this.listView1.Size = new System.Drawing.Size(525, 426);
this.listView1.TabIndex = 0;
this.listView1.TabStop = false;
this.listView1.UseCompatibleStateImageBehavior = false;
this.listView1.View = System.Windows.Forms.View.Details;
this.listView1.SelectedIndexChanged += new System.EventHandler(this.selected_project_changed);
this.listView1.DoubleClick += new System.EventHandler(this.on_list_view_double_clicked);
//
// name
//
this.name.Text = "Project";
this.name.Width = 150;
//
// path
//
this.path.Text = "path";
this.path.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
this.path.Width = 15;
//
// last_change
//
this.last_change.Text = "Last When";
this.last_change.Width = 120;
//
// author
//
this.author.Text = "Author";
this.author.Width = 100;
//
// last_modifier
//
this.last_modifier.Text = "Last Who";
this.last_modifier.Width = 100;
//
// btn_new_project
//
this.btn_new_project.Location = new System.Drawing.Point(543, 168);
this.btn_new_project.Name = "btn_new_project";
this.btn_new_project.Size = new System.Drawing.Size(156, 23);
this.btn_new_project.TabIndex = 1;
this.btn_new_project.Text = "Add from Folder";
this.btn_new_project.UseVisualStyleBackColor = true;
this.btn_new_project.Click += new System.EventHandler(this.btn_new_project_Click);
//
// btn_remove_selected_project
//
this.btn_remove_selected_project.Location = new System.Drawing.Point(543, 197);
this.btn_remove_selected_project.Name = "btn_remove_selected_project";
this.btn_remove_selected_project.Size = new System.Drawing.Size(156, 23);
this.btn_remove_selected_project.TabIndex = 2;
this.btn_remove_selected_project.Text = "Remove Selected Project";
this.btn_remove_selected_project.UseVisualStyleBackColor = true;
this.btn_remove_selected_project.Click += new System.EventHandler(this.btn_remove_selected_project_Click);
//
// btn_exit
//
this.btn_exit.Location = new System.Drawing.Point(543, 415);
this.btn_exit.Name = "btn_exit";
this.btn_exit.Size = new System.Drawing.Size(156, 23);
this.btn_exit.TabIndex = 3;
this.btn_exit.Text = "Exit";
this.btn_exit.UseVisualStyleBackColor = true;
this.btn_exit.Click += new System.EventHandler(this.btn_exit_Click);
//
// button1
//
this.button1.Location = new System.Drawing.Point(543, 12);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(156, 47);
this.button1.TabIndex = 4;
this.button1.Text = "Refresh";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// button2
//
this.button2.Location = new System.Drawing.Point(543, 65);
this.button2.Name = "button2";
this.button2.Size = new System.Drawing.Size(156, 37);
this.button2.TabIndex = 5;
this.button2.Text = "Open";
this.button2.UseVisualStyleBackColor = true;
this.button2.Click += new System.EventHandler(this.button2_Click);
//
// button3
//
this.button3.Location = new System.Drawing.Point(543, 139);
this.button3.Name = "button3";
this.button3.Size = new System.Drawing.Size(156, 23);
this.button3.TabIndex = 6;
this.button3.Text = "Add from Git";
this.button3.UseVisualStyleBackColor = true;
this.button3.Click += new System.EventHandler(this.button3_Click);
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(708, 450);
this.Controls.Add(this.button3);
this.Controls.Add(this.button2);
this.Controls.Add(this.button1);
this.Controls.Add(this.btn_exit);
this.Controls.Add(this.btn_remove_selected_project);
this.Controls.Add(this.btn_new_project);
this.Controls.Add(this.listView1);
this.Name = "Form1";
this.Text = "Titanic";
this.Load += new System.EventHandler(this.Form1_Load);
this.ResumeLayout(false);
}
#endregion
private ListView listView1;
private ColumnHeader name;
private ColumnHeader last_change;
private ColumnHeader author;
private ColumnHeader last_modifier;
private Button btn_new_project;
private Button btn_remove_selected_project;
private Button btn_exit;
private Button button1;
private Button button2;
private ColumnHeader path;
private Button button3;
}
}