1

在 C# 中,我想点击一个按钮。我不想使用像 button.click+=... 这样的按钮事件,我想点击表单应用程序中的按钮,我的电脑的任何键都会被点击。我尝试了 SendKeys,但效果不佳。

我需要更多的想法如何做到这一点。我试过了:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Threading;

namespace WindowsFormsApplication1
{
public partial class Form5 : Form
{
    Button[,] b;
    List<char> chrlist = new List<char>();
    public Form5()
    {
        InitializeComponent();
        start();
    }

    public void start()
    {
        panel1.Controls.Clear();
        int m = 13;
        int n = 2;
        b = new Button[n, m];
        int x = 0;
        int i, j;
        int y = 0;
        // int count = 0;
        int chr1=(int)'A';
        for (i = 0; i < n; i++)
        {
            for (j = 0; j < m; j++)
            {
                //  count++;
                b[i, j] = new Button();
                b[i, j].SetBounds(x, y, panel1.Size.Width / m, panel1.Size.Height / n);
                b[i, j].Name = i + "," + j;
                b[i, j].Text = ((char)chr1).ToString();
                   b[i, j].Click += new EventHandler(ButtonClick);
                panel1.Controls.Add(b[i, j]);
                x = x + panel1.Size.Width / m;
                chr1++;
            }
            y = y + panel1.Size.Height / n;
            x = 0;
        }
    }

    public void ButtonClick(Object sender, EventArgs e)
    {
        Button a = (Button)sender;
        MessageBox.Show(a.Text);

    }
    public void started()
    {
        while (true)
        {
            int sec = 1000;
            Thread.Sleep(sec * 3);
            SendKeys.SendWait("{TAB}");
        }

    }


    private void button1_Click(object sender, EventArgs e)
    {
        Thread workerThread = new Thread(started);
        workerThread.Start();

    }
}

}

这在我的其他应用程序中不起作用。

4

1 回答 1

3

在我看来,您正在尝试构建屏幕键盘

前提:使用 SendKeys 向活动应用程序发送一封信。

问题:当您单击表单中的按钮发送信件时,哪个应用程序具有焦点?

答案:你的。因此,密钥将被发送到您的应用程序,而不是最后一个聚焦的应用程序。

解决方案:防止您的应用程序变得专注。

这可以通过 CreateParams() 在扩展窗口样式中设置 WS_EX_NOACTIVATE 标志来完成

    private const int WS_EX_NOACTIVATE = 0x08000000;

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

    public void ButtonClick(Object sender, EventArgs e)
    {
        SendKeys.Send(((Control)sender).Text);
    }

现在,当您单击 OSK 中的按钮时,当前聚焦的应用程序将保持聚焦(因为您的应用程序无法接收焦点)并且 SendKeys() 将正确定位它。

*注意事项:仅当屏幕键盘是不同的应用程序时才有效。换句话说,OSK 不能针对您自己应用程序中的其他表单……这是一个奇怪的焦点问题。要定位您自己的应用程序,您必须手动跟踪应用程序中的最后一个表单并在发送密钥之前再次将其聚焦。

这是您向记事本发送密钥的 OSK: 屏幕键盘示例

这是我的测试应用程序中的所有代码:

public partial class Form1 : Form
{
    private Button[,] b;

    private const int WS_EX_NOACTIVATE = 0x08000000;

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

    public Form1()
    {
        InitializeComponent();
        start();
    }

    public void start()
    {
        panel1.Controls.Clear();
        int m = 13;
        int n = 2;
        b = new Button[n, m];
        int x = 0;
        int i, j;
        int y = 0;
        // int count = 0;
        int chr1 = (int)'A';
        for (i = 0; i < n; i++)
        {
            for (j = 0; j < m; j++)
            {
                //  count++;
                b[i, j] = new Button();
                b[i, j].SetBounds(x, y, panel1.Size.Width / m, panel1.Size.Height / n);
                b[i, j].Name = i + "," + j;
                b[i, j].Text = ((char)chr1).ToString();
                b[i, j].Click += new EventHandler(ButtonClick);
                panel1.Controls.Add(b[i, j]);
                x = x + panel1.Size.Width / m;
                chr1++;
            }
            y = y + panel1.Size.Height / n;
            x = 0;
        }
    }

    public void ButtonClick(Object sender, EventArgs e)
    {
        SendKeys.Send(((Control)sender).Text);
    }

}
于 2013-06-08T16:07:47.103 回答