有一个自定义控件A
A a=new A();
A b=new A();
panel.controls.add(a);
panel.controls.add(b);
a和b是上下排列的,
现在要试实现拖拽ab,是ab改变排列
用控件上的mouseMove,示例链接:
http://blog.csdn.net/a1061747415/article/details/47656307
还有这个:https://www.codeproject.com/Articles/13216/Broadcasting-Events-through-a-Control-Hierarchy
@金琥: 谢谢你啦,会用啦