VS2010中mfcbuttoncontrol没有划过变蓝效果

应该是控件自带的效果,类似win7的效果。但是现在没有,现在鼠标划过按钮有个灰色的凸起效果... 应该是控件自带的效果,类似win7的效果。但是现在没有,现在鼠标划过按钮有个灰色的凸起效果 展开
 我来答
己学好4
2016-03-02 · TA获得超过1.5万个赞
知道大有可为答主
回答量:1.1万
采纳率:91%
帮助的人:5021万
展开全部
参考下面程序做的

MFC Button控件的背景颜色
一个继承于CButton的按钮控件类,实现Button背景色与文字的共存与改变,可以自行设计背景色。
头文件:CMyButton.h 如下:

C/C++ code?

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20

#pragma once
#include "afxwin.h"
class CMyButton : public CButton
{
//DECLARE_DYNAMIC(CMyButton)
public:
CMyButton();
virtual ~CMyButton();
//设置Button Down的背景颜色
void SetDownColor(COLORREF color);
//设置Button Up的背景颜色
void SetUpColor(COLORREF color);
BOOL Attach(const UINT nID, CWnd* pParent);
protected:
//必需重载的函数
virtual void DrawItem(LPDRAWITEMSTRUCT lpDrawItemStruct);
public:
//三种颜色分别为文字,Button Down的背景颜色,Button Up的背景颜色
COLORREF m_TextColor, m_DownColor, m_UpColor;
};

源文件:CMyButton.cpp

C/C++ code?

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77

#include "StdAfx.h"
#include "CMyButton.h"
CMyButton::CMyButton(void)
{
m_DownColor = m_UpColor = RGB(0,0,0);
}
CMyButton::~CMyButton(void)
{
}

//CMyButton是CButton派生类,具有CButton的全部成员函数,
//但在创建时需要使用BS_OWNERDRAW风格。
//如果按钮不是动态生成,使用Attach函数使CMyButton代替原来按钮的窗口过程。
BOOL CMyButton::Attach(const UINT nID, CWnd* pParent)
{
//GetDlgItem(nID)->ModifyStyle(0,BS_OWNERDRAW,0);
if (!SubclassDlgItem(nID, pParent))
return FALSE;
return TRUE;
}
void CMyButton::SetDownColor(COLORREF color)
{
m_DownColor = color;
}
void CMyButton::SetUpColor(COLORREF color)
{
m_UpColor = color;
}

void CMyButton::DrawItem(LPDRAWITEMSTRUCT lpDrawItemStruct)
{
// TODO: Add your code to draw the specified item
CDC dc;
dc.Attach(lpDrawItemStruct->hDC);//得到绘制的设备环境CDC
VERIFY(lpDrawItemStruct->CtlType==ODT_BUTTON);

// 得当Button上文字,这里的步骤是:1,先得到在资源里编辑的按钮的文字,
//然后将此文字重新绘制到按钮上,
//同时将此文字的背景色设为透明,这样,按钮上仅会显示文字
const int bufSize = 512;
TCHAR buffer[bufSize];
GetWindowText(buffer, bufSize);
int size=strlen(buffer); //得到长度
DrawText(lpDrawItemStruct->hDC,buffer,size,&lpDrawItemStruct->rcItem,DT_CENTER|DT_VCENTER|DT_SINGLELINE|DT_TABSTOP); //绘制文字
SetBkMode(lpDrawItemStruct->hDC,TRANSPARENT); //透明

if (lpDrawItemStruct->itemState &ODS_SELECTED) //当按下按钮时的处理
{//
//重绘整个控制
CBrush brush(m_DownColor);
dc.FillRect(&(lpDrawItemStruct->rcItem),&brush);//
//因为这里进行了重绘,所以文字也要重绘
DrawText(lpDrawItemStruct->hDC,buffer,size,&lpDrawItemStruct->rcItem,DT_CENTER|DT_VCENTER|DT_SINGLELINE|DT_TABSTOP);
SetBkMode(lpDrawItemStruct->hDC,TRANSPARENT);
}
else //当按钮不操作或者弹起时
{
CBrush brush(m_UpColor);
dc.FillRect(&(lpDrawItemStruct->rcItem),&brush);//
//同上,进行重绘文字
DrawText(lpDrawItemStruct->hDC,buffer,size,&lpDrawItemStruct->rcItem,DT_CENTER|DT_VCENTER|DT_SINGLELINE|DT_TABSTOP);
SetBkMode(lpDrawItemStruct->hDC,TRANSPARENT);
}
if ((lpDrawItemStruct->itemState &ODS_SELECTED)&&(lpDrawItemStruct->itemAction &(ODA_SELECT| ODA_DRAWENTIRE)))
{ //选中了本控件,高亮边框
COLORREF fc=RGB(255-GetRValue(m_UpColor),255-GetGValue(m_UpColor), 255- GetBValue(m_UpColor));//
CBrush brush(fc);//
dc.FrameRect(&(lpDrawItemStruct->rcItem),&brush);//
}
if (!(lpDrawItemStruct->itemState & ODS_SELECTED) &&(lpDrawItemStruct->itemAction & ODA_SELECT))
{
//控制的选中状态结束,去掉边框
CBrush brush(m_UpColor);
dc.FrameRect(&lpDrawItemStruct->rcItem,&brush);//
}
dc.Detach();//
}
追问
不需要重写一个button类,VS2010里就有一个mfcbuttoncontrol控件。我想用这个控件
不需重写,要用的是VS2010中的mfcbutton这个控件。已自行解决了,控件风格设置的问题,多谢
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式