How to move circle with mouse in delphi?
circle:Shape;
|
Be sure to convert the Mouse X,Y client coordinates that you get from MouseMove on your Control to the Parent's client using The following procedure moves the center of a Control to the point (X,Y) in it's client coordinates:
Now to move your TShape when when it is clicked, you have to provide the following MouseMove event handler:
And to test it, drop a button in your Form with this code:
Now, that's a minimalist example, but it should get you started. |
|||||
|
|
If you go to my webpage, you can Find some samples (all with code included) thah can help you about this question.
"Sample for visual work with figures and plans"; Use two components for manage, move, resize and save elements visually; One for selection, movement, resize,... (TSeleccOnRuntime) and other (TSaveComps) for save the state (position, size,...).
Select Shapes Visually; Sample for explain two modes for select visually shapes and images. Create, move and resive controls on Runtime (like IDE); Another sample of TSeleccOnRuntime component. Simulate and IDE.
And finally another sample for Create/destroy components in runtime and move with mouse; This sample is made without components. All code at the sample.
I hope that is usefull for you. P.D: Excuse for my bad english. |
|||||
|
|
Well, I don't have too much to go on, but having something move to follow the mouse generally works like this: Have a "IsFollowingMouse" flag somewhere. Turn it on when you should be following the mouse. On the form's MouseMove event, do something like this:
The offsets are variables you use that gives the difference between the location of the mouse pointer and the top-left corner of the TShape. |
|||
|
|
TShapecomponent, or it is something that you're drawing for yourself on a larger canvas object? – Rob Kennedy Mar 4 '10 at 22:08