90 lines
2.9 KiB
C#
90 lines
2.9 KiB
C#
namespace robospot_camera_finder
|
|
{
|
|
partial class ManualIPForm
|
|
{
|
|
/// <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()
|
|
{
|
|
btnValidate = new Button();
|
|
txtIPAddress = new TextBox();
|
|
lblEnterIP = new Label();
|
|
SuspendLayout();
|
|
//
|
|
// btnValidate
|
|
//
|
|
btnValidate.Location = new Point(313, 27);
|
|
btnValidate.Name = "btnValidate";
|
|
btnValidate.Size = new Size(75, 23);
|
|
btnValidate.TabIndex = 1;
|
|
btnValidate.Text = "OK";
|
|
btnValidate.UseVisualStyleBackColor = true;
|
|
btnValidate.Click += btnValidate_Click;
|
|
//
|
|
// txtIPAddress
|
|
//
|
|
txtIPAddress.Location = new Point(12, 27);
|
|
txtIPAddress.MaxLength = 14;
|
|
txtIPAddress.Name = "txtIPAddress";
|
|
txtIPAddress.PlaceholderText = "10.*.*.*";
|
|
txtIPAddress.Size = new Size(295, 23);
|
|
txtIPAddress.TabIndex = 0;
|
|
//
|
|
// lblEnterIP
|
|
//
|
|
lblEnterIP.AutoSize = true;
|
|
lblEnterIP.Location = new Point(12, 9);
|
|
lblEnterIP.Name = "lblEnterIP";
|
|
lblEnterIP.Size = new Size(299, 15);
|
|
lblEnterIP.TabIndex = 2;
|
|
lblEnterIP.Text = "Please enter the camera IP address in the 10.*.*.* format";
|
|
//
|
|
// Manual_IP_Form
|
|
//
|
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(400, 66);
|
|
Controls.Add(lblEnterIP);
|
|
Controls.Add(txtIPAddress);
|
|
Controls.Add(btnValidate);
|
|
FormBorderStyle = FormBorderStyle.FixedSingle;
|
|
MaximizeBox = false;
|
|
MinimizeBox = false;
|
|
Name = "Manual_IP_Form";
|
|
ShowIcon = false;
|
|
ShowInTaskbar = false;
|
|
Text = "Enter IP";
|
|
TopMost = true;
|
|
ResumeLayout(false);
|
|
PerformLayout();
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Button btnValidate;
|
|
private TextBox txtIPAddress;
|
|
private Label lblEnterIP;
|
|
}
|
|
} |