计算webBrowser.DocumentCompleted中的时间

时间:2012-02-06 16:13:52

标签: c# .net winforms webbrowser-control

我们如何计算时间?我的意思是当按下它时它应该开始(时间)和完成加载页面而不是停止。当你在谷歌搜索时,它会显示你需要多长时间。

/*
foreach (string bug in bugs)
{
    webBrowser.Navigate(new Uri(url));
    webBrowser.Document.GetElementById("product").SetAttribute("value", product);
    webBrowser.Document.GetElementById("version").SetAttribute("value", version);
    webBrowser.Document.GetElementById("commit").InvokeMember("click");

    //Need code to wait for page to load before continuing.
} */ 

1 个答案:

答案 0 :(得分:0)

我认为您可以使用StopWatch classe来测量时间,请看以下示例

using System;
using System.Diagnostics;
using System.Threading;
class Program
{
 static void Main(string[] args)
 {
    Stopwatch stopWatch = new Stopwatch();
    stopWatch.Start();
    Thread.Sleep(10000);// here your code
    stopWatch.Stop();
    // Get the elapsed time as a TimeSpan value.
    TimeSpan ts = stopWatch.Elapsed;

    // Format and display the TimeSpan value.
    string elapsedTime = String.Format("{0:00}:{1:00}:{2:00}.{3:00}",
        ts.Hours, ts.Minutes, ts.Seconds,
        ts.Milliseconds / 10);
    Console.WriteLine("RunTime " + elapsedTime);
 }
}