UIElement.Effect Propriedade

Definição

Obtém ou define o efeito de bitmap a ser aplicado ao UIElement. É uma propriedade de dependência.

public:
 property System::Windows::Media::Effects::Effect ^ Effect { System::Windows::Media::Effects::Effect ^ get(); void set(System::Windows::Media::Effects::Effect ^ value); };
public System.Windows.Media.Effects.Effect Effect { get; set; }
member this.Effect : System.Windows.Media.Effects.Effect with get, set
Public Property Effect As Effect

Valor da propriedade

Um Effect que representa o efeito de bitmap.

Exemplos

O XAML a seguir mostra como atribuir um personalizado ShaderEffect à Effect propriedade .

<Window x:Class="ShaderEffectDemo.Window1"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="clr-namespace:ShaderEffectDemo"
    Title="Window1" Height="300" Width="300">
    <Window.Resources>
        <local:ThresholdEffect x:Key="thresholdEffect" Threshold="0.25" BlankColor="Orange" />
    </Window.Resources>
    
    <Grid Effect="{StaticResource thresholdEffect}">

    </Grid>
</Window>

Comentários

Use a Effect propriedade para aplicar um efeito bitmap a um UIElement.

Informações da propriedade de dependência

Campo Identificador EffectProperty
Propriedades de metadados definidas como true Nenhum

Aplica-se a

Confira também