此代码的文本框而不是消息框

发布于 2024-12-13 16:05:39 字数 462 浏览 0 评论 0原文

我想知道如何添加一个文本框,通过每个地址/行的新行显示 MAC 地址。

所以它看起来像这样:

1: 00:DC:FF:AE:BC:40

2: 00:0C:F6:DE:BA:30

ManagementClass mc = new ManagementClass("Win32_NetworkAdapterConfiguration");
ManagementObjectCollection moc = mc.GetInstances();
string MACAddress = "";
foreach (ManagementObject mo in moc)
{
  if (mo["MacAddress"] != null)
  {
    MACAddress = mo["MacAddress"].ToString();
    MessageBox.Show(MACAddress);
  }
}

I would like to know how can I add a Textbox that displays the MAC Addresses by a new line for each address/line.

So it would look something like this:

1: 00:DC:FF:AE:BC:40

2: 00:0C:F6:DE:BA:30

ManagementClass mc = new ManagementClass("Win32_NetworkAdapterConfiguration");
ManagementObjectCollection moc = mc.GetInstances();
string MACAddress = "";
foreach (ManagementObject mo in moc)
{
  if (mo["MacAddress"] != null)
  {
    MACAddress = mo["MacAddress"].ToString();
    MessageBox.Show(MACAddress);
  }
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

人│生佛魔见 2024-12-20 16:05:39

使用换行符 (\n) 的组合并将文本框设置为多行模式。有关详细信息,请参阅多行文本框多个换行符

Use a combination of newline characters (\n) and setting the textbox to multiline mode. See Multiline TextBox multiple newline for more info.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文