■ Shell 클래스의 GoToAsync 메소드 사용시 객체 기반 쿼리 매개 변수를 전달하는 방법을 보여준다. (IQueryAttributable 인터페이스 사용)
▶ MonkeyModel.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 |
namespace TestProject.Models { /// <summary> /// 원숭이 모델 /// </summary> public class MonkeyModel { //////////////////////////////////////////////////////////////////////////////////////////////////// Property ////////////////////////////////////////////////////////////////////////////////////////// Public #region 명칭 - Name /// <summary> /// 명칭 /// </summary> public string Name { get; set; } #endregion #region 시간 - Time /// <summary> /// 시간 /// </summary> public DateTime Time { get; set; } #endregion } } |
▶ 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 44 45 46 47 48 49 50 51 52 53 54 55 56 |
using TestProject.Models; namespace TestProject; /// <summary> /// 원숭이 페이지 /// </summary> public partial class MonkeyPage : ContentPage { //////////////////////////////////////////////////////////////////////////////////////////////////// Constructor ////////////////////////////////////////////////////////////////////////////////////////// Public #region 생성자 - MonkeyPage() /// <summary> /// 생성자 /// </summary> public MonkeyPage() { InitializeComponent(); this.detailButton.Clicked += detailButton_Clicked; } #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Constructor ////////////////////////////////////////////////////////////////////////////////////////// Public #region 원숭이 상세 버튼 클릭시 처리하기 - detailButton_Clicked(sender, e) /// <summary> /// 원숭이 상세 버튼 클릭시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private async void detailButton_Clicked(object sender, EventArgs e) { MonkeyModel monkey = new MonkeyModel { Name = "홍길동", Time = DateTime.Now }; Dictionary<string, object> dictionary = new Dictionary<string, object> { { "monkey", monkey } }; await Shell.Current.GoToAsync($"//동물/원숭이/원숭이상세", dictionary); } #endregion } |
▶ MonkeyDetailPage.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 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 |
using TestProject.Models; namespace TestProject; /// <summary> /// 원숭이 페이지 /// </summary> public partial class MonkeyDetailPage : ContentPage, IQueryAttributable { //////////////////////////////////////////////////////////////////////////////////////////////////// Constructor ////////////////////////////////////////////////////////////////////////////////////////// Public #region 생성자 - MonkeyDetailPage() /// <summary> /// 생성자 /// </summary> public MonkeyDetailPage() { InitializeComponent(); } #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Method ////////////////////////////////////////////////////////////////////////////////////////// Public #region 쿼리 속성 적용하기 - ApplyQueryAttributes(queryParameterDictionary) /// <summary> /// 쿼리 속성 적용하기 /// </summary> /// <param name="queryParameterDictionary">쿼리 매개 변수 딕셔너리</param> public void ApplyQueryAttributes(IDictionary<string, object> queryParameterDictionary) { if(queryParameterDictionary.ContainsKey("monkey")) { MonkeyModel monkey = queryParameterDictionary["monkey"] as MonkeyModel; if(monkey != null) { this.label.Text = $"MONKEY DETAIL PAGE : {monkey.Name}, {monkey.Time:HH:mm:ss}"; } else { this.label.Text = "MONKEY DETAIL PAGE"; } } else { this.label.Text = "MONKEY DETAIL PAGE"; } } #endregion } |