Skip to content

HossamElwahsh/AvaloniaInputSimulator

 
 

Repository files navigation

Windows Input Simulator (C# SendInput Wrapper - Simulate Keyboard and Mouse)

The Windows Input Simulator provides a simple .NET (C#) interface to simulate Keyboard or Mouse input using the Win32 SendInput method. All of the Interop is done for you and there's a simple programming model for sending multiple keystrokes.

Windows Forms provides the SendKeys method which can simulate text entry, but not actual key strokes. Windows Input Simulator can be used in WPF, Windows Forms and Console Applications to synthesize or simulate any Keyboard input including Control, Alt, Shift, Tab, Enter, Space, Backspace, the Windows Key, Caps Lock, Num Lock, Scroll Lock, Volume Up/Down and Mute, Web, Mail, Search, Favorites, Function Keys, Back and Forward navigation keys, Programmable keys and any other key defined in the Virtual Key table. It provides a simple API to simulate text entry, key down, key up, key press and complex modified key strokes and chords.

NuGet

Install-Package InputSimulator

Custom Fork of michaelnoonan/inputsimulator

Additions on this fork by @HossamElwahsh

  • Added function Paste(PasteMode mode) simulates CTRL+V/Insert+Shift press, useful in RDP situations
  • Added function Paste(PasteMode mode, int delay) simulates CTRL+V/Insert+Shift press, useful in RDP situations with delay in ms
  • Added function WhichWindow() : InPtr to get current window hWnd handle
  • Added function GetActiveWindowTitle() : string to get current window title
  • Added function GetActiveWindowTitle(IntPtr hWnd) : string to get current window title of a given handle
  • Added function SetFocus(IntPtr hWnd) : IntPtr? set focus to given hWnd Pointer Handle
  • Added function GetActiveWindowExeName() : string gets windows process full file name
  • Added function GetWindowExeName(IntPtr hWnd) : string gets windows process file name for a specific hWnd IntPtr window handle
  • Added function GetWindowData() : Win32Window gets all data for current active window
  • Added function GetWindowData(IntPtr hWnd) : Win32Window gets all data for given hWnd window

Fixes

  • Fixed an issue with \r \n (new line characters) are not simulating new line in some apps like Notepad in Win11
  • Updated Net Framework to 4.8
public void MyProgram()
{
    var inputSim = new InputSimulator();
    var what = inputSim.InputDeviceState.WhichWindow();
    var nameIt = inputSim.InputDeviceState.GetActiveWindowTitle();
    Console.Write(what);
    Console.Write(nameIt);
}

Examples

Example: Single key press

public void PressTheSpacebar()
{
  InputSimulator.SimulateKeyPress(VirtualKeyCode.SPACE);
}

Example: Key-down and Key-up

public void ShoutHello()
{
  // Simulate each key stroke
  InputSimulator.SimulateKeyDown(VirtualKeyCode.SHIFT);
  InputSimulator.SimulateKeyPress(VirtualKeyCode.VK_H);
  InputSimulator.SimulateKeyPress(VirtualKeyCode.VK_E);
  InputSimulator.SimulateKeyPress(VirtualKeyCode.VK_L);
  InputSimulator.SimulateKeyPress(VirtualKeyCode.VK_L);
  InputSimulator.SimulateKeyPress(VirtualKeyCode.VK_O);
  InputSimulator.SimulateKeyPress(VirtualKeyCode.VK_1);
  InputSimulator.SimulateKeyUp(VirtualKeyCode.SHIFT);

  // Alternatively you can simulate text entry to acheive the same end result
  InputSimulator.SimulateTextEntry("HELLO!");
}

Example: Modified keystrokes such as CTRL-C

public void SimulateSomeModifiedKeystrokes()
{
  // CTRL-C (effectively a copy command in many situations)
  InputSimulator.SimulateModifiedKeyStroke(VirtualKeyCode.CONTROL, VirtualKeyCode.VK_C);

  // You can simulate chords with multiple modifiers
  // For example CTRL-K-C whic is simulated as
  // CTRL-down, K, C, CTRL-up
  InputSimulator.SimulateModifiedKeyStroke(VirtualKeyCode.CONTROL, new [] {VirtualKeyCode.VK_K, VirtualKeyCode.VK_C});

  // You can simulate complex chords with multiple modifiers and key presses
  // For example CTRL-ALT-SHIFT-ESC-K which is simulated as
  // CTRL-down, ALT-down, SHIFT-down, press ESC, press K, SHIFT-up, ALT-up, CTRL-up
  InputSimulator.SimulateModifiedKeyStroke(
    new[] { VirtualKeyCode.CONTROL, VirtualKeyCode.MENU, VirtualKeyCode.SHIFT },
    new[] { VirtualKeyCode.ESCAPE, VirtualKeyCode.VK_K });
}

Example: Simulate text entry

public void SayHello()
{
  //InputSimulator.SimulateTextEntry("Say hello!");
  new InputSimulator().Keyboard.TextEntry("Say hello!");
}

Example: Determine the state of different types of keys

public void GetKeyStatus()
{
  // Determines if the shift key is currently down
  var isShiftKeyDown = InputSimulator.IsKeyDown(VirtualKeyCode.SHIFT);

  // Determines if the caps lock key is currently in effect (toggled on)
  var isCapsLockOn = InputSimulator.IsTogglingKeyInEffect(VirtualKeyCode.CAPITAL);
}

History

It was originally written for use in the WpfKB (WPF Touch Screen Keyboard) project to simulate real keyboard entry to the active window. After looking for a comprehensive wrapper for the Win32 and User32 input simulation methods and coming up dry I decided to write and open-source this project. I hope it helps someone out there!

About

Windows Input Simulator (C# SendInput Wrapper - Simulate Keyboard and Mouse) works with Avalonia

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C# 100.0%