FireWalletCosmos/FireWalletLite/MainForm.Designer.cs

345 lines
14 KiB
C#
Raw Normal View History

2023-07-05 16:44:34 +10:00
namespace FireWalletLite
{
partial class MainForm
{
/// <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()
{
components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
statusStripMain = new StatusStrip();
SyncLabel = new ToolStripStatusLabel();
LabelSyncWarning = new ToolStripStatusLabel();
DropDownHelp = new ToolStripDropDownButton();
2023-07-05 16:44:34 +10:00
timerUpdate = new System.Windows.Forms.Timer(components);
2023-07-05 17:38:25 +10:00
panelLogin = new Panel();
pictureBoxLogo = new PictureBox();
groupBoxLogin = new GroupBox();
2023-07-05 17:38:25 +10:00
labelWelcome = new Label();
textBoxPassword = new TextBox();
labelPassword = new Label();
LoginButton = new Button();
panelPortfolio = new Panel();
buttonRenew = new Button();
groupBoxDomains = new GroupBox();
panelDomainList = new Panel();
panelNav = new Panel();
buttonSend = new Button();
buttonReceive = new Button();
groupBoxAccount = new GroupBox();
labelDomains = new Label();
labelBalance = new Label();
2023-07-05 16:44:34 +10:00
statusStripMain.SuspendLayout();
2023-07-05 17:38:25 +10:00
panelLogin.SuspendLayout();
((System.ComponentModel.ISupportInitialize)pictureBoxLogo).BeginInit();
groupBoxLogin.SuspendLayout();
panelPortfolio.SuspendLayout();
groupBoxDomains.SuspendLayout();
panelNav.SuspendLayout();
groupBoxAccount.SuspendLayout();
2023-07-05 16:44:34 +10:00
SuspendLayout();
//
// statusStripMain
//
statusStripMain.Dock = DockStyle.Top;
statusStripMain.Items.AddRange(new ToolStripItem[] { SyncLabel, LabelSyncWarning, DropDownHelp });
2023-07-05 16:44:34 +10:00
statusStripMain.Location = new Point(0, 0);
statusStripMain.Name = "statusStripMain";
statusStripMain.Size = new Size(1099, 22);
statusStripMain.SizingGrip = false;
2023-07-05 16:44:34 +10:00
statusStripMain.TabIndex = 0;
statusStripMain.Text = "statusStrip1";
//
// SyncLabel
//
SyncLabel.Name = "SyncLabel";
SyncLabel.Size = new Size(158, 17);
SyncLabel.Text = "Status: Node Not Connected";
//
// LabelSyncWarning
//
LabelSyncWarning.Name = "LabelSyncWarning";
LabelSyncWarning.Size = new Size(443, 17);
LabelSyncWarning.Text = "Please wait for node to sync. Account info could be incorrect while node is behind.";
LabelSyncWarning.Visible = false;
//
// DropDownHelp
//
DropDownHelp.DisplayStyle = ToolStripItemDisplayStyle.Text;
DropDownHelp.Image = (Image)resources.GetObject("DropDownHelp.Image");
DropDownHelp.ImageTransparentColor = Color.Magenta;
DropDownHelp.Name = "DropDownHelp";
DropDownHelp.Size = new Size(62, 20);
DropDownHelp.Text = "Support";
DropDownHelp.ToolTipText = "Get Support";
//
2023-07-05 16:44:34 +10:00
// timerUpdate
//
timerUpdate.Enabled = true;
2023-07-05 17:38:25 +10:00
timerUpdate.Interval = 10000;
2023-07-05 16:44:34 +10:00
timerUpdate.Tick += timerUpdate_Tick;
//
2023-07-05 17:38:25 +10:00
// panelLogin
//
panelLogin.Controls.Add(pictureBoxLogo);
panelLogin.Controls.Add(groupBoxLogin);
panelLogin.Location = new Point(1025, 185);
2023-07-05 17:38:25 +10:00
panelLogin.Name = "panelLogin";
panelLogin.Size = new Size(1099, 558);
2023-07-05 17:38:25 +10:00
panelLogin.TabIndex = 1;
//
// pictureBoxLogo
//
pictureBoxLogo.Image = (Image)resources.GetObject("pictureBoxLogo.Image");
pictureBoxLogo.Location = new Point(453, 20);
pictureBoxLogo.Name = "pictureBoxLogo";
pictureBoxLogo.Size = new Size(130, 98);
pictureBoxLogo.SizeMode = PictureBoxSizeMode.Zoom;
pictureBoxLogo.TabIndex = 5;
pictureBoxLogo.TabStop = false;
//
// groupBoxLogin
//
groupBoxLogin.Controls.Add(labelWelcome);
groupBoxLogin.Controls.Add(textBoxPassword);
groupBoxLogin.Controls.Add(labelPassword);
groupBoxLogin.Controls.Add(LoginButton);
groupBoxLogin.Font = new Font("Segoe UI", 12F, FontStyle.Regular, GraphicsUnit.Point);
groupBoxLogin.Location = new Point(279, 109);
groupBoxLogin.Name = "groupBoxLogin";
groupBoxLogin.Size = new Size(450, 250);
groupBoxLogin.TabIndex = 4;
groupBoxLogin.TabStop = false;
groupBoxLogin.Text = "Login";
//
2023-07-05 17:38:25 +10:00
// labelWelcome
//
labelWelcome.AutoSize = true;
labelWelcome.Font = new Font("Segoe UI", 14F, FontStyle.Regular, GraphicsUnit.Point);
labelWelcome.Location = new Point(119, 25);
2023-07-05 17:38:25 +10:00
labelWelcome.Name = "labelWelcome";
labelWelcome.Size = new Size(238, 25);
2023-07-05 17:38:25 +10:00
labelWelcome.TabIndex = 3;
labelWelcome.Text = "Login to access your wallet";
2023-07-05 17:38:25 +10:00
//
// textBoxPassword
//
textBoxPassword.Font = new Font("Segoe UI", 12F, FontStyle.Regular, GraphicsUnit.Point);
textBoxPassword.Location = new Point(174, 71);
2023-07-05 17:38:25 +10:00
textBoxPassword.Name = "textBoxPassword";
textBoxPassword.Size = new Size(235, 29);
2023-07-05 17:38:25 +10:00
textBoxPassword.TabIndex = 2;
textBoxPassword.UseSystemPasswordChar = true;
2023-07-05 18:21:11 +10:00
textBoxPassword.KeyDown += textBoxPassword_KeyDown;
2023-07-05 17:38:25 +10:00
//
// labelPassword
//
labelPassword.AutoSize = true;
labelPassword.Font = new Font("Segoe UI", 12F, FontStyle.Regular, GraphicsUnit.Point);
labelPassword.Location = new Point(79, 74);
2023-07-05 17:38:25 +10:00
labelPassword.Name = "labelPassword";
labelPassword.Size = new Size(79, 21);
labelPassword.TabIndex = 1;
labelPassword.Text = "Password:";
//
// LoginButton
//
LoginButton.FlatStyle = FlatStyle.Flat;
LoginButton.Font = new Font("Segoe UI", 12F, FontStyle.Regular, GraphicsUnit.Point);
LoginButton.Location = new Point(160, 190);
2023-07-05 17:38:25 +10:00
LoginButton.Name = "LoginButton";
LoginButton.Size = new Size(130, 37);
LoginButton.TabIndex = 0;
LoginButton.Text = "Login";
LoginButton.UseVisualStyleBackColor = true;
LoginButton.Click += Login_Click;
//
// panelPortfolio
//
panelPortfolio.Controls.Add(buttonRenew);
panelPortfolio.Controls.Add(groupBoxDomains);
panelPortfolio.Controls.Add(panelNav);
panelPortfolio.Controls.Add(groupBoxAccount);
panelPortfolio.Location = new Point(0, 25);
panelPortfolio.Name = "panelPortfolio";
panelPortfolio.Size = new Size(1052, 529);
panelPortfolio.TabIndex = 2;
panelPortfolio.Visible = false;
//
// buttonRenew
//
buttonRenew.Enabled = false;
buttonRenew.FlatStyle = FlatStyle.Flat;
buttonRenew.Font = new Font("Segoe UI", 14F, FontStyle.Regular, GraphicsUnit.Point);
buttonRenew.Location = new Point(102, 171);
buttonRenew.Name = "buttonRenew";
buttonRenew.Size = new Size(299, 49);
buttonRenew.TabIndex = 3;
buttonRenew.Text = "Renew 0 domains";
buttonRenew.UseVisualStyleBackColor = true;
buttonRenew.Click += buttonRenew_Click;
//
// groupBoxDomains
//
groupBoxDomains.Controls.Add(panelDomainList);
groupBoxDomains.Font = new Font("Segoe UI", 14F, FontStyle.Regular, GraphicsUnit.Point);
groupBoxDomains.Location = new Point(407, 57);
groupBoxDomains.Name = "groupBoxDomains";
groupBoxDomains.Size = new Size(642, 469);
groupBoxDomains.TabIndex = 2;
groupBoxDomains.TabStop = false;
groupBoxDomains.Text = "Domains";
//
// panelDomainList
//
panelDomainList.AutoScroll = true;
panelDomainList.Dock = DockStyle.Fill;
panelDomainList.Font = new Font("Segoe UI", 9F, FontStyle.Regular, GraphicsUnit.Point);
panelDomainList.Location = new Point(3, 28);
panelDomainList.Name = "panelDomainList";
panelDomainList.Size = new Size(636, 438);
panelDomainList.TabIndex = 0;
//
// panelNav
//
panelNav.Controls.Add(buttonSend);
panelNav.Controls.Add(buttonReceive);
panelNav.Dock = DockStyle.Left;
panelNav.Location = new Point(0, 0);
panelNav.Name = "panelNav";
panelNav.Size = new Size(96, 529);
panelNav.TabIndex = 1;
//
// buttonSend
//
buttonSend.FlatStyle = FlatStyle.Flat;
buttonSend.Font = new Font("Segoe UI", 14F, FontStyle.Regular, GraphicsUnit.Point);
buttonSend.Location = new Point(3, 99);
buttonSend.Name = "buttonSend";
buttonSend.Size = new Size(90, 36);
buttonSend.TabIndex = 1;
buttonSend.Text = "Send";
buttonSend.UseVisualStyleBackColor = true;
buttonSend.Click += buttonSend_Click;
//
// buttonReceive
//
buttonReceive.FlatStyle = FlatStyle.Flat;
buttonReceive.Font = new Font("Segoe UI", 14F, FontStyle.Regular, GraphicsUnit.Point);
buttonReceive.Location = new Point(3, 57);
buttonReceive.Name = "buttonReceive";
buttonReceive.Size = new Size(90, 36);
buttonReceive.TabIndex = 0;
buttonReceive.Text = "Receive";
buttonReceive.UseVisualStyleBackColor = true;
buttonReceive.Click += buttonReceive_Click;
//
// groupBoxAccount
//
groupBoxAccount.Controls.Add(labelDomains);
groupBoxAccount.Controls.Add(labelBalance);
groupBoxAccount.Font = new Font("Segoe UI", 14F, FontStyle.Regular, GraphicsUnit.Point);
groupBoxAccount.Location = new Point(102, 57);
groupBoxAccount.Name = "groupBoxAccount";
groupBoxAccount.Size = new Size(299, 108);
groupBoxAccount.TabIndex = 0;
groupBoxAccount.TabStop = false;
groupBoxAccount.Text = "Account";
//
// labelDomains
//
labelDomains.AutoSize = true;
labelDomains.Location = new Point(9, 65);
labelDomains.Name = "labelDomains";
labelDomains.Size = new Size(127, 25);
labelDomains.TabIndex = 1;
labelDomains.Text = "labelDomains";
//
// labelBalance
//
labelBalance.AutoSize = true;
labelBalance.Location = new Point(9, 28);
labelBalance.Name = "labelBalance";
labelBalance.Size = new Size(79, 25);
labelBalance.TabIndex = 0;
labelBalance.Text = "labelBal";
//
2023-07-05 16:44:34 +10:00
// MainForm
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(1099, 580);
2023-07-05 17:38:25 +10:00
Controls.Add(panelLogin);
Controls.Add(panelPortfolio);
2023-07-05 16:44:34 +10:00
Controls.Add(statusStripMain);
Icon = (Icon)resources.GetObject("$this.Icon");
MaximizeBox = false;
MinimizeBox = false;
Name = "MainForm";
Text = "MainForm";
2023-07-05 17:38:25 +10:00
FormClosing += MainForm_FormClosing;
2023-07-05 16:44:34 +10:00
Load += MainForm_Load;
statusStripMain.ResumeLayout(false);
statusStripMain.PerformLayout();
2023-07-05 17:38:25 +10:00
panelLogin.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)pictureBoxLogo).EndInit();
groupBoxLogin.ResumeLayout(false);
groupBoxLogin.PerformLayout();
panelPortfolio.ResumeLayout(false);
groupBoxDomains.ResumeLayout(false);
panelNav.ResumeLayout(false);
groupBoxAccount.ResumeLayout(false);
groupBoxAccount.PerformLayout();
2023-07-05 16:44:34 +10:00
ResumeLayout(false);
PerformLayout();
}
#endregion
private StatusStrip statusStripMain;
private ToolStripStatusLabel SyncLabel;
private System.Windows.Forms.Timer timerUpdate;
2023-07-05 17:38:25 +10:00
private Panel panelLogin;
private Button LoginButton;
private Label labelWelcome;
private TextBox textBoxPassword;
private Label labelPassword;
private Panel panelPortfolio;
private GroupBox groupBoxAccount;
private GroupBox groupBoxLogin;
private Label labelBalance;
private Label labelDomains;
private Panel panelNav;
private Button buttonReceive;
private GroupBox groupBoxDomains;
private Panel panelDomainList;
private Button buttonRenew;
private Button buttonSend;
private PictureBox pictureBoxLogo;
private ToolStripStatusLabel LabelSyncWarning;
private ToolStripDropDownButton DropDownHelp;
2023-07-05 16:44:34 +10:00
}
}