-
Notifications
You must be signed in to change notification settings - Fork 0
/
Preferences.Designer.cs
122 lines (116 loc) · 5.03 KB
/
Preferences.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
namespace HeroForge_OnceAgain
{
partial class Preferences
{
/// <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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Preferences));
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.cBLanguage = new System.Windows.Forms.ComboBox();
this.label1 = new System.Windows.Forms.Label();
this.cBBaseUnit = new System.Windows.Forms.ComboBox();
this.lblLanguage = new System.Windows.Forms.Label();
this.btCancel = new System.Windows.Forms.Button();
this.btSaveSettings = new System.Windows.Forms.Button();
this.groupBox1.SuspendLayout();
this.SuspendLayout();
//
// groupBox1
//
resources.ApplyResources(this.groupBox1, "groupBox1");
this.groupBox1.Controls.Add(this.cBLanguage);
this.groupBox1.Controls.Add(this.label1);
this.groupBox1.Controls.Add(this.cBBaseUnit);
this.groupBox1.Controls.Add(this.lblLanguage);
this.groupBox1.Name = "groupBox1";
this.groupBox1.TabStop = false;
//
// cBLanguage
//
resources.ApplyResources(this.cBLanguage, "cBLanguage");
this.cBLanguage.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest;
this.cBLanguage.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
this.cBLanguage.FormattingEnabled = true;
this.cBLanguage.Items.AddRange(new object[] {
resources.GetString("cBLanguage.Items"),
resources.GetString("cBLanguage.Items1")});
this.cBLanguage.Name = "cBLanguage";
//
// label1
//
resources.ApplyResources(this.label1, "label1");
this.label1.Name = "label1";
//
// cBBaseUnit
//
resources.ApplyResources(this.cBBaseUnit, "cBBaseUnit");
this.cBBaseUnit.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
this.cBBaseUnit.FormattingEnabled = true;
this.cBBaseUnit.Items.AddRange(new object[] {
resources.GetString("cBBaseUnit.Items"),
resources.GetString("cBBaseUnit.Items1")});
this.cBBaseUnit.Name = "cBBaseUnit";
//
// lblLanguage
//
resources.ApplyResources(this.lblLanguage, "lblLanguage");
this.lblLanguage.Name = "lblLanguage";
//
// btCancel
//
resources.ApplyResources(this.btCancel, "btCancel");
this.btCancel.Name = "btCancel";
this.btCancel.UseVisualStyleBackColor = true;
this.btCancel.Click += new System.EventHandler(this.btCancel_Click);
//
// btSaveSettings
//
resources.ApplyResources(this.btSaveSettings, "btSaveSettings");
this.btSaveSettings.Name = "btSaveSettings";
this.btSaveSettings.UseVisualStyleBackColor = true;
this.btSaveSettings.Click += new System.EventHandler(this.btSaveSettings_Click);
//
// Preferences
//
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.btSaveSettings);
this.Controls.Add(this.btCancel);
this.Controls.Add(this.groupBox1);
this.Name = "Preferences";
this.Load += new System.EventHandler(this.Preferences_Load);
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.ComboBox cBBaseUnit;
private System.Windows.Forms.Label lblLanguage;
private System.Windows.Forms.Button btCancel;
private System.Windows.Forms.Button btSaveSettings;
private System.Windows.Forms.ComboBox cBLanguage;
private System.Windows.Forms.Label label1;
}
}