SilverFlow.Controls.FloatingWindow.FloatingWindow_MouseLeftButtonDown C# (CSharp) Method

FloatingWindow_MouseLeftButtonDown() private method

Handles the MouseLeftButtonDown event to bring the window to the front.
private FloatingWindow_MouseLeftButtonDown ( object sender, System.Windows.Input.MouseButtonEventArgs e ) : void
sender object The source of the event.
e System.Windows.Input.MouseButtonEventArgs The instance containing the event data.
return void
        private void FloatingWindow_MouseLeftButtonDown(object sender, MouseButtonEventArgs e)
        {
            SetTopmost();
            StopInertialMotion();
        }
FloatingWindow