在以下行我收到错误:“'Forms' 不是 'Windows' 的成员”
System.Windows.Forms.Application.DoEvents()
我正在导入 System.Windows,但无法导入 System.Windows.Forms(“不包含任何公共成员或找不到”)
我有对 System.Windows 以及 System.Windows.Forms 的引用,如图所示
我正在使用 Visual Studio Express 2012 for Web
在以下行我收到错误:“'Forms' 不是 'Windows' 的成员”
System.Windows.Forms.Application.DoEvents()
我正在导入 System.Windows,但无法导入 System.Windows.Forms(“不包含任何公共成员或找不到”)
我有对 System.Windows 以及 System.Windows.Forms 的引用,如图所示
我正在使用 Visual Studio Express 2012 for Web
您正在使用“用于 Web”的 VSE2k12。
我不相信这会包括明确标记为“充分利用 Microsoft Windows 操作系统中可用的丰富用户界面功能的基于 Windows 的应用程序”的内容 :-)
您可能需要考虑获得更广泛的开发环境版本。
您正在使用Visual Studio Express for Web。
如果要开发 Windows 窗体应用程序,则需要Visual Studio Express for Windows Desktop
这将允许您使用DoEvents
,尽管不鼓励使用它