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

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