找不到对System.Diagnostics.Stopwatch的引用

时间:2013-08-30 13:54:38

标签: c# .net wpf visual-studio-2012 stopwatch

我正在尝试构建一个简单的秒表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);
    }
}
}

在这里

enter image description here

我正在使用System.Diagnostics但由于某些原因我无法访问Stopwatch

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

enter image description here

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

2 个答案:

答案 0 :(得分:8)

你需要:

Stopwatch stopWatch = new Stopwatch();

你只有{public stopWatch = new StopWatch),而不是C#个对象的创建方式。

stopWatch是实例,StopWatch是类定义。

答案 1 :(得分:0)

我遇到了类似的问题,结果我键入的是“ StopWatch”而不是“ Stopwatch”。我讨厌区分大小写!