今日、Metro の Bing Map で新しい問題に遭遇しました。イベントを保持するとマウスでは機能しませんが、タッチ モードに変更すると正常に機能します。お願い助けて!!!
<Bing:Map x:Name="bingMap" Credentials="{StaticResource BingCredentials}" HorizontalAlignment="Left"
Width="700" Height="600" IsHoldingEnabled="True" Holding="Bing_Holding" />
private async void Bing_Holding(object sender, HoldingRoutedEventArgs e){
try
{
await new MessageDialog("I'm superman!").ShowAsync();
}
catch{}
}