-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathSettingsWindow.Designer.cs
More file actions
92 lines (87 loc) · 3.16 KB
/
Copy pathSettingsWindow.Designer.cs
File metadata and controls
92 lines (87 loc) · 3.16 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
namespace deskdecorator
{
partial class SettingsWindow
{
/// <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()
{
checkBox1 = new CheckBox();
comboBox1 = new ComboBox();
label1 = new Label();
SuspendLayout();
//
// checkBox1
//
checkBox1.AutoSize = true;
checkBox1.FlatStyle = FlatStyle.Flat;
checkBox1.Font = new Font("Arial", 9F, FontStyle.Bold, GraphicsUnit.Point, 0);
checkBox1.Location = new Point(12, 12);
checkBox1.Name = "checkBox1";
checkBox1.Size = new Size(248, 19);
checkBox1.TabIndex = 0;
checkBox1.Text = Language.Get("settings_001");
checkBox1.UseVisualStyleBackColor = true;
checkBox1.CheckedChanged += checkBox1_CheckedChanged;
//
// comboBox1
//
comboBox1.DropDownStyle = ComboBoxStyle.DropDownList;
comboBox1.FormattingEnabled = true;
comboBox1.Items.AddRange(new object[] { "Englisch/English", "Deutsch/German" });
comboBox1.Location = new Point(12, 37);
comboBox1.Name = "comboBox1";
comboBox1.Size = new Size(121, 23);
comboBox1.TabIndex = 1;
comboBox1.SelectedIndexChanged += comboBox1_SelectedIndexChanged;
//
// label1
//
label1.AutoSize = true;
label1.Location = new Point(147, 41);
label1.Name = "label1";
label1.Size = new Size(59, 15);
label1.TabIndex = 2;
label1.Text = Language.Get("Language");
//
// SettingsWindow
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(304, 112);
Controls.Add(label1);
Controls.Add(comboBox1);
Controls.Add(checkBox1);
FormBorderStyle = FormBorderStyle.FixedToolWindow;
MaximizeBox = false;
Name = "SettingsWindow";
RightToLeft = RightToLeft.No;
Text = Language.Get("settings_002");
ResumeLayout(false);
PerformLayout();
}
#endregion
private CheckBox checkBox1;
private ComboBox comboBox1;
private Label label1;
}
}