Exemplo n.º 1
0
        public DesktopWindow GetWindowByHandle(string handle)
        {
            DesktopWindow window = GetWindowByHandle(Int32.Parse(handle));

            window.UpdateProcessData();

            return(window);
        }
Exemplo n.º 2
0
        public DesktopWindow GetWindowByName(string title)
        {
            DesktopWindow window = GetWindowByTitle(title);

            window.UpdateProcessData();

            return(window);
        }