我的 VB.NET 应用程序中有一个组合框,它使用属性面板中的“项目”属性填充。The "Items" property will say "(Collection)" and when selected show a button with "..." This button expands to a new window where you can populate the items in the combobox. 文本编辑器允许我填充列表,如下所示:
Option 1
Option 2
Option etc...
组合框正确填充,但在调用组合框的 SelectedText 值时:
If ComboBox.SelectedText = "Option 1"
ComboBox.SelectedText 始终为空字符串 (="")
我知道我可以在代码中填充框并通过代码设置文本和值成员,但我想知道为什么 selectedtext 属性在使用属性面板填充时基本上是空白的。