Add project files.
This commit is contained in:
124
FeanorProjects/Nodestatus.Designer.cs
generated
Normal file
124
FeanorProjects/Nodestatus.Designer.cs
generated
Normal file
@@ -0,0 +1,124 @@
|
||||
namespace FeanorConfig
|
||||
{
|
||||
partial class Nodestatus
|
||||
{
|
||||
/// <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()
|
||||
{
|
||||
this.webBrowser1 = new System.Windows.Forms.WebBrowser();
|
||||
this.UpdateStatus = new System.Windows.Forms.Button();
|
||||
this.Close = new System.Windows.Forms.Button();
|
||||
this.nodeURL = new System.Windows.Forms.TextBox();
|
||||
this.UpdateStatusCheckBox = new System.Windows.Forms.CheckBox();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
// webBrowser1
|
||||
//
|
||||
this.webBrowser1.Location = new System.Drawing.Point(12, 73);
|
||||
this.webBrowser1.MinimumSize = new System.Drawing.Size(20, 20);
|
||||
this.webBrowser1.Name = "webBrowser1";
|
||||
this.webBrowser1.Size = new System.Drawing.Size(936, 861);
|
||||
this.webBrowser1.TabIndex = 44;
|
||||
this.webBrowser1.DocumentCompleted += new System.Windows.Forms.WebBrowserDocumentCompletedEventHandler(this.webBrowser1_DocumentCompleted);
|
||||
//
|
||||
// UpdateStatus
|
||||
//
|
||||
this.UpdateStatus.BackColor = System.Drawing.Color.DimGray;
|
||||
this.UpdateStatus.Font = new System.Drawing.Font("Century Gothic", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.UpdateStatus.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
|
||||
this.UpdateStatus.Location = new System.Drawing.Point(12, 12);
|
||||
this.UpdateStatus.Name = "UpdateStatus";
|
||||
this.UpdateStatus.Size = new System.Drawing.Size(145, 55);
|
||||
this.UpdateStatus.TabIndex = 45;
|
||||
this.UpdateStatus.Text = "Update status";
|
||||
this.UpdateStatus.UseVisualStyleBackColor = false;
|
||||
this.UpdateStatus.Click += new System.EventHandler(this.UpdateStatus_Click);
|
||||
//
|
||||
// Close
|
||||
//
|
||||
this.Close.BackColor = System.Drawing.Color.DimGray;
|
||||
this.Close.Font = new System.Drawing.Font("Century Gothic", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.Close.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
|
||||
this.Close.Location = new System.Drawing.Point(163, 12);
|
||||
this.Close.Name = "Close";
|
||||
this.Close.Size = new System.Drawing.Size(145, 55);
|
||||
this.Close.TabIndex = 46;
|
||||
this.Close.Text = "Close";
|
||||
this.Close.UseVisualStyleBackColor = false;
|
||||
this.Close.Click += new System.EventHandler(this.Close_Click);
|
||||
//
|
||||
// nodeURL
|
||||
//
|
||||
this.nodeURL.BackColor = System.Drawing.Color.Gray;
|
||||
this.nodeURL.Font = new System.Drawing.Font("Century Gothic", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.nodeURL.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
|
||||
this.nodeURL.Location = new System.Drawing.Point(585, 26);
|
||||
this.nodeURL.Name = "nodeURL";
|
||||
this.nodeURL.Size = new System.Drawing.Size(363, 27);
|
||||
this.nodeURL.TabIndex = 47;
|
||||
this.nodeURL.TextChanged += new System.EventHandler(this.nodeURL_TextChanged);
|
||||
//
|
||||
// UpdateStatusCheckBox
|
||||
//
|
||||
this.UpdateStatusCheckBox.AutoSize = true;
|
||||
this.UpdateStatusCheckBox.Font = new System.Drawing.Font("Century Gothic", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.UpdateStatusCheckBox.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
|
||||
this.UpdateStatusCheckBox.Location = new System.Drawing.Point(330, 28);
|
||||
this.UpdateStatusCheckBox.Name = "UpdateStatusCheckBox";
|
||||
this.UpdateStatusCheckBox.Size = new System.Drawing.Size(165, 25);
|
||||
this.UpdateStatusCheckBox.TabIndex = 48;
|
||||
this.UpdateStatusCheckBox.Text = "Update every 10s";
|
||||
this.UpdateStatusCheckBox.UseVisualStyleBackColor = true;
|
||||
this.UpdateStatusCheckBox.CheckedChanged += new System.EventHandler(this.UpdateStatusCheckBox_CheckedChanged);
|
||||
//
|
||||
// Nodestatus
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
this.BackColor = System.Drawing.Color.DimGray;
|
||||
this.ClientSize = new System.Drawing.Size(986, 946);
|
||||
this.Controls.Add(this.UpdateStatusCheckBox);
|
||||
this.Controls.Add(this.nodeURL);
|
||||
this.Controls.Add(this.Close);
|
||||
this.Controls.Add(this.UpdateStatus);
|
||||
this.Controls.Add(this.webBrowser1);
|
||||
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
|
||||
this.Name = "Nodestatus";
|
||||
this.Text = "Nodestatus";
|
||||
this.ResumeLayout(false);
|
||||
this.PerformLayout();
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
public System.Windows.Forms.WebBrowser webBrowser1;
|
||||
private System.Windows.Forms.Button UpdateStatus;
|
||||
private System.Windows.Forms.Button Close;
|
||||
public System.Windows.Forms.TextBox nodeURL;
|
||||
private System.Windows.Forms.CheckBox UpdateStatusCheckBox;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user