作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当我包含 GdiPlus.h 时,Pen 类未定义。
但是GdiPlus.h包含了GdiPlusPen.h
...
#include "GdiplusImageAttributes.h"
#include "GdiplusMatrix.h"
#include "GdiplusBrush.h"
#include "GdiplusPen.h"
#include "GdiplusStringFormat.h"
#include "GdiplusPath.h"
...
当我自己包含 GdiPlusPen.h 时,它起作用了。我可以安全地使用它吗?
问题:这是因为我的 VC++ 被快速安装了吗?
距离激活提示还有 8 天:(有人遇到同样的问题吗?
Windows XP sp-3,pentium-m centrino。
最佳答案
不,#including GdiplusPen.h 直接是不正确的。 gdiplus 类位于名为“Gdiplus”的命名空间中。显式使用该 namespace (如 Gdiplus::Pen)或在您的 .cpp 文件中使其看起来像这样:
#include <gdiplus.h>
using namespace Gdiplus;
关于c++ - VC++ 10.0 express gdi+ GdiPlusPen.h 头文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11842335/
当我包含 GdiPlus.h 时,Pen 类未定义。 但是GdiPlus.h包含了GdiPlusPen.h ... #include "GdiplusImageAttributes.h" #inclu
我是一名优秀的程序员,十分优秀!