Inheritance: IDisposable
示例#1
0
        public void Remove(Control c)
        {

        }
示例#2
0
 internal ControlCollection(Control owner)
 {
     this.owner = owner;
 }
示例#3
0
 public void Add(Control c)
 {
 }
示例#4
0
 public static Control CreateFromNativeWindowHwnd(IntPtr hwnd)
 {
     Control newControl = new Control(hwnd);             
     return newControl;
 }