how to add bitmap image to buttons in MFC?

前端 未结 6 2008
灰色年华
灰色年华 2020-12-10 16:29

I am Trying to add an image to an existing button..I have done that to an extent, the problem is I can add an ownerdrawn Image but am not able to add the extact image that I

相关标签:
6条回答
  • 2020-12-10 17:03

    I want to add some ideas to @Amruta Ghodke 's answer:

    You can resize your button using the GetWindowRect and SetWindowPos functions. See an example below:

    CRect rc;
    
    pButton->GetWindowRect(rc);
    pButton->SetWindowPos(NULL, rc.left, rc.top, myWidth, myHeight, SWP_NOSENDCHANGING | SWP_NOACTIVATE | SWP_NOZORDER | SWP_NOMOVE);
    

    If you want to display transparent images, use the software Pixelformer to convert your PNGs to Alpha-enabled BMPs. You will have to:

    1. Go to Image->Properties and set RGB color with alpha channel
    2. Export the file using format A8:R8:G8:B8 and disabled Premultiplied alpha and Top-down row order
    0 讨论(0)
  • 2020-12-10 17:10

    You could subclass existing button using CBitmapButton::SubclassWindow, then use LoadBitmaps.

    0 讨论(0)
  • 2020-12-10 17:13

    I actually fixed the problem..what I did is I replaced the HICON with HBITMAP and its working perfect...basically both would work fine but in my case when I loaded the icon into the button the background of the icon was not changing...I tried Bitmap then it work great. Now am working on positioning the Image and to add text...think I could go through

    0 讨论(0)
  • 2020-12-10 17:16

    Steps for assigning bitmap to button in mfc :

    1. Create object of bitmap
    2. Load bitmap by using LoadBitmap()
    3. Get Handle of button using id and GetDlgItem() method
    4. Modify style so that we can assign bitmap to it
    5. use SetBitmap() on button's handle to assign bitmap

    Code :

    CBitmap bmp;
    
    bmp.LoadBitmap( IDB_BITMAP4 );
    
    CButton* pButton = (CButton* )GetDlgItem(IDC_BUTTON1);
    
    pButton->ModifyStyle(0,BS_BITMAP);
    
    pButton->SetBitmap(bmp);
    
    0 讨论(0)
  • 2020-12-10 17:17

    Use the button classes from the Feature Pack. They have support for showing both text and images on buttons, your regular button can't do that. Look at the 'samples' directory in your VS installation directory.

    0 讨论(0)
  • 2020-12-10 17:20

    you don't know how much this helped out. Thanks for posting. Also have to change a few other things to bitmap as well ...

    CButton* pBtn= (CButton*)GetDlgItem(ID_MYDIALOG);
    pBtn->ModifyStyle( 0, BS_BITMAP );
    
    HBITMAP hIcn= (HBITMAP)LoadImage(
      AfxGetApp()->m_hInstance,
      MAKEINTRESOURCE(IDB_MYPIC),
      IMAGE_BITMAP,
      0,0, // use actual size
      LR_DEFAULTCOLOR
      );
    
    pBtn->SetBitmap( hIcn );
    
    0 讨论(0)
提交回复
热议问题