/// <summary>
 /// Loads into the MainWindow the display of the given type
 /// </summary>
 /// <param name="dType">The type of display that should be loaded</param>
 public void LoadDisplay(DisplayType dType)
 {
     DisplayController.PreviousDisplay = DisplayController.CurrentDisplay;
     DisplayController.CurrentDisplay  = DisplayController.GetDisplayOfType(dType);
     MainWindow.LoadDisplay(DisplayController.PreviousDisplay, DisplayController.CurrentDisplay);
     SetTheme();
 }