Drag and Drop component Frame to another Frame
I need to drag and drop a component from a frame1 to a frame2 in C#. But when this its dropped I need to know what开发者_运维知识库 is the position of the component in the new frame. thanks ...
Refer to the following to learn about dragging and dropping:
http://www.codeproject.com/KB/cs/dandtutorial.aspx
The X
& Y
properties values of the DragEventArgs of the OnDragDrop
event handler could be usefull in finding the position of your component.
精彩评论