You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It doesn't appear that there is code in ToggleSwitch to monitor when the IsEnabled bit changes.
I added this line to the constructor to make it work. I'm not a UI control designer so I don't know if there is a better way.
IsEnabledChanged += (sender, args) => ChangeVisualState(false);
The text was updated successfully, but these errors were encountered:
Tried adding that ChangeVisualState in the code (can't remember where) but it didn't work, is this working for you? (Is the background changing properly?) Might dig a little more into this when I get some time with my Windows7 computer
It doesn't appear that there is code in ToggleSwitch to monitor when the IsEnabled bit changes.
I added this line to the constructor to make it work. I'm not a UI control designer so I don't know if there is a better way.
IsEnabledChanged += (sender, args) => ChangeVisualState(false);
The text was updated successfully, but these errors were encountered: