void contextCircle_MouseLeftButtonDown(object sender, MouseButtonEventArgs e)
        {
            if (e.ClickCount == 2)
            {
                StickyWindowAnimations animations = new StickyWindowAnimations(this);

                switch (MyWindowState)
                {
                case WindowState.Minimized:
                    animations.RestoreAnimation();
                    this.ToolTip = new ToolTip();
                    break;

                case WindowState.Normal:
                    animations.MinimizeAnimation();
                    UpdateToolTip();
                    break;
                }

                e.Handled = true;
            }
        }
Example #2
0
        //Minimize menuCommand
        public void MinizmizeCmdExecuted(object sender, ExecutedRoutedEventArgs e)
        {
            StickyWindowAnimations animations = new StickyWindowAnimations(stickyWindow);

            animations.MinimizeAnimation();
        }
        void contextCircle_MouseLeftButtonDown(object sender, MouseButtonEventArgs e)
        {
            if (e.ClickCount == 2)
            {
                StickyWindowAnimations animations = new StickyWindowAnimations(this);

                switch (MyWindowState)
                {
                    case WindowState.Minimized:
                        animations.RestoreAnimation();
                        this.ToolTip = new ToolTip();
                        break;

                    case WindowState.Normal:
                        animations.MinimizeAnimation();
                        UpdateToolTip();
                        break;
                }

                e.Handled = true;
            }
        }
Example #4
0
 //Minimize menuCommand
 public void MinizmizeCmdExecuted(object sender, ExecutedRoutedEventArgs e)
 {
     StickyWindowAnimations animations = new StickyWindowAnimations(stickyWindow);
     animations.MinimizeAnimation();
 }