i want to retive mouse position for my photo editing software

i am developing photo editing application in windows form application and c sharp languge any body can help me .....

3 Replies

VR Vijayalakshmi Roopkumar Syncfusion Team November 18, 2019 12:57 PM UTC

Hi Akshay,

Thank you for contacting Syncfusion Support.

Query : i want to retive mouse position for my photo editing software

We have checked the reported query that you want to retrieve the mouse position You can achieve it by using any mouse events of Navigation Drawer. For example, we have tried to get the x and y position of NavigationDrawer using Mouse Down event using the below code:

Code:

private void NavigationDrawer1_MouseDown(object sender, MouseEventArgs e)

{

MessageBox.Show("xposition" e.X, "y location" e.Y);

}

Sample: https://www.syncfusion.com/downloads/support/forum/149161/ze/NavigationDrawer_Example933633610

Please try this solution and let us know if it is helpful.

Regards

Vijayalakshmi V.R.




SK Sam Konstas Smith December 6, 2025 02:32 PM UTC

Hi Akshay,

Hope you are doing well!

Mouse position tracking plays a big role in building smooth editing controls, especially when applying brushes or selection tools in a Windows Forms project. Using Cursor.Position gives a reliable way to capture coordinates in real time, and pairing it with events like MouseMove helps you update actions without lag. Projects that handle high-detail adjustments often use similar logic, including enhancement tools found in apps like remini apk, where accurate touch or cursor tracking improves clarity and fine edits. A clean event structure with minimal overhead will give you sharper control and a better user experience.



AP Aravindhan P Syncfusion Team December 24, 2025 11:16 AM UTC

Hi Sam,

Thank you for sharing your suggestion. We’re glad to confirm that using Cursor.Position with MouseMove is indeed a reliable way to track mouse coordinates in real time. This approach will help ensure smoother editing interactions and precise control in the photo editing application.


Regards,

Aravindhan Periyasamy



Loader.
Up arrow icon