.net 带其他视图链接的图像按钮

oknrviil  于 2022-12-27  发布在  .NET
关注(0)|答案(1)|浏览(76)

我正在使用. 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)
{
    
}

单击时如何重定向到配置文件视图?
谢谢你:)

yvt65v4c

yvt65v4c1#

如果要从一个内容页导航到另一个内容页,可以使用下面的代码:

var nextPage = new NextPage (); 
await Navigation.PushModalAsync (nextPage);

或者

var nextPage = new NextPage (); 
await Navigation.PushAsync (nextPage);

相关问题