private void AdapterSyncFolderWithVKAsyncOnProgress(object sender, ProgressArgs e)
 {
     Status = SoundHandler.CountLoadedFiles + "/" + this.Sounds.Count;
     this.ProgressPercentage = (e.ProgressPercentage * 100.0);
 }
 private void AdapterSyncFolderWithVKAsyncDone(object sender, ProgressArgs e)
 {
     Status = SoundHandler.CountLoadedFiles + "/" + this.Sounds.Count;
     this.ProgressPercentage = 100;
     IOHandler.OpenPath(Properties.Settings.Default.DownloadFolderPath);
     IsSyncing = false;
 }