wpf 4

C# -- IE automation #4 -- html 구조 파헤치기 출처: http://freeprog.tistory.com/214 [취미로 하는 프로그래밍 !!!]

http://freeprog.tistory.com/214 //HtmlDocument doc = webBrowser1.Document; mshtml.HTMLDocument doc2 = (mshtml.HTMLDocument)_currentWeb.Document; // as HtmlDocument;//webBrowser2.Document; if (doc2 == null) return; mshtml.IHTMLElementCollection elems = doc2.getElementsByTagName("div"); foreach (mshtml.IHTMLElement item in elems) //foreach (HtmlElement item in doc2.GetElementsBy..

wpf 2017.11.14