ComponentFactory.Krypton.Docking.KryptonFloatingWindow.OnWindowCaptionDragging C# (CSharp) Method

OnWindowCaptionDragging() protected method

Raises the WindowCaptionDragging event.
protected OnWindowCaptionDragging ( ScreenAndOffsetEventArgs e ) : void
e ScreenAndOffsetEventArgs An ScreenAndOffsetEventArgs that contains the event data.
return void
        protected virtual void OnWindowCaptionDragging(ScreenAndOffsetEventArgs e)
        {
            if (WindowCaptionDragging != null)
                WindowCaptionDragging(this, e);
        }