Ellipse with DropShadowBitmapEffect : Ellipse « Windows Presentation Foundation « VB.Net






Ellipse with DropShadowBitmapEffect

Ellipse with DropShadowBitmapEffect
       

<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="230" Width="500">
    <Canvas Margin="10">
        <Ellipse Canvas.Right="20" Canvas.Top="5"
            Height="150" Width="150" Stroke="Black" StrokeThickness="1">
            <Ellipse.BitmapEffect>
                <DropShadowBitmapEffect Color="Black" Direction="-50" 
                                        ShadowDepth="40" Softness=".7" />
            </Ellipse.BitmapEffect>
        </Ellipse>

    </Canvas>
</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.Fill Ellipse with custom ImageBrush - TileMode TileFill Ellipse with custom ImageBrush - TileMode Tile
7.Ellipse with BlurBitmapEffectEllipse with BlurBitmapEffect
8.EllipseGeometry and GeometryDrawingEllipseGeometry and GeometryDrawing
9.Ellipse GeometryEllipse Geometry
10.Draws several Ellipse elements within a CanvasDraws several Ellipse elements within a Canvas
11.Ellipse Shape and StrokeEllipse Shape and Stroke
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