Fill Polygon with Left aligned Uniform ImageBrush : ImageBrush « Windows Presentation Foundation « VB.Net






Fill Polygon with Left aligned Uniform ImageBrush

Fill Polygon with Left aligned Uniform ImageBrush
     

<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="300" Width="300">
    <Canvas Margin="5">
        <Polygon Canvas.Top="110" Canvas.Left="45" 
                 Points="40,0 150,100 10,100"
                 Stroke="Black" StrokeThickness="1">
            <Polygon.Fill>
                <ImageBrush ImageSource="c:\image.jpg" Stretch="Uniform"
                            AlignmentX="Left" />
            </Polygon.Fill>
        </Polygon>
    </Canvas>
</Window>

   
    
    
    
    
  








Related examples in the same category

1.ImageBrush ExamplesImageBrush Examples
2.ImageBrush TileMode="Tile"
3.ImageBrush TileMode="FlipX"
4.ImageBrush TileMode="FlipY"
5.ImageBrush TileMode="FlipXY"
6.The ImageBrush's content is vertically aligned with the top of the output area.The ImageBrush's content is vertically aligned with the top of the output area.
7.The ImageBrush's content is vertically centeredThe ImageBrush's content is vertically centered
8.The ImageBrush's content is vertically aligned with the bottom of the output areaThe ImageBrush's content is vertically aligned with the bottom of the output area
9.The ImageBrush's content is right-alignedThe ImageBrush's content is right-aligned
10.The ImageBrush's content is left-alignedThe ImageBrush's content is left-aligned
11.The ImageBrush's content is centered horizontallyThe ImageBrush's content is centered horizontally
12.With the Opacity MaskWith the Opacity Mask
13.Use an ImageBrush to paint an area with an imageUse an ImageBrush to paint an area with an image
14.None Stretch ImageBrushNone Stretch ImageBrush
15.Uniform Stretch ImageBrushUniform Stretch ImageBrush
16.The ImageBrush's content is not tiled in this exampleThe ImageBrush's content is not tiled in this example
17.The ImageBrush's content is tiled in this exampleThe ImageBrush's content is tiled in this example
18.The ImageBrush's content is flipped horizontally as it is tiledThe ImageBrush's content is flipped horizontally as it is tiled
19.ImageBrush's content is not tiledImageBrush's content is not tiled
20.ImageBrush's tiles are set to 10% by 10% of the output areaImageBrush's tiles are set to 10% by 10% of the output area
21.ImageBrush's tiles are set to 10% by 30% of the output areaImageBrush's tiles are set to 10% by 30% of the output area
22.ImageBrush's tiles are set to 50% by 50% of the output areaImageBrush's tiles are set to 50% by 50% of the output area
23.ImageBrush's tiles are set to 25 by 25 pixelsImageBrush's tiles are set to 25 by 25 pixels
24.ImageBrush's tiles are set to 25 by 50 pixelsImageBrush's tiles are set to 25 by 50 pixels
25.ImageBrush ViewportUnits=AbsoluteImageBrush ViewportUnits=Absolute
26.The ImageBrush has its Stretch property set to Uniform: the image is expanded as large as possibleThe ImageBrush has its Stretch property set to Uniform: the image is expanded as large as possible
27.ImageBrush has its Stretch property set to UniformToFill: image is expanded to completely fill the rectangle, but its aspect ratio is preservedImageBrush has its Stretch property set to UniformToFill: image is expanded to completely fill the rectangle, but its aspect ratio is preserved
28.ImageBrush has its Stretch property set to Fill: image is expanded to completely fill the rectangle.ImageBrush has its Stretch property set to Fill: image is expanded to completely fill the rectangle.
29.Text's Foreground = ImageBrush. The resulting text is filled with an imageText's Foreground = ImageBrush. The resulting text is filled with an image
30.Panel's Background property with an ImageBrushPanel's Background property with an ImageBrush
31.The ImageBrush's content is flipped vertically as it is tiledThe ImageBrush's content is flipped vertically as it is tiled
32.The ImageBrush's content is flipped horizontally and vertically as it is tiledThe ImageBrush's content is flipped horizontally and vertically as it is tiled
33.Fill rectangle with UniformToFill ImageBrushFill rectangle with UniformToFill ImageBrush
34.RotateTransform ImageBrush.RelativeTransformRotateTransform ImageBrush.RelativeTransform
35.RotateTransform ImageBrush.TransformRotateTransform ImageBrush.Transform
36.Specifying a Stretch and a TileModeSpecifying a Stretch and a TileMode
37.Specifying a Stretch and alignmentSpecifying a Stretch and alignment