MFC 应用程序需要在对话框中使用编辑 ctrl 来编辑泰米尔语。但是我发现泰米尔语在 Windows 中没有代码页(是的,没有泰米尔语系统区域设置),并且 Unicode 选项不适合我的情况。
看到有人的想法,使用 SetParent 将 HWND 嵌入到外部进程中
我想创建另一个使用 UNICODE 选项构建的应用程序,将其窗口嵌入到对话框中,但失败了。查看 MSDN,SetParent 需要父子窗口在一个应用程序中。
那么,我该如何实施呢?
@MSalters
我通过覆盖虚拟 BOOL CWinThread::PumpMessage() 解决了它,强制消息循环使用 W 版本 API。
BOOL CtamildlgApp::PumpMessage()
{
_AFX_THREAD_STATE *pState = AfxGetThreadState();
if ( !::GetMessageW( &( pState->m_msgCur ), NULL, NULL, NULL ) )
{
// Note: prevents calling message loop things in 'ExitInstance'
// will never be decremented
return FALSE;
}
// process this message
if ( pState->m_msgCur.message != WM_KICKIDLE )
{
::TranslateMessage( &( pState->m_msgCur ) );
::DispatchMessageW( &( pState->m_msgCur ) );
}
return TRUE;
}
然后 CreateWindowExW(... MSFTEDIT_CLASS ...)