我正在使用. NET Maui,我使用图像按钮来重定向到其他视图。现在我有一个简单的按钮用于配置文件,我希望按钮在单击时重定向到视图(XAML-File)。我该怎么做呢?到目前为止,我所拥有的是:
配置文件模板(/Views/Profile. 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"
Title="Profile"
x:Class="Project.Views.Profile"
>
<VerticalStackLayout>
<Label
Text="Profile"
VerticalOptions="Center"
HorizontalOptions="Center" />
</VerticalStackLayout>
</ContentPage>
这是我的图像按钮:
<ImageButton Source="circle.png" Clicked="OnImageButtonClicked" WidthRequest="40" HeightRequest="40" HorizontalOptions="End"/>
代码隐藏:
void OnImageButtonClicked(object sender, EventArgs e)
{
}
单击时如何重定向到配置文件视图?
谢谢你:)
1条答案
按热度按时间yvt65v4c1#
如果要从一个内容页导航到另一个内容页,可以使用下面的代码:
或者