Esempio n. 1
0
 public SettingsMainVM()
 {
     AllowOverstretch        = SettingsSetters.GetAllowOverstretch();
     FadeAnimationEnabled    = SettingsSetters.GetFadeAnimationEnabled();
     ZoomControlsVisible     = EnumToIndexConverter(SettingsSetters.GetZoomControlsVisible());
     RotationControlsVisible = EnumToIndexConverter(SettingsSetters.GetRotationControlsVisible());
     LengthUnit = SettingsSetters.GetLengthUnit();
     BackgroundHandler();
 }
Esempio n. 2
0
 public SettingsMainVM()
 {
     AllowOverstretch     = SettingsSetters.GetAllowOverstretch();
     FadeAnimationEnabled = SettingsSetters.GetFadeAnimationEnabled();
 }
Esempio n. 3
0
        public async void UpdateContactsAccess(bool V)
        {
            _contactsaccess = await SettingsSetters.SetAccessToContacts(V);

            PropertyChanged?.Invoke(this, new PropertyChangedEventArgs("ContactsAccess"));
        }
Esempio n. 4
0
 async void ContactHandler()
 {
     ContactsAccess = await SettingsSetters.GetAccessToContcts();
 }