我正在从用户那里获取字符串,我需要使用 listview 将此字符串打印到屏幕上。但我的代码不起作用。我怎么了
string tagToSearch = null;
tagToSearch = textBoxSearch.Text;
ListViewItem lvItem = new ListViewItem(tagToSearch);
listViewSearch.Items.Insert(0, lvItem);
listViewSearch.Refresh();