-3
我有簡單的視頻播放器。WTL CWindowImpl與CWnd兼容嗎?
https://github.com/sailfish009/sample_video
現在我想將它移植到Windows模板庫9.1。
編輯:解決了,CWindowImpl的處理程序與CWnd的兼容。
//screen = SDL_CreateWindowFrom(this->m_hWnd); //HWND from CWnd previous working code
screen = SDL_CreateWindowFrom(m_hWndClient); //HWND from CWindowImpl
解決了!我犯了一個錯誤的設置寬度和高度。 CWindowImpl和CWnd的HWND完全相同。 – sailfish009