gpt4 book ai didi

c# - 找不到命名空间名称 'DispatcherTimer'

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

我正在尝试使用调度计时器,但我的 C# 应用找不到命名空间。这是错误:

The type or namespace name 'DispatcherTimer' could not be found (are you missing a using directive or an assembly reference?)

这是我正在使用的:

using System;
using System.Collections.Generic;
using System.Data;
using System.Data.SqlClient;
using System.Globalization;
using System.Text;
using System.Threading;
using System.Timers;
using System.Windows.Forms;

代码如下:

DispatcherTimer timer1 = new DispatcherTimer();

最佳答案

DispatcherTimer不是命名空间 - 它是 System.Windows.Threading 中的一个类命名空间和 WindowsBase 程序集。所以你需要

using System.Windows.Threading;

一般来说,搜索缺失的类型名称和“MSDN”就足以找到类型。

关于c# - 找不到命名空间名称 'DispatcherTimer',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15907349/

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