mirror of
https://github.com/ClemensFischer/XAML-Map-Control.git
synced 2025-12-06 07:12:04 +01:00
Update MapItem.WPF.cs
This commit is contained in:
parent
fde1919356
commit
2eba063f37
|
|
@ -21,14 +21,18 @@ namespace MapControl
|
||||||
protected override void OnMouseLeftButtonDown(MouseButtonEventArgs e)
|
protected override void OnMouseLeftButtonDown(MouseButtonEventArgs e)
|
||||||
{
|
{
|
||||||
// Prevent default handling in ListBoxItem by not calling base.OnMouseLeftButtonDown.
|
// Prevent default handling in ListBoxItem by not calling base.OnMouseLeftButtonDown.
|
||||||
|
if (!e.Handled)
|
||||||
(ItemsControl.ItemsControlFromItemContainer(this) as MapItemsControl)?
|
{
|
||||||
.OnItemClicked(this, Keyboard.Modifiers.HasFlag(ModifierKeys.Control));
|
e.Handled = true;
|
||||||
|
(ItemsControl.ItemsControlFromItemContainer(this) as MapItemsControl)?
|
||||||
|
.OnItemClicked(this, Keyboard.Modifiers.HasFlag(ModifierKeys.Control));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
protected override void OnMouseRightButtonDown(MouseButtonEventArgs e)
|
protected override void OnMouseRightButtonDown(MouseButtonEventArgs e)
|
||||||
{
|
{
|
||||||
// Prevent default handling in ListBoxItem by not calling base.OnMouseRightButtonDown.
|
// Prevent default handling in ListBoxItem by not calling base.OnMouseRightButtonDown.
|
||||||
|
e.Handled = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue