Home > Software engineering >  MFC in VLC player controls cannot handle the mouse message
MFC in VLC player controls cannot handle the mouse message

Time:10-06

Online information is VLC swallowed the window of the news, I tried two ways to solve this problem, a control's parent window overloading PreTranslateMessage, in which processing WM_MOUSEFIRST ~ WM_MOUSELAST window handle to control the message; Another by setting the timer callback function, but in essence, and then through the EnableWindow function banned VLC play window accept mouse and keyboard input, the two are the result of the parent window can response message, but now there is a demand is for window VLC player window receives the message, child window to operate, is a great god what's the solution?

CodePudding user response:

Your parent window not forwarding messages to the child window?
  • Related