This commit is contained in:
Vincent BOUQUET
2024-02-17 21:51:46 +01:00
committed by Vincent BOUQUET
commit d49235969d
17 changed files with 2233 additions and 0 deletions

90
Manual_IP_Form.Designer.cs generated Normal file
View File

@@ -0,0 +1,90 @@
namespace robospot_camera_finder
{
partial class Manual_IP_Form
{
/// <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;
}
}