Ellipse Mouse up event : Ellipse « Windows Presentation Foundation « VB.Net






Ellipse Mouse up event

Ellipse Mouse up event
     

<Window x:Class="WpfApplication1.Window1"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="MouseInput" Height="300" Width="300">
    <Grid>
      <Ellipse Fill="Blue" x:Name="myEllipse" />
    </Grid>
</Window>


//File:Window.xaml.vb
Imports System
Imports System.Collections.Generic
Imports System.Text
Imports System.Windows
Imports System.Windows.Controls
Imports System.Windows.Data
Imports System.Windows.Documents
Imports System.Windows.Input
Imports System.Windows.Media
Imports System.Windows.Media.Imaging
Imports System.Windows.Shapes
Imports System.Diagnostics


Namespace WpfApplication1
  Public Partial Class Window1
    Inherits System.Windows.Window
    Public Sub New()
      InitializeComponent()


      AddHandler myEllipse.MouseUp, AddressOf myEllipse_MouseUp
    End Sub

    Private Sub myEllipse_MouseUp(sender As Object, e As MouseButtonEventArgs)
      Mouse.Capture(Nothing)
    End Sub


  End Class
End Namespace

   
    
    
    
    
  








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.Ellipse with DropShadowBitmapEffectEllipse with DropShadowBitmapEffect
13.Using Image as Ellipse fillUsing Image as Ellipse fill
14.Draws an oval with a light green interior and a red outlineDraws an oval with a light green interior and a red outline
15.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
16.Creates an ellipse shape using two ArcSegment objectsCreates an ellipse shape using two ArcSegment objects
17.Use Ellipse event delegateUse Ellipse event delegate
18.Use Ellipse.AddHandler to add handler to Ellipse objectsUse Ellipse.AddHandler to add handler to Ellipse objects
19.Ellipse ShapeEllipse Shape
20.Ellipse depends on Canvas layout and positionEllipse depends on Canvas layout and position
21.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.
22.Ellipse Mouse Down eventEllipse Mouse Down event
23.Capture Mouse EllipseCapture Mouse Ellipse
24.Ellipse MouseMove eventEllipse MouseMove event