www.pudn.com > GOS.rar > Main.cpp


#include "StdAfx.h" 
 
void WinMain() 
{ 
	RECT r; 
	CMainFrame dlg; 
		 
	dlg.DoModal(); 
	r=dlg.m_rectWnd; 
	 
	dlg.m_rectClip=dlg.m_rectWndClip; 
	dlg.FillRect(r,RGB(0,0,0)); 
	dlg.DrawBitmap(&acBmpHelp,dlg.MakeRect(180,207,32,32)); 
	dlg.m_nForeColor=RGB(255,255,0)|FS_MULTI3; 
	dlg.DrawText("Bye",r,DT_CENTER|DT_VCENTER); 
	dlg.m_nForeColor=RGB(255,255,255); 
	dlg.DrawText("Thank your used",r,DT_RIGHT|DT_BOTTOM); 
	dlg.DrawText("SelfTest 2005 ",r,DT_LEFT|DT_TOP); 
	r.top+=15; 
	dlg.DrawText("版权所有 (C) 2000-2005 权智集团 ",r,DT_LEFT|DT_TOP); 
 
}