Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的 ComboBox 中,在用户单击它并选择任何项目之前,该字段是空白的。因此,如果没有用户单击 ComboBox,它仍然是空的。我们如何检查 ComboBox 是否为空?
此代码给我一个错误,因为还没有选择项目:
if( ComboBox.SelectedItem.ToString().Equals("") ) { //do something }
if( ComboBox.SelectedItem == null ) { // do something }
ComboBox.SelectedItems.Count
这应该有效:P 它计算选定的项目。如果该数字为 0,则不选择任何项目。
if( ComboBox.SelectedIndex == -1 )