public NightcoreWindow(NightcoreWindowEnumeration setting)
        {
            InitializeComponent();

            Setting = setting;


            switch (Setting)
            {
            case NightcoreWindowEnumeration.Single:
                Title += "Single";
                InputTextBox.SetValue(TextBoxHelper.WatermarkProperty,
                                      (InputTextBox.GetValue(TextBoxHelper.WatermarkProperty) as string) + " (File)");
                OutputTextBox.SetValue(TextBoxHelper.WatermarkProperty,
                                       (OutputTextBox.GetValue(TextBoxHelper.WatermarkProperty) as string) + " (File)");
                break;

            case NightcoreWindowEnumeration.Multiple:
                Title += "Multiple";
                InputTextBox.SetValue(TextBoxHelper.WatermarkProperty,
                                      (InputTextBox.GetValue(TextBoxHelper.WatermarkProperty) as string) + " (Directory)");
                OutputTextBox.SetValue(TextBoxHelper.WatermarkProperty,
                                       (OutputTextBox.GetValue(TextBoxHelper.WatermarkProperty) as string) + " (Directory)");
                break;
            }

            InputTextBox.SetValue(TextBoxHelper.WatermarkProperty,
                                  (InputTextBox.GetValue(TextBoxHelper.WatermarkProperty) as string) + "...");
            OutputTextBox.SetValue(TextBoxHelper.WatermarkProperty,
                                   (OutputTextBox.GetValue(TextBoxHelper.WatermarkProperty) as string) + "...");
        }