Beispiel #1
0
 private void ListingItems(string directoryPath)
 {
     if (!File.Exists(directoryPath + "/" + BOUYOMI_EXE))
     {
         return;
     }
     if (Directory.Exists(directoryPath + "/" + SOUND_DIR))
     {
         List <string> seFileList = GetSoundFilePaths(directoryPath + "/" + SOUND_DIR);
     }
     string[] dicLines = ReadDictionary(directoryPath + "/" + DICTIONARY_NAME);
     foreach (string dicLine in dicLines)
     {
         SoundSettingData soundSetting = new SoundSettingData();
         soundSetting.SetSettingString(dicLine);
         listView.Items.Add(soundSetting);
     }
 }