如何在.MAUI中通过Xaml在菜单栏中添加图标或图像:
下面是我在Appshell中尝试的:
<Shell
x:Class="MauiApp5.AppShell"
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:MauiApp5"
Shell.FlyoutBehavior="Flyout"
IconImageSource="dotnet_bot.png"
FlyoutIcon="dotnet_bot.png"
/>
在MainPage.xaml中:
<MenuBar>
<MenuItem Text="File">
<MenuItem Text="Open" Icon="dotnet_bot.png" />
</MenuBar>
如果我的问题不够清楚,你可以要求澄清,我会编辑它。先谢谢你。
1条答案
按热度按时间xmq68pz91#
您可以使用
Shell.TitleView
设置导航栏中的图标。例如,下面的XAML(Appshell.xaml)显示了一个图标:输出:
有关详细信息,请参阅导航栏中的显示视图。