我今天遇到了 ComboBox 的奇怪行为。如果您按下鼠标左键,ComboBox 中的 PointerPressed 事件永远不会触发。仅当您单击鼠标右键时才会触发。谁能告诉我为什么会这样?我想使用鼠标左键触发 PointerPressed 事件。
<Grid Background="{StaticResource ApplicationPageBackgroundThemeBrush}">
<ComboBox x:Name="MyComboBox" Width="200" Height="60" PointerPressed="ComboBox_PointerPressed_1">
<ComboBox.Items>
<TextBlock Text="test1"/>
<TextBlock Text="test2"/>
<TextBlock Text="test3"/>
</ComboBox.Items>
</ComboBox>
</Grid>
private void ComboBox_PointerPressed_1(object sender, PointerRoutedEventArgs e)
{
}