0

当文本框获得焦点时,我正在运行虚拟键盘,但随后键盘应用程序获得焦点并且不会将键传输到文本框。如果我点击文本框来激活它,一切都很好,但我希望我的应用程序在 vKeyboard 进程运行后被激活。这是我迄今为止尝试过的:

        [DllImport("user32.dll")]
    static extern bool PostMessage(IntPtr hWnd, int Msg, IntPtr wParam, IntPtr lParam);

    [DllImport("user32.dll")]
    static extern bool SetForegroundWindow(IntPtr hWnd);
    [DllImport("user32.dll")]
    internal static extern bool ShowWindow(IntPtr hWnd, int nCmdShow);

……

        vKeyboard = Process.Start(keyboardPath);
        SetFocusToApplication(handle);

……

        private static void SetFocusToApplication(IntPtr handle)
    {
        Process currentProcess = Process.GetCurrentProcess();
        IntPtr hWnd = currentProcess.MainWindowHandle;
        if (hWnd != IntPtr.Zero)
        {
            SetForegroundWindow(handle);
            ShowWindow(hWnd,3);
        }
    }

我也尝试将 Alt + Tab 发送到键盘进程,但它不起作用:

        private static void AltTab(IntPtr handle)
    {
             vKeyboard.WaitForInputIdle(); 

       int WM_SYSCOMMAND = 0x0112;
        int SC_PREVWINDOW = 0xF050;
        PostMessage(vKeyboard.MainWindowHandle, WM_SYSCOMMAND, (IntPtr)SC_PREVWINDOW, (IntPtr)0);
    }

PS:如果我可以从那里做任何事情来停用自己,我确实有虚拟键盘的源代码,仍然可以。让我知道。键盘最顶部的属性也设置为true,不确定这是否有任何不同。

这是我正在尝试并在按钮单击中起作用的代码:

           Process vKeyboard;
      string keyboardPath = Application.StartupPath + "\\vKeyboard.exe";
        vKeyboard = Process.Start(keyboardPath);
4

3 回答 3

1

要将您的表格放在前面,请使用:

this.Activate();

我尝试了以下代码,一切正常(我在Timer.Tick事件中编写了此代码):

System.Diagnostics.Process[] proc = System.Diagnostics.Process.GetProcessesByName("osk");
if (proc.Length > 0)
{
    this.Activate();
    textBox1.Focus(); //i focused it so i can write in it using on-screen keyboard
}
于 2013-07-05T06:55:14.823 回答
1

更改屏幕键盘的源代码,使表单具有 WS_EX_NOACTIVATE 标志:

public partial class OnScreenKeyboard : Form
{

    private const int WS_EX_NOACTIVATE = 0x08000000;

    protected override CreateParams CreateParams
    {
        get
        {
            CreateParams p = base.CreateParams;
            p.ExStyle |= WS_EX_NOACTIVATE;
            return p;
        }
    }

}

这将阻止 OSK 获得焦点,从而允许键以当前活动的应用程序为目标。

有关更多详细信息,请参阅我在一个问题中的示例。

于 2013-07-05T14:53:49.493 回答
0
[System.Runtime.InteropServices.DllImport("user32.dll")]
private static extern bool SetForegroundWindow(IntPtr hWnd);

private void ActivateWindow()
{
    SetForegroundWindow(this.Handle);
}

使用此代码,假设您位于主应用程序窗口。如果没有,则需要this.Handle通过主窗口的句柄更改“”。

于 2020-08-28T06:42:51.497 回答