728x90
반응형
728x170
▶ AppShell.xaml
<?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>
728x90
▶ MonkeyPage.xaml
<?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>
300x250
▶ MonkeyPage.xaml.cs
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
}
728x90
반응형
그리드형(광고전용)
댓글을 달아 주세요