我想将ListView的SelectedIndex属性设置为在应用终止之前选择的值。
因此,在应用程序暂停之前,我保存了SelectedIndex值。
现在在OnLaunched()方法中,当我将SelectedIndex属性设置为该值时,我得到ArgumentException,它表示值不在预期范围内。我搜索了它,发现ListView的SelectedIndex属性在被填充之前被更改了(因此当时SelectedIndex的唯一有效值是-1)。
好的,好的。但是如何在填充ListView后设置SelectedIndex属性?
最简单的方法是什么?我应该深入了解ItemsChanged事件吗?
更新:以下是代码:
gamestate
答案 0 :(得分:0)
使用Page.Load
或Page.LoadComplete
事件设置您选择的项目。
答案 1 :(得分:0)
通过使用此页面的Loaded事件解决了这个问题,如下所示:
public sealed partial class MyPage : Page
{
public List<String> myList { get; set; }
int selectedItem = -1;
public MyPage()
{
this.InitializeComponent();
myList = new List<string>()
{
"hello",
"this",
"is",
"me"
};
Application.Current.Suspending += App_Suspending;
this.Loaded += MyPage_Loaded;
}
private void MyPage_Loaded(object sender, RoutedEventArgs e)
{
MyListView.SelectedIndex = selectedItem;
}
...
public void SetUpUI(int prevSelectedIndex)
{
selectedItem = prevSelectedIndex;
}
}