Ejemplo n.º 1
0
        static void Main(string[] args)
        {
            string consoleResult = Console.ReadLine();

            MouseClick mouseClick = new MouseClick();

            if (consoleResult == "Base")
            {
                using (var _get = new Get())
                {
                    _get.Data();
                }
            }
            else if (consoleResult == "Main")
            {
                string oku = Console.ReadLine();
                using (var _set = new Set(oku))
                {
                    try
                    {
                        while (true)
                        {
                            using (var mouse = new Mouse())
                            {
                                _set.Data();
                            }
                            if (GetMouseClick.GetRightButtonState() != 0)
                            {
                                Console.SetWindowPosition(0, 1);
                            }
                            else
                            {
                                Console.SetWindowPosition(0, 0);
                            }
                            if (GetMouseClick.GetLeftButtonState() != 0)
                            {
                                Console.WindowTop = Console.WindowTop + 1;
                                //Console.SetWindowPosition(Console.WindowLeft, Console.WindowTop + 1);
                            }
                            else
                            {
                                Console.WindowTop = Console.WindowTop + 1;
                                //Console.SetWindowPosition(Console.WindowLeft, Console.WindowTop - 1);
                            }
                        }
                    }
                    catch (Exception e)
                    {
                        Console.WriteLine(e.Message);
                        throw;
                    }
                    finally
                    {
                    }
                }
            }
        }
Ejemplo n.º 2
0
 public string Get()
 {
     Thread.Sleep(100);
     TCPGetWindowSize = Window.GetSize();
     _message         = Convert.ToString(getMousePosition.GetCursorPosition().X) + "," + Convert.ToString(getMousePosition.GetCursorPosition().Y) + "," + Convert.ToString(GetMouseClick.GetLeftButtonState()) + "," + Convert.ToString(GetMouseClick.GetRightButtonState());
     return(_message);
 }