Using the Reflection Control in Code-Behind
Are you using the Reflection control in any of your projects? If so, send me a link or a screenshot and I’ll post it here.
private void Button_Click(object sender, System.Windows.RoutedEventArgs e)
{
// Create new Reflector object
Reflector ref1 = new Reflector();
// Set ReflectionTarget (the element to reflect)
ref1.ReflectionTarget = rectangleToReflect;
// Set a few layout properties
ref1.Margin = new Thickness(50, 50, 0, 0);
ref1.HorizontalAlignment = HorizontalAlignment.Left;
ref1.VerticalAlignment = VerticalAlignment.Top;
// Add reflection to LayoutRoot grid
LayoutRoot.Children.Add(ref1);
}
This May brings the first 
