我正在尝试将一组可为空值 ( Items=new ObservableCollection<double?>{}
) 绑定到数据网格。下面给了我错误
值不能为空。参数名称:key
<DataGrid Name="pointList" ItemsSource="{Binding Path=Value.Items,Converter={l:SelectableListArrayToListConverter}}" AutoGenerateColumns="False" >
<DataGrid.Columns>
<DataGridTextColumn Header="Value" Binding="{Binding}"/>
</DataGrid.Columns>
</DataGrid>
当我尝试使用转换器时,我收到以下错误双向绑定需要路径或 XPath。
<DataGrid Name="pointList" ItemsSource="{Binding Path=Value.Items,Converter={l:SelectableListArrayToListConverter}}" AutoGenerateColumns="False" >
<DataGrid.Columns>
<DataGridTextColumn Header="Value" Binding="{Binding}"/>
</DataGrid.Columns>
</DataGrid>
public class SelectableListArrayToListConverter : MarkupExtension, IValueConverter
{
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
{
if (value is IEnumerable)
{
List<string> list = new List<string>();
foreach(var item in value as IEnumerable )
{
if (item == null)
list.Add("NON");
else
list.Add(item.ToString());
}
//Two-way binding requires Path or XPath
return list;
}
return null;
}
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
{
throw new NotImplementedException();
}
public override object ProvideValue(IServiceProvider serviceProvider)
{
return this;
}
}
我相信上述错误是因为双向绑定不适用于 List list = new List();
我相信当 itemssource 在设置 Itemssource 之后但在设置 DataGridTextColumn Binding 之前构建行时,我会收到错误消息。
到目前为止,我已广泛尝试找到解决此问题的方法,但运气不佳。
如果这篇文章有任何问题,请告诉我,我会纠正它。
谢谢。