FireWalletCosmos/FireWalletLite/FirstLoginForm.Designer.cs

104 lines
3.7 KiB
C#
Raw Normal View History

2023-07-05 16:44:34 +10:00
namespace FireWalletLite
{
partial class FirstLoginForm
{
/// <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(FirstLoginForm));
button1 = new Button();
label1 = new Label();
label2 = new Label();
textBoxSeed = new TextBox();
SuspendLayout();
//
// button1
//
button1.FlatStyle = FlatStyle.Flat;
button1.Font = new Font("Segoe UI", 12F, FontStyle.Regular, GraphicsUnit.Point);
button1.Location = new Point(684, 406);
button1.Name = "button1";
button1.Size = new Size(84, 32);
button1.TabIndex = 0;
button1.Text = "Start";
button1.UseVisualStyleBackColor = true;
//
// label1
//
label1.AutoSize = true;
label1.Font = new Font("Segoe UI", 16F, FontStyle.Regular, GraphicsUnit.Point);
label1.Location = new Point(284, 9);
label1.Name = "label1";
label1.Size = new Size(232, 30);
label1.TabIndex = 1;
label1.Text = "Welcome to FireWallet";
//
// label2
//
label2.AutoSize = true;
label2.Location = new Point(12, 51);
label2.Name = "label2";
label2.Size = new Size(303, 45);
label2.TabIndex = 2;
label2.Text = "Here is your seed phrase:\r\nYou should save this somewhere safe (preferably offline)\r\nThis will not be shown again";
//
// textBoxSeed
//
textBoxSeed.Font = new Font("Segoe UI", 14F, FontStyle.Regular, GraphicsUnit.Point);
textBoxSeed.Location = new Point(12, 99);
textBoxSeed.Multiline = true;
textBoxSeed.Name = "textBoxSeed";
textBoxSeed.ReadOnly = true;
textBoxSeed.Size = new Size(756, 140);
textBoxSeed.TabIndex = 3;
//
// FirstLoginForm
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(780, 450);
Controls.Add(textBoxSeed);
Controls.Add(label2);
Controls.Add(label1);
Controls.Add(button1);
FormBorderStyle = FormBorderStyle.Fixed3D;
Icon = (Icon)resources.GetObject("$this.Icon");
MaximizeBox = false;
MinimizeBox = false;
Name = "FirstLoginForm";
Text = "FireWallet";
ResumeLayout(false);
PerformLayout();
}
#endregion
private Button button1;
private Label label1;
private Label label2;
private TextBox textBoxSeed;
}
}