ManipulationProcessor2D.Started Evento

Definição

Ocorre quando uma nova manipulação foi iniciada.

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

Tipo de evento

Exemplos

No exemplo a seguir, um manipulador de eventos para o evento verifica se o Started processamento de inércia está em execução e, em caso afirmativo, o interrompe.

#region OnManipulationStarted
private void OnManipulationStarted(object sender, Manipulation2DStartedEventArgs e)
{
    if (inertiaProcessor.IsRunning)
    {
        inertiaProcessor.Complete(Timestamp);
    }
}
#endregion
#region Timestamp
private long Timestamp
{
    get
    {
        // Get timestamp in 100-nanosecond units.
        double nanosecondsPerTick = 1000000000.0 / System.Diagnostics.Stopwatch.Frequency;
        return (long)(System.Diagnostics.Stopwatch.GetTimestamp() / nanosecondsPerTick / 100.0);
    }
}
#endregion

Aplica-se a