-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFormApiKey.Designer.cs
More file actions
112 lines (107 loc) · 3.74 KB
/
FormApiKey.Designer.cs
File metadata and controls
112 lines (107 loc) · 3.74 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
namespace GT4Twitch
{
partial class FormApiKey
{
/// <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()
{
lbAPIKey = new Label();
tbAPIKey = new TextBox();
btApply = new Button();
btCancel = new Button();
fileSystemWatcher1 = new FileSystemWatcher();
((System.ComponentModel.ISupportInitialize)fileSystemWatcher1).BeginInit();
SuspendLayout();
//
// lbAPIKey
//
lbAPIKey.AutoSize = true;
lbAPIKey.Location = new Point(12, 9);
lbAPIKey.Name = "lbAPIKey";
lbAPIKey.Size = new Size(207, 15);
lbAPIKey.TabIndex = 0;
lbAPIKey.Text = "Twitch API Key (KEEP THIS A SECRET!):";
//
// tbAPIKey
//
tbAPIKey.Location = new Point(12, 27);
tbAPIKey.Name = "tbAPIKey";
tbAPIKey.Size = new Size(444, 23);
tbAPIKey.TabIndex = 1;
//
// btApply
//
btApply.Location = new Point(381, 56);
btApply.Name = "btApply";
btApply.Size = new Size(75, 23);
btApply.TabIndex = 2;
btApply.Text = "Apply";
btApply.UseVisualStyleBackColor = true;
btApply.Click += btApply_Click;
//
// btCancel
//
btCancel.Location = new Point(12, 56);
btCancel.Name = "btCancel";
btCancel.Size = new Size(75, 23);
btCancel.TabIndex = 3;
btCancel.Text = "Cancel";
btCancel.UseVisualStyleBackColor = true;
btCancel.Click += btCancel_Click;
//
// fileSystemWatcher1
//
fileSystemWatcher1.EnableRaisingEvents = true;
fileSystemWatcher1.SynchronizingObject = this;
//
// FormApiKey
//
AcceptButton = btApply;
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
CancelButton = btCancel;
ClientSize = new Size(471, 89);
ControlBox = false;
Controls.Add(btCancel);
Controls.Add(btApply);
Controls.Add(tbAPIKey);
Controls.Add(lbAPIKey);
FormBorderStyle = FormBorderStyle.FixedToolWindow;
Name = "FormApiKey";
ShowIcon = false;
ShowInTaskbar = false;
StartPosition = FormStartPosition.CenterParent;
Text = "API Key Setup";
Load += FormApiKey_Load;
((System.ComponentModel.ISupportInitialize)fileSystemWatcher1).EndInit();
ResumeLayout(false);
PerformLayout();
}
#endregion
private Label lbAPIKey;
private TextBox tbAPIKey;
private Button btApply;
private Button btCancel;
private FileSystemWatcher fileSystemWatcher1;
}
}