On Dec 24, 11:25 pm, kimiraikkonen <kimiraikkone...@gmail.comwrote:
Quote:
Hi,
Here is a very interesting issue,
Assume i have picturebox and loaded a image into picturebox, however
whenever i want to rotate image using:
>
'For example 90 degree
PictureBox1.Image.RotateFlip(RotateFlipType.Rotate 90FlipX)
>
This rotation takes effect on picturebox after i minimize - remaximize
form OR after i drag form somewhere outside the screen the re-bring to
a visible location on the screen.
>
If i don't drag form somewhere outside the screen OR minimize then re-
bring to normal window position.
>
Is this a bug or how can i overcome this?
>
Thanks a lot!
However this a kind of indirect solution which corrects this but still
i want to know why i need to adjust visibility propery of picturebox.
PictureBox1.Image.RotateFlip(RotateFlipType.Rotate 90FlipX)
PictureBox1.Visible = False
PictureBox1.Visible = True
Another issue, as i stated in a post with no reply, while dragging
picturebox the image and form gets a very slow performance and jittery
tearing effects occur on screen. There's no such problem on 3rd party
softwares like XnView using on same system.
Thanks.