private void tagFishEye_FishEyeItemSelected(FloatControlLib.FishEyeItem item)
 {
     ReplaceCurrentSketching((TemplatePack)item.UserData);
 }
 /// <summary>
 /// Change the docked window to display when the selection of the tab control is changed
 /// </summary>
 /// <param name="selectedItem"></param>
 private void tabDock_SelectionChange(FloatControlLib.TabItem selectedItem)
 {
     if (tabDock.SelectedTab != null)
     {
         ShowDockWindow((DockItem)tabDock.SelectedTab.Tag);
     }
     else
     {
         this.pbIcon.Image	= null;
         this.lbTitle.Text	= "";
     }
 }