If you databind the IsChecked property of a ToggleButton to a bool? property in a ViewModel and then change the value of the ViewModel property from true to false while the page that contains the ToggleButton is memory resident but not the current displaying page, the ToggleButton does not update its IsChecked property to false.
When you navigate back to the page containing the toggleSwitch, it shows as On when it should be Off.
See http://mobileworld.appamundi.com/blogs/andywigley/archive/2012/01/18/silverlight-toolkit-toggleswitch-databinding-bug.aspx for a full description
Comments: ** Comment from web user: Alainza **
When you navigate back to the page containing the toggleSwitch, it shows as On when it should be Off.
See http://mobileworld.appamundi.com/blogs/andywigley/archive/2012/01/18/silverlight-toolkit-toggleswitch-databinding-bug.aspx for a full description
Comments: ** Comment from web user: Alainza **
A simple workaround is using two way databinding.
But I'm investigating a better solution