⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mystatusbar.cpp

📁 点歌系统
💻 CPP
字号:
// MyStatusBar.cpp : implementation file
//

#include "stdafx.h"
 #include "MyStatusBar.h"

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

/////////////////////////////////////////////////////////////////////////////
// CMyStatusBar

CMyStatusBar::CMyStatusBar()
{
}

CMyStatusBar::~CMyStatusBar()
{
}


BEGIN_MESSAGE_MAP(CMyStatusBar, CStatusBar)
	//{{AFX_MSG_MAP(CMyStatusBar)
	ON_WM_PAINT()
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CMyStatusBar message handlers

void CMyStatusBar::OnPaint() 
{
	Default();

    CRect rcItem;
    CClientDC dc (this);
	CPen pen(PS_SOLID, 1, ::GetSysColor(COLOR_3DSHADOW));
	HPEN oldPen =(HPEN)dc.SelectObject(pen);

    dc.SelectObject(::GetStockObject(NULL_BRUSH));

    for ( int i = 0; i < m_nCount; i++ )
    {
        GetItemRect(i, rcItem);
        dc.Rectangle(rcItem); 
    }
	dc.SelectObject(oldPen);
}

BOOL CMyStatusBar::SetIndicators(const UINT* lpIDArray, int nIDCount)
{
    if (!CStatusBar::SetIndicators(lpIDArray, nIDCount) )
    {
        return false;
    }
    SendMessage(SB_SETMINHEIGHT, 20);

    for ( int i = 0; i < nIDCount; i++ )
    {
        UINT a, b;
        int c;

        GetPaneInfo(i, a, b, c);
        SetPaneInfo(i, a, b|SBPS_NOBORDERS, c);
    }
    return true;
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -