public void Dispose()
 {
     if (control != null)
     {
         control.Dispose();
         control = null;
     }
 }
 public ThemedDockingGuidesTemplate()
 {
     control = new DockingGuidesControl();
     control.LoadElementTree();
 }