Changed to using gid-diff-index for getting file states.
[Widgit.git] / RepoManager.Designer.cs
blob65f38accb4f1fc9835a2bac04c2bc2b0b3073958
1 namespace Gitrdone
3 partial class RepoManager
5 /// <summary>
6 /// Required designer variable.
7 /// </summary>
8 private System.ComponentModel.IContainer components = null;
10 /// <summary>
11 /// Clean up any resources being used.
12 /// </summary>
13 /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
14 protected override void Dispose(bool disposing)
16 if (disposing && (components != null))
18 components.Dispose();
20 base.Dispose(disposing);
23 #region Windows Form Designer generated code
25 /// <summary>
26 /// Required method for Designer support - do not modify
27 /// the contents of this method with the code editor.
28 /// </summary>
29 private void InitializeComponent()
31 this.label1 = new System.Windows.Forms.Label();
32 this.m_pathsList = new System.Windows.Forms.ListBox();
33 this.button1 = new System.Windows.Forms.Button();
34 this.button2 = new System.Windows.Forms.Button();
35 this.button3 = new System.Windows.Forms.Button();
36 this.m_folderChooser = new System.Windows.Forms.FolderBrowserDialog();
37 this.SuspendLayout();
38 //
39 // label1
40 //
41 this.label1.AutoSize = true;
42 this.label1.Location = new System.Drawing.Point(12, 9);
43 this.label1.Name = "label1";
44 this.label1.Size = new System.Drawing.Size(63, 13);
45 this.label1.TabIndex = 0;
46 this.label1.Text = "Your Repos";
47 //
48 // m_pathsList
49 //
50 this.m_pathsList.FormattingEnabled = true;
51 this.m_pathsList.Location = new System.Drawing.Point(12, 46);
52 this.m_pathsList.Name = "m_pathsList";
53 this.m_pathsList.Size = new System.Drawing.Size(297, 212);
54 this.m_pathsList.TabIndex = 1;
55 //
56 // button1
57 //
58 this.button1.Location = new System.Drawing.Point(12, 283);
59 this.button1.Name = "button1";
60 this.button1.Size = new System.Drawing.Size(75, 23);
61 this.button1.TabIndex = 2;
62 this.button1.Text = "Add...";
63 this.button1.UseVisualStyleBackColor = true;
64 this.button1.Click += new System.EventHandler(this.button1_Click);
65 //
66 // button2
67 //
68 this.button2.Location = new System.Drawing.Point(123, 283);
69 this.button2.Name = "button2";
70 this.button2.Size = new System.Drawing.Size(75, 23);
71 this.button2.TabIndex = 3;
72 this.button2.Text = "Remove";
73 this.button2.UseVisualStyleBackColor = true;
74 this.button2.Click += new System.EventHandler(this.button2_Click);
75 //
76 // button3
77 //
78 this.button3.Location = new System.Drawing.Point(233, 283);
79 this.button3.Name = "button3";
80 this.button3.Size = new System.Drawing.Size(75, 23);
81 this.button3.TabIndex = 4;
82 this.button3.Text = "OK";
83 this.button3.UseVisualStyleBackColor = true;
84 this.button3.Click += new System.EventHandler(this.button3_Click);
85 //
86 // m_folderChooser
87 //
88 this.m_folderChooser.ShowNewFolderButton = false;
89 //
90 // RepoManager
91 //
92 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
93 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
94 this.ClientSize = new System.Drawing.Size(321, 318);
95 this.Controls.Add(this.button3);
96 this.Controls.Add(this.button2);
97 this.Controls.Add(this.button1);
98 this.Controls.Add(this.m_pathsList);
99 this.Controls.Add(this.label1);
100 this.Name = "RepoManager";
101 this.Text = "RepoManager";
102 this.ResumeLayout(false);
103 this.PerformLayout();
107 #endregion
109 private System.Windows.Forms.Label label1;
110 private System.Windows.Forms.ListBox m_pathsList;
111 private System.Windows.Forms.Button button1;
112 private System.Windows.Forms.Button button2;
113 private System.Windows.Forms.Button button3;
114 private System.Windows.Forms.FolderBrowserDialog m_folderChooser;