3 partial class PreferencesEditor
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_gitPath
= new System
.Windows
.Forms
.TextBox();
33 this.button1
= new System
.Windows
.Forms
.Button();
34 this.m_folderChooser
= new System
.Windows
.Forms
.FolderBrowserDialog();
39 this.label1
.AutoSize
= true;
40 this.label1
.Location
= new System
.Drawing
.Point(12, 45);
41 this.label1
.Name
= "label1";
42 this.label1
.Size
= new System
.Drawing
.Size(48, 13);
43 this.label1
.TabIndex
= 0;
44 this.label1
.Text
= "Git Path:";
48 this.m_gitPath
.Location
= new System
.Drawing
.Point(92, 45);
49 this.m_gitPath
.Name
= "m_gitPath";
50 this.m_gitPath
.Size
= new System
.Drawing
.Size(228, 20);
51 this.m_gitPath
.TabIndex
= 1;
55 this.button1
.Location
= new System
.Drawing
.Point(344, 43);
56 this.button1
.Name
= "button1";
57 this.button1
.Size
= new System
.Drawing
.Size(75, 23);
58 this.button1
.TabIndex
= 2;
59 this.button1
.Text
= "Browse...";
60 this.button1
.UseVisualStyleBackColor
= true;
61 this.button1
.Click
+= new System
.EventHandler(this.button1_Click
);
65 this.m_folderChooser
.RootFolder
= System
.Environment
.SpecialFolder
.ProgramFiles
;
66 this.m_folderChooser
.ShowNewFolderButton
= false;
70 this.AutoScaleDimensions
= new System
.Drawing
.SizeF(6F
, 13F
);
71 this.AutoScaleMode
= System
.Windows
.Forms
.AutoScaleMode
.Font
;
72 this.ClientSize
= new System
.Drawing
.Size(431, 126);
73 this.Controls
.Add(this.button1
);
74 this.Controls
.Add(this.m_gitPath
);
75 this.Controls
.Add(this.label1
);
76 this.Name
= "PreferencesEditor";
77 this.Text
= "PreferencesEditor";
78 this.ResumeLayout(false);
85 private System
.Windows
.Forms
.Label label1
;
86 private System
.Windows
.Forms
.TextBox m_gitPath
;
87 private System
.Windows
.Forms
.Button button1
;
88 private System
.Windows
.Forms
.FolderBrowserDialog m_folderChooser
;