コード例 #1
0
 /// <summary>
 /// Raises the WindowCaptionDragging event.
 /// </summary>
 /// <param name="e">An ScreenAndOffsetEventArgs that contains the event data.</param>
 protected virtual void OnWindowCaptionDragging(ScreenAndOffsetEventArgs e)
 {
     if (WindowCaptionDragging != null)
     {
         WindowCaptionDragging(this, e);
     }
 }
コード例 #2
0
        private void OnFloatingWindowCaptionDragging(object sender, ScreenAndOffsetEventArgs e)
        {
            // Events are generated from the parent docking manager
            KryptonDockingManager dockingManager = DockingManager;

            if (dockingManager != null)
            {
                dockingManager.DoDragDrop(e.ScreenPoint, e.ElementOffset, null, this);
            }
        }