ImageBrush within a DrawingBrush. : Image « Windows Presentation Foundation « C# / C Sharp






ImageBrush within a DrawingBrush.

ImageBrush within a DrawingBrush.
    

<Window x:Class="Workspace.DockExample"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="Workspace" Width="640" Height="480">
      <Rectangle Width="50" Height="50" Grid.Row="0" Grid.Column="1">
        <Rectangle.Fill>
          <DrawingBrush Viewport="0,0,1,1" TileMode="Tile">
            <DrawingBrush.Drawing>
              <DrawingGroup>
                <GeometryDrawing Brush="Pink">
                  <GeometryDrawing.Geometry>
                    <RectangleGeometry Rect="0,0,1,1" />
                  </GeometryDrawing.Geometry>
                </GeometryDrawing>
                <GeometryDrawing>
                  <GeometryDrawing.Brush>
                    <ImageBrush ImageSource="c:\image.jpg"  />
                  </GeometryDrawing.Brush>
                  <GeometryDrawing.Geometry>
                    <RectangleGeometry Rect="0,0,0.5,0.5" />
                  </GeometryDrawing.Geometry>
                </GeometryDrawing>
                <GeometryDrawing>
                  <GeometryDrawing.Brush>
                    <ImageBrush ImageSource="c:\image.jpg"  />
                  </GeometryDrawing.Brush>
                  <GeometryDrawing.Geometry>
                    <RectangleGeometry Rect="0.5,0.5,0.5,0.5" />
                  </GeometryDrawing.Geometry>
                </GeometryDrawing>
              </DrawingGroup>
            </DrawingBrush.Drawing>
          </DrawingBrush>
        </Rectangle.Fill>
      </Rectangle>

</Window>

   
    
    
    
  








Related examples in the same category

1.Image with ContextMenuImage with ContextMenu
2.Animated Clip ExamplesAnimated Clip Examples
3.Triangular Clip ExampleTriangular Clip Example
4.Elliptical Clip ExampleElliptical Clip Example
5.Using an Image as an Opacity MaskUsing an Image as an Opacity Mask
6.Display a Static ImageDisplay a Static Image
7.Set opacity for ImageSet opacity for Image
8.Set tooltip for ImageSet tooltip for Image
9.Using the Jpeg ImageUsing the Jpeg Image
10.Image elementImage element
11.Image as ResourceImage as Resource
12.Load image with BitmapImageLoad image with BitmapImage
13.Load image in your code and add to gridLoad image in your code and add to grid
14.Use CroppedBitmap in code
15.Transformed image exampleTransformed image example
16.Use Render Target BitmapUse Render Target Bitmap
17.Load image from a URI
18.Modify Image Pixels
19.Add Caption for an Image
20.Load image source from a hard code directoryLoad image source from a hard code directory
21.FormatConvertedBitmap DestinationFormat=Gray4FormatConvertedBitmap DestinationFormat=Gray4