Ellipse MouseMove event : 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 
Ellipse MouseMove event
Ellipse MouseMove 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.MouseMove, AddressOf myEllipse_MouseMove
    End Sub
    Private Sub myEllipse_MouseMove(sender As Object, e As MouseEventArgs)
      Debug.WriteLine(Mouse.GetPosition(myEllipse))
    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 Mouse up eventEllipse Mouse up event
w__ww_._j__a___v__a_2_s.c___o_m___ | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.