91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

重寫CMFCRibbonStatusBarPane類

發布時間:2020-06-24 16:48:43 來源:網絡 閱讀:727 作者:Chinayu2014 欄目:編程語言

參考了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();


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

黎城县| 孝感市| 浑源县| 太仓市| 闻喜县| 扶绥县| 东阿县| 白山市| 汉寿县| 屏东县| 牙克石市| 博兴县| 普兰县| 新密市| 奉节县| 博乐市| 大港区| 桦南县| 襄樊市| 峡江县| 如东县| 阿拉善右旗| 汽车| 正定县| 丹寨县| 吴川市| 郯城县| 海伦市| 刚察县| 伊川县| 内丘县| 华蓥市| 乾安县| 疏附县| 喀喇沁旗| 顺义区| 松溪县| 镇巴县| 金湖县| 金沙县| 太原市|