0
UWPが親グリッドにTapped
イベントを設定すると、子チェックボックスが自動的にダブルタップにチェックされます。uwpチェックボックスダブルタップ
Tapped
の代わりにTapped
という子チェックボックスをチェックしたいと思います。
ありがとうございます。
<Grid Background="Black" >
<interactivity:Interaction.Behaviors>
<core:EventTriggerBehavior EventName="Tapped">
<core:InvokeCommandAction Command="{Binding DataContext.SelectDefectImageCommand, ElementName=PART_ItemList}" CommandParameter="{Binding}" />
</core:EventTriggerBehavior>
</interactivity:Interaction.Behaviors>
<CheckBox IsChecked="{Binding IsSelected, Mode=TwoWay}" Style="{StaticResource WhiteCheckBoxStyle}" VerticalAlignment="Center" Margin="5,0,0,0" />
</Grid>
ダブルタップとはどういう意味ですか?タップされたイベントが2回トリガーされていることを意味しますか? – mindOfAi
ダブルタップはダブルクリック – ceastgun