record mouse coordinates when mouse is clicked on inkcanvas
-
I want to get the cursor coordinates when the mouse is clicked in inkcanvas.here i used mouse event handler and i am trying to display cordinates in a textbox but somehow its not working.i have used the following code snippet.can someone please help
private void inkCanvas1_MouseLeftButtonDown(object sender, MouseButtonEventArgs e)
{
System.Windows.Point position = e.GetPosition(this);
this.textBox1.Text = position.X.ToString()+","+position.Y.ToString();
} -
I want to get the cursor coordinates when the mouse is clicked in inkcanvas.here i used mouse event handler and i am trying to display cordinates in a textbox but somehow its not working.i have used the following code snippet.can someone please help
private void inkCanvas1_MouseLeftButtonDown(object sender, MouseButtonEventArgs e)
{
System.Windows.Point position = e.GetPosition(this);
this.textBox1.Text = position.X.ToString()+","+position.Y.ToString();
}I am assuming its winforms but have a look a
Cursor.Position.X Further reading [System.Windows.Forms.Cursort.Position](http://msdn.microsoft.com/en-us/library/system.windows.forms.cursor.position.aspx)[[^](http://msdn.microsoft.com/en-us/library/system.windows.forms.cursor.position.aspx "New Window")] > Lobster Thermidor aux crevettes with a Mornay sauce, served in a Provençale manner with shallots and aubergines, garnished with truffle pate, brandy and a fried egg on top and Spam - **Monty Python Spam Sketch**
-
I am assuming its winforms but have a look a
Cursor.Position.X Further reading [System.Windows.Forms.Cursort.Position](http://msdn.microsoft.com/en-us/library/system.windows.forms.cursor.position.aspx)[[^](http://msdn.microsoft.com/en-us/library/system.windows.forms.cursor.position.aspx "New Window")] > Lobster Thermidor aux crevettes with a Mornay sauce, served in a Provençale manner with shallots and aubergines, garnished with truffle pate, brandy and a fried egg on top and Spam - **Monty Python Spam Sketch**
-
Have a try of this Stackoverflow WPF check mouse movement and cursor position within the left mouse button handler[^]
Lobster Thermidor aux crevettes with a Mornay sauce, served in a Provençale manner with shallots and aubergines, garnished with truffle pate, brandy and a fried egg on top and Spam - Monty Python Spam Sketch