15,980
社区成员




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;
}
};