InertiaProcessor2D.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

注釈

InertiaProcessor2D.DeltaイベントとManipulationProcessor2D.Deltaイベントは同じ型です。 通常、両方のイベントに同じイベント ハンドラーを使用できます。

適用対象