本文介绍了名称空间系统没有成员在c ++中作图的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
当我尝试使用System :: Drawing时出现错误命名空间系统没有成员Drawing".
when I am trying to use System::Drawing it giving error "namespace system has no member Drawing".
代码:使用名称空间System :: Drawing;
Code:using namespace System::Drawing;
推荐答案
我认为您没有添加System::Drawing
参考
转到Project -> References -> Common Properties -> Framework and References
点击Add New References...
按钮
在Assemblies -> Frameworks
下,选中System.Drawing
,然后单击确定".
Under Assemblies -> Frameworks
check System.Drawing
and click ok.
更新-2017.8.22
您可以在Visual Studio 2015中单击Project -> Add Reference...
.
You can click Project -> Add Reference...
in Visual Studio 2015.
这篇关于名称空间系统没有成员在c ++中作图的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!