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.
我正在为指定的字符串搜索列表视图项。如果找到字符串,请选择 listviewitem。
ListViewItem index = listview1.FindItemWithText(txtSearch.Text);
很简单 :) 但我很难弄清楚,我想知道索引变量是否已填充,我想检查 Length 属性但我找不到,所以再一次如何知道索引变量是否为空?
谢谢
FindItemWithTextnull如果列表为空或没有匹配项,则方法返回。因此,只需检查 null 的结果:
FindItemWithText
null
ListViewItem item = listview1.FindItemWithText(txtSearch.Text); if (item != null) { // you have match }