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
그리드형
'C# > Xamarin Maui' 카테고리의 다른 글
[.NET MAUI] 테마 고정하기 - Dark, Light (0) | 2023.03.21 |
---|---|
[.NET MAUI] App Icon 변경 시 유의 점 (0) | 2023.03.20 |
[.NET MAUI] Azure Cosmos DB 에 접속하여 데이터 가져오는 방법 (0) | 2023.03.19 |
[.NET MAUI] CollectionView 데이터 2열로 나타내기 (0) | 2023.03.18 |
[.NET MAUI] CommunityToolkit.Maui - DrawingView (0) | 2023.03.08 |