/// <summary>
 /// Selects the provided file name.
 /// </summary>
 /// <param name="name">Name of file to select</param>
 /// <param name="updateTabControl">Indicates whether to update the tab control selection</param>
 public void SelectFile(string name, bool updateDesignControl = false)
 {
     if (updateDesignControl)
     {
         DisplayController.SelectDesignTab(name);
     }
     else
     {
         DesignController.SelectFile(name);
     }
 }