Bagikan melalui


UIElement.Effect Properti

Definisi

Mendapatkan atau mengatur efek bitmap untuk diterapkan ke UIElement. Ini adalah properti dependensi.

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

Nilai Properti

Yang Effect mewakili efek bitmap.

Contoh

XAML berikut menunjukkan cara menetapkan kustom ShaderEffect ke Effect properti .

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

Keterangan

Effect Gunakan properti untuk menerapkan efek bitmap ke UIElement.

Informasi Properti Dependensi

Item Nilai
Bidang pengidentifikasi EffectProperty
Properti metadata diatur ke true Tidak

Berlaku untuk

Lihat juga