Ellipse MouseMove event : Ellipse « Windows Presentation Foundation « C# / C Sharp






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.cs
using System;
using System.Collections.Generic;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Shapes;
using System.Diagnostics;


namespace WpfApplication1
{
    public partial class Window1 : System.Windows.Window
    {
        public Window1()
        {
            InitializeComponent();

           myEllipse.MouseMove += myEllipse_MouseMove;

        }
        void myEllipse_MouseMove(object sender, MouseEventArgs e)
        {
            Debug.WriteLine(Mouse.GetPosition(myEllipse));
        }


    }
}

   
    
  








Related examples in the same category

1.Ellipse Fill with DrawingBrushEllipse Fill with DrawingBrush
2.Rectangle and EllipseRectangle and Ellipse
3.Ellipse With Styled LinesEllipse With Styled Lines
4.Draws an oval with a blue interiorDraws an oval with a blue interior
5.Draws an oval with a blue interior and a black outlineDraws an oval with a blue interior and a black outline
6.Draws a circle with a blue interiorDraws a circle with a blue interior
7.Draws a circle with a blue interior and a black outlineDraws a circle with a blue interior and a black outline
8.An ellipse with a radial fillAn ellipse with a radial fill
9.An ellipse that has been scaled by 20%An ellipse that has been scaled by 20%
10.The resulting ellipse's outline is painted with an imageThe resulting ellipse's outline is painted with an image
11.Fill an Ellipse with Cyan and Draw the border with Black colorFill an Ellipse with Cyan and Draw the border with Black color
12.Ellipse Mouse Down eventEllipse Mouse Down event
13.Ellipse Mouse up eventEllipse Mouse up event