Reflection Effect : VisualBrush « Windows Presentation Foundation « VB.Net






Reflection Effect

Reflection Effect
      

<Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="TextBox with Reflection" Width="500" Height="200" Background="DarkGreen">
  <StackPanel Margin="40">
    <TextBox x:Name="textBox" FontSize="30"/>
    <Rectangle Height="{Binding ElementName=textBox, Path=ActualHeight}" Width="{Binding ElementName=textBox, Path=ActualWidth}">
      <Rectangle.Fill>
        <VisualBrush Visual="{Binding ElementName=textBox}"/>
      </Rectangle.Fill>
      <Rectangle.LayoutTransform>
        <ScaleTransform ScaleY="-0.75"/>
      </Rectangle.LayoutTransform>
      <Rectangle.OpacityMask>
        <LinearGradientBrush EndPoint="0,1">
          <GradientStop Offset="0" Color="Transparent"/>
          <GradientStop Offset="1" Color="#77000000"/>
        </LinearGradientBrush>
      </Rectangle.OpacityMask>
    </Rectangle>
  </StackPanel>
</Window>

   
    
    
    
    
    
  








Related examples in the same category

1.Fill Ellipse with custom VisualBrushFill Ellipse with custom VisualBrush
2.VisualBrush.RelativeTransformVisualBrush.RelativeTransform
3.VisualBrush.VisualVisualBrush.Visual
4.VisualBrush Binding and RotateTransformVisualBrush Binding and RotateTransform
5.VisualBrush TileMode and ViewportVisualBrush TileMode and Viewport
6.RotateTransform and VisualBrushRotateTransform and VisualBrush
7.Use a VisualBrush to magnify a portion of the screen.Use a VisualBrush to magnify a portion of the screen.