Hi.
Great control!!
Try below code from previous version in Codeproject and it works fine.
foreach (ImageListViewItem item in imageListView1.SelectedItems)
{
item.BeginEdit();
using (Image img = Image.FromFile(item.FileName))
{
img.RotateFlip(RotateFlipType.Rotate270FlipNone);
img.Save(item.FileName);
}
item.Update();
item.EndEdit();
}
But in version 11.0.4.0, in Gallery view only the thumbnail image will rotate and the main image will not refresh.
Am I missing anything?
thank you
Hi.
Great control!!
Try below code from previous version in Codeproject and it works fine.
foreach (ImageListViewItem item in imageListView1.SelectedItems)
{
item.BeginEdit();
using (Image img = Image.FromFile(item.FileName))
{
img.RotateFlip(RotateFlipType.Rotate270FlipNone);
img.Save(item.FileName);
}
item.Update();
item.EndEdit();
}
But in version 11.0.4.0, in Gallery view only the thumbnail image will rotate and the main image will not refresh.
Am I missing anything?
thank you