private SpellChecker CreateDefaultSpellCheckerControl()
        {
            SpellChecker result = new SpellChecker();

            SpellCheckerHelper.RegisterDefaultDictionaries(result);
            result.Culture = new CultureInfo("en-US");
            return(result);
        }
        protected override SpellChecker CreateSpellCheckerControl()
        {
            SpellChecker result = new SpellChecker();

            SpellCheckerHelper.RegisterHunspellDictionaries(result);
            result.Culture = CultureInfo.InvariantCulture;
            return(result);
        }