1

我有一个遵循Databound App模板的 Windows Phone 应用程序。它基本上是一个被事物LongListSelector操纵的控件。ObservableCollection()

添加东西很容易:我只是这样做:

App.ViewModel.Items.Add(new ItemViewModel() { ThingOne = "Blah", ThingTwo = "BlahBlahBlah"});

但是我的项目被添加到 LongListSelector 的底部。我想将它添加到顶部

我该怎么做呢?我可以在Items.Add()语句中指定此行为吗?或者它与什么有关MainViewModel

谢谢!

4

2 回答 2

2
App.ViewModel.Items.Insert(0, new ItemViewModel() { ThingOne = "Blah", ThingTwo = "BlahBlahBlah"});
于 2013-05-11T20:13:56.607 回答
1

我可以在 Items.Add() 语句中指定此行为吗?

用户Insert改为:Collection.Insert 方法

于 2013-05-11T20:19:52.273 回答