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






<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>
WPF Reflection Effect








16.76.VisualBrush
16.76.1.Fill Ellipse with custom VisualBrushFill Ellipse with custom VisualBrush
16.76.2.VisualBrush.RelativeTransformVisualBrush.RelativeTransform
16.76.3.VisualBrush.VisualVisualBrush.Visual
16.76.4.VisualBrush Binding and RotateTransformVisualBrush Binding and RotateTransform
16.76.5.VisualBrush TileMode and ViewportVisualBrush TileMode and Viewport
16.76.6.RotateTransform and VisualBrushRotateTransform and VisualBrush
16.76.7.Reflection EffectReflection Effect
16.76.8.Use a VisualBrush to magnify a portion of the screen.Use a VisualBrush to magnify a portion of the screen.