0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

WebBrowser コントロールで XML 表示

Last updated at Posted at 2020-01-03

概要

XML を画面に表示する場合、System.Windows.Forms.WebBrowser コントロールを使用し、DocumentText プロパティに内容をセットすることで実現可能だが、タグ名に head などがある場合に上手く表示されない問題がある。
(head で始まる header 等でもダメ)

表示させるXML

<?xml version="1.0" encoding="utf-8"?>
<doc>
  <header>ヘッダ</header>
  <data>データ</data>
</doc>

IE で表示した場合、下図のようになる。

IE で表示
WebBrowser_IE.png

通常

DocumentText に文字列を設定した場合は IE と同じように表示されない。。
コントロール内部で HTML の HEAD タグと誤認してそう。

WebBrowser で表示 1
WebBrowser_EG1.png
通常コード
this.webBrowser1.DocumentText = xml;

改良

XML 文字列を一旦ファイルに保存し、Navigate メソッドを呼ぶことで、IE と同じような表示となった。

WebBrowser で表示 2
WebBrowser_EG2.png
改良コード
var path = Path.Combine(Path.GetTempPath(), $"{Guid.NewGuid()}.xml");
File.WriteAllText(path, xml);
this.webBrowser1.Navigate(path);
File.Delete(path);
0
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?