ユーザーがリストボックスアイテムをダブルクリックしたときにICommandを起動しようとしています。また、MVVMパターンを使用してこれを実行しようとしています。
このXAMLでは、キーを押すと「p」が完全に機能します。リストボックスをダブルクリックしても、コマンドが起動しません。ダブルクリックで「PlayVideoCommand」が呼び出されないことを確認するためのブレークポイントを設定しました。私は何かが足りないのですか、それともセッター(私はよく知らない)を使用する必要がありますか?
<ListBox Name="SmallVideoPreviews" Grid.Column="1" MaxHeight="965"
ItemsSource="{Binding BrowseVideos}"
ItemTemplate="{StaticResource BrowseTemplate}">
<ListBox.InputBindings>
<KeyBinding Key="p"
Command="{Binding PlayVideoCommand}"
CommandParameter="{Binding ElementName=SmallVideoPreviews, Path=SelectedItem}"/>
<MouseBinding Gesture="LeftDoubleClick"
Command="{Binding PlayVideoCommand}"
CommandParameter="{Binding ElementName=SmallVideoPreviews, Path=SelectedItem}"/>
</ListBox.InputBindings>
</ListBox>
ダブルクリックと「p」の両方で同じコマンドを実行する必要があります。マウスを使用すると、listboxitemが選択されていることがわかります。MouseBinding Commandプロパティは依存関係プロパティではないという予感がありますが、これを確認する方法がわかりません。