ManipulationProcessor2D.Delta Evento

Definizione

Si verifica quando viene modificata l'origine della manipolazione o in seguito alla traslazione, alla scala o alla rotazione.

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) 

Tipo evento

Esempio

#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

Commenti

L'evento ManipulationProcessor2D.Delta e l'evento InertiaProcessor2D.Delta sono dello stesso tipo. In genere, è possibile usare lo stesso gestore eventi per entrambi gli eventi.

Si applica a