ToolTipService.ShowDuration Propiedad adjunta

Definición

Obtiene o establece la cantidad de tiempo que la información sobre herramientas permanece visible.

see GetShowDuration, and SetShowDuration
see GetShowDuration, and SetShowDuration
see GetShowDuration, and SetShowDuration

Excepciones

El valor de la propiedad InitialShowDelay es menor que cero (0).

Ejemplos

En el ejemplo siguiente se muestra cómo establecer la ShowDuration propiedad para una información sobre herramientas.

<Ellipse Height="25" Width="50" 
      Fill="Gray" 
      HorizontalAlignment="Left"
      ToolTipService.InitialShowDelay="1000"
      ToolTipService.ShowDuration="7000"
      ToolTipService.BetweenShowDelay="2000"
      ToolTipService.Placement="Right" 
      ToolTipService.PlacementRectangle="50,0,0,0"
      ToolTipService.HorizontalOffset="10" 
      ToolTipService.VerticalOffset="20"
      ToolTipService.HasDropShadow="false"
      ToolTipService.ShowOnDisabled="true" 
      ToolTipService.IsEnabled="true"
      ToolTipOpening="whenToolTipOpens"
      ToolTipClosing="whenToolTipCloses"
      >
  <Ellipse.ToolTip>
    <BulletDecorator>
      <BulletDecorator.Bullet>
        <Ellipse Height="10" Width="20" Fill="Blue"/>
      </BulletDecorator.Bullet>
      <TextBlock>Uses the ToolTipService class</TextBlock>
    </BulletDecorator>
  </Ellipse.ToolTip>
</Ellipse>
ToolTipService.SetShowDuration(ellipse1, 7000);
ToolTipService.SetShowDuration(ellipse1, 7000)

Comentarios

Esta propiedad define la hora en que una información sobre herramientas permanece visible mientras el usuario pausa el puntero del mouse sobre el objeto que define la información sobre herramientas. Si el usuario mueve el puntero del mouse fuera del objeto, se cierra la información sobre herramientas.

Esta propiedad es una propiedad adjunta. Para obtener información sobre cómo obtener o establecer el valor de esta propiedad en el código, vea los GetShowDuration métodos y SetShowDuration .

Información sobre propiedades de dependencia

Campo identificador ShowDurationProperty
Propiedades de metadatos establecidas en true None

Se aplica a

Consulte también