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.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 » 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
w__w_w__.___j__a___v_a2_s__.___com__ | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.