Beispiel #1
0
 public void Close()
 {
     if (control != null)
     {
         control.Dispose();
     }
     control = null;
 }
Beispiel #2
0
 private void Attach(PowerPCSettingsControl control)
 {
     control.Load += Control_Load;
 }
Beispiel #3
0
 public object CreateControl()
 {
     this.control = new PowerPCSettingsControl();
     this.Attach(control);
     return(control);
 }