gpt4 book ai didi

c# - 如何向我的 backgroundworker dowork 事件添加耗时的进度?

转载 作者:行者123 更新时间:2023-11-30 20:19:51 24 4
gpt4 key购买 nike

在 form1 之上

label5.Text = "00:00:00";

在dowork事件中

private void backgroundWorker1_DoWork(object sender, DoWorkEventArgs e)
{
DirectoryInfo diri = new DirectoryInfo(@"d:\c-sharp");
WalkDirectoryTree(diri);
}

WalkDirectoryTree 方法

int tfiles = 0;
int tdirs = 0;
void WalkDirectoryTree(System.IO.DirectoryInfo root)
{
System.IO.FileInfo[] files = null;
System.IO.DirectoryInfo[] subDirs = null;
string[] workerResult = new string[4];
try
{
files = root.GetFiles("*.cs");
tdirs ++;
workerResult[1] = root.FullName;
workerResult[3] = tdirs.ToString();
backgroundWorker1.ReportProgress(0,workerResult);
}
catch (UnauthorizedAccessException e)
{

}

catch (System.IO.DirectoryNotFoundException e)
{

}

if (files != null)
{
foreach (System.IO.FileInfo fi in files)
{
tfiles += files.Length;
if (files.Length > 0)
{
try
{
int Vara = File.ReadAllText(fi.FullName).Contains("Form1") ? 1 : 0;

if (Vara == 1)
{
workerResult[2] = files[0].FullName;
}
}
catch (FileNotFoundException e)
{

}
}
workerResult[0] = tfiles.ToString();
backgroundWorker1.ReportProgress(0, workerResult);
Thread.Sleep(10);
}
subDirs = root.GetDirectories();
foreach (System.IO.DirectoryInfo dirInfo in subDirs)
{
WalkDirectoryTree(dirInfo);
}
}
}

在构造函数中我启动了 backgroundworker

InitializeComponent();

label1.Visible = false;
label2.Visible = false;
label3.Visible = false;
label4.Visible = false;
label5.Text = "00:00:00";
pbt.Size = new Size(984, 23);
pbt.Location = new Point(12, 358);
this.Controls.Add(pbt);

backgroundWorker1.WorkerReportsProgress = true;
backgroundWorker1.RunWorkerAsync();

我想在后台工作人员启动后,在 dowork 事件报告中开始整个过程​​,向 label5 报告耗时。

首先我该怎么做?我应该使用计时器还是秒表?

最佳答案

由于您要测量进程所用的时间,根据定义,您应该使用 System.Diagnostics.Stopwatch 类。 MSDN defines it as :

Stopwatch Class

Provides a set of methods and properties that you can use to accurately measure elapsed time.

但是,您需要表单上的 System.Windows.Forms.Timer 控件,以便在工作进行时更新字段。计时器的 Interval 属性控制您希望更新字段的频率,但不要依赖它来确定要显示的实际值。相反,请使用秒表的 Elapsed 属性。

  1. Timer 拖放到您的表单上。

  2. 在您的 C# 代码中创建秒表类的实例:

    private readonly Stopwatch _stopwatch = new Stopwatch();
  3. 就在调用 RunWorkerAsync() 之前,调用 timer1.Start()

  4. 在后台工作人员的 DoWork 事件中:

    _stopwatch.Restart();
    // do your work
    _stopwatch.Stop();
  5. 在计时器的 Tick 事件中,使用秒表的 Elapsed 属性的值更新您的标签。随心所欲地格式化。

    lblElapsed.Text = _stopwatch.Elapsed.ToString(@"hh\:mm\:ss\.f");
  6. RunWorkerCompleted事件中,调用timer1.Stop()

I've posted a complete working example here .

关于c# - 如何向我的 backgroundworker dowork 事件添加耗时的进度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37840205/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com