При получении имен и IP-адресов адаптеров я предлагаю что-то вроде следующего:
Храня их в словаре, вы можете получить к ним доступ по имени их адаптера.
Пожалуйста, смотрите мои комментарии дляподробное объяснение процесса, который я использовал.
Надеюсь, это поможет, я постарался быть внимательным с комментариями.
Примечания к способу хранения имен и IP-адресов адаптеров
//create a dictionary storing the name and address of each adapter
public Dictionary<string,IPAddress> ip4ByAdapter = new Dictionary<string,IPAddress>();
public Dictionary<string,IPAddress> ip6ByAdapter = new Dictionary<string,IPAddress>();
void GetIpsAndAdapters()
{
//Get the network interfaces
NetworkInterface[] netInterfaces = NetworkInterface.GetAllNetworkInterfaces();
//don't forget to clear the combo box
comboBox1.Items.Clear();
foreach(NetworkInterface adapter in netInterfaces)
{
//get the IP Properties for short hand
IPInterfaceProperties ipProps = adapter.GetIPProperties();
//set a default value of 0.0.0.0
IPAddress ipv4 = new IPAddress(0);
//if it has one, store the ipv4 of the current adapter
if(ipProps.UnicastAddresses.Count > 1)
ipv4 = ipProps.UnicastAddresses[1].Address;
//set a default value of 0.0.0.0
IPAddress ipv6 = new IPAddress(0);
//if it has one, store the ipv6 of the current adapter
if (ipProps.UnicastAddresses.Count > 0)
ipv6 = ipProps.UnicastAddresses[0].Address;
//store the matching pair of adapter and ip address in dictionary
//check for duplicates (loopbacks perhaps) and ignore them
if(!ip4ByAdapter.ContainsKey(adapter.Name))
ip4ByAdapter.Add(adapter.Name, ipv4);
//same for ipv6
if(!ip6ByAdapter.ContainsKey(adapter.Name))
ip6ByAdapter.Add(adapter.Name, ipv6);
comboBox1.Items.Add(adapter.Name);
}
}
Примечания для события comboBox1.SelectedIndexChanged
private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
{
//if we haven't selected an item yet, just do nothing
if(comboBox1.SelectedIndex == -1 || comboBox1.SelectedItem is null)
return;
//reset the textboxes, just to an empty string
tblocalip.Text = "";
tblocalip6.Text = "";
//if the Dictionary contains a matching adapter to the one selected in the combo box
if(ip4ByAdapter.ContainsKey(comboBox1.SelectedItem.ToString()))
{
//then show it
tblocalip.Text = ip4ByAdapter[comboBox1.SelectedItem.ToString()].ToString();
}
//same for ipv6
if(ip6ByAdapter.ContainsKey(comboBox1.SelectedItem.ToString()))
{
tblocalip6.Text = ip6ByAdapter[comboBox1.SelectedItem.ToString()].ToString();
}
}