jamesmontemagno / SettingsPlugin

Read and Write Settings Plugin for Xamarin and Windows
MIT License
324 stars 80 forks source link

Binding with PRISM Framework #52

Closed riandesign closed 7 years ago

riandesign commented 7 years ago

With Prism Framework, I create a binding property like this:

private static User _loggedUser;
public User LoggedUser {
    get { return _loggedUser; }
    set { SetProperty(ref _loggedUser, value); }
}

How would I get the Settings.LoggedUser value and pass to that binding property? What's the best way to work in this case?

jamesmontemagno commented 7 years ago

Read the readme