Displaying an image in the header
Unlike most other common controls, the header control does not use an image list. It does allow you to use a bitmap in any of the header item. You can display just the bitmap or the bitmap with the item label. You use the CHeaderCtrl::SetItem() function to assign a bitmap to a header item or to remove a bitmap if one is already assigned.

The following code assigns a bitmap to a header control item. This code will show the bitmap as well as the item label. I noticed one bug with this code. The right most column of pixels in the bitmap does not get displayed. You should, therefore, not consider the right most column when creating the bitmap. Also, if the bitmap is taller than what the header control can display, then only the middle portion of the bitmap is displayed. The header control does not have a problem in displaying wide bitmaps. Another note of warning, the bitmap is not displayed transparently. If you want a non rectangular shape, you have to use a gray background for the bitmap and hope that the user does not change the color scheme.
HD_ITEM hditem; hditem.mask = HDI_FORMAT; ((CHeaderCtrl*)GetDlgItem(0))->GetItem( nCol, &hditem ); hditem.mask = HDI_BITMAP | HDI_FORMAT; hditem.fmt |= HDF_BITMAP; // mybitmap is a CBitmap object containing the bitmap hditem.hbm = (HBITMAP)mybitmap.GetSafeHandle(); ((CHeaderCtrl*)GetDlgItem(0))->SetItem( nCol, &hditem );
If you want to display just the bitmap and not the label, then you can remove the HDF_STRING flag from the fmt field.
HD_ITEM hditem; hditem.mask = HDI_FORMAT; ((CHeaderCtrl*)GetDlgItem(0))->GetItem( nCol, &hditem ); hditem.mask = HDI_BITMAP | HDI_FORMAT; hditem.fmt |= HDF_BITMAP; hditem.fmt &= ~HDF_STRING ; // mybitmap is a CBitmap object containing the bitmap hditem.hbm = (HBITMAP)mybitmap.GetSafeHandle(); ((CHeaderCtrl*)GetDlgItem(0))->SetItem( nCol, &hditem );
To remove a bitmap from the column header, you can change the format by calling the SetItem() function again and clear the HDF_BITMAP flag from the format field. Alternatively, you can use HDI_BITMAP as the mask and set the hbm field to NULL.
HD_ITEM hditem; hditem.mask = HDI_FORMAT; ((CHeaderCtrl*)GetDlgItem(0))->GetItem( nCol, &hditem ); hditem.mask = HDI_FORMAT; hditem.fmt &= ~HDF_BITMAP; ((CHeaderCtrl*)GetDlgItem(0))->SetItem( nCol, &hditem );

Comments
How to add a picture to a subitem
Posted by Legacy on 09/04/2003 12:00amOriginally posted by: Tiger
ReplyDidn't work at the first time. Complete method attached....
Posted by Legacy on 07/31/2003 12:00amOriginally posted by: Frenzy
ReplyHow to display the icon( ! ) in the center of the column?
Posted by Legacy on 01/21/2002 12:00amOriginally posted by: kalpana
hello,
i want to display an icon ! in the center of the column.For
drawing columns we are using listview control..it is not ownerdrwan ...thats why i am gettting problem..is there any way to do this...?
and second thing is i want to select(highlight) all the columns in a row except the first one.
so please help me out in this
thank you,
kalpana
ReplyWindows XP Icon spacing
Posted by Legacy on 01/19/2002 12:00amOriginally posted by: Denis Galiana
Hello,
I've noticed in Windows XP that the gap between icons in 2nd, 3rd, ... columns and text is greater (al least 3 times more) that the gap between the first column icon and the first column text ....
ReplyDisplaying an image in the header
Posted by Legacy on 07/07/1999 12:00amOriginally posted by: Dale King
I don't seem to get an image included within the header. I only get some blank header space. Any thoughts?
ReplyDisplaying and image in header control
Posted by Legacy on 02/09/1999 12:00amOriginally posted by: Joe Holloway
Reply