• 大小: 2KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-06-01
  • 语言: C/C++
  • 标签:

资源简介

MFC,静态文本框,通过该类可以设置静态文本框背景颜色,

资源截图

代码片段和文件信息

// ColorStatic.cpp : implementation file
//

#include “stdafx.h“
#include “ColorStatic.h“

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CColorStatic

CColorStatic::CColorStatic()
{
m_ColorRef = RGB(255255255);
}

CColorStatic::~CColorStatic()
{
}


BEGIN_MESSAGE_MAP(CColorStatic CStatic)
//{{AFX_MSG_MAP(CColorStatic)
// NOTE - the ClassWizard will add and remove mapping macros here.
//}}AFX_MSG_MAP
ON_WM_PAINT()
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CColorStatic message handlers

void CColorStatic::OnPaint()
{
CPaintDC dc(this); // device context for painting
// TODO: 在此处添加消息处理程序代码
// 不为绘图消息调用 CStatic::OnPaint()
CBrush myBrush;
myBrush.CreateSolidBrush(m_ColorRef);
CRect rect;
GetClientRect(&rect);
dc.Selectobject(myBrush);
dc.Rectangle(rect);
}

//设置静态文本框的颜色
void CColorStatic::SetStaticColor(COLORREF clr)
{
m_ColorRef = clr;
Invalidate();
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2013-07-13 20:09  StaticColor\
     文件        1152  2013-07-13 20:05  StaticColor\ColorStatic.cpp
     文件         952  2013-07-13 20:07  StaticColor\ColorStatic.h

评论

共有 条评论

相关资源