Update MapItem.WPF.cs

This commit is contained in:
ClemensFischer 2025-03-12 15:30:59 +01:00
parent 3c88a81b0d
commit fde1919356

View file

@ -20,8 +20,15 @@ namespace MapControl
protected override void OnMouseLeftButtonDown(MouseButtonEventArgs e)
{
// Prevent default handling in ListBoxItem by not calling base.OnMouseLeftButtonDown.
(ItemsControl.ItemsControlFromItemContainer(this) as MapItemsControl)?
.OnItemClicked(this, Keyboard.Modifiers.HasFlag(ModifierKeys.Control));
}
protected override void OnMouseRightButtonDown(MouseButtonEventArgs e)
{
// Prevent default handling in ListBoxItem by not calling base.OnMouseRightButtonDown.
}
}
}