共用方式為


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

適用於

另請參閱