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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top