5

我正在尝试构建一个简单的秒表 WPF 应用程序。

这是我的代码:

using System;
using System.Collections.Generic;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Threading.Tasks;
using System.Windows;
using System.Diagnostics;

namespace WpfApplication1
{
/// <summary>
/// Interaction logic for App.xaml
/// </summary>
public partial class App : Application
{
    public stopWatch = new Stopwatch();

    private void startTimer()
    {
        stopWatch.Start();
        Dispatcher.BeginInvoke(DispatcherPriority.Render, new ThreadStart(ShowElapsedTime));
    }
    void ShowElapsedTime()
    {
        TimeSpan ts = stopWatch.Elapsed;
        lblTime.Text = String.Format("{0:00}:{1:00}.{2:00}", ts.Minutes, ts.Seconds, ts.Milliseconds / 10);
    }
}
}

和这里

在此处输入图像描述

我正在使用 System.Diagnostics 但由于某种原因我无法访问秒表

而且我在此对话中找不到 System.Diagnostics:

在此处输入图像描述

为什么我不能使用 System.Diagnostics.Stopwatch 以及为什么 System.Diagnostics 没有出现在引用对话框中?

4

2 回答 2

8

你需要:

Stopwatch stopWatch = new Stopwatch();

你只有 ( public stopWatch = new StopWatch) 这不是C#对象的创建方式。

stopWatch是实例,StopWatch是类定义。

于 2013-08-30T13:56:35.387 回答
0

I had a similar problem and turns out I'd typed "StopWatch" instead of "Stopwatch". I hate case sensitivity!

于 2019-08-02T15:55:01.677 回答