Reflector XAML Quick Reference

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.

XAML
Copy Code
<c1ext:C1Reflector Width="400">

   <Button Content="Button"></Button>
<c1ext:C1Reflector.ReflectionEffects>
<BlurEffect Radius="3"/>
<DropShadowEffect BlurRadius="7 Opacity="0.95" ShadowDepth="8" Direction="180"/>
   </c1ext:C1Reflector.ReflectionEffects>
</c1ext:C1Reflector>