ToolTip.HasDropShadow 属性

定义

获取或设置一个指示控件是否有投影的值。

public:
 property bool HasDropShadow { bool get(); void set(bool value); };
public bool HasDropShadow { get; set; }
member this.HasDropShadow : bool with get, set
Public Property HasDropShadow As Boolean

属性值

如果控件有投影,则为 true;否则为 false。 默认值为 false

示例

以下示例演示如何设置 HasDropShadow 控件的 ToolTip 属性。

<Ellipse Height="25" Width="50" 
         Fill="Gray" 
         HorizontalAlignment="Left"
         ToolTipService.InitialShowDelay="1000"
         ToolTipService.ShowDuration="7000"
         ToolTipService.BetweenShowDelay="2000">
  <Ellipse.ToolTip>
    <ToolTip Placement="Right" 
             PlacementRectangle="50,0,0,0"
             HorizontalOffset="10" 
             VerticalOffset="20"
             HasDropShadow="false"
             Opened="whenToolTipOpens"
             Closed="whenToolTipCloses"
             >
      <BulletDecorator>
        <BulletDecorator.Bullet>
          <Ellipse Height="10" Width="20" Fill="Blue"/>
        </BulletDecorator.Bullet>
        <TextBlock>Uses the ToolTip Class</TextBlock>
      </BulletDecorator>
    </ToolTip>
  </Ellipse.ToolTip>
</Ellipse>

注解

ToolTip打开时, 值设置为 的值SystemParameters.DropShadow。 如果SystemParameters.DropShadow属性为 false,则将此属性设置为 true 不起作用。

依赖项属性信息

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

适用于

另请参阅