-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathImportAccountForm.Designer.cs
106 lines (102 loc) · 5.33 KB
/
ImportAccountForm.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
namespace Steam_Desktop_Authenticator
{
partial class ImportAccountForm
{
#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(ImportAccountForm));
this.labelText = new System.Windows.Forms.Label();
this.txtBox = new System.Windows.Forms.TextBox();
this.btnImport = new System.Windows.Forms.Button();
this.btnCancel = new System.Windows.Forms.Button();
this.label1 = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// labelText
//
this.labelText.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.labelText.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.labelText.ForeColor = System.Drawing.SystemColors.ControlText;
this.labelText.Location = new System.Drawing.Point(15, 14);
this.labelText.Name = "labelText";
this.labelText.Size = new System.Drawing.Size(317, 25);
this.labelText.TabIndex = 0;
this.labelText.Text = "Enter your encryption passkey if your .maFile is encrypted:";
//
// txtBox
//
this.txtBox.Font = new System.Drawing.Font("Segoe UI", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.txtBox.Location = new System.Drawing.Point(15, 42);
this.txtBox.Name = "txtBox";
this.txtBox.Size = new System.Drawing.Size(307, 39);
this.txtBox.TabIndex = 1;
//
// btnImport
//
this.btnImport.Location = new System.Drawing.Point(135, 131);
this.btnImport.Name = "btnImport";
this.btnImport.Size = new System.Drawing.Size(187, 28);
this.btnImport.TabIndex = 3;
this.btnImport.Text = "Select .maFile file to Import";
this.btnImport.UseVisualStyleBackColor = true;
this.btnImport.Click += new System.EventHandler(this.btnImport_Click);
//
// btnCancel
//
this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.btnCancel.Location = new System.Drawing.Point(41, 131);
this.btnCancel.Name = "btnCancel";
this.btnCancel.Size = new System.Drawing.Size(88, 28);
this.btnCancel.TabIndex = 4;
this.btnCancel.Text = "Cancel";
this.btnCancel.UseVisualStyleBackColor = true;
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
//
// label1
//
this.label1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.label1.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label1.ForeColor = System.Drawing.SystemColors.ControlText;
this.label1.Location = new System.Drawing.Point(15, 83);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(307, 40);
this.label1.TabIndex = 2;
this.label1.Text = "If you import an encrypted .maFile, the manifest file must be next to it.";
//
// ImportAccountForm
//
this.AcceptButton = this.btnImport;
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 19F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.btnCancel;
this.ClientSize = new System.Drawing.Size(336, 171);
this.Controls.Add(this.label1);
this.Controls.Add(this.btnCancel);
this.Controls.Add(this.btnImport);
this.Controls.Add(this.txtBox);
this.Controls.Add(this.labelText);
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.FixedDialog;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.Name = "ImportAccountForm";
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Import Account";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Import_maFile_Form_FormClosing);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label labelText;
private System.Windows.Forms.TextBox txtBox;
private System.Windows.Forms.Button btnImport;
private System.Windows.Forms.Button btnCancel;
private System.Windows.Forms.Label label1;
}
}