private void ShowSetting(string file = null, string key = null)
        {
            if (SettingWindow == null)
            {
                SettingWindow = new SettingWindow(this);
            }

            SettingWindow.ShowShortcutAddition(file: file, key: key);

            SettingWindow.Visibility = Visibility.Visible;
        }