Freigeben über


VisualInteractionSource.PointerWheelConfig Eigenschaft

Definition

Ruft die Konfiguration für die Zeigerradeingabe ab.

public:
 property InteractionSourceConfiguration ^ PointerWheelConfig { InteractionSourceConfiguration ^ get(); };
InteractionSourceConfiguration PointerWheelConfig();
public InteractionSourceConfiguration PointerWheelConfig { get; }
var interactionSourceConfiguration = visualInteractionSource.pointerWheelConfig;
Public ReadOnly Property PointerWheelConfig As InteractionSourceConfiguration

Eigenschaftswert

Die Konfiguration für die Zeigerradeingabe.

Windows-Anforderungen

Gerätefamilie
Windows 10, version 1809 (eingeführt in 10.0.17763.0)
API contract
Windows.Foundation.UniversalApiContract (eingeführt in v7.0)

Hinweise

Standardmäßig verwendet VisualInteractionSource dieselbe Konfiguration für alle Eingabetypen. Mit dieser Eigenschaft können Sie eine andere Konfiguration speziell für die Zeigerradeingabe bereitstellen.

Beispielsweise können Sie Toucheingaben und Touchpadeingaben verwenden, um schwenken (X, Y) und Zoom zu steuern, aber nur die Zeigerradeingabe zum Zoomen. In diesem Fall können Sie die Konfiguration von PositionXSourceMode und PositionYSourceMode außer Kraft setzen, um sie nur für die Zeigerradeingabe zu deaktivieren.

// Set the defaults for the VisualInteractionSource.
interactionSource.PositionXSourceMode = InteractionSourceMode.EnabledWithInertia;
interactionSource.PositionYSourceMode = InteractionSourceMode.EnabledWithInertia;
interactionSource.ScaleSourceMode = InteractionSourceMode.EnabledWithInertia;

// Modify the pointer wheel configuration to disable X and Y.
interactionSource.PointerWheelConfig.PositionXSourceMode =
    InteractionSourceRedirectionMode.Disabled;
interactionSource.PointerWheelConfig.PositionYSourceMode =
    InteractionSourceRedirectionMode.Disabled;

Gilt für: