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
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
-
protected override void OnHandlerChanged()
Baboon Capuchin Monkey Blue Monkey Squirrel Monkey Golden Lion Tamarin Howler Monkey Japanese Macaque{
base.OnHandlerChanged();
testCollection.SizeChanged += (s, e) =>
{
testCollection.Margin = new Thickness(testHori.Width, 0, 0, 0);
var animation = new Animation(v => testCollection.TranslationX = v, 100, -(testHori.Width + testCollection.Width));
animation.Commit(this, "SimpleAnimation", 16, 6000,
Easing.Linear, (v, c) => testCollection.TranslationX = 100, () => true);
};
}
Beta Was this translation helpful? Give feedback.
All reactions