main: Added TX history box placeholder
This commit is contained in:
parent
eb9e201c55
commit
6c3fc72cf5
25
FireWalletLite/MainForm.Designer.cs
generated
25
FireWalletLite/MainForm.Designer.cs
generated
@ -43,6 +43,8 @@
|
|||||||
labelPassword = new Label();
|
labelPassword = new Label();
|
||||||
LoginButton = new Button();
|
LoginButton = new Button();
|
||||||
panelPortfolio = new Panel();
|
panelPortfolio = new Panel();
|
||||||
|
groupBoxHistory = new GroupBox();
|
||||||
|
panelHistory = new Panel();
|
||||||
buttonRenew = new Button();
|
buttonRenew = new Button();
|
||||||
groupBoxDomains = new GroupBox();
|
groupBoxDomains = new GroupBox();
|
||||||
panelDomainList = new Panel();
|
panelDomainList = new Panel();
|
||||||
@ -57,6 +59,7 @@
|
|||||||
((System.ComponentModel.ISupportInitialize)pictureBoxLogo).BeginInit();
|
((System.ComponentModel.ISupportInitialize)pictureBoxLogo).BeginInit();
|
||||||
groupBoxLogin.SuspendLayout();
|
groupBoxLogin.SuspendLayout();
|
||||||
panelPortfolio.SuspendLayout();
|
panelPortfolio.SuspendLayout();
|
||||||
|
groupBoxHistory.SuspendLayout();
|
||||||
groupBoxDomains.SuspendLayout();
|
groupBoxDomains.SuspendLayout();
|
||||||
panelNav.SuspendLayout();
|
panelNav.SuspendLayout();
|
||||||
groupBoxAccount.SuspendLayout();
|
groupBoxAccount.SuspendLayout();
|
||||||
@ -179,6 +182,7 @@
|
|||||||
//
|
//
|
||||||
// panelPortfolio
|
// panelPortfolio
|
||||||
//
|
//
|
||||||
|
panelPortfolio.Controls.Add(groupBoxHistory);
|
||||||
panelPortfolio.Controls.Add(buttonRenew);
|
panelPortfolio.Controls.Add(buttonRenew);
|
||||||
panelPortfolio.Controls.Add(groupBoxDomains);
|
panelPortfolio.Controls.Add(groupBoxDomains);
|
||||||
panelPortfolio.Controls.Add(panelNav);
|
panelPortfolio.Controls.Add(panelNav);
|
||||||
@ -189,6 +193,24 @@
|
|||||||
panelPortfolio.TabIndex = 2;
|
panelPortfolio.TabIndex = 2;
|
||||||
panelPortfolio.Visible = false;
|
panelPortfolio.Visible = false;
|
||||||
//
|
//
|
||||||
|
// groupBoxHistory
|
||||||
|
//
|
||||||
|
groupBoxHistory.Controls.Add(panelHistory);
|
||||||
|
groupBoxHistory.Location = new Point(102, 226);
|
||||||
|
groupBoxHistory.Name = "groupBoxHistory";
|
||||||
|
groupBoxHistory.Size = new Size(299, 293);
|
||||||
|
groupBoxHistory.TabIndex = 4;
|
||||||
|
groupBoxHistory.TabStop = false;
|
||||||
|
groupBoxHistory.Text = "History";
|
||||||
|
//
|
||||||
|
// panelHistory
|
||||||
|
//
|
||||||
|
panelHistory.Dock = DockStyle.Fill;
|
||||||
|
panelHistory.Location = new Point(3, 19);
|
||||||
|
panelHistory.Name = "panelHistory";
|
||||||
|
panelHistory.Size = new Size(293, 271);
|
||||||
|
panelHistory.TabIndex = 0;
|
||||||
|
//
|
||||||
// buttonRenew
|
// buttonRenew
|
||||||
//
|
//
|
||||||
buttonRenew.Enabled = false;
|
buttonRenew.Enabled = false;
|
||||||
@ -309,6 +331,7 @@
|
|||||||
groupBoxLogin.ResumeLayout(false);
|
groupBoxLogin.ResumeLayout(false);
|
||||||
groupBoxLogin.PerformLayout();
|
groupBoxLogin.PerformLayout();
|
||||||
panelPortfolio.ResumeLayout(false);
|
panelPortfolio.ResumeLayout(false);
|
||||||
|
groupBoxHistory.ResumeLayout(false);
|
||||||
groupBoxDomains.ResumeLayout(false);
|
groupBoxDomains.ResumeLayout(false);
|
||||||
panelNav.ResumeLayout(false);
|
panelNav.ResumeLayout(false);
|
||||||
groupBoxAccount.ResumeLayout(false);
|
groupBoxAccount.ResumeLayout(false);
|
||||||
@ -341,5 +364,7 @@
|
|||||||
private PictureBox pictureBoxLogo;
|
private PictureBox pictureBoxLogo;
|
||||||
private ToolStripStatusLabel LabelSyncWarning;
|
private ToolStripStatusLabel LabelSyncWarning;
|
||||||
private ToolStripDropDownButton DropDownHelp;
|
private ToolStripDropDownButton DropDownHelp;
|
||||||
|
private GroupBox groupBoxHistory;
|
||||||
|
private Panel panelHistory;
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -485,7 +485,8 @@ namespace FireWalletLite
|
|||||||
buttonReceive.Top = statusStripMain.Height + 10;
|
buttonReceive.Top = statusStripMain.Height + 10;
|
||||||
buttonSend.Top = buttonReceive.Top + buttonReceive.Height + 10;
|
buttonSend.Top = buttonReceive.Top + buttonReceive.Height + 10;
|
||||||
buttonRenew.Top = groupBoxAccount.Top + groupBoxAccount.Height + 10;
|
buttonRenew.Top = groupBoxAccount.Top + groupBoxAccount.Height + 10;
|
||||||
|
groupBoxHistory.Top = buttonRenew.Top + buttonRenew.Height + 10;
|
||||||
|
groupBoxHistory.Height = this.Height - groupBoxHistory.Top - 40;
|
||||||
}
|
}
|
||||||
private void MainForm_FormClosing(object sender, FormClosingEventArgs e)
|
private void MainForm_FormClosing(object sender, FormClosingEventArgs e)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user