This topic is dedicated to providing a quick overview of the XAML used to create a C1Reflector control. For more information, see the Reflector for Silverlight Task-Based Help section.
The XAML markup below creates a reflector with one item, a button control, and applies a blur effect and a drop-shadow effect to the control.
<c1:C1Reflector Width="400">
<Button Content="Button"></Button>
<c1:C1Reflector.ReflectionEffects>
<BlurEffect Radius="3"/>
<DropShadowEffect BlurRadius="7 Opacity="0.95" ShadowDepth="8" Direction="180"/>
</c1:C1Reflector.ReflectionEffects>
</c1:C1Reflector>