mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
564 B
26 lines
564 B
|
|
/*************************************************
|
|
* 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);
|
|
}
|