tags:

views:

36

answers:

2

I'm looking to embed web content in my Windows application. Is there a class in the .NET framework for this? If not, are there third party html rendering libraries in C#?

+3  A: 

WebBrowser

Jason
Doh! Couldn't find it on google or SO, but it's right where it should be. Gotta love .NET
Robert Karl
+2  A: 

Or, the WPF equivalent: System.Windows.Controls.WebBrowser

JaredReisinger