15,977
社区成员
发帖
与我相关
我的任务
分享
struct toolTipInfo : public CObject
{
public:
UINT nControlID;
UINT nInfoSize;
CStringArray arrControlInfo;
COLORREF crText;
COLORREF crBack;
toolTipInfo()
{
}
virtual void operator=(const toolTipInfo & other)
{
nControlID = other.nControlID;
nInfoSize = other.nInfoSize;
arrControlInfo.Copy( other.arrControlInfo );
crText = other.crText;
crBack = other.crBack;
}
};