选择长列表选择器中的最后一项

时间:2014-05-14 09:52:43

标签: windows-phone-8

![![>我想在Long列表选择器项目的末尾添加此Tile,以便我可以导航到新的Add>页面(我应该将表ID作为参数传递,以便我可以插入我的订单在选定的表中)。 >仅当我的Tile是长列表选择器项时,所选更改才起作用。 ??

  

由于] 1

1 个答案:

答案 0 :(得分:1)

初始化长列表选择器的ItemsSource属性时,可以将最后一项设置为所选项:

    LongListSelector.ItemsSource = myList;
    LongListSelector.SelectedItem = myList.Last();
    LongListSelector.ScrollTo(myList.Last()); //if you want to scroll to that element as well

希望这个例子能帮到你。