windows-nt/Source/XPSP1/NT/windows/feime/cht/cblocks/tip.cpp

27 lines
564 B
C++
Raw Normal View History

2020-09-26 03:20:57 -05:00
/*************************************************
* tip.cpp *
* *
* Copyright (C) 1995-1999 Microsoft Inc. *
* *
*************************************************/
#include "stdafx.h"
#include "tip.h"
CTip::CTip()
{
}
void CTip::SetString(const char * szStr)
{
}
BOOL CTip::Create(CWnd* pWnd)
{
ASSERT(pWnd);
CRect rc(0,0,40,20);
return CStatic::Create("111",SS_GRAYRECT | SS_CENTER | SS_BLACKFRAME,rc,pWnd);
}