mirror of
https://github.com/ClemensFischer/XAML-Map-Control.git
synced 2026-04-06 23:15:14 +00:00
Improve touch input handling
This commit is contained in:
parent
7448daa531
commit
47a96b22cc
4 changed files with 17 additions and 47 deletions
|
|
@ -43,7 +43,12 @@ namespace MapControl
|
|||
}
|
||||
}
|
||||
|
||||
public Image Image { get; } = new Image { Opacity = 0d, Stretch = Stretch.Fill };
|
||||
public Image Image { get; } = new Image
|
||||
{
|
||||
Opacity = 0d,
|
||||
Stretch = Stretch.Fill,
|
||||
IsHitTestVisible = false // avoid touch capture issues
|
||||
};
|
||||
|
||||
public bool Pending { get; set; } = true;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue