Reflector (Silverlight Only) > Task-Based Help > Using the Blur Effect |
You can add a blur effect to a reflection using the standard Silverlight drop shadow effect. In this topic, you will add the drop shadow effect in Blend, in XAML, and in code.
At Design Time in Blend
To use the blur effect, complete the following steps:
In XAML
To use the blur effect, complete the following steps:
XAML Copy Code<c1ext:C1Reflector.ReflectionEffects> <BlurEffect Radius="3"/> </c1ext:C1Reflector.ReflectionEffects>
In Code
To use the blur effect, complete the following steps:
Visual Basic Copy Code Imports System.Windows.Media.Effects;
C# Copy Codeusing System.Windows.Media.Effects;
Visual Basic Copy Code 'Create the BlurEffect object and set its Radius property Dim newBlurEffect As New BlurEffect() newBlurEffect.Radius = 3 'Add the BlurEffect object to the C1Reflector control C1Reflector1.ReflectionEffects.Add(newBlur)
C# Copy Code //Create the BlurEffect object and set its Radius property BlurEffect newBlurEffect = new BlurEffect(); newBlurEffect.Radius = 3; //Add the BlurEffect object to the C1Reflector control C1Reflector1.ReflectionEffects.Add(newBlurEffect);
This Topic Illustrates the Following:
When you run the project, the C1Reflector control and its content will resemble the following image: