111,092
社区成员




public class ImageListEx : Component
{
public Size ImageSize
{
get { return imageSize; }
set
{
imageSize = value;
//这里去 获取哪些控件调用了本控件
}
}
}
public partial class LabImageControl : UserControl
{
private ImageListEx labImagelistEx;
public ImageListEx LabImagelistEx
{
get { return labImagelistEx; }
set
{
labImagelistEx = value;
}
}
}