VisualInteractionSource.ScaleChainingMode Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
La propriété ScaleChainingMode définit le comportement de chaînage d’une InteractionSource dans la direction de la mise à l’échelle. Il existe trois types d’InteractionChainingMode : Auto, Always, Jamais. Lorsque le chaînage de mise à l’échelle est activé, l’entrée est transmise au VisualInteractionSource de l’ancêtre le plus proche chaque fois que l’interaction (par exemple, le mouvement panoramique) prend la position d’InteractionTracker au-delà de sa position d’échelle minimale ou maximale.
public:
property InteractionChainingMode ScaleChainingMode { InteractionChainingMode get(); void set(InteractionChainingMode value); };
InteractionChainingMode ScaleChainingMode();
void ScaleChainingMode(InteractionChainingMode value);
public InteractionChainingMode ScaleChainingMode { get; set; }
var interactionChainingMode = visualInteractionSource.scaleChainingMode;
visualInteractionSource.scaleChainingMode = interactionChainingMode;
Public Property ScaleChainingMode As InteractionChainingMode
Valeur de propriété
Mode chaînage pour l’axe d’échelle.
Exemples
void SetupInteractionSource(ContainerVisual container, InteractionTracker tracker)
{
// Setup the Interaction Source
_interactionSource = VisualInteractionSource.Create(container);
// Auto chaining for Scale
_interactionSource.ScaleChainingMode = InteractionChainingMode.Auto;
// Attach the VisualInteractionSource to InteractionTracker
tracker.InteractionSources.Add(_interactionSource);
}