Click to Rate and Give Feedback
MSDN
MSDN Library
.NET Development
.NET Framework 3.5
UIElement Class
 Effect Property
Collapse All/Expand All Collapse All
This page is specific to
Microsoft Visual Studio 2008/.NET Framework 3.5

Other versions are also available for the following:
.NET Framework Class Library
UIElement..::.Effect Property

Updated: July 2008

Gets or sets the bitmap effect to apply to the UIElement. This is a dependency property.

Namespace:  System.Windows
Assembly:  PresentationCore (in PresentationCore.dll)
Visual Basic (Declaration)
Public Property Effect As Effect
Visual Basic (Usage)
Dim instance As UIElement
Dim value As Effect

value = instance.Effect

instance.Effect = value
C#
public Effect Effect { get; set; }
Visual C++
public:
property Effect^ Effect {
    Effect^ get ();
    void set (Effect^ value);
}
JScript
public function get Effect () : Effect
public function set Effect (value : Effect)
XAML
For XAML information, see the Effect type.

Property Value

Type: System.Windows.Media.Effects..::.Effect
An Effect that represents the bitmap effect.

Identifier field

EffectProperty

Metadata properties set to true

None

Use the Effect property to apply a bitmap effect to a UIElement.

The following XAML shows how to assign a custom ShaderEffect to the Effect property.

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>

Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

.NET Framework

Supported in: 3.5 SP1, 3.0 SP2

Date

History

Reason

July 2008

Added topic for new member.

SP1 feature change.

Tags What's this?: Add a tag
Community Content   What is Community Content?
Add new content RSS  Annotations
Processing
© 2009 Microsoft Corporation. All rights reserved. Terms of Use | Trademarks | Privacy Statement
Page view tracker