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 。 ユーザーがこの期間内に、ツールヒントが表示されている要素から、ツールヒントを持つ別の要素にマウスを移動すると、2 番目のツールヒントのプロパティの InitialShowDelay 値は適用されず、2 番目のツールヒントがすぐに表示されます。

コードでこのプロパティを取得または設定する方法については、およびメソッドをGetInitialShowDelaySetInitialShowDelay参照してください。

依存プロパティ情報

識別子フィールド InitialShowDelayProperty
メタデータのプロパティが次に設定されている true なし

適用対象

こちらもご覧ください