ToolTipService.ShowDuration 附加属性

定义

获取或设置工具提示保持可见的时间。

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

例外

属性 InitialShowDelay 的值小于零 (0)。

示例

以下示例演示如何设置 ShowDuration 工具提示的 属性。

<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)

注解

此属性定义用户将鼠标指针悬停在定义工具提示的对象上时工具提示保持可见的时间。 如果用户将鼠标指针移出对象,工具提示将关闭。

此属性是附加属性。 有关如何在代码中获取或设置此属性的值的信息,请参阅 GetShowDurationSetShowDuration 方法。

依赖项属性信息

标识符字段 ShowDurationProperty
元数据属性设置为 true

适用于

另请参阅