FireWalletCosmos/FireWalletLite/MainForm.Designer.cs

86 lines
3.0 KiB
C#

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();
timerUpdate = new System.Windows.Forms.Timer(components);
statusStripMain.SuspendLayout();
SuspendLayout();
//
// statusStripMain
//
statusStripMain.Dock = DockStyle.Top;
statusStripMain.Items.AddRange(new ToolStripItem[] { SyncLabel });
statusStripMain.Location = new Point(0, 0);
statusStripMain.Name = "statusStripMain";
statusStripMain.RenderMode = ToolStripRenderMode.Professional;
statusStripMain.Size = new Size(800, 22);
statusStripMain.TabIndex = 0;
statusStripMain.Text = "statusStrip1";
//
// SyncLabel
//
SyncLabel.Name = "SyncLabel";
SyncLabel.Size = new Size(158, 17);
SyncLabel.Text = "Status: Node Not Connected";
//
// timerUpdate
//
timerUpdate.Enabled = true;
timerUpdate.Interval = 1000;
timerUpdate.Tick += timerUpdate_Tick;
//
// MainForm
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(800, 450);
Controls.Add(statusStripMain);
Icon = (Icon)resources.GetObject("$this.Icon");
MaximizeBox = false;
MinimizeBox = false;
Name = "MainForm";
Text = "MainForm";
Load += MainForm_Load;
statusStripMain.ResumeLayout(false);
statusStripMain.PerformLayout();
ResumeLayout(false);
PerformLayout();
}
#endregion
private StatusStrip statusStripMain;
private ToolStripStatusLabel SyncLabel;
private System.Windows.Forms.Timer timerUpdate;
}
}