This repository was archived by the owner on Jan 8, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathConfigForm.Designer.cs
More file actions
169 lines (163 loc) · 7.96 KB
/
ConfigForm.Designer.cs
File metadata and controls
169 lines (163 loc) · 7.96 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
namespace GoogleImageShell
{
partial class ConfigForm
{
/// <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.installButton = new System.Windows.Forms.Button();
this.uninstallButton = new System.Windows.Forms.Button();
this.menuTextTextBox = new System.Windows.Forms.TextBox();
this.menuTextLabel = new System.Windows.Forms.Label();
this.includeFileNameCheckBox = new System.Windows.Forms.CheckBox();
this.allUsersCheckBox = new System.Windows.Forms.CheckBox();
this.fileTypeListBox = new System.Windows.Forms.CheckedListBox();
this.fileTypeLabel = new System.Windows.Forms.Label();
this.resizeOnUploadCheckbox = new System.Windows.Forms.CheckBox();
this.SuspendLayout();
//
// installButton
//
this.installButton.Location = new System.Drawing.Point(12, 195);
this.installButton.Name = "installButton";
this.installButton.Size = new System.Drawing.Size(175, 30);
this.installButton.TabIndex = 0;
this.installButton.Text = "Install";
this.installButton.UseVisualStyleBackColor = true;
this.installButton.Click += new System.EventHandler(this.installButton_Click);
//
// uninstallButton
//
this.uninstallButton.Location = new System.Drawing.Point(197, 195);
this.uninstallButton.Name = "uninstallButton";
this.uninstallButton.Size = new System.Drawing.Size(175, 30);
this.uninstallButton.TabIndex = 1;
this.uninstallButton.Text = "Uninstall";
this.uninstallButton.UseVisualStyleBackColor = true;
this.uninstallButton.Click += new System.EventHandler(this.uninstallButton_Click);
//
// menuTextTextBox
//
this.menuTextTextBox.Location = new System.Drawing.Point(110, 12);
this.menuTextTextBox.Name = "menuTextTextBox";
this.menuTextTextBox.Size = new System.Drawing.Size(262, 20);
this.menuTextTextBox.TabIndex = 0;
this.menuTextTextBox.Text = "Search on Google Images";
//
// menuTextLabel
//
this.menuTextLabel.AutoSize = true;
this.menuTextLabel.Location = new System.Drawing.Point(12, 15);
this.menuTextLabel.Name = "menuTextLabel";
this.menuTextLabel.Size = new System.Drawing.Size(92, 13);
this.menuTextLabel.TabIndex = 1;
this.menuTextLabel.Text = "Context menu text";
//
// includeFileNameCheckBox
//
this.includeFileNameCheckBox.AutoSize = true;
this.includeFileNameCheckBox.Checked = true;
this.includeFileNameCheckBox.CheckState = System.Windows.Forms.CheckState.Checked;
this.includeFileNameCheckBox.Location = new System.Drawing.Point(15, 38);
this.includeFileNameCheckBox.Name = "includeFileNameCheckBox";
this.includeFileNameCheckBox.Size = new System.Drawing.Size(152, 17);
this.includeFileNameCheckBox.TabIndex = 2;
this.includeFileNameCheckBox.Text = "Include file name in search";
this.includeFileNameCheckBox.UseVisualStyleBackColor = true;
//
// allUsersCheckBox
//
this.allUsersCheckBox.AutoSize = true;
this.allUsersCheckBox.Location = new System.Drawing.Point(15, 85);
this.allUsersCheckBox.Name = "allUsersCheckBox";
this.allUsersCheckBox.Size = new System.Drawing.Size(307, 17);
this.allUsersCheckBox.TabIndex = 3;
this.allUsersCheckBox.Text = "Install/uninstall for all users (requires administrator privileges)";
this.allUsersCheckBox.UseVisualStyleBackColor = true;
//
// fileTypeListBox
//
this.fileTypeListBox.CheckOnClick = true;
this.fileTypeListBox.FormattingEnabled = true;
this.fileTypeListBox.Location = new System.Drawing.Point(12, 125);
this.fileTypeListBox.Name = "fileTypeListBox";
this.fileTypeListBox.Size = new System.Drawing.Size(360, 64);
this.fileTypeListBox.TabIndex = 4;
//
// fileTypeLabel
//
this.fileTypeLabel.AutoSize = true;
this.fileTypeLabel.Location = new System.Drawing.Point(12, 109);
this.fileTypeLabel.Name = "fileTypeLabel";
this.fileTypeLabel.Size = new System.Drawing.Size(168, 13);
this.fileTypeLabel.TabIndex = 5;
this.fileTypeLabel.Text = "Install/uninstall for these file types:";
//
// resizeOnUploadCheckbox
//
this.resizeOnUploadCheckbox.AutoSize = true;
this.resizeOnUploadCheckbox.Checked = true;
this.resizeOnUploadCheckbox.CheckState = System.Windows.Forms.CheckState.Checked;
this.resizeOnUploadCheckbox.Location = new System.Drawing.Point(15, 62);
this.resizeOnUploadCheckbox.Name = "resizeOnUploadCheckbox";
this.resizeOnUploadCheckbox.Size = new System.Drawing.Size(202, 17);
this.resizeOnUploadCheckbox.TabIndex = 6;
this.resizeOnUploadCheckbox.Text = "Resize large images before uploading";
this.resizeOnUploadCheckbox.UseVisualStyleBackColor = true;
//
// ConfigForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.AutoSize = true;
this.ClientSize = new System.Drawing.Size(384, 234);
this.Controls.Add(this.resizeOnUploadCheckbox);
this.Controls.Add(this.fileTypeLabel);
this.Controls.Add(this.fileTypeListBox);
this.Controls.Add(this.allUsersCheckBox);
this.Controls.Add(this.includeFileNameCheckBox);
this.Controls.Add(this.menuTextLabel);
this.Controls.Add(this.menuTextTextBox);
this.Controls.Add(this.uninstallButton);
this.Controls.Add(this.installButton);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.MaximizeBox = false;
this.Name = "ConfigForm";
this.ShowIcon = false;
this.Text = "GoogleImageShell";
this.Load += new System.EventHandler(this.ConfigForm_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button installButton;
private System.Windows.Forms.Button uninstallButton;
private System.Windows.Forms.TextBox menuTextTextBox;
private System.Windows.Forms.Label menuTextLabel;
private System.Windows.Forms.CheckBox includeFileNameCheckBox;
private System.Windows.Forms.CheckBox allUsersCheckBox;
private System.Windows.Forms.CheckedListBox fileTypeListBox;
private System.Windows.Forms.Label fileTypeLabel;
private System.Windows.Forms.CheckBox resizeOnUploadCheckbox;
}
}