Fill Ellipse with custom ImageBrush - TileMode Tile : Ellipse « 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.Development
8.Event
9.File Directory
10.Generics
11.GUI
12.Language Basics
13.LINQ
14.Network Remote
15.Security
16.Thread
17.Windows Presentation Foundation
18.Windows System
19.XML
20.XML LINQ
VB.Net Tutorial
VB.Net by API
VB.Net » Windows Presentation Foundation » EllipseScreenshots 
Fill Ellipse with custom ImageBrush - TileMode Tile
Fill Ellipse with custom ImageBrush - TileMode Tile
       

<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="380">
    <StackPanel Orientation="Horizontal">
        <Canvas Margin="5">
            <Ellipse Canvas.Top="130" Canvas.Left="30" Height="100" Width="230">
                <Ellipse.Fill>
                    <ImageBrush ImageSource="c:\image.jpg" Stretch="Fill" TileMode="Tile" Viewport="0,0,0.25,0.5" />
                </Ellipse.Fill>
            </Ellipse>
        </Canvas>
    </StackPanel>
</Window>

   
    
    
    
    
    
    
  
Related examples in the same category
1.Stretch="Uniform"Stretch=
2.Stretch="UniformToFill"Stretch=
3.Start animation after clicking the EllipseStart animation after clicking the Ellipse
4.Set Stroke, StrokeThickness, Height and Width for EllipseSet Stroke, StrokeThickness, Height and Width for Ellipse
5.Ellipse with OuterGlowBitmapEffectEllipse with OuterGlowBitmapEffect
6.Ellipse with BlurBitmapEffectEllipse with BlurBitmapEffect
7.EllipseGeometry and GeometryDrawingEllipseGeometry and GeometryDrawing
8.Ellipse GeometryEllipse Geometry
9.Draws several Ellipse elements within a CanvasDraws several Ellipse elements within a Canvas
10.Ellipse Shape and StrokeEllipse Shape and Stroke
11.Ellipse with DropShadowBitmapEffectEllipse with DropShadowBitmapEffect
12.Using Image as Ellipse fillUsing Image as Ellipse fill
13.Draws an oval with a light green interior and a red outlineDraws an oval with a light green interior and a red outline
14.Sets the shape's Fill property with an ImageBrush. The resulting ellipse's interior is painted with an imageSets the shape's Fill property with an ImageBrush. The resulting ellipse's interior is painted with an image
15.Creates an ellipse shape using two ArcSegment objectsCreates an ellipse shape using two ArcSegment objects
16.Use Ellipse event delegateUse Ellipse event delegate
17.Use Ellipse.AddHandler to add handler to Ellipse objectsUse Ellipse.AddHandler to add handler to Ellipse objects
18.Ellipse ShapeEllipse Shape
19.Ellipse depends on Canvas layout and positionEllipse depends on Canvas layout and position
20.An animated Ellipse traces the outline of rendered text by using the path geometry of the text.An animated Ellipse traces the outline of rendered text by using the path geometry of the text.
21.Ellipse Mouse Down eventEllipse Mouse Down event
22.Capture Mouse EllipseCapture Mouse Ellipse
23.Ellipse MouseMove eventEllipse MouseMove event
24.Ellipse Mouse up eventEllipse Mouse up event
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.