c#,'Forms'在名字空间system.windows中不存在
我刚刚开始研究c#,并从一些论坛上得到了一些代码示例。
此代码正在使用using system.windows.forms
的命名空间,我得到一个错误: Forms does not exist in the namespace system.windows
。 此外,我得到一些错误相关的未定义的函数senddown
& sendup
,我相信是在名称空间。
我正在使用visual studio 10(与.net框架工作4.0)。 任何想法如何解决这个错误?
谢谢。
展开解决scheme树中的项目, right click
References
, Add Reference
,selectFramework
选项卡上的System.Windows.Forms
。
您有时需要添加对某些非默认程序集的引用。