How to create a windowless control after implementing all the necessary interfaces?
C / C++ / MFC
1
Posts
1
Posters
0
Views
1
Watching
-
for example, if all the necessary interfaces for a windowless control is implemented as below, how to create the control on a dialog, and let it working properly?
class my_ctl : public IOleInPlaceObjectWindowless, public IOleInPlaceSiteWindowless, public IViewObjectEx
{
...
}Thanks in advance. BTW, I want it be as simple as possible, just let it work.