3 partial class RepoManager
6 /// Required designer variable.
8 private System
.ComponentModel
.IContainer components
= null;
11 /// Clean up any resources being used.
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))
20 base.Dispose(disposing
);
23 #region Windows Form Designer generated code
26 /// Required method for Designer support - do not modify
27 /// the contents of this method with the code editor.
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();
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";
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;
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
);
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
);
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
);
88 this.m_folderChooser
.ShowNewFolderButton
= false;
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();
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
;