查看我的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();
}
如何删除标题栏并使其全屏查看
2条答案
按热度按时间92vpleto1#
这可能会帮助你。它为我工作
任何问题都可以问我评论。谢谢你
kr98yfug2#
我能够用下面的代码以编程方式隐藏操作栏