c# WPF获取列表视图的多选行值
本文关键字:视图 WPF 获取 列表 | 更新日期: 2023-09-27 18:07:22
我使用这段代码,但它返回System.Data.DataRowView而不是多选行的列值
foreach (var item in myListView.SelectedItems)
{
//do something with the values, maybe add to a list?
}
foreach (var item in myListView.SelectedItems)
{
DataRowView dr = (DataRowView)item ;
var sValue = dr.Row["columnName"] as string;
}