Hello Guys,
I'm developing a program, and it contains it's own IME window.
So I use
DefWindowProcW(hWnd, WM_IME_SETCONTEXT, wParam, 0)
which defines at MSDN
https://msdn.microsoft.com/en-us/library/windows/desktop/ee419002(v=vs.85).aspx
The IMM sends a WM_IME_SETCONTEXT message when a window of the application is activated. The lParam parameter of
this message contains a flag that indicates to the IME which windows should get drawn and which should not. Because the application is handling all of the drawing, it does not need the IME to draw any of the IME windows. Therefore, the application's message
handler simply sets lParam to 0 and returns.
But It doesn't work at Windows 10.
It works at Windows 7 and 8.
Is there any solutions or bugfix for this situation?