예제 #1
0
파일: Input.cs 프로젝트: RainmakerUA/mysrc
        public void TestInput()
        {
            ActivateProcessWindow("notepad");

            System.Threading.Thread.Sleep(200);

            Win32.SendInput(_testInputsI);

            System.Threading.Thread.Sleep(500);

            Win32.SendInput(new[] { INPUT.From(KEYBDINPUT.Char('\n')), });

            System.Threading.Thread.Sleep(200);

            Win32.SendInput(_testInputsI);
        }