Windows 8 用のアプリケーションを開発しています。GridView で複数の項目を (C# コードで) 選択したいのですが、これを試しました:
1位
for (int i = 0; i <= 2; i++)
{
this.ItemGridView.SelectedIndex = i;
}
//in this way is only selects the third element
2位
this.ItemGridView.SelectedItem = listPeople;
//in this way does not select anything
3位
foreach (Persona persona in listaPersone)
{
this.ItemGridView.SelectedItem = person;
}
//in this way is selected only the last