ToolTip.HasDropShadow Proprietà

Definizione

Ottiene o imposta un valore che indica se il controllo ha l'ombreggiatura.

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

Valore della proprietà

true se il controllo ha l'ombreggiatura; in caso contrario false. Il valore predefinito è false.

Esempio

Nell'esempio seguente viene illustrato come impostare la HasDropShadow proprietà per un ToolTip controllo.

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

Commenti

Quando si ToolTip apre, il valore viene impostato sul valore di SystemParameters.DropShadow. Se la SystemParameters.DropShadow proprietà true è false.

Informazioni proprietà di dipendenza

Campo Identificatore HasDropShadowProperty
Proprietà dei metadati impostate su true Nessuno

Si applica a

Vedi anche