1

这是我关于stackoverflow的第一个问题,我希望我做的一切都正确:S

如我的标题中所述,我正在使用 mfc 进行视觉工作室(2012)项目。我尝试向我的 cbutton 添加一个位图,该位图被插入到我的对话框的设计视图中。

我读过的所有帖子都描述了使用 setBitmap 或 sendMessage 来做到这一点。我总是尝试在对话框的 onInit() 函数中执行此操作。当我(尝试)像这样使用 setBitmap() 时:

m_backButton.Attach (LoadBitmap (AfxGetInstanceHandle(), MAKEINTRESOURCE(IDB_BACK_BUTTON))); //m_backButton is a private CBitmap member of my dialog
CButton* pButton = (CButton* )GetDlgItem(IDC_BUTTON1);
pButton->SetBitmap(m_backButton);

它会导致 IntelliSense 错误:

IntelliSense:类“CButton”没有成员“setBitmap”

另一种尝试是使用 sendMessage:

m_backButton.Attach (LoadBitmap (AfxGetInstanceHandle(), MAKEINTRESOURCE(IDB_BACK_BUTTON)));
CButton* pButton = (CButton* )GetDlgItem(IDC_BUTTON1);  
HBITMAP hBitmap = (HBITMAP)m_backButton;
pButton->SendMessage(BM_SETIMAGE,(WPARAM)IMAGE_BITMAP,(LPARAM)hBitmap); 

首先,我遇到了另一个 IntelliSense 错误:

IntelliSense:标识符“BM_SETIMAGE”未定义

就像我在另一篇文章中读到的那样,我自己定义了“BM_SETIMAGE”:

#define BM_SETIMAGE 0x00F7

现在代码可以编译了,但是按钮仍然没有显示位图……由于互联网上的每个帖子都使用这两种解决方案之一,我很无奈。有人知道有什么问题吗?如果没有,也感谢您的阅读:)

4

1 回答 1

1

所以我想我找到了一个解决方案:) 我想我把它贴在这里,其他人也可能使用它。我也不能不回答这个问题:S

我的解决方案来自http://www.flounder.com/bitmapbutton.htm并适合我的需要。它现在可以与 Microsoft Embedded Compact 2013 一起使用。感谢作者!

我的简短版本如下所示:

图像按钮.h

#include "myApp.h" //check the original article if you are missing dependencies
class CImageButton : public CButton
{

public:
    CImageButton(UINT bitmap);
    // Default constructor (required for MFC compatibility)
    CImageButton() {bitmap = 0; }
    virtual void DrawItem(LPDRAWITEMSTRUCT lpDrawItemStruct);
    virtual ~CImageButton();
    void LoadBitmapForButton(UINT bitmap)
          { this->bitmap = bitmap; } 
    void GetBitmaps(UINT &bitmap)
          { bitmap = this->bitmap; }

protected:
    UINT bitmap;

    DECLARE_MESSAGE_MAP()
};

图像按钮.cpp

#include "stdafx.h"
#include "ImageButton.h"

CImageButton::CImageButton(UINT bitmap)
{
 this->bitmap = bitmap;
}

CImageButton::~CImageButton()
{
}


BEGIN_MESSAGE_MAP(CImageButton, CButton)
END_MESSAGE_MAP()

void CImageButton::DrawItem(LPDRAWITEMSTRUCT dis) 
{
     CDC * dc = CDC::FromHandle(dis->hDC);  // Get a CDC we can use
     CRect r(dis->rcItem);                  // Copy the button rectangle
     CBitmap bitmap;                        // Handle to the bitmap we are drawing
     BITMAP bmpval;                         // Parameters of the bitmap

     int saved = dc->SaveDC();              // Save the DC for later restoration

     bitmap.Attach (LoadBitmap (AfxGetInstanceHandle(), MAKEINTRESOURCE(this->bitmap)));

     // Get the bitmap parameters, because we will need width and height
     ::GetObject(bitmap, sizeof(BITMAP), &bmpval);

     // Select the bitmap into a DC
     CDC memDC;
     memDC.CreateCompatibleDC(dc);
     int savemem = memDC.SaveDC();
     memDC.SelectObject(bitmap);

    dc->BitBlt(0, 0,                            // target x, y
           min(bmpval.bmWidth, r.Width() ),     // target width
           min(bmpval.bmHeight, r.Height() ),   // target height
           &memDC,                              // source DC
           0, 0,                                // source x, y
           SRCCOPY);

     memDC.RestoreDC(savemem);

     dc->RestoreDC(saved);
     ::DeleteObject(bitmap);
}

您可以使用资源编辑器或动态添加普通 CButton(我认为,未测试),将其转换为 ImageButton 并使用 loadBitmapForButton 加载位图。CButton 的属性 owner-draw 必须设置为 true。就这样:)

PS,直到现在我才检查正确的内存释放代码...我会尽快这样做,如果我发现缺少某事,我会在我的帖子中添加这个。如果其他人可以在这一点上提供帮助,请随时教我;)

于 2015-01-09T10:39:16.203 回答