forked from topharley/SCREENS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSettingsDialog.Designer.cs
279 lines (273 loc) · 14.8 KB
/
SettingsDialog.Designer.cs
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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
namespace Screens
{
partial class SettingsDialog
{
/// <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.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SettingsDialog));
this.OKButton = new System.Windows.Forms.Button();
this.CancelButton1 = new System.Windows.Forms.Button();
this.UploadTypeComboBox = new System.Windows.Forms.ComboBox();
this.SaveLocalScreenshotCheckBox = new System.Windows.Forms.CheckBox();
this.SaveLogCheckBox = new System.Windows.Forms.CheckBox();
this.OpenBrowserCheckBox = new System.Windows.Forms.CheckBox();
this.ShortenUrlCheckBox = new System.Windows.Forms.CheckBox();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.label1 = new System.Windows.Forms.Label();
this.WaterMarkEdit = new System.Windows.Forms.TextBox();
this.UseHKCheckBox = new System.Windows.Forms.CheckBox();
this.AutoStartCheckBox = new System.Windows.Forms.CheckBox();
this.SaveLocalPathLinkLabel = new System.Windows.Forms.LinkLabel();
this.SaveLogLinkLabel = new System.Windows.Forms.LinkLabel();
this.CopyInClipboardCheckBox = new System.Windows.Forms.CheckBox();
this.MainToolTip = new System.Windows.Forms.ToolTip(this.components);
this.groupBox1.SuspendLayout();
this.groupBox2.SuspendLayout();
this.SuspendLayout();
//
// OKButton
//
this.OKButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.OKButton.Location = new System.Drawing.Point(236, 317);
this.OKButton.Name = "OKButton";
this.OKButton.Size = new System.Drawing.Size(75, 23);
this.OKButton.TabIndex = 0;
this.OKButton.Text = "OK";
this.OKButton.UseVisualStyleBackColor = true;
this.OKButton.Click += new System.EventHandler(this.OKButton_Click);
//
// CancelButton1
//
this.CancelButton1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.CancelButton1.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.CancelButton1.Location = new System.Drawing.Point(317, 317);
this.CancelButton1.Name = "CancelButton1";
this.CancelButton1.Size = new System.Drawing.Size(75, 23);
this.CancelButton1.TabIndex = 1;
this.CancelButton1.Text = "Отмена";
this.CancelButton1.UseVisualStyleBackColor = true;
this.CancelButton1.Click += new System.EventHandler(this.CancelButton1_Click);
//
// UploadTypeComboBox
//
this.UploadTypeComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.UploadTypeComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.UploadTypeComboBox.FormattingEnabled = true;
this.UploadTypeComboBox.Location = new System.Drawing.Point(20, 25);
this.UploadTypeComboBox.Name = "UploadTypeComboBox";
this.UploadTypeComboBox.Size = new System.Drawing.Size(340, 21);
this.UploadTypeComboBox.TabIndex = 3;
//
// SaveLocalScreenshotCheckBox
//
this.SaveLocalScreenshotCheckBox.AutoSize = true;
this.SaveLocalScreenshotCheckBox.Location = new System.Drawing.Point(20, 167);
this.SaveLocalScreenshotCheckBox.Name = "SaveLocalScreenshotCheckBox";
this.SaveLocalScreenshotCheckBox.Size = new System.Drawing.Size(188, 17);
this.SaveLocalScreenshotCheckBox.TabIndex = 11;
this.SaveLocalScreenshotCheckBox.Text = "Сохранять последний скриншот";
this.SaveLocalScreenshotCheckBox.UseVisualStyleBackColor = true;
this.SaveLocalScreenshotCheckBox.CheckedChanged += new System.EventHandler(this.SaveLocalScreenshotCheckBox_CheckedChanged);
//
// SaveLogCheckBox
//
this.SaveLogCheckBox.AutoSize = true;
this.SaveLogCheckBox.Location = new System.Drawing.Point(20, 144);
this.SaveLogCheckBox.Name = "SaveLogCheckBox";
this.SaveLogCheckBox.Size = new System.Drawing.Size(76, 17);
this.SaveLogCheckBox.TabIndex = 10;
this.SaveLogCheckBox.Text = "Вести лог";
this.SaveLogCheckBox.UseVisualStyleBackColor = true;
this.SaveLogCheckBox.CheckedChanged += new System.EventHandler(this.SaveLogCheckBox_CheckedChanged);
//
// OpenBrowserCheckBox
//
this.OpenBrowserCheckBox.AutoSize = true;
this.OpenBrowserCheckBox.Location = new System.Drawing.Point(20, 121);
this.OpenBrowserCheckBox.Name = "OpenBrowserCheckBox";
this.OpenBrowserCheckBox.Size = new System.Drawing.Size(190, 17);
this.OpenBrowserCheckBox.TabIndex = 9;
this.OpenBrowserCheckBox.Text = "Открывать картинку в браузере";
this.OpenBrowserCheckBox.UseVisualStyleBackColor = true;
//
// ShortenUrlCheckBox
//
this.ShortenUrlCheckBox.AutoSize = true;
this.ShortenUrlCheckBox.Location = new System.Drawing.Point(20, 75);
this.ShortenUrlCheckBox.Name = "ShortenUrlCheckBox";
this.ShortenUrlCheckBox.Size = new System.Drawing.Size(172, 17);
this.ShortenUrlCheckBox.TabIndex = 8;
this.ShortenUrlCheckBox.Text = "Сокращать адреса картинок";
this.ShortenUrlCheckBox.UseVisualStyleBackColor = true;
//
// groupBox1
//
this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.groupBox1.Controls.Add(this.UploadTypeComboBox);
this.groupBox1.Location = new System.Drawing.Point(13, 13);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(379, 66);
this.groupBox1.TabIndex = 12;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "Сервис картинок";
//
// groupBox2
//
this.groupBox2.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.groupBox2.Controls.Add(this.label1);
this.groupBox2.Controls.Add(this.WaterMarkEdit);
this.groupBox2.Controls.Add(this.UseHKCheckBox);
this.groupBox2.Controls.Add(this.AutoStartCheckBox);
this.groupBox2.Controls.Add(this.SaveLocalPathLinkLabel);
this.groupBox2.Controls.Add(this.SaveLogLinkLabel);
this.groupBox2.Controls.Add(this.ShortenUrlCheckBox);
this.groupBox2.Controls.Add(this.CopyInClipboardCheckBox);
this.groupBox2.Controls.Add(this.OpenBrowserCheckBox);
this.groupBox2.Controls.Add(this.SaveLocalScreenshotCheckBox);
this.groupBox2.Controls.Add(this.SaveLogCheckBox);
this.groupBox2.Location = new System.Drawing.Point(13, 86);
this.groupBox2.Name = "groupBox2";
this.groupBox2.Size = new System.Drawing.Size(379, 225);
this.groupBox2.TabIndex = 13;
this.groupBox2.TabStop = false;
this.groupBox2.Text = "Настройки";
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(17, 193);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(73, 13);
this.label1.TabIndex = 17;
this.label1.Text = "Водный знак";
//
// WaterMarkEdit
//
this.WaterMarkEdit.Location = new System.Drawing.Point(96, 190);
this.WaterMarkEdit.Name = "WaterMarkEdit";
this.WaterMarkEdit.Size = new System.Drawing.Size(264, 20);
this.WaterMarkEdit.TabIndex = 16;
this.WaterMarkEdit.Text = "http://scrns.ru";
//
// UseHKCheckBox
//
this.UseHKCheckBox.AutoSize = true;
this.UseHKCheckBox.Location = new System.Drawing.Point(20, 52);
this.UseHKCheckBox.Name = "UseHKCheckBox";
this.UseHKCheckBox.Size = new System.Drawing.Size(189, 17);
this.UseHKCheckBox.TabIndex = 15;
this.UseHKCheckBox.Text = "Использовать PrntScrn клавишу";
this.UseHKCheckBox.UseVisualStyleBackColor = true;
//
// AutoStartCheckBox
//
this.AutoStartCheckBox.AutoSize = true;
this.AutoStartCheckBox.Location = new System.Drawing.Point(20, 29);
this.AutoStartCheckBox.Name = "AutoStartCheckBox";
this.AutoStartCheckBox.Size = new System.Drawing.Size(180, 17);
this.AutoStartCheckBox.TabIndex = 14;
this.AutoStartCheckBox.Text = "Запускать вместе с системой";
this.AutoStartCheckBox.UseVisualStyleBackColor = true;
//
// SaveLocalPathLinkLabel
//
this.SaveLocalPathLinkLabel.AutoSize = true;
this.SaveLocalPathLinkLabel.Location = new System.Drawing.Point(205, 168);
this.SaveLocalPathLinkLabel.Name = "SaveLocalPathLinkLabel";
this.SaveLocalPathLinkLabel.Size = new System.Drawing.Size(51, 13);
this.SaveLocalPathLinkLabel.TabIndex = 13;
this.SaveLocalPathLinkLabel.TabStop = true;
this.SaveLocalPathLinkLabel.Text = "в файл...";
this.SaveLocalPathLinkLabel.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.SaveLocalPathLinkLabel_LinkClicked);
//
// SaveLogLinkLabel
//
this.SaveLogLinkLabel.AutoSize = true;
this.SaveLogLinkLabel.Location = new System.Drawing.Point(91, 145);
this.SaveLogLinkLabel.Name = "SaveLogLinkLabel";
this.SaveLogLinkLabel.Size = new System.Drawing.Size(51, 13);
this.SaveLogLinkLabel.TabIndex = 12;
this.SaveLogLinkLabel.TabStop = true;
this.SaveLogLinkLabel.Text = "в файл...";
this.SaveLogLinkLabel.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.SaveLogLinkLabel_LinkClicked);
//
// CopyInClipboardCheckBox
//
this.CopyInClipboardCheckBox.AutoSize = true;
this.CopyInClipboardCheckBox.Location = new System.Drawing.Point(20, 98);
this.CopyInClipboardCheckBox.Name = "CopyInClipboardCheckBox";
this.CopyInClipboardCheckBox.Size = new System.Drawing.Size(169, 17);
this.CopyInClipboardCheckBox.TabIndex = 9;
this.CopyInClipboardCheckBox.Text = "Копировать адрес картинки";
this.CopyInClipboardCheckBox.UseVisualStyleBackColor = true;
//
// SettingsDialog
//
this.AcceptButton = this.OKButton;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.CancelButton1;
this.ClientSize = new System.Drawing.Size(404, 352);
this.Controls.Add(this.groupBox2);
this.Controls.Add(this.groupBox1);
this.Controls.Add(this.CancelButton1);
this.Controls.Add(this.OKButton);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "SettingsDialog";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Настройки";
this.groupBox1.ResumeLayout(false);
this.groupBox2.ResumeLayout(false);
this.groupBox2.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Button OKButton;
private System.Windows.Forms.Button CancelButton1;
private System.Windows.Forms.ComboBox UploadTypeComboBox;
private System.Windows.Forms.CheckBox SaveLocalScreenshotCheckBox;
private System.Windows.Forms.CheckBox SaveLogCheckBox;
private System.Windows.Forms.CheckBox OpenBrowserCheckBox;
private System.Windows.Forms.CheckBox ShortenUrlCheckBox;
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.GroupBox groupBox2;
private System.Windows.Forms.LinkLabel SaveLocalPathLinkLabel;
private System.Windows.Forms.LinkLabel SaveLogLinkLabel;
private System.Windows.Forms.CheckBox AutoStartCheckBox;
private System.Windows.Forms.CheckBox UseHKCheckBox;
private System.Windows.Forms.ToolTip MainToolTip;
private System.Windows.Forms.CheckBox CopyInClipboardCheckBox;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.TextBox WaterMarkEdit;
}
}