Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
C#を使用してWebBrowserフォームから別のフォームに文字列を読み取るにはどうすればよいですか?
DOM を使用できます。たとえば、WebBrowser が次のマークアップを含むページを表示するとします。
<div id="t"> .... </div>
JavaScript で行っているのと同じように、そのテキストを受け取ることができます。
webBrowser.Document.GetElementById("t").InnerText