상속: 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;
 }