<Grid>
<ComboBox x:Name="ColorRepresentationComboBox" Margin="0,12,0,0" Width="120" >
<ComboBoxItem x:Name="HEXComboBoxItem" Content="HEX" PointerPressed="HEXComboBoxItem_PointerPressed"/>
<ComboBoxItem x:Name="HSLComboBoxItem" Content="HSL" PointerPressed="HSLComboBoxItem_PointerPressed"/>
</ComboBox>
</Grid>
private void HEXComboBoxItem_PointerPressed(object sender, PointerRoutedEventArgs e)
{
}
private void HSLComboBoxItem_PointerPressed(object sender, PointerRoutedEventArgs e)
{
}
PointerEntered Event work properly,but pointerPressed event is not fired.I dont Know why?