ListView background image

  • Thread starter Thread starter Gacu
  • Start date Start date
Gacu,

you have to use LVM_SETBKIMAGE

typedef struct tagLVBKIMAGE
{
ULONG ulFlags;
HBITMAP hbm;
LPTSTR pszImage;
UINT cchImageMax;
int xOffsetPercent;
int yOffsetPercent;
} LVBKIMAGE, FAR *LPLVBKIMAGE;


pszImage is the image you set for background.

Shak.
 
Gacu,

You have to use LVM_SETBKIMAGE

typedef struct tagLVBKIMAGE
{
ULONG ulFlags;
HBITMAP hbm;
LPTSTR pszImage;
UINT cchImageMax;
int xOffsetPercent;
int yOffsetPercent;
} LVBKIMAGE, FAR *LPLVBKIMAGE;

set pszImage to get background image

Shak
 
Back
Top