namespace robospot_camera_finder { partial class Manual_IP_Form { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// 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; } }