我正在尝试构建一个简单的秒表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但由于某些原因我无法访问Stopwatch
而且我在这个对话中找不到System.Diagnostics:
为什么我不能使用System.Diagnostics.Stopwatch?为什么System.Diagnostics没有出现在引用对话框中?
答案 0 :(得分:8)
你需要:
Stopwatch stopWatch = new Stopwatch();
你只有{public stopWatch = new StopWatch
),而不是C#
个对象的创建方式。
stopWatch
是实例,StopWatch
是类定义。
答案 1 :(得分:0)
我遇到了类似的问题,结果我键入的是“ StopWatch”而不是“ Stopwatch”。我讨厌区分大小写!