UIElement.Effect Właściwość

Definicja

Pobiera lub ustawia efekt mapy bitowej, który ma być stosowany do elementu UIElement. Jest to właściwość zależności.

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

Wartość właściwości

Element Effect reprezentujący efekt mapy bitowej.

Przykłady

Poniższy kod XAML pokazuje, jak przypisać niestandardowy ShaderEffect element do Effect właściwości .

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

Uwagi

Użyj właściwości , Effect aby zastosować efekt mapy bitowej do elementu UIElement.

Informacje dotyczące właściwości zależności

Pole identyfikatora EffectProperty
Właściwości metadanych ustawione na true Brak

Dotyczy

Zobacz też