UIElement.Effect 属性

定义

获取或设置要应用于 UIElement 的位图效果。 这是依赖项属性。

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

属性值

Effect

一个表示位图效果的 Effect

示例

以下 XAML 演示如何向Effect属性分配自定义ShaderEffect项。

<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

适用于

另请参阅