Skip to content

Instantly share code, notes, and snippets.

@Cyp9715
Cyp9715 / VirtualInput.cs
Last active April 18, 2023 18:23 — forked from DrustZ/Simulation.cs
가상 키보드, 마우스를 구현한 코드입니다.(키보드 동시입력이 가능합니다.) 원작자인 DrustZ 님의 코드에서 .NET 6 버전에 맞게 일부 수정 하였습니다.
using System;
using System.ComponentModel;
using System.Drawing;
using System.Linq;
using System.Runtime.InteropServices;
using System.Security;
using System.Security.Permissions;
using System.Windows.Input;
namespace Demo