We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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
The text was updated successfully, but these errors were encountered:
No branches or pull requests
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
The text was updated successfully, but these errors were encountered: