ToolTipService.InitialShowDelay 附加属性

定义

获取或设置工具提示打开之前的时间长度。

see GetInitialShowDelay, and SetInitialShowDelay
see GetInitialShowDelay, and SetInitialShowDelay
see GetInitialShowDelay, and SetInitialShowDelay

例外

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

示例

下面的示例演示如何设置 ToolTipService 计时属性。

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

注解

通常,当用户将鼠标指针移到具有工具提示的对象上时,显示工具提示之前会有延迟。 此延迟等于属性的值 InitialShowDelay 。 但是,在显示工具提示后,有一段时间后,可以显示另一个工具提示,而无需等待 InitialShowDelay 时间传递。 使用属性指定此时间段 BetweenShowDelay 。 当用户在此时间段内将鼠标从一个具有可见工具提示的元素移动到另一个具有工具提示的元素时,不会应用第二个工具提示的属性值 InitialShowDelay ,并且第二个工具提示立即显示。

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

依赖项属性信息

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

适用于

另请参阅