예제 #1
0
        public DesktopWindow GetWindowByHandle(string handle)
        {
            DesktopWindow window = GetWindowByHandle(Int32.Parse(handle));

            window.UpdateProcessData();

            return(window);
        }
예제 #2
0
        public DesktopWindow GetWindowByName(string title)
        {
            DesktopWindow window = GetWindowByTitle(title);

            window.UpdateProcessData();

            return(window);
        }