解决窗体最小化之后其他窗体无法输入的问题

This commit is contained in:
小红帽 2025-01-10 17:41:27 +08:00
parent f8fd529b61
commit cd0521c813
2 changed files with 6 additions and 0 deletions

View File

@ -1154,6 +1154,8 @@ BLENDFUNCTION blendFunction // alpha-blending function
[DllImport("user32.dll")]
public static extern bool SetFocus(IntPtr hWnd);
[DllImport("user32.dll")]
public static extern IntPtr GetFocus();
[DllImport("user32.dll")]
public static extern bool SetParent(IntPtr hWnd, IntPtr hWndNewParent);
[DllImport("user32.dll")]
public static extern bool ShowWindow(IntPtr hWnd, ShowWindowCommand nCmdShow);

View File

@ -1505,6 +1505,10 @@ namespace CPF.Windows
public void SetIMEPosition(Point point)
{
if (canActivate && GetFocus() != handle)
{
SetFocus(handle);
}
COMPOSITIONFORM cf = new COMPOSITIONFORM();
cf.dwStyle = 2;
cf.ptCurrentPos = new POINT((int)(point.X * scaling), (int)(point.Y * scaling));