如何使用 Windows 表单显示 Html 文件?

How do I display Html file using Windows Forms?

我正在尝试在我创建的表单上显示本地 Html 文件。我写的代码是 TargetHTMLCODE and that code should be display on this webpage form WebPage Form 。你能告诉我哪里做错了吗?感谢您的回复。

您不需要创建 webBrowser1 的新实例。只需将其放入表单中,然后在表单的 Load 事件中导航到您的 HTML.

  public Form1()
  {
       InitializeComponent();
       Load += Form1_Load;
  }

  private void Form1_Load(object sender, EventArgs e)
  {
       webBrowser1.Navigate(new Uri(@"file:///C:/test.html"));
  }