You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
wol/WoL/Waker/MainForm.Designer.cs

180 lines
6.2 KiB

3 years ago

namespace Waker
{
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()
{
3 years ago
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
this.AddressTextBox = new System.Windows.Forms.TextBox();
this.label1 = new System.Windows.Forms.Label();
this.MacTextBox = new System.Windows.Forms.TextBox();
this.label2 = new System.Windows.Forms.Label();
this.WakeButton = new System.Windows.Forms.Button();
this.label3 = new System.Windows.Forms.Label();
this.PortTextBox = new System.Windows.Forms.TextBox();
this.PingPortTextBox = new System.Windows.Forms.TextBox();
this.label4 = new System.Windows.Forms.Label();
this.PingStatusPanel = new System.Windows.Forms.Panel();
this.pingTimer = new System.Windows.Forms.Timer(this.components);
this.SuspendLayout();
//
// AddressTextBox
//
this.AddressTextBox.Location = new System.Drawing.Point(67, 14);
this.AddressTextBox.Name = "AddressTextBox";
this.AddressTextBox.Size = new System.Drawing.Size(198, 23);
this.AddressTextBox.TabIndex = 0;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(12, 18);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(49, 15);
this.label1.TabIndex = 1;
this.label1.Text = "Address";
//
// MacTextBox
//
this.MacTextBox.Location = new System.Drawing.Point(67, 43);
this.MacTextBox.Name = "MacTextBox";
this.MacTextBox.Size = new System.Drawing.Size(198, 23);
this.MacTextBox.TabIndex = 1;
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(21, 47);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(30, 15);
this.label2.TabIndex = 1;
this.label2.Text = "mac";
//
// WakeButton
//
this.WakeButton.Location = new System.Drawing.Point(271, 12);
this.WakeButton.Name = "WakeButton";
this.WakeButton.Size = new System.Drawing.Size(102, 112);
this.WakeButton.TabIndex = 4;
this.WakeButton.Text = "WoL";
this.WakeButton.UseVisualStyleBackColor = true;
this.WakeButton.Click += new System.EventHandler(this.WakeButton_Click);
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(19, 76);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(34, 15);
this.label3.TabIndex = 3;
this.label3.Text = "ports";
//
// PortTextBox
//
this.PortTextBox.Location = new System.Drawing.Point(67, 72);
this.PortTextBox.Name = "PortTextBox";
this.PortTextBox.Size = new System.Drawing.Size(198, 23);
this.PortTextBox.TabIndex = 2;
this.PortTextBox.Text = "7, 9";
//
// PingPortTextBox
//
this.PingPortTextBox.Location = new System.Drawing.Point(138, 101);
this.PingPortTextBox.Name = "PingPortTextBox";
this.PingPortTextBox.Size = new System.Drawing.Size(98, 23);
this.PingPortTextBox.TabIndex = 3;
this.PingPortTextBox.TextChanged += new System.EventHandler(this.PingPortTextBox_TextChanged);
//
// label4
//
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(19, 105);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(113, 15);
this.label4.TabIndex = 3;
this.label4.Text = "ping port (optional)";
//
// PingStatusPanel
//
this.PingStatusPanel.BackColor = System.Drawing.Color.Gray;
this.PingStatusPanel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.PingStatusPanel.Location = new System.Drawing.Point(242, 101);
this.PingStatusPanel.Name = "PingStatusPanel";
this.PingStatusPanel.Size = new System.Drawing.Size(23, 23);
this.PingStatusPanel.TabIndex = 4;
//
// pingTimer
//
this.pingTimer.Interval = 5000;
this.pingTimer.Tick += new System.EventHandler(this.pingTimer_Tick);
//
// MainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.White;
this.ClientSize = new System.Drawing.Size(383, 134);
this.Controls.Add(this.PingStatusPanel);
this.Controls.Add(this.label4);
this.Controls.Add(this.label3);
this.Controls.Add(this.PingPortTextBox);
this.Controls.Add(this.PortTextBox);
this.Controls.Add(this.WakeButton);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Controls.Add(this.MacTextBox);
this.Controls.Add(this.AddressTextBox);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximumSize = new System.Drawing.Size(399, 173);
this.MinimumSize = new System.Drawing.Size(399, 144);
this.Name = "MainForm";
this.Text = "Waker";
this.ResumeLayout(false);
this.PerformLayout();
3 years ago
}
#endregion
private System.Windows.Forms.TextBox AddressTextBox;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.TextBox MacTextBox;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Button WakeButton;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.TextBox PortTextBox;
3 years ago
private System.Windows.Forms.TextBox PingPortTextBox;
private System.Windows.Forms.Label label4;
private System.Windows.Forms.Panel PingStatusPanel;
private System.Windows.Forms.Timer pingTimer;
}
3 years ago
}