UIElement.Effect Property
Gets or sets the bitmap effect to apply to the UIElement. This is a dependency property.
Assembly: PresentationCore (in PresentationCore.dll)
Use the Effect property to apply a bitmap effect to a UIElement.
Identifier field | |
Metadata properties set to true | None |
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>
.NET Framework
Available since 3.0
Silverlight
Available since 3.0
Available since 3.0
Silverlight
Available since 3.0