Xamarin Forms:UWP 应用程序点击未按预期工作

Xamarin Forms: UWP app clicking is not working as expected

我的 UWP 版本的 xamarin 表单项目有一个奇怪的问题。点击没有按预期工作。有时点击项目(按钮,图片)时没有反应,有时点击项目时顶部项目正在打开。

请观看此 video 以获得清晰的思路。在此视频中,我多次单击下一步按钮(测验页面),但没有任何反应。在游戏页面上,单击项目时会打开顶部项目页面。在 android 和 ios 中,一切正常。

版本详情:

Xamarin Forms: 4.7.0.968
UWP target version: Windows 10, version 1903(10.0;Build 18362)
UWP Min version: Windows 10, Fall Creators Update(10.0; Build 16299)

请帮我找出这背后的问题。提前致谢。

更新

按钮代码

<Button 
    Text="NEXT"
    TextColor="White"
    HorizontalOptions="EndAndExpand"
    BackgroundColor="#f5c74c" 
    Clicked="NextButtonClicked"
    WidthRequest="150"
    HeightRequest="40"
    FontSize="18"
    BorderRadius="20"/>
    
public void NextButtonClicked(object sender, EventArgs args)
{
    //action
}

我已经通过将 xamarin 表单版本更新到 4.8.0.1269 解决了这个问题。