Xamarin 表单 UWP AppViewBackButtonVisibility.Collapsed 似乎不起作用
Xamarin forms UWP AppViewBackButtonVisibility.Collapsed doesn't seem to work
我正在使用 Xamarin Forms 3.6。
我想隐藏 UWP 应用程序中的后退按钮。
在 UWP App.xaml.cs OnLaunced 我添加了。
SystemNavigationManager
.GetForCurrentView()
.AppViewBackButtonVisibility = AppViewBackButtonVisibility.Collapsed;
我还将它添加到每个 ContentPage(使用依赖注入),以便在每个页面的构造函数中运行上述代码。
每个内容页面,我还添加了:
NavigationPage.SetHasNavigationBar(this, false);
我似乎总是在 UWP 的标题栏中找到后退按钮。
Xamarin Forms UWP 中如何隐藏和保持隐藏后退按钮的任何想法?
根据您的要求,请在要隐藏后退按钮的页面中调用 SetHasBackButton
静态方法,如下所示。
public ItemDetailPage(ItemDetailViewModel viewModel)
{
InitializeComponent();
NavigationPage.SetHasBackButton(this, false);
BindingContext = this.viewModel = viewModel;
}
我正在使用 Xamarin Forms 3.6。 我想隐藏 UWP 应用程序中的后退按钮。 在 UWP App.xaml.cs OnLaunced 我添加了。
SystemNavigationManager
.GetForCurrentView()
.AppViewBackButtonVisibility = AppViewBackButtonVisibility.Collapsed;
我还将它添加到每个 ContentPage(使用依赖注入),以便在每个页面的构造函数中运行上述代码。
每个内容页面,我还添加了:
NavigationPage.SetHasNavigationBar(this, false);
我似乎总是在 UWP 的标题栏中找到后退按钮。 Xamarin Forms UWP 中如何隐藏和保持隐藏后退按钮的任何想法?
根据您的要求,请在要隐藏后退按钮的页面中调用 SetHasBackButton
静态方法,如下所示。
public ItemDetailPage(ItemDetailViewModel viewModel)
{
InitializeComponent();
NavigationPage.SetHasBackButton(this, false);
BindingContext = this.viewModel = viewModel;
}