C#/Xamarin Maui
[.NET MAUI] Preferences 사용하기 - save property
kjun.kr
2023. 3. 19. 23:54
728x90
728x170
Xamarin 때는 Property 저장시 Application.Current.Properties 을 사용하여 아래처럼 처리 했습니다.
Application.Current.Properties.Add
Application.Current.Properties.TryGetValue
Application.Current.Properties.Remove
하지만 MAUI 에서는 [사용되지 않음] 으로 빨간줄이 갑니다.
MAUI 에서는 Property 저장시 Preferences 를 사용합니다.
사용방법은 간단합니다.
Preferences.Set({Key}, "1");
Preferences.Get({Key}, "default");
Preferences.Remove({Key});
Preferences.ContainsKey({Key})
728x90
그리드형