Files
desktop/WirelessTextSyncer.Windows/Services/KeyboardInjectionService.cs
2026-05-15 20:12:07 +08:00

25 lines
449 B
C#

namespace WirelessTextSyncer.Windows.Services;
public sealed class KeyboardInjectionService : IKeyboardInjectionService
{
public void InsertText(string text)
{
if (string.IsNullOrEmpty(text))
{
return;
}
SendKeys.SendWait(text);
}
public void Backspace()
{
SendKeys.SendWait("{BACKSPACE}");
}
public void Enter()
{
SendKeys.SendWait("{ENTER}");
}
}