private void SearchBox_VideoSelected(string title, object id, string type) { DownloadOption downloadOption = ShowDownloadOption(); switch (type) { case "aid": downloadOption.ShowParts(title, (uint)(long)id, false); break; case "bvid": downloadOption.ShowPartsBv(title, (string)id); break; } }
private void FavList_VideoSelected(string title, long id) { DownloadOption downloadOption = ShowDownloadOption(); downloadOption.ShowParts(title, (uint)id, false); }
private void SearchBox_SeasonSelected(string title, long id) { DownloadOption downloadOption = ShowDownloadOption(); downloadOption.ShowParts(title, (uint)id, true); }
private void SearchBox_SeasonSelected(string title, object id, string type) { DownloadOption downloadOption = ShowDownloadOption(); downloadOption.ShowParts(title, (uint)(long)id, true); }