c#显示html代码
时间: 2023-12-07 17:02:43 浏览: 156
C#实现带阴历显示的日期代码
你可以使用WebBrowser控件来显示HTML代码。以下是一个简单的示例:
```csharp
string htmlCode = "<html><body><h1>Hello, World!</h1></body></html>";
webBrowser1.DocumentText = htmlCode;
```
其中,webBrowser1 是一个WebBrowser控件的实例。你需要将其添加到你的窗体上。在上面的示例中,我们将一个简单的HTML代码赋值给了webBrowser1的DocumentText属性,它将在该控件中呈现HTML内容。
阅读全文