예제 #1
0
파일: Window.cs 프로젝트: Uranus359/WRing
 public static Window Find(string clname, string title)
 {
     return(new Window()
     {
         Handle = WinAPI.FindWindow(clname, title)
     });
 }
예제 #2
0
파일: Window.cs 프로젝트: Uranus359/WRing
 public static Window Find(string title)
 {
     return(new Window()
     {
         Handle = WinAPI.FindWindow(null, title)
     });
 }