Skip to content

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

@wewahala

Description

@wewahala

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

Metadata

Metadata

Assignees

No one assigned

    Labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions