<i:Interaction.Triggers> <i:EventTrigger EventName="MouseDown"> <i:InvokeCommandAction Command="{Binding Source={StaticResource Locator},Path=ReportItemChoose.ChangeCommand1}" CommandParameter="{Binding}" /> </i:EventTrigger> </i:Interaction.Triggers> 触发器只有当点击文字时才能触发,点击当前行触发不了
时间: 2024-04-15 13:27:20 浏览: 75
你提供的代码片段中,触发器只能在点击文字时触发命令,而无法在点击整行时触发。
要实现点击整行时触发命令,你可以将触发器应用到整个 ListBoxItem 上,而不只是 TextBlock。这样,无论点击文字还是点击整行,都会触发命令。
请尝试修改代码如下:
```xml
<ListBox.ItemTemplate>
<DataTemplate>
<ListBoxItem>
<i:Interaction.Triggers>
<i:EventTrigger EventName="MouseDown">
<i:InvokeCommandAction Command="{Binding Source={StaticResource Locator},Path=ReportItemChoose.ChangeCommand1}"
CommandParameter="{Binding}" />
</i:EventTrigger>
</i:Interaction.Triggers>
<TextBlock VerticalAlignment="Center" Text="{Binding CanSetName}" />
</ListBoxItem>
</DataTemplate>
</ListBox.ItemTemplate>
```
通过将 Interaction.Triggers 放在 ListBoxItem 外部,整个 ListBoxItem 将响应点击事件,并触发相应的命令。请尝试这种修改,看看是否能够解决你遇到的问题。
阅读全文