Problem:
I've got a ListView with an Image in the first column.
But the problem is that the Image isn't positioned at the left but weird in the center, so that you can't see the full username.
Question:
So is there a way to position the image at the left, so that you can see the username correctly?
Code:
The Code that adds the ListViewItem
public void AddMessage(string from, string message)
{
ListViewItem item = new ListViewItem(new string[] {from, DateTime.Now.GetDateTimeFormats()[7], message});
item.ImageIndex = 0;
listView1.Items.Add(item);
}