Hello!
I want to set up inline content of a WPF WebBrowser control:
<WebBrowser>
<html>
<body><b>Inline content.</b></body>
</html>
</WebBrowser>
Or alternatively:
Dim wb As New WebBrowser
wb.Content = "<html><body><b>Programmatic content</b></body></html>"