Fill Rectangle with Resource : Rectangle « Windows Presentation Foundation « VB.Net

Home
VB.Net
1.2D
2.Application
3.Class
4.Data Structure
5.Data Types
6.Database ADO.net
7.Date Time
8.Development
9.Event
10.File Directory
11.Generics
12.GUI
13.Internationalization I18N
14.Language Basics
15.LINQ
16.Network Remote
17.Reflection
18.Security
19.Thread
20.Windows Presentation Foundation
21.Windows System
22.XML
23.XML LINQ
VB.Net Tutorial
VB.Net by API
VB.Net » Windows Presentation Foundation » RectangleScreenshots 
Fill Rectangle with Resource
Fill Rectangle with Resource
        

<Window x:Class="BrushTransformExample"
  xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  Title="Brush Transforms" Height="475" Width="510">
  <Window.Resources>
    <DrawingBrush x:Key="MyDrawingBrush">
      <DrawingBrush.Drawing>
        <DrawingGroup>
          <DrawingGroup.Children>
            <GeometryDrawing Geometry="M10,30 L20,25 20,35Z" Brush="Blue" />
            <GeometryDrawing Geometry="M30,60 L25,40 35,40Z" Brush="Blue" />
            <GeometryDrawing Geometry="M20,120 L30,20 30,30 20,30Z" Brush="Red" />
            <GeometryDrawing Geometry="M30,20 L40,120 40,30 130,30Z" Brush="Yellow" />
            <GeometryDrawing>
              <GeometryDrawing.Geometry>
                <EllipseGeometry RadiusX="30" RadiusY="30" Center="30,30" />
              </GeometryDrawing.Geometry>
              <GeometryDrawing.Pen>
                <Pen Thickness="5" Brush="Green" />
              </GeometryDrawing.Pen>
            </GeometryDrawing>
          </DrawingGroup.Children>
        </DrawingGroup>
      </DrawingBrush.Drawing>
    </DrawingBrush>
  </Window.Resources>
  <Grid>

    <Rectangle x:Name="MyDrawingRectangle" Width="120" Height="60"
      Margin="5" Grid.Column="1" Grid.Row="5"
      Fill="{StaticResource MyDrawingBrush}" />

  </Grid>
</Window>

   
    
    
    
    
    
    
    
  
Related examples in the same category
1.Use Rectangle, TextBlock and Button as the VisualBrushUse Rectangle, TextBlock and Button as the VisualBrush
2.Set Stroke, StrokeThickness for RectangleSet Stroke, StrokeThickness for Rectangle
3.Fill Rectangles with static ImageBrush resourcesFill Rectangles with static ImageBrush resources
4.Fill Rectangle with BisqueFill Rectangle with Bisque
5.Rotating rectanglesRotating rectangles
6.Rounded rectangleRounded rectangle
7.Rectangle with explicit size and positionRectangle with explicit size and position
8.Rectangles with size and position controlled by parentRectangles with size and position controlled by parent
9.Using ImageBrush to fill a RectangleUsing ImageBrush to fill a Rectangle
10.Draws a 100 by 50 rectangle with a solid blue fillDraws a 100 by 50 rectangle with a solid blue fill
11.Draws a 100 by 50 rectangle with a solid blue fill, a black outline, and rounded cornersDraws a 100 by 50 rectangle with a solid blue fill, a black outline, and rounded corners
12.Rectangle StrokeThicknessRectangle StrokeThickness
13.Rectangle.StrokeRectangle.Stroke
14.Use Customized LinearGradientBrush to paint a RectangleUse Customized LinearGradientBrush to paint a Rectangle
15.Set RadiusX and RadiuxY for RectangleSet RadiusX and RadiuxY for Rectangle
16.Fill Rectangle with LinearGradientBrush static resourceFill Rectangle with LinearGradientBrush static resource
17.Using a DrawingBrush resource to draw RectangleUsing a DrawingBrush resource to draw Rectangle
18.A rectangle with a linear fillA rectangle with a linear fill
19.A large rectangle built using an image brushA large rectangle built using an image brush
20.Add Rectangle.Triggers collection into a styleAdd Rectangle.Triggers collection into a style
21.DashArray StrokeDashArray Stroke
22.Dash patternsDash patterns
23.Put Rectangle into TextBlockPut Rectangle into TextBlock
24.Rectangle mouse down eventRectangle mouse down event
25.Rectangle mouse down previewRectangle mouse down preview
26.Change MaxHeightChange MaxHeight
w___w_w_._j_a___v___a2s___._c___o__m_ | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.