【发布时间】:2012-08-05 13:18:05
【问题描述】:
如何在旧项目之前将新项目插入 WPF 列表框
喜欢old text 然后我添加
new text
old text
改为
old text
new text
【问题讨论】:
-
Listbox 是数据绑定的,还是您想以编程方式创建 ListBoxItem?
如何在旧项目之前将新项目插入 WPF 列表框
喜欢old text 然后我添加
new text
old text
改为
old text
new text
【问题讨论】:
ListBox.Items.Insert(0, "Message");
这样的?
【讨论】: