我有一个BindingList,如下所示:
private BindingList<int[]> sortedNumbers = new BindingList<int[]>();
每个条目都是一个int [6],现在我想将它绑定到一个列表框,这样每次添加一组数字时它都会更新它。
listBox1.DataSource = sortedNumbers;
结果是每个条目的以下文字:
Matriz Int32[].
如何格式化输出或更改输出以便在生成时输出每个条目集的编号?
答案 0 :(得分:1)
您需要处理Format
事件:
listBox1.Format += (o,e) =>
{
var array = ((int[])e.ListItem).Select(i=>i.ToString()).ToArray();
e.Value = string.Join(",", array);
};
答案 1 :(得分:0)
如何在ItemTemplate中使用IValueConverter?
<ListBox x:Name="List1" >
<ListBox.ItemTemplate>
<DataTemplate>
<TextBlock Text="{Binding Converter={StaticResource NumberConverter}}" />
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
public class NumberConverter : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
if (value is int[])
{
int[] intValues = (int[])value;
return String.Join(",", intValues);
}
else return Binding.DoNothing;
}
public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
return Convert(value, targetType, parameter, culture);
}
}