■ TabbedPage 엘리먼트의 IsSwipePagingEnabled/OffscreenPageLimit 첨부 속성을 사용해 페이지 사이 손가락 제스처 스와이프를 활성화하는 방법을 보여준다. (ANDROID)
▶ MainPage.xaml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
<?xml version="1.0" encoding="utf-8" ?> <TabbedPage x:Class="TestProject.MainPage" xmlns="http://schemas.microsoft.com/dotnet/2021/maui" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" xmlns:android="clr-namespace:Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific;assembly=Microsoft.Maui.Controls" xmlns:local="clr-namespace:TestProject" android:TabbedPage.IsSwipePagingEnabled="True" android:TabbedPage.OffscreenPageLimit="2"> <local:ContactPage /> <local:TodoListPage /> <local:ReminderPage /> </TabbedPage> |
※ 페이지 사이 손가락 제스처 스와이프가 디폴트 True로 설정되어 있어서 TabbedPage.IsSwipePagingEnable 첨부 속성을 False로 설정하고 테스트하면 스와이프가 비활성화되는 것을 확인할 수 있다.