UIElement.Effect 屬性

定義

取得或設定要套用至 UIElement 的點陣圖效果。 這是相依性屬性。

C#
public System.Windows.Media.Effects.Effect Effect { get; set; }

屬性值

Effect

表示點陣圖效果的 Effect

範例

下列 XAML 示範如何將自訂 ShaderEffect 指派給 Effect 屬性。

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

備註

Effect使用 屬性將點陣圖效果套用至 UIElement

相依性屬性資訊

識別碼欄位 EffectProperty
中繼資料屬性設定為 true

適用於

產品 版本
.NET Framework 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
Windows Desktop 3.0, 3.1, 5, 6, 7

另請參閱