-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathWelcomeForm.Designer.cs
137 lines (131 loc) · 7.27 KB
/
WelcomeForm.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
namespace Steam_Desktop_Authenticator
{
partial class WelcomeForm
{
/// <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(WelcomeForm));
this.label1 = new System.Windows.Forms.Label();
this.btnImportConfig = new System.Windows.Forms.Button();
this.label2 = new System.Windows.Forms.Label();
this.btnAndroidImport = new System.Windows.Forms.Button();
this.btnJustStart = new System.Windows.Forms.Button();
this.btnWinAuthImport = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// label1
//
this.label1.Font = new System.Drawing.Font("Segoe UI", 18F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label1.Location = new System.Drawing.Point(12, 9);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(366, 73);
this.label1.TabIndex = 0;
this.label1.Text = "Welcome to\r\nSteam Desktop Authenticator";
this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// btnImportConfig
//
this.btnImportConfig.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.btnImportConfig.Location = new System.Drawing.Point(12, 134);
this.btnImportConfig.Name = "btnImportConfig";
this.btnImportConfig.Size = new System.Drawing.Size(366, 51);
this.btnImportConfig.TabIndex = 1;
this.btnImportConfig.Text = "I already setup Steam Desktop Authenticator in another location on this PC and I " +
"want to import its account(s).\r\n";
this.btnImportConfig.UseVisualStyleBackColor = true;
this.btnImportConfig.Click += new System.EventHandler(this.btnImportConfig_Click);
//
// label2
//
this.label2.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label2.Location = new System.Drawing.Point(12, 86);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(366, 37);
this.label2.TabIndex = 2;
this.label2.Text = "Select an item to get started:";
this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// btnAndroidImport
//
this.btnAndroidImport.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.btnAndroidImport.Location = new System.Drawing.Point(12, 191);
this.btnAndroidImport.Name = "btnAndroidImport";
this.btnAndroidImport.Size = new System.Drawing.Size(366, 51);
this.btnAndroidImport.TabIndex = 3;
this.btnAndroidImport.Text = "I have an Android device and want to \r\nimport my Steam account(s) from the Steam " +
"app.";
this.btnAndroidImport.UseVisualStyleBackColor = true;
this.btnAndroidImport.Click += new System.EventHandler(this.btnAndroidImport_Click);
//
// btnJustStart
//
this.btnJustStart.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.btnJustStart.Location = new System.Drawing.Point(12, 305);
this.btnJustStart.Name = "btnJustStart";
this.btnJustStart.Size = new System.Drawing.Size(366, 51);
this.btnJustStart.TabIndex = 4;
this.btnJustStart.Text = "This is my first time and \r\nI just want to sign into my Steam Account(s).";
this.btnJustStart.UseVisualStyleBackColor = true;
this.btnJustStart.Click += new System.EventHandler(this.btnJustStart_Click);
//
// btnWinAuthImport
//
this.btnWinAuthImport.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.btnWinAuthImport.Location = new System.Drawing.Point(12, 248);
this.btnWinAuthImport.Name = "btnWinAuthImport";
this.btnWinAuthImport.Size = new System.Drawing.Size(366, 51);
this.btnWinAuthImport.TabIndex = 5;
this.btnWinAuthImport.Text = "I have a WinAuth export file and want to import its account(s).";
this.btnWinAuthImport.UseVisualStyleBackColor = true;
this.btnWinAuthImport.Click += new System.EventHandler(this.btnWinAuthImport_Click);
//
// WelcomeForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 19F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(390, 369);
this.Controls.Add(this.btnWinAuthImport);
this.Controls.Add(this.btnJustStart);
this.Controls.Add(this.btnAndroidImport);
this.Controls.Add(this.label2);
this.Controls.Add(this.btnImportConfig);
this.Controls.Add(this.label1);
this.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.Name = "WelcomeForm";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Steam Desktop Authenticator";
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Button btnImportConfig;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Button btnAndroidImport;
private System.Windows.Forms.Button btnJustStart;
private System.Windows.Forms.Button btnWinAuthImport;
}
}