Changed to using gid-diff-index for getting file states.
[Widgit.git] / PreferencesEditor.Designer.cs
blob9def042e90de28945e80e8c5ae1a7c43eb420f40
1 namespace Gitrdone
3 partial class PreferencesEditor
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_gitPath = new System.Windows.Forms.TextBox();
33 this.button1 = new System.Windows.Forms.Button();
34 this.m_folderChooser = new System.Windows.Forms.FolderBrowserDialog();
35 this.SuspendLayout();
36 //
37 // label1
38 //
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:";
45 //
46 // m_gitPath
47 //
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;
52 //
53 // button1
54 //
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);
62 //
63 // m_folderChooser
64 //
65 this.m_folderChooser.RootFolder = System.Environment.SpecialFolder.ProgramFiles;
66 this.m_folderChooser.ShowNewFolderButton = false;
67 //
68 // PreferencesEditor
69 //
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);
79 this.PerformLayout();
83 #endregion
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;