我正在尝试保存ListView
选定的项目,但不知道为什么会出现此错误:
“不能将类型 'int' 隐式转换为 'System.Windows.Forms.ListView.SelectedListViewItemCollection'”
我在保存按钮上尝试了这段代码:
Settings.Default["SelectedDevice"] = sourceList.SelectedItems; //Works fine
在 Form_Load 我试过这个:
sourceList.SelectedItems = (int)Settings.Default["SelectedDevice"]; //error