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
Previously changing the style in C# didn't make transitions run, however now transitions are run every time you change the style, to avoid this you have to run SkipTransitions on the panel. This however will skip every current or about to be ran transition which can be annoying.
I feel like it would be a better idea if you specified when you wanted a transition to run rather than when you don't want one to run.
Example 1:
A bar that you want to fade in when set from 0 width to 100 but also need to set the width via code, using SkipTransitions would also skip the fade in transition, if you had to specify when to run transitions this would be fixed.
Example 2:
A bar that has its width set via c#, all you would have to do is tell it to run transitions.
Another alternative would be to have the ability to skip specific transitions.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Previously changing the style in C# didn't make transitions run, however now transitions are run every time you change the style, to avoid this you have to run SkipTransitions on the panel. This however will skip every current or about to be ran transition which can be annoying.
I feel like it would be a better idea if you specified when you wanted a transition to run rather than when you don't want one to run.
Example 1:
A bar that you want to fade in when set from 0 width to 100 but also need to set the width via code, using SkipTransitions would also skip the fade in transition, if you had to specify when to run transitions this would be fixed.
Example 2:
A bar that has its width set via c#, all you would have to do is tell it to run transitions.
Another alternative would be to have the ability to skip specific transitions.
Beta Was this translation helpful? Give feedback.
All reactions