예제 #1
0
        private void buttonOpenDictFolder_Click(object sender, EventArgs e)
        {
            var folderPath = SpellChecker.FindDictionaryPath();

            if (String.IsNullOrEmpty(folderPath) || !new DirectoryInfo(folderPath).Exists)
            {
                return;
            }

            System.Diagnostics.Process.Start(folderPath);
        }