TapGestureRecognizer是否可以仅在 UWP 上添加一个?像这样的东西
<OnPlatform x:TypeArguments="GestureRecognizers">
<OnPlatform.Platforms>
<On Platform="UWP">
<TapGestureRecognizer Command="{Binding MyUWPCommand}"/>
</On>
</OnPlatform.Platforms>
</OnPlatform>