I was wondering how an images text could be put underneath the image (its currently in a horizontal orientation). The code I have below is not doing the trick and I was hoping you could help on this, should be a quick solution. Thank you for your time.
private void addEmptyImages()
{
for (int i = 0; i < imagelistPictures.Images.Count; i++)
{
if (imagelistPictures.Images[i] != null)
{
ListViewDataItem item = new ListViewDataItem();
item.Tag = "Delay Render";
item.Text = "Page " + (i + 1).ToString();
item.Image = Properties.Resources.imageLoading;
item.ImageAlignment = ContentAlignment.MiddleCenter;
item.TextAlignment = ContentAlignment.TopLeft;
listviewGotoPage.Items.Add(item);
}
else
{
MessageBox.Show("contents of initial list are null, break");
break;
}
}
}