Condividi tramite


InteractionSourceMode Enumerazione

Definizione

Fornisce le varie definizioni per la modalità di elaborazione delle interazioni di VisualInteractionSource . Le opzioni disponibili per l'enumerazione sono Disabilitate , EnabledWithInertia e EnabledWithoutInertia . L'oggetto InteractionSourceMode può essere usato per definire il comportamento per l'asse X, Y e Scale di un oggetto VisualInteractionSource.

public enum class InteractionSourceMode
/// [Windows.Foundation.Metadata.ContractVersion(Microsoft.Foundation.LiftedContract, 65536)]
enum class InteractionSourceMode
/// [Windows.Foundation.Metadata.ContractVersion(Microsoft.Foundation.WindowsAppSDKContract, 65536)]
enum class InteractionSourceMode
[Windows.Foundation.Metadata.ContractVersion(typeof(Microsoft.Foundation.LiftedContract), 65536)]
public enum InteractionSourceMode
[Windows.Foundation.Metadata.ContractVersion(typeof(Microsoft.Foundation.WindowsAppSDKContract), 65536)]
public enum InteractionSourceMode
var value = Microsoft.UI.Composition.Interactions.InteractionSourceMode.disabled
Public Enum InteractionSourceMode
Ereditarietà
InteractionSourceMode
Attributi

Campi

Disabled 0

L'interazione è disabilitata.

EnabledWithInertia 1

L'interazione è abilitata con inertia.

EnabledWithoutInertia 2

L'interazione è abilitata senza inerti.

Esempio

void SetupInteractionSource(ContainerVisual container, InteractionTracker 	tracker)
{
  // Setup the Interaction Source
  _interactionSource = VisualInteractionSource.Create(container);
  // Define the Source Modes for X, Y, and Scale.
  _interactionSource.PositionXSourceMode = InteractionSourceMode.EnabledWithInertia;
  _interactionSource.PositionYSourceMode = InteractionSourceMode.EnabledWithoutInertia;
  _interactionSource.ScaleSourceMode = InteractionSourceMode.Disabled;
  // Attach the VisualInteractionSource to InteractionTracker
  tracker.InteractionSources.Add(_interactionSource);
}

Si applica a