/// <summary> /// Zeigt eine ItemControl in dieser Ansicht an und lädt dafür die DisplaySettings. /// </summary> /// <param name="control"></param> protected virtual void ShowControl(ItemControl control) { VisibleControls.Add(control); settingsLoader.LoadSettings(control.DisplaySettings); if (control.IsHidden) { control.Show(); } }