Wednesday 26 June 2013

Visual Brush in WPF



A VisualBrush is used to fill UI elements. The following code uses a VisualBrush to fill a rectangle.we can  , define a simple or complex UI element and assign it to the VisualBrush.Visual property using VisualBrush.we can then use the VisualBrush to create interesting effects, such as reflection and magnification. This example shows how to use the VisualBrush class with a Visual. Here I am using media element as visual. A Visual object usually hosts one container panel such as a Grid or StackPanel and on this container.
Here is the xaml code :

<Window x:Class="wpftheme.Window1"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="Window1" Height="350" Width="300" Initialized="Window_Initialized">
    <Grid>
      
            <Ellipse Height="100" Width="100" Name="elipsemedia" >
                <Ellipse.Fill>
                    <VisualBrush TileMode="None">
                        <VisualBrush.Visual>
                            <MediaElement Source="D:\TestingDB\wpftheme\wpftheme\Image\Wildlife.wmv" />
                        </VisualBrush.Visual>
                    </VisualBrush>
                </Ellipse.Fill>
            </Ellipse>
    </Grid>
</Window>


Here i am used Ellipse.fill property for video brush.this fill property  sets the Brush that specifies how the shape's interior is painted.

2 comments: