参考了MFC源码,继承CMFCRibbonStatusBarPane,重写OnDraw虚函数,实现字体颜色和图标的切换。
//.h文件内容
#pragma once
#include "afxribbonstatusbarpane.h"
#include "MemDC.h"
class CScale3DCStatusBarPanel : public CMFCRibbonStatusBarPane
{
public:
CScale3DCStatusBarPanel(
UINT nCmdID, // Pane command id
LPCTSTR lpszText, // Pane label
BOOL bIsStatic = FALSE, // Pane is static (non-clickable)
HICON hIcon = NULL, // Pane icon
LPCTSTR lpszAlmostLargeText = NULL);// The almost large text in pane
~CScale3DCStatusBarPanel();
virtual void OnDraw(CDC* pDC);
protected:
BOOL m_bIsOpen = TRUE; //是否显示红色字体
public:
void SetTextColor(BOOL bIsValue = FALSE); //设置字体颜色
};
//.cpp文件内容
#include "stdafx.h"
#include "Scale3DCStatusBarPanel.h"
#include "resource.h"
CScale3DCStatusBarPanel::CScale3DCStatusBarPanel(
UINT nCmdID, LPCTSTR lpszText, BOOL bIsStatic,
HICON hIcon, LPCTSTR lpszAlmostLargeText
)
{
CommonInit();
//父类成员变量
m_strAlmostLargeText =
(lpszAlmostLargeText == NULL) ? _T("") : lpszAlmostLargeText;
m_bIsStatic = bIsStatic;
m_strText = lpszText;
m_bIsOpen = FALSE;//自定义成员变量
}
void CScale3DCStatusBarPanel::OnDraw(CDC* pDC)
{
ASSERT_VALID(this);
ASSERT_VALID(pDC);
if (m_rect.IsRectEmpty())
{
return;
}
else
{
m_rt.CopyRect(m_rect);
}
OnFillBackground(pDC);
pDC->SetTextColor(RGB(21, 66, 139));
pDC->DrawText(m_strText, m_rect, DT_LEFT);
OnDrawBorder(pDC);
}
void CScale3DCStatusBarPanel::SetTextColor(BOOL bValue)
{
m_bIsOpen = bValue;
}
调用方法如下:
m_wndStatusBar.AddElement(new CScale3DCStatusBarPanel(ID_STATUSBAR_PANE4, strComWork + strComWork1 + _T("(0)"), TRUE), strComWork);
CScale3DCStatusBarPanel* pElem = (CScale3DCStatusBarPanel*)m_wndStatusBar.GetElement(7);
pElem->SetAlmostLargeText(_T("........................................"));
pElem->Redraw();
亿速云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。