我是 WPF 的新手。现在,我必须在主窗口的新窗口中创建一个进度条,但我不知道如何让它在新窗口中运行进度。
下面是我在 mainwindow.xaml.cs 中的声明:
progressWnd = new ProgressDownloadWindow(cnt_s);
progressWnd.Owner = this;
progressWnd.ShowDialog();
foreach (var dl in this.dldatagrid.SelectedItems)
{
string fileName = dl.path;
this.Download(fileName, false, date);
}