UIElement.Effect Property
.NET Framework 4.5
Gets or sets the bitmap effect to apply to the UIElement. This is a dependency property.
Namespace: System.Windows
Assembly: PresentationCore (in PresentationCore.dll)
The following XAML shows how to assign a custom ShaderEffect to the Effect property.
<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>
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.