Skip to content
New issue

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

Rotate image in Gallery view...only thumbnail rotate but not the main image #185

Open
wewahala opened this issue Aug 25, 2016 · 0 comments
Labels

Comments

@wewahala
Copy link

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

@oozcitak oozcitak added the bug label Nov 22, 2016
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants