私がやりたいこと: バックグラウンドで実行し、キーアップとキーダウンをキャプチャするプログラムがあります。特定のキーダウンで、現在アクティブなウィンドウにテキストを貼り付ける必要があります。
キーのキャプチャは機能していますが、現在アクティブなウィンドウにテキストを貼り付けるにはどうすればよいですか? (マウスの位置)
私がこれまでに持っているコードは、ここで見ることができます:
using System;
using System.IO;
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;
using System.Runtime.InteropServices;
using Utilities;
namespace Developper_Dashboard
{
public partial class Form1 : Form
{
globalKeyboardHook gkh = new globalKeyboardHook();
private bool IsADown = false;
private bool IsBDown = false;
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
this.Opacity = 0;
gkh.HookedKeys.Add(Keys.LControlKey);
gkh.HookedKeys.Add(Keys.LShiftKey);
gkh.HookedKeys.Add(Keys.Q);
gkh.KeyDown += new KeyEventHandler(gkh_KeyDown);
gkh.KeyUp += new KeyEventHandler(gkh_KeyUp);
}
void gkh_KeyUp(object sender, KeyEventArgs e)
{
if (e.KeyCode == Keys.Control)
{
IsADown = false;
}
if (e.KeyCode == Keys.LShiftKey)
{
IsBDown = false;
}
if (!IsADown | !IsBDown)
{
this.Opacity = 0;
}
//e.Handled = true;
}
void gkh_KeyDown(object sender, KeyEventArgs e)
{
if (e.KeyCode == Keys.LControlKey)
{
IsADown = true;
}
if (e.KeyCode == Keys.LShiftKey)
{
IsBDown = true;
}
if (IsADown && IsBDown)
{
this.Opacity = 1;
}
if (IsADown && IsBDown && e.KeyCode == Keys.Q)
{
//Send Clipboard to current active window
}
}
}
}