在C#中发送键击

时间:2016-01-17 08:14:50

标签: c#

帮助我一直试图在C#中模拟按键WIN + TAB成功编译buti没有得到预期的效果,我不知道我在做什么错误是我的代码的一部分

Case "Switch Workspace":
     Log.Text += " \n Switch Workspace";
     SendKeys.Send("{HOME}{TAB}");
break;

1 个答案:

答案 0 :(得分:0)

这是一个Windows窗体示例应用程序,并成功模拟ALT + TAB:

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

namespace SendKeysCS
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            SendKeys.Send("%{TAB}");
            SendKeys.Send{"{Ctrl+Esc}"}; // Simulates Windows-Key
        }
    }
}

查看SendKeys.Send方法

的MSDN文档