Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class Program
- {
- static void Main(string[] args)
- {
- var pInputs = new[] {
- new INPUT
- {
- type = InputType.KEYBOARD,
- U = new InputUnion
- {
- ki = { wScan = ScanCodeShort.KEY_H, wVk = VirtualKeyShort.KEY_H }
- }
- },
- new INPUT
- {
- type = InputType.KEYBOARD,
- U = new InputUnion
- {
- ki = { wScan = ScanCodeShort.KEY_H, wVk = VirtualKeyShort.KEY_H, dwFlags = KEYEVENTF.KEYUP }
- }
- },
- new INPUT
- {
- type = InputType.KEYBOARD,
- U = new InputUnion
- {
- ki = { wScan = ScanCodeShort.KEY_I, wVk = VirtualKeyShort.KEY_I }
- }
- },
- new INPUT
- {
- type = InputType.KEYBOARD,
- U = new InputUnion
- {
- ki = { wScan = ScanCodeShort.KEY_I, wVk = VirtualKeyShort.KEY_I, dwFlags = KEYEVENTF.KEYUP }
- }
- }
- };
- Process[] processes = Process.GetProcessesByName("notepad");
- if (processes.Length == 0)
- throw new Exception("Could not find the notepad process; is notepad running?");
- IntPtr WindowHandle = processes[0].MainWindowHandle;
- ForceForegroundWindow(WindowHandle);
- Thread.Sleep(2500);
- SendInput((uint)pInputs.Length, pInputs, INPUT.Size);
- }
- private static void ForceForegroundWindow(IntPtr hWnd)
- {
- uint foreThread = GetWindowThreadProcessId(GetForegroundWindow(), IntPtr.Zero);
- uint appThread = GetCurrentThreadId();
- if (foreThread != appThread)
- {
- var t = AttachThreadInput(foreThread, appThread, true);
- Console.WriteLine(t);
- SetForegroundWindow(hWnd);
- BringWindowToTop(hWnd);
- ShowWindow(hWnd, ShowWindowCommands.Show);
- var t2 = AttachThreadInput(foreThread, appThread, false);
- Console.WriteLine(t2);
- }
- else
- {
- BringWindowToTop(hWnd);
- ShowWindow(hWnd, ShowWindowCommands.Show);
- }
- }
- [DllImport("kernel32.dll")]
- static extern uint GetCurrentThreadId();
- [DllImport("user32.dll")]
- private static extern IntPtr GetForegroundWindow();
- [DllImport("user32.dll", SetLastError = true)]
- static extern uint GetWindowThreadProcessId(IntPtr hWnd, out uint lpdwProcessId);
- // When you don't want the ProcessId, use this overload and pass IntPtr.Zero for the second parameter
- [DllImport("user32.dll")]
- static extern uint GetWindowThreadProcessId(IntPtr hWnd, IntPtr ProcessId);
- [DllImport("user32.dll")]
- static extern bool AttachThreadInput(uint idAttach, uint idAttachTo, bool fAttach);
- [DllImport("user32.dll")]
- [return: MarshalAs(UnmanagedType.Bool)]
- static extern bool ShowWindow(IntPtr hWnd, ShowWindowCommands nCmdShow);
- [DllImport("user32.dll", SetLastError = true)]
- static extern bool BringWindowToTop(IntPtr hWnd);
- [DllImport("user32.dll", SetLastError = true)]
- static extern bool BringWindowToTop(HandleRef hWnd);
- [DllImport("user32.dll")]
- static extern uint SendInput(uint nInputs, [MarshalAs(UnmanagedType.LPArray), In] INPUT[] pInputs, int cbSize);
- [DllImport("user32.dll")]
- [return: MarshalAs(UnmanagedType.Bool)]
- static extern bool SetForegroundWindow(IntPtr hWnd);
- [DllImport("user32.dll", SetLastError = true)]
- static extern IntPtr FindWindow(string lpClassName, string lpWindowName);
- [DllImport("user32.dll", EntryPoint = "FindWindow", SetLastError = true)]
- static extern IntPtr FindWindowByCaption(IntPtr ZeroOnly, string lpWindowName);
- [StructLayout(LayoutKind.Sequential)]
- public struct INPUT
- {
- internal InputType type;
- internal InputUnion U;
- internal static int Size
- {
- get { return Marshal.SizeOf(typeof(INPUT)); }
- }
- }
- internal enum InputType : uint
- {
- MOUSE = 0,
- KEYBOARD = 1,
- HARDWARE = 2
- }
- [StructLayout(LayoutKind.Explicit)]
- internal struct InputUnion
- {
- [FieldOffset(0)]
- internal MOUSEINPUT mi;
- [FieldOffset(0)]
- internal KEYBDINPUT ki;
- [FieldOffset(0)]
- internal HARDWAREINPUT hi;
- }
- [StructLayout(LayoutKind.Sequential)]
- internal struct KEYBDINPUT
- {
- internal VirtualKeyShort wVk;
- internal ScanCodeShort wScan;
- internal KEYEVENTF dwFlags;
- internal int time;
- internal UIntPtr dwExtraInfo;
- }
- [StructLayout(LayoutKind.Sequential)]
- internal struct HARDWAREINPUT
- {
- internal int uMsg;
- internal short wParamL;
- internal short wParamH;
- }
- [StructLayout(LayoutKind.Sequential)]
- internal struct MOUSEINPUT
- {
- internal int dx;
- internal int dy;
- internal int mouseData;
- internal MOUSEEVENTF dwFlags;
- internal uint time;
- internal UIntPtr dwExtraInfo;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement