Click here to Skip to main content
15,892,643 members
Please Sign up or sign in to vote.
2.00/5 (1 vote)
See more:
How can i incrementally rotate a circular image in picturebox....i have no idea can any body help me by giving me a sample code?


Thanks
Posted
Comments
Sergey Alexandrovich Kryukov 5-Jun-12 23:41pm    
To start with, why PictureBox?
--SA

1 solution

You should not rotate anything in the PictireBox, to stay out of trouble. Of course, it's possible to achieve but makes no sense at all. This control is often abused; it is designed to do most simple things such as showing some static image. If you try to do anything interactive, dynamic or animated with it, you can make it working, but this control does not help you at all, it only presents an intermediate level doing nothing useful, only eating up some extra resources, compromising performance and taking extra development effort giving nothing in return.

Instead, you need something very different; the best would be the custom control where you render your graphics directly. I explain how to do it in my past answers:

How do I clear a panel from old drawing[^],
draw a rectangle in C#[^],
Append a picture within picturebox[^].

More detail on graphics rendering in my past answers:
Drawing Lines between mdi child forms[^],
capture the drawing on a panel[^],
What kind of playful method is Paint? (DataGridViewImageCell.Paint(...))[^].

—SA
 
Share this answer
 
Comments
codeBegin 6-Jun-12 7:06am    
my 5
Sergey Alexandrovich Kryukov 6-Jun-12 11:30am    
Thank you,
--SA

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900