.net 如何删除MAUI中的Actionbar

vlju58qv  于 2023-05-23  发布在  .NET
关注(0)|答案(2)|浏览(118)

查看我的XAML代码

<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
         xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
         BackgroundColor="White"
         Title=""
         x:Class="Chuxi.MainPage">

<ScrollView>
    <VerticalStackLayout
        Spacing="25"
        Padding="30,0"
        VerticalOptions="Center">


    </VerticalStackLayout>
</ScrollView>

我已经尝试了C#代码删除但不工作

public MainPage()
 {
    NavigationPage.SetHasNavigationBar(this, false);
    InitializeComponent();
 }

如何删除标题栏并使其全屏查看

92vpleto

92vpleto1#

这可能会帮助你。它为我工作

<?xml version="1.0" encoding="utf-8" ?>
<ContentPage NavigationPage.HasNavigationBar="false" 
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
         xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
         BackgroundColor="White"
         Title=""
         x:Class="Chuxi.MainPage">

<ScrollView>
    <VerticalStackLayout
        Spacing="25"
        Padding="30,0"
        VerticalOptions="Center">


    </VerticalStackLayout>
</ScrollView>

</ContentPage>

任何问题都可以问我评论。谢谢你

kr98yfug

kr98yfug2#

我能够用下面的代码以编程方式隐藏操作栏

AppShell.SetNavBarIsVisible(this, false);

相关问题