BindingList 与 int 数组更新列表框?

发布于 2024-11-02 03:47:43 字数 364 浏览 1 评论 0原文

我有一个如下所示的 BindingList:

private BindingList<int[]> sortedNumbers = new BindingList<int[]>();

每个条目都是一个 int[6],现在我想将其绑定到一个列表框,以便每次向其中添加一组数字时它都会更新它。

listBox1.DataSource = sortedNumbers;

结果是每个条目的以下文本:

Matriz Int32[].

如何格式化输出或更改它,以便在生成每个条目集时打印它们的编号?

I have a BindingList like the follow:

private BindingList<int[]> sortedNumbers = new BindingList<int[]>();

Each entry is a int[6], now I wanted to bind it to a listbox so it updates it everytime a set of numbers is added to it.

listBox1.DataSource = sortedNumbers;

The result is the below text for each entry:

Matriz Int32[].

How do I format the output or change it so it prints the numbers of each entry set as they are generated ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

零崎曲识 2024-11-09 03:47:43

您需要处理 Format 事件:

listBox1.Format += (o,e) => 
 { 
    var array = ((int[])e.ListItem).Select(i=>i.ToString()).ToArray();
    e.Value = string.Join(",", array);
 };

You need to handle the Format event:

listBox1.Format += (o,e) => 
 { 
    var array = ((int[])e.ListItem).Select(i=>i.ToString()).ToArray();
    e.Value = string.Join(",", array);
 };
少女情怀诗 2024-11-09 03:47:43

在 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);
    }
}

How about using IValueConverter in the ItemTemplate?

<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);
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文