drag and drop graph in .NET?

  • Thread starter Thread starter guo.an.hong
  • Start date Start date
G

guo.an.hong

Hi,

My current project requires drag and drop graph: for example, I have a
line graph, I need to drag a certain point of the line and change its
curve. (it is straight line so it will change in zig-zag way).

is there any mouse interaction function in .NET?

Thanks a lot
 
Is there any chance that you are looking for the:

Control.MouseMove
Control.MouseUp
Control.MouseDown

events?

Form1 form = new Form1();
form.MouseMove += etc.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Back
Top