1 Star 0 Fork 2

issicc/AutoPHS

forked from leegoobin/AutoPHS 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
xedit.cpp 1.13 KB
一键复制 编辑 原始数据 按行查看 历史
uksoft 提交于 2014-11-26 16:31 . VSS代码移植到Git
// XEdit.cpp : implementation file
//
#include "stdafx.h"
#include "XEdit.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CXEdit
CXEdit::CXEdit()
{
m_crBk=::GetSysColor(COLOR_WINDOW);
m_brBk.CreateSolidBrush(m_crBk);
m_crText=::GetSysColor(COLOR_WINDOWTEXT);
}
CXEdit::~CXEdit()
{
m_brBk.DeleteObject();
}
BEGIN_MESSAGE_MAP(CXEdit, CEdit)
//{{AFX_MSG_MAP(CXEdit)
ON_WM_CTLCOLOR_REFLECT()
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CXEdit message handlers
HBRUSH CXEdit::CtlColor(CDC* pDC, UINT nCtlColor)
{
// TODO: Change any attributes of the DC here
pDC->SetBkColor(m_crBk);
pDC->SetTextColor(m_crText);
return m_brBk;
// TODO: Return a non-NULL brush if the parent's handler should not be called
}
void CXEdit::SetTextColor(COLORREF color)
{
m_crText=color;
this->RedrawWindow();
}
void CXEdit::SetBkColor(COLORREF color)
{
m_brBk.DeleteObject();
m_crBk=color;
m_brBk.CreateSolidBrush(color);
this->RedrawWindow();
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/issicccc/AutoPHS.git
git@gitee.com:issicccc/AutoPHS.git
issicccc
AutoPHS
AutoPHS
CAE

搜索帮助