Can I place a window inside a window? Like a videoplayer
I'm using C++(Visual Studio 10) on Windows XP.
I want to make an application similar 开发者_Go百科to a video player where there is a window inside an outer window where the actual video is displayed. On the outer window I will have the GUI, buttons, etc...
Basically I'm composing two windows together. And the frames in the inner window are updated by another thread that does image processing(I will use OpenCV for this).
Any pointers? I just need to know the basic structure for this.
Build the entire GUI using win32 and then convert the IplImage to BITMAP to be able to display it. It seems someone posted a quick and dirty solution to do that, but I haven't tried it.
精彩评论