17 lines
459 B
C++
17 lines
459 B
C++
|
// DialErr.cpp : Implementation of CDialErr
|
||
|
#include "stdafx.h"
|
||
|
#include "icwhelp.h"
|
||
|
#include "DialErr.h"
|
||
|
|
||
|
/////////////////////////////////////////////////////////////////////////////
|
||
|
// CDialErr
|
||
|
|
||
|
|
||
|
HRESULT CDialErr::OnDraw(ATL_DRAWINFO& di)
|
||
|
{
|
||
|
RECT& rc = *(RECT*)di.prcBounds;
|
||
|
Rectangle(di.hdcDraw, rc.left, rc.top, rc.right, rc.bottom);
|
||
|
DrawText(di.hdcDraw, _T("ATL 2.0"), -1, &rc, DT_CENTER | DT_VCENTER | DT_SINGLELINE);
|
||
|
return S_OK;
|
||
|
}
|