image processing
-
can anyone tell me how to bring picturebox in motion like marquee in html i,m new in omage processing/
-
can anyone tell me how to bring picturebox in motion like marquee in html i,m new in omage processing/
You just use a timer and display a sequence of images at regular intervals. For a simple marquee you just need to repaint the text at a different position on the screen each time, starting from one side.
One of these days I'm going to think of a really clever signature.
-
can anyone tell me how to bring picturebox in motion like marquee in html i,m new in omage processing/
PictureBox[^] offers a lot of functionality that is totally useless for your purpose. Its purpose is to show a picture, or series of pictures, with minimal effort from your side. If you want to draw anything programatically, use a Panel[^] or derive a class from System.Windows.Forms.Control[^].
Ciao, luker