images inside a listview

  • Thread starter Thread starter WAkthar
  • Start date Start date
W

WAkthar

Hi,

I have a listview with only one column.
In the first row I am adding an image with no text.
In the second column I am trying to add some text but the text gets put in
the column but after the image.
That is

_____________________
|<IMAGE> |
| SomeText |
| SomeText |
_____________________


How can I align the text so that it appears under the image instead of to
the right side of the image?
Setting the TextAlignment of the column property doesn';t work.


Cheers
 
Hi,
I have a listview with only one column.
In the first row I am adding an image with no text.
In the second column I am trying to add some text but the text gets put in
the column but after the image.
That is

_____________________
|<IMAGE> |
| SomeText |
| SomeText |
_____________________


How can I align the text so that it appears under the image instead of to
the right side of the image?
Setting the TextAlignment of the column property doesn';t work.
The only time the ListView control displays item text underneath the
item image is when it is in LargeIcon mode. Because you are talking
about columns, I assume you are in the Detail mode, try setting your
ListView's View property to LargeIcon.
 
Back
Top