-
Notifications
You must be signed in to change notification settings - Fork 0
/
Settings.Designer.cs
143 lines (138 loc) · 4.85 KB
/
Settings.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
namespace TTSPlay.HT
{
partial class Settings
{
/// <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()
{
lblUserId = new Label();
txtUserId = new TextBox();
txtUserSecret = new TextBox();
lblUserSecret = new Label();
btnSave = new Button();
btnCancel = new Button();
lblAudioDevices = new Label();
listAudioDevices = new ComboBox();
SuspendLayout();
//
// lblUserId
//
lblUserId.AutoSize = true;
lblUserId.Location = new Point(41, 22);
lblUserId.Name = "lblUserId";
lblUserId.Size = new Size(181, 32);
lblUserId.TabIndex = 0;
lblUserId.Text = "Play.HT User ID:";
//
// txtUserId
//
txtUserId.Location = new Point(228, 19);
txtUserId.Name = "txtUserId";
txtUserId.Size = new Size(709, 39);
txtUserId.TabIndex = 1;
//
// txtUserSecret
//
txtUserSecret.Location = new Point(228, 64);
txtUserSecret.Name = "txtUserSecret";
txtUserSecret.Size = new Size(709, 39);
txtUserSecret.TabIndex = 3;
//
// lblUserSecret
//
lblUserSecret.AutoSize = true;
lblUserSecret.Location = new Point(6, 67);
lblUserSecret.Name = "lblUserSecret";
lblUserSecret.Size = new Size(216, 32);
lblUserSecret.TabIndex = 2;
lblUserSecret.Text = "Play.HT Secret Key:";
//
// btnSave
//
btnSave.Location = new Point(791, 164);
btnSave.Name = "btnSave";
btnSave.Size = new Size(146, 45);
btnSave.TabIndex = 4;
btnSave.Text = "Save";
btnSave.UseVisualStyleBackColor = true;
btnSave.Click += button1_Click;
//
// btnCancel
//
btnCancel.Location = new Point(639, 163);
btnCancel.Name = "btnCancel";
btnCancel.Size = new Size(146, 45);
btnCancel.TabIndex = 5;
btnCancel.Text = "Cancel";
btnCancel.UseVisualStyleBackColor = true;
btnCancel.Click += button2_Click;
//
// lblAudioDevices
//
lblAudioDevices.AutoSize = true;
lblAudioDevices.Location = new Point(51, 115);
lblAudioDevices.Name = "lblAudioDevices";
lblAudioDevices.Size = new Size(171, 32);
lblAudioDevices.TabIndex = 6;
lblAudioDevices.Text = "Audio Devices:";
//
// listAudioDevices
//
listAudioDevices.FormattingEnabled = true;
listAudioDevices.Location = new Point(228, 112);
listAudioDevices.Name = "listAudioDevices";
listAudioDevices.Size = new Size(709, 40);
listAudioDevices.TabIndex = 7;
//
// Settings
//
AutoScaleDimensions = new SizeF(13F, 32F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(949, 222);
Controls.Add(listAudioDevices);
Controls.Add(lblAudioDevices);
Controls.Add(btnCancel);
Controls.Add(btnSave);
Controls.Add(txtUserSecret);
Controls.Add(lblUserSecret);
Controls.Add(txtUserId);
Controls.Add(lblUserId);
MaximizeBox = false;
MinimizeBox = false;
Name = "Settings";
Text = "Settings";
Load += Settings_Load;
ResumeLayout(false);
PerformLayout();
}
#endregion
private Label lblUserId;
private TextBox txtUserId;
private TextBox txtUserSecret;
private Label lblUserSecret;
private Button btnSave;
private Button btnCancel;
private Label lblAudioDevices;
private ComboBox listAudioDevices;
}
}