private void rotateHandle_DragStarted(object sender, DragStartedEventArgs e)
        {
//			rotellaStavoRuotando = false;

            azioneRotateInizio();
        }
示例#2
0
 private void sliProgress_DragStarted(object sender, DragStartedEventArgs e)
 {
     userIsDraggingSlider = true;
 }
示例#3
0
 /// <summary>
 /// Handler for all resize events.
 /// </summary>
 void onResizeStart(object sender, DragStartedEventArgs e)
 {
     duringResize = true;
     HideOverlayBar(this, null);
     UndoManager.Instance.SaveState();
 }
示例#4
0
 private void OnSelectionEndThumbDragStarted(object sender, DragStartedEventArgs e)
 {
     this.endThumbAccumulatedDelta = this.SelectionEnd;
 }
示例#5
0
 private void PlayProgress_DragStarted(object sender, DragStartedEventArgs e)
 {
     _scrollLock = true;
 }
示例#6
0
 private void GridSplitter_DragStarted_1(object sender, DragStartedEventArgs e)
 {
     IsDragging = true;
     //IsKnownTargetWidth = false;
     //intCount = 0;
 }
示例#7
0
 private void OnSelectionMiddleThumbDragStarted(object sender, DragStartedEventArgs e)
 {
     this.middleThumbInitialDelta        = this.SelectionStart;
     this.isMiddleThumbEnteringFromLeft  = true;
     this.isMiddleThumbEnteringFromRight = true;
 }
示例#8
0
 void HorizontalThumb_DragStarted(object sender, DragStartedEventArgs e)
 {
     OnDragStarted();
 }
示例#9
0
 void OnDragStarted(object sender, DragStartedEventArgs e)
 {
     ExtendedVisibility = Visibility.Collapsed;
 }
示例#10
0
 private void pb_DragStarted(object sender, DragStartedEventArgs e) => _isDragging = true;
示例#11
0
 void VerticalThumb_DragStarted(object sender, DragStartedEventArgs e)
 {
     OnDragStarted();
 }
示例#12
0
 private void OnDragStarted2(object sender, DragStartedEventArgs e)
 {
     _positionOnThumb2 = Mouse.GetPosition(_thumb2);
 }
示例#13
0
 private void ClockItemDragStartedHandler(object sender, DragStartedEventArgs dragStartedEventArgs)
 {
     _currentStartPosition = new Point(dragStartedEventArgs.HorizontalOffset, dragStartedEventArgs.VerticalOffset);
 }
 private void Seek_DragStarted(object sender, DragStartedEventArgs e)
 {
     IsDragging = true;
 }
示例#15
0
 private void OnDragStarted(object sender, DragStartedEventArgs e)
 {
     rotateEventHandler.OnDragStarted(sender, e);
 }
示例#16
0
 private void ResizeThumb_DragStarted(object sender, DragStartedEventArgs e)
 {
     WidgetPanel.IsGridVisible = true;
 }
 public void OnDragStarted(SplitterGrip splitterGrip, DragStartedEventArgs args)
 {
     ComputeMinMax(splitterGrip, out _min, out _max);
     OnDragDelta(splitterGrip, new DragDeltaEventArgs(0, 0));
     args.Handled = true;
 }
 static void ThumbDragStarted(object sender, DragStartedEventArgs e)
 {
     isThumbDragInProgress = true;
 }
示例#19
0
 /// <summary>
 /// Simulate the DragValidator's DragStarted event.
 /// </summary>
 /// <param name="sender">The sender.</param>
 /// <param name="e">Event arguments.</param>
 internal void DragValidator_DragStartedEvent(object sender, DragStartedEventArgs e)
 {
     _gridSplitter.DragValidator_DragStartedEvent(sender, e);
 }
示例#20
0
 private void _image_DragStarted(object sender, DragStartedEventArgs e)
 {
 }
示例#21
0
 private void OnSelectionStartThumbDragStarted(object sender, DragStartedEventArgs e)
 {
     this.startThumbInitialDelta = this.SelectionStart;
 }
示例#22
0
 /// <summary>
 /// Callback for thumb control's DragStarted event.
 /// </summary>
 /// <param name="sender"></param>
 /// <param name="e"></param>
 private void ResizeThumb_OnDragStarted(object sender, DragStartedEventArgs e)
 {
     //throw new NotImplementedException();
 }
示例#23
0
 private static void OnDragStarted(object sender, DragStartedEventArgs args)
 {
     (sender as ResizableControl)?.OnDragStarted();
 }
 private void TableDataGrid_ColumnHeaderDragStarted(object sender, DragStartedEventArgs e)
 {
     Mouse.OverrideCursor = Cursors.Hand;
 }
 protected override void OnThumbDragStarted(DragStartedEventArgs e)
 {
     base.OnThumbDragStarted(e);
     this.FormatAutoToolTipContent();
 }
 private void MiddleSlider_DragStarted(object sender, DragStartedEventArgs e)
 {
     MiddleSliderDragStarted?.Invoke(sender, e);
 }
示例#27
0
 /// <summary>
 /// Handler for drag start, saves the block states before movement.
 /// </summary>
 void onDragStart(object sender, DragStartedEventArgs e)
 {
     UndoManager.Instance.SaveState();
 }
 private void DragStarted(object sender, DragStartedEventArgs e)
 {
     SetDisplay();
 }
 private void scaleHandle_DragStarted(object sender, DragStartedEventArgs e)
 {
     azioneScaleInizio();
 }
 private void OnSliderDragStarted(object sender, DragStartedEventArgs e)
 {
     m_dragInProgress = true;
     SetFloorSelectionDrag(m_floorSlider.Value);
 }
示例#31
0
文件: GridSplitter.cs 项目: dfr0/moon
 /// <summary>
 /// Handle the drag started event to start a resize operation if the control is enabled 
 /// </summary> 
 internal void DragValidator_DragStartedEvent(object sender, DragStartedEventArgs e)
 { 
     if (this.IsEnabled)
     {
         Focus(); 
         InitializeData(this.ShowsPreview);
     }
 } 
 private void ThumbDragStarted(object sender, DragStartedEventArgs e)
 {
     UpdateScrubbingVisualState();
     OnScrubbingStarted(new ValueRoutedEventArgs(Value));
 }