エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
Windows 8 GridView multi selected items
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
Windows 8 GridView multi selected items
I am developing an application for Windows 8, I would like to select multiple items in a GridView... I am developing an application for Windows 8, I would like to select multiple items in a GridView (by c# code), I tried this: 1st for (int i = 0; i <= 2; i++) { this.ItemGridView.SelectedIndex = i; } //in this way is only selects the third element 2nd this.ItemGridView.SelectedItem = listPeople; //in this way does not select anything 3rd foreach (Persona persona in listaPersone) { this.ItemGridVie