better naming

This commit is contained in:
2025-05-30 21:17:32 +02:00
parent ebb6a2c2ce
commit c23bb12eaf
5 changed files with 53 additions and 50 deletions

View File

@@ -1,30 +0,0 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace robospot_camera_finder
{
public partial class Manual_IP_Form : Form
{
public string ipAddress { get; set; }
public Manual_IP_Form()
{
InitializeComponent();
}
private void btnValidate_Click(object sender, EventArgs e)
{
this.ipAddress = txtIPAddress.Text;
this.DialogResult = DialogResult.OK;
this.Close();
}
}
}