■ INotifyPropertyChanged 인터페이스를 사용해 시계 뷰 모델을 바인딩하는 방법을 보여준다.
▶ ClockViewModel.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 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 |
using System.ComponentModel; namespace TestProject; /// <summary> /// 시계 뷰 모델 /// </summary> public class ClockViewModel : INotifyPropertyChanged { //////////////////////////////////////////////////////////////////////////////////////////////////// Event ////////////////////////////////////////////////////////////////////////////////////////// Public #region 속성 변경시 - PropertyChanged /// <summary> /// 속성 변경시 /// </summary> public event PropertyChangedEventHandler PropertyChanged; #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Field ////////////////////////////////////////////////////////////////////////////////////////// Private #region Field /// <summary> /// 날짜/시간 /// </summary> private DateTime dateTime; #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Property ////////////////////////////////////////////////////////////////////////////////////////// Public #region 날짜/시간 - DateTime /// <summary> /// 날짜/시간 /// </summary> public DateTime DateTime { get { return this.dateTime; } set { if(this.dateTime != value) { this.dateTime = value; PropertyChanged?.Invoke(this, new PropertyChangedEventArgs("DateTime")); } } } #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Constructor ////////////////////////////////////////////////////////////////////////////////////////// Public #region 생성자 - ClockViewModel() /// <summary> /// 생성자 /// </summary> public ClockViewModel() { this.dateTime = DateTime.Now; Device.StartTimer ( TimeSpan.FromSeconds(1), () => { DateTime = DateTime.Now; return true; } ); } #endregion } |
▶ MainPage.xaml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
<?xml version="1.0" encoding="utf-8" ?> <ContentPage x:Class="TestProject.MainPage" xmlns="http://schemas.microsoft.com/dotnet/2021/maui" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" xmlns:local="clr-namespace:TestProject"> <ContentPage.BindingContext> <local:ClockViewModel /> </ContentPage.BindingContext> <Label HorizontalOptions="Center" VerticalOptions="Center" FontSize="Large" Text="{Binding DateTime, StringFormat='{0:T}'}" /> </ContentPage> |