Ejemplo n.º 1
0
 private void _toolStripCaption_CanelCaptionDrag(object sender, EventArgs e)
 {
     if (_dragger != null)
     {
         _dragger.End();
         _dragger.Dispose();
         _dragger = null;
     }
 }
Ejemplo n.º 2
0
        private void _toolStripCaption_EndCaptionDrag(object sender, MouseEventArgs e)
        {
            Rectangle endDragBounds = Rectangle.Empty;

            if (_dragger != null)
            {
                _dragger.MoveTo(e.Location);
                endDragBounds = _dragger.End();
                _dragger.Dispose();
                _dragger = null;
            }

            OnEndCaptionDrag(e.Location, endDragBounds);
        }
Ejemplo n.º 3
0
 private void _toolStripCaption_StartCaptionDrag(object sender, MouseEventArgs e)
 {
     _dragger = new ControlRectangleDrag(this, Cursors.SizeAll);
     _dragger.Start(e.Location);
     _toolStripLabel.Enabled = true;
 }