111,094
社区成员




public class MyCtl : UserControl
{
private GroupBox _Frame = null;
public GroupBox Frame {
get { return _Frame; }
set {
_Frame = value;
this.Parent = _Frame;
_Frame.Controls.Add(this);
this.Location = new Point(10, 20);
}
}
}