Chinaunix首页 | 论坛 | 博客
  • 博客访问: 5381421
  • 博文数量: 671
  • 博客积分: 10010
  • 博客等级: 上将
  • 技术积分: 7310
  • 用 户 组: 普通用户
  • 注册时间: 2006-07-14 09:56
文章分类

全部博文(671)

文章存档

2011年(1)

2010年(2)

2009年(24)

2008年(271)

2007年(319)

2006年(54)

我的朋友

分类: C/C++

2007-09-28 16:02:11

If you want to change background or text color of your dialog box or form view window you can call CWinApp::SetDialogBkColor(COLORREF clrCtlBk, COLORREF clrCtlText) function. The first argument of the function is background color, second is text color. Call this member function from within the InitInstance member function to set the default background and text color for dialog boxes and message boxes within your application. For example, following code sets all application's dialogs to display a red background and a green text.

BOOL CMyApp::InitInstance()
{
	...
	// lets set red background and green text for our dialogs
	SetDialogBkColor(RGB(255, 0, 0), RGB(0, 255, 0));
	...
}
 
 
阅读(965) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~