ManipulationProcessor2D.Delta Событие

Определение

Происходит при изменении источника манипуляции или после перемещения, масштабирования или поворота.

public:
 event EventHandler<System::Windows::Input::Manipulations::Manipulation2DDeltaEventArgs ^> ^ Delta;
public event EventHandler<System.Windows.Input.Manipulations.Manipulation2DDeltaEventArgs> Delta;
member this.Delta : EventHandler<System.Windows.Input.Manipulations.Manipulation2DDeltaEventArgs> 
Public Custom Event Delta As EventHandler(Of Manipulation2DDeltaEventArgs) 
Public Event Delta As EventHandler(Of Manipulation2DDeltaEventArgs) 

Тип события

Примеры

#region OnManipulationOrInertiaDelta
private void OnManipulationOrInertiaDelta(object sender, Manipulation2DDeltaEventArgs e)
{
    // The values obtained from e.Delta can be used to move, resize, or
    // change the orientation of the element that is being manipulated.
}
#endregion

Комментарии

Событие ManipulationProcessor2D.Delta и событие имеют один и InertiaProcessor2D.Delta тот же тип. Как правило, для обоих событий можно использовать один и тот же обработчик событий.

Применяется к