I am using a third-party .NET video capture function library that displays atreaming video from a USB video capture device in a VideoPictureBox (which is very much like the usual .NET PictureBox). I want to display graphics and text over the video stream.
Is there some way to superimpose a regular PictureBox such that the graphics and text will appear on top of the video? It would seem that it should be possible to create a transparent PictureBox that shows whatever is underneath it, but allowing windows.drawing graphics and text to be written in the PictureBox in the usual manner... like using a magic marker to wiite on a window pane.
How would one go about writing this? I usually use VB.NET but C# is OK also (Visual Studio 2005).
--Dave Emery