■ Shell 클래스의 GoToAsync 메소드를 사용해 페이지를 이동하는 방법을 보여준다.
▶ AppShell.xaml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 |
<?xml version="1.0" encoding="utf-8" ?> <Shell x:Class="TestProject.AppShell" x:Name="shell" xmlns="http://schemas.microsoft.com/dotnet/2021/maui" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" xmlns:local="clr-namespace:TestProject"> <FlyoutItem Route="동물" FlyoutDisplayOptions="AsMultipleItems"> <Tab Route="국내" Icon="sample1.png" Title="국내"> <ShellContent Route="고양이" Icon="sample2.png" Title="고양이" ContentTemplate="{DataTemplate local:CatPage}" /> <ShellContent Route="개" Icon="sample3.png" Title="개" ContentTemplate="{DataTemplate local:DogPage}" /> </Tab> <ShellContent Route="원숭이" Icon="sample1.png" Title="원숭이" ContentTemplate="{DataTemplate local:MonkeyPage}" /> <ShellContent Route="코끼리" Icon="sample2.png" Title="코끼리" ContentTemplate="{DataTemplate local:ElephantPage}" /> <ShellContent Route="곰" Icon="sample3.png" Title="곰" ContentTemplate="{DataTemplate local:BearPage}" /> </FlyoutItem> <ShellContent Route="정보" Icon="sample1.png" Title="정보" ContentTemplate="{DataTemplate local:AboutPage}" /> </Shell> |
▶ MonkeyPage.xaml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
<?xml version="1.0" encoding="utf-8" ?> <ContentPage x:Class="TestProject.MonkeyPage" xmlns="http://schemas.microsoft.com/dotnet/2021/maui" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" Title="Monkey Page" BackgroundColor="White"> <StackLayout HorizontalOptions="Center" VerticalOptions="Center"> <Label HorizontalOptions="Center" VerticalOptions="Center" Text="MONKEY PAGE" /> <Button x:Name="catButton" Margin="10" WidthRequest="100" HeightRequest="40" Text="고양이" /> </StackLayout> </ContentPage> |
▶ MonkeyPage.xaml.cs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 |
namespace TestProject; /// <summary> /// 원숭이 페이지 /// </summary> public partial class MonkeyPage : ContentPage { //////////////////////////////////////////////////////////////////////////////////////////////////// Constructor ////////////////////////////////////////////////////////////////////////////////////////// Public #region 생성자 - MonkeyPage() /// <summary> /// 생성자 /// </summary> public MonkeyPage() { InitializeComponent(); this.catButton.Clicked += catButton_Clicked; } #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Constructor ////////////////////////////////////////////////////////////////////////////////////////// Public #region 고양이 버튼 클릭시 처리하기 - catButton_Clicked(sender, e) /// <summary> /// 고양이 버튼 클릭시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private async void catButton_Clicked(object sender, EventArgs e) { await Shell.Current.GoToAsync("//동물/국내/고양이"); } #endregion } |