-
Notifications
You must be signed in to change notification settings - Fork 0
/
SettingsForm.Designer.cs
139 lines (134 loc) · 5.1 KB
/
SettingsForm.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
namespace DecolorizerWindow
{
partial class SettingsForm
{
/// <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()
{
components = new System.ComponentModel.Container();
resolutionLabel = new Label();
widthTextBox = new TextBox();
xLabel = new Label();
heightTextBox = new TextBox();
saveButton = new Button();
resolutionPanel = new Panel();
errorProvider = new ErrorProvider(components);
((System.ComponentModel.ISupportInitialize)errorProvider).BeginInit();
SuspendLayout();
//
// resolutionLabel
//
resolutionLabel.AutoSize = true;
resolutionLabel.Font = new Font("Segoe UI", 11F);
resolutionLabel.Location = new Point(38, 29);
resolutionLabel.Name = "resolutionLabel";
resolutionLabel.Size = new Size(123, 20);
resolutionLabel.TabIndex = 0;
resolutionLabel.Text = "Размер области:";
//
// widthTextBox
//
widthTextBox.Font = new Font("Segoe UI", 11F);
widthTextBox.Location = new Point(164, 26);
widthTextBox.MaxLength = 4;
widthTextBox.Name = "widthTextBox";
widthTextBox.Size = new Size(50, 27);
widthTextBox.TabIndex = 1;
widthTextBox.Text = "576";
widthTextBox.Validating += widthTextBox_Validating;
widthTextBox.Validated += textBox_Validated;
//
// xLabel
//
xLabel.AutoSize = true;
xLabel.Font = new Font("Segoe UI", 11F);
xLabel.Location = new Point(216, 29);
xLabel.Name = "xLabel";
xLabel.Size = new Size(16, 20);
xLabel.TabIndex = 2;
xLabel.Text = "x";
//
// heightTextBox
//
heightTextBox.Font = new Font("Segoe UI", 11F);
heightTextBox.Location = new Point(234, 26);
heightTextBox.MaxLength = 4;
heightTextBox.Name = "heightTextBox";
heightTextBox.Size = new Size(50, 27);
heightTextBox.TabIndex = 3;
heightTextBox.Text = "320";
heightTextBox.Validating += heightTextBox_Validating;
heightTextBox.Validated += textBox_Validated;
//
// saveButton
//
saveButton.Font = new Font("Segoe UI", 11F);
saveButton.Location = new Point(110, 84);
saveButton.Name = "saveButton";
saveButton.Size = new Size(107, 32);
saveButton.TabIndex = 4;
saveButton.Text = "Сохранить";
saveButton.UseVisualStyleBackColor = true;
saveButton.Click += saveButton_Click;
//
// resolutionPanel
//
resolutionPanel.BorderStyle = BorderStyle.FixedSingle;
resolutionPanel.Location = new Point(10, 14);
resolutionPanel.Name = "resolutionPanel";
resolutionPanel.Size = new Size(306, 50);
resolutionPanel.TabIndex = 5;
//
// errorProvider
//
errorProvider.ContainerControl = this;
//
// SettingsForm
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(327, 128);
Controls.Add(saveButton);
Controls.Add(heightTextBox);
Controls.Add(xLabel);
Controls.Add(widthTextBox);
Controls.Add(resolutionLabel);
Controls.Add(resolutionPanel);
Icon = Properties.Resources.mainIcon;
MaximizeBox = false;
Name = "SettingsForm";
Text = "Настройки обесцветывателя";
((System.ComponentModel.ISupportInitialize)errorProvider).EndInit();
ResumeLayout(false);
PerformLayout();
}
#endregion
private Label resolutionLabel;
private TextBox widthTextBox;
private Label xLabel;
private TextBox heightTextBox;
private Button saveButton;
private Panel resolutionPanel;
private ErrorProvider errorProvider;
}
}