I would want to display two button images on an application, bot images are irregular in shape (a circle and moon shape images). Since bitmaps doesn't supports transparency, this buttons looks like they are overlapping each other even when the exact design doesn't. SO I would like to ask:
Is there a way to display a PNG image on VC++ MFC?
If not, is there a way to do this transparency?
Thanks
EDIT: Through google I found out that using GDI+ might be be used to add jpeg and png. Also these image types could be also added to resources. The current code loads the bitmaps to the CButton Handles and displays it. Is there a way to pass the PNG images to CButton Handles and display it like the Bitmaps? Thanks Again!