private void Test_OpenStarDict()
        {
            var openFileDialog = new System.Windows.Forms.FolderBrowserDialog();

            if (openFileDialog.ShowDialog() == System.Windows.Forms.DialogResult.OK)
            {
                m_dict = new StarDict.StarDict(openFileDialog.SelectedPath);
            }
        }
 private void Test_OpenStarDict()
 {
     var openFileDialog = new System.Windows.Forms.FolderBrowserDialog();
     if (openFileDialog.ShowDialog() == System.Windows.Forms.DialogResult.OK)
         m_dict = new StarDict.StarDict(openFileDialog.SelectedPath);
 }