Inheritance: IDisposable
Exemplo n.º 1
0
        public void Remove(Control c)
        {

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