如何:从 Windows 窗体 DomainUpDown 控件移除项
可以通过调用 Remove 或 DomainUpDown.DomainUpDownItemCollection 类的 RemoveAt 方法从 Windows 窗体 DomainUpDown 控件中删除项。 Remove 方法删除特定项,而 RemoveAt 方法按其位置删除项。
删除项
使用 DomainUpDown.DomainUpDownItemCollection 类的 Remove 方法按名称删除项。
DomainUpDown1.Items.Remove("noodles")
domainUpDown1.Items.Remove("noodles");
domainUpDown1->Items->Remove("noodles");
- 或者 -
使用 RemoveAt 方法按其位置删除项。
' Removes the first item in the list. DomainUpDown1.Items.RemoveAt(0)
// Removes the first item in the list. domainUpDown1.Items.RemoveAt(0);
// Removes the first item in the list. domainUpDown1->Items->RemoveAt(0);