Fill Ellipse with custom VisualBrush : VisualBrush « Windows Presentation Foundation « VB.Net Tutorial






<Window x:Class="WpfApplication1.Window1"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="WPF" Height="250" Width="550">
    <StackPanel Orientation="Horizontal">
        <StackPanel Margin="5" MinWidth="180">
            <TextBlock FontSize="15" Text="Active Controls:"/>
            <StackPanel Name="spInnerLeftPanel" Margin="5">
                <Button Content="Button 2" Margin="5" MinWidth="80"/>
            </StackPanel>
        </StackPanel>
        <Canvas Margin="5">
            <Canvas.Resources>
                <VisualBrush x:Key="VB1" Visual="{Binding ElementName=spInnerLeftPanel}" />
                <VisualBrush x:Key="VB2" Viewbox="0,0,0.5,0.2" 
                             Visual="{Binding ElementName=spInnerLeftPanel}" 
                             Stretch="UniformToFill" TileMode="FlipX" />
            </Canvas.Resources>

            <Ellipse Canvas.Top="90" Canvas.Left="100" 
                     Stroke="Black" StrokeThickness="2"
                     Height="110" Width="220"
                     SnapsToDevicePixels="True">
                <Ellipse.Fill>
                    <VisualBrush                   
                        Visual="{Binding ElementName=spInnerLeftPanel}" />
                </Ellipse.Fill>
            </Ellipse>


        </Canvas>
    </StackPanel>
</Window>
WPF Fill Ellipse With Custom Visual Brush








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.