© 2026 Hedgehog Software, LLC
ContentPage
<ContentPage> <Label Text="{Binding Source={x:Static mySingleTon.Instance}, Path=myproperty}"/> </ContentPage>
public partial class MyViewModel : ObservableObject { [ObservableProperty] public MyObject ObjectA { get => return mySingleton.Instance.myproperty; } }