.NET MAUI: настройка заголовка Shell и привязка к текущему заголовку страницы
Я хочу заменить заголовок Shell по умолчанию своим собственным макетом, например:
<?xml version="1.0" encoding="UTF-8" ?>
<Shell
x:Class="MyNamespace.App.AppShell"
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:MyNamespace.App"
xmlns:pages="clr-namespace:MyNamespace.App.Pages"
BindingContext="{x:Static local:MainView.Instance}"
Shell.FlyoutBehavior="{Binding ShellFlyoutType}"
x:Name="shellMain">
<Shell.TitleView>
<Grid ColumnDefinitions="*,200">
<Label BindingContext="{x:Reference shellMain}" Text="{Binding Path=CurrentPage.Title, Mode=OneWay}" FontSize="Large" TextColor="White" />
<ActivityIndicator IsRunning="{Binding IsBusy}" Color="Orange" Grid.Column="1" HorizontalOptions="End" />
</Grid>
</Shell.TitleView>
<ShellContent
Title=" Login"
ContentTemplate="{DataTemplate local:MainPage}"
Route="login" FlyoutItemIsVisible="False" />
<ShellContent Title="Dashboard"
ContentTemplate="{DataTemplate pages:DashboardPage}"
Route="dashboard" />
</Shell>
Мне не удается привязать текущий заголовок страницы. Моя оболочка AppShell.xaml объявлена как<Shell ... x:Name="shellMain">
1 ответ
В качестве альтернативы вы можете установить заголовок в методе OnNavigated:
В AppShell.xaml определите имя для метки.
<Shell.TitleView>
<Grid ColumnDefinitions="*,200">
<Label BindingContext="{x:Reference shellMain}" x:Name="mylabel" FontSize="Large" TextColor="White" />
<ActivityIndicator IsRunning="{Binding IsBusy}" Color="Orange" Grid.Column="1" HorizontalOptions="End" />
</Grid>
</Shell.TitleView>
В AppShell.xaml.cs переопределите метод OnNavigated, получите текущий элемент
protected override void OnNavigated(ShellNavigatedEventArgs args)
{
base.OnNavigated(args);
var shellItem = Shell.Current?.CurrentItem;
string title = shellItem?.Title;
int iterationCount = 0;
while (shellItem != null
&& title == null)
{
title = shellItem.Title;
shellItem = shellItem.CurrentItem;
if (iterationCount > 10)
break; // max nesting reached
iterationCount++;
}
myLabel.Text = title;
}
Надеюсь, это сработает для вас.