本文介绍了选择用户控件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我在面板上动态创建了许多用户控件.现在我要选择用户控件并实现剪切,复制,粘贴功能..
所以我的问题是如何在垂直区域中选择一组用户控件.
I many usercontrol created dynamically on a panel. Now I want to select usercontrol and implement cut, copy, paste feature..
so my problem is how to select a group of usercontrol In a perticular region.
推荐答案
if (Rectangle.Intersect(myDrawnRectangle, controlBoundsRectangle) != Rectangle.Empty)
{
// part of the control is in your rectangle
// do what you want with it.
}
祝你好运! :)
Good luck! :)
这篇关于选择用户控件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!