Compartir a través de


InertiaProcessor2D.IsRunning Propiedad

Definición

Obtiene un valor que indica si la inercia está actualmente en curso.

public:
 property bool IsRunning { bool get(); };
public bool IsRunning { get; }
member this.IsRunning : bool
Public ReadOnly Property IsRunning As Boolean

Valor de propiedad

Valor booleano que indica si la inercia está actualmente en curso.

Ejemplos

En el ejemplo siguiente, un controlador de eventos para el ManipulationProcessor2D.Started evento comprueba si el procesamiento de inercia se está ejecutando y, si es así, lo detiene llamando al Completed método .

#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

Se aplica a