Ejemplo n.º 1
0
        private void RemoveAnimationCompleted(object sender, Utils.AnimationHelper.AnimationEventArgs e)
        {
            ListItem li = e.AnimatedElement as ListItem;

            if (li != null)
            {
                parent.Children.Remove(li);
                li.Opacity = ((Utils.AnimationHelper.Double)sender).Before;
                sc.ScrollToTop();
            }
        }
Ejemplo n.º 2
0
        private void AnimationCompleted(object sender, Utils.AnimationHelper.AnimationEventArgs e)
        {
            MessageMaximized?.Invoke(this, new EventArgs());

            Dispatcher.BeginInvoke(new Action(() =>
            {
                System.Threading.Thread.Sleep(wait_d);
                while (entering == true)
                {
                }
                Minimize();
            }));
        }
Ejemplo n.º 3
0
 private void Ta_AnimationCompleted(object sender, Utils.AnimationHelper.AnimationEventArgs e)
 {
     RefreshItems();
 }
Ejemplo n.º 4
0
 private void SBRemove_AnimationCompleted(object sender, Utils.AnimationHelper.AnimationEventArgs e)
 {
     parent.Children.Remove(SB);
     RefreshItems();
 }
Ejemplo n.º 5
0
 private void Ta_AnimationCompleted(object sender, Utils.AnimationHelper.AnimationEventArgs e)
 {
     MessageMinimized?.Invoke(this, new EventArgs());
 }