私のアプリケーションは html を解析し、その内容をリスト ボックスにロードする必要があります。webclient 経由で html を取得できましたが、解析に行き詰まりました。
Htmlagilitypack と Fizzler について聞いたことがありますが、その使用法に関するチュートリアルや例は見つかりませんでした。
以下に示す html ドキュメントから "first_content" と "second_content" をリスト ボックスに取り込む方法を教えてください。
<html>
<body>
<div>
<section>
<article>
<header>
<hgroup>
<h1>
first_content
</h1>
</hgroup>
</header>
<ul>
<li>
second_content
</li>
</ul>
</article>
</section>
</div>
</body>
</html>