BindingList 与 int 数组更新列表框?
我有一个如下所示的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要处理
Format
事件:You need to handle the
Format
event:在 ItemTemplate 中使用 IValueConverter 怎么样?
How about using IValueConverter in the ItemTemplate?