Paints a rectangle with a grid pattern : Rectangle « Windows Presentation Foundation « C# / CSharp Tutorial






<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="1" Grid.Column="1">
        <Rectangle.Fill>
          <DrawingBrush Viewport="0,0,10,10" ViewportUnits="Absolute" TileMode="Tile">
            <DrawingBrush.Drawing>
              <DrawingGroup>
                <GeometryDrawing Brush="White">
                  <GeometryDrawing.Geometry>
                    <RectangleGeometry Rect="0,0,1,1" />
                  </GeometryDrawing.Geometry>
                </GeometryDrawing>
                <GeometryDrawing Brush="Blue"
                  Geometry="M 0,0 L 0,1 0.1,1 0.1,0.1 1,0.1 1,0 Z" />
              </DrawingGroup>
            </DrawingBrush.Drawing>
          </DrawingBrush>
        </Rectangle.Fill>
      </Rectangle>

</Window>
WPF Paints A Rectangle With A Grid Pattern








24.91.Rectangle
24.91.1.A rectangle with curved cornersA rectangle with curved corners
24.91.2.Paints a rectangle with a grid pattern with VisualBrushPaints a rectangle with a grid pattern with VisualBrush
24.91.3.Paints a rectangle with a checkered pattern.Paints a rectangle with a checkered pattern.
24.91.4.Paints a rectangle with a grid patternPaints a rectangle with a grid pattern
24.91.5.Two of the drawing's rectangles are painted with an ImageBrush, creating a checkered pattern of imagesTwo of the drawing's rectangles are painted with an ImageBrush, creating a checkered pattern of images
24.91.6.Fill rectangle with Rectangle.Fill tag and LinearGradientBrushFill rectangle with Rectangle.Fill tag and LinearGradientBrush
24.91.7.Pulsating RectanglePulsating Rectangle
24.91.8.Rectangle Geometry DemoRectangle Geometry Demo
24.91.9.Rounded Rectangle Corner radius of 5Rounded Rectangle Corner radius of 5
24.91.10.Rounded Rectangle Corner radius of 10 (X) and 25 (Y)Rounded Rectangle Corner radius of 10 (X) and 25 (Y)
24.91.11.Rounded Rectangle Corner radius of 100 (X) and 60 (Y)Rounded Rectangle Corner radius of 100 (X) and 60 (Y)
24.91.12.A rectangle with a rotate transformationA rectangle with a rotate transformation
24.91.13.Trigger animation with Rectangle.MouseEnterTrigger animation with Rectangle.MouseEnter
24.91.14.Trigger animation with Rectangle.MouseLeaveTrigger animation with Rectangle.MouseLeave
24.91.15.Rectangle.Fill with ImageBrushRectangle.Fill with ImageBrush
24.91.16.Adding Rectangle to StackPanelAdding Rectangle to StackPanel
24.91.17.Create rectangles in WPF.Create rectangles in WPF.
24.91.18.Rectangle mouse down eventRectangle mouse down event
24.91.19.Rectangle mouse down previewRectangle mouse down preview
24.91.20.Change HeightChange Height
24.91.21.Change MinHeightChange MinHeight
24.91.22.Change MaxHeightChange MaxHeight