WPF/ListBox
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
&tag(WPF,ListBox);
*目次 [#tf14a3a6]
#contents
*参考情報 [#df059ced]
*Tips [#qe8a9a52]
**ユーザーの選択をキャンセルする [#s26bcf9f]
-[[mvvm - WPF: Cancel a user selection in a databound Lis...
**ListBoxのなかにCheckBoxのリストを並べる [#u3d6c78a]
-[[wpf - What's the simplest way to bind a list of checkb...
**複数選択 [#k46f136c]
XAMLでSelectionMode="Multiple"を指定する。
#pre{{
<ListBox Grid.Row="1" Name="listBox" ItemsSource...
</ListBox>
}}
選択されたアイテムの取得方法。Bindingじゃなく、コードビハ...
#pre{{
var items = listBox.SelectedItems;
foreach (object item in items)
{
Debug.WriteLine(item.ToString());
}
}}
終了行:
&tag(WPF,ListBox);
*目次 [#tf14a3a6]
#contents
*参考情報 [#df059ced]
*Tips [#qe8a9a52]
**ユーザーの選択をキャンセルする [#s26bcf9f]
-[[mvvm - WPF: Cancel a user selection in a databound Lis...
**ListBoxのなかにCheckBoxのリストを並べる [#u3d6c78a]
-[[wpf - What's the simplest way to bind a list of checkb...
**複数選択 [#k46f136c]
XAMLでSelectionMode="Multiple"を指定する。
#pre{{
<ListBox Grid.Row="1" Name="listBox" ItemsSource...
</ListBox>
}}
選択されたアイテムの取得方法。Bindingじゃなく、コードビハ...
#pre{{
var items = listBox.SelectedItems;
foreach (object item in items)
{
Debug.WriteLine(item.ToString());
}
}}
ページ名: