diff --git a/MPF.UI/Windows/DiscInformationWindow.xaml.cs b/MPF.UI/Windows/DiscInformationWindow.xaml.cs index e09e3e40..ea133505 100644 --- a/MPF.UI/Windows/DiscInformationWindow.xaml.cs +++ b/MPF.UI/Windows/DiscInformationWindow.xaml.cs @@ -23,29 +23,12 @@ namespace MPF.UI.Windows #endregion #region Additional Info - - private UserInput? CommentsTextBox => ItemHelper.FindChild(this, "CommentsTextBox"); + private UserInput? DiscIDTextBox => ItemHelper.FindChild(this, "DiscIDTextBox"); private UserInput? DiscKeyTextBox => ItemHelper.FindChild(this, "DiscKeyTextBox"); #endregion - #region Contents - - private UserInput? ExtrasTextBox => ItemHelper.FindChild(this, "ExtrasTextBox"); - private UserInput? GameFootageTextBox => ItemHelper.FindChild(this, "GameFootageTextBox"); - private UserInput? GamesTextBox => ItemHelper.FindChild(this, "GamesTextBox"); - private UserInput? GeneralContent => ItemHelper.FindChild(this, "GeneralContent"); - private UserInput? NetYarozeGamesTextBox => ItemHelper.FindChild(this, "NetYarozeGamesTextBox"); - private UserInput? PatchesTextBox => ItemHelper.FindChild(this, "PatchesTextBox"); - private UserInput? PlayableDemosTextBox => ItemHelper.FindChild(this, "PlayableDemosTextBox"); - private UserInput? RollingDemosTextBox => ItemHelper.FindChild(this, "RollingDemosTextBox"); - private UserInput? SavegamesTextBox => ItemHelper.FindChild(this, "SavegamesTextBox"); - private UserInput? TechDemosTextBox => ItemHelper.FindChild(this, "TechDemosTextBox"); - private UserInput? VideosTextBox => ItemHelper.FindChild(this, "VideosTextBox"); - - #endregion - #region Ringcodes private GroupBox? L0Info => ItemHelper.FindChild(this, "L0Info"); @@ -185,27 +168,11 @@ namespace MPF.UI.Windows } /// - /// Enable tab entry on supported fields + /// Enable tab entry on ringcode fields /// /// TODO: See if these can be done by binding private void EnableTabsInInputFields() { - // Additional Information - CommentsTextBox!.Tab = true; - - // Contents - GeneralContent!.Tab = true; - GamesTextBox!.Tab = true; - NetYarozeGamesTextBox!.Tab = true; - PlayableDemosTextBox!.Tab = true; - RollingDemosTextBox!.Tab = true; - TechDemosTextBox!.Tab = true; - GameFootageTextBox!.Tab = true; - VideosTextBox!.Tab = true; - PatchesTextBox!.Tab = true; - SavegamesTextBox!.Tab = true; - ExtrasTextBox!.Tab = true; - // L0 L0MasteringRing!.Tab = true; L0MasteringSID!.Tab = true;