using Mono.Mozilla; using System; using System.Windows.Forms; public class TestForm : Form { public TestForm() { WebControl wc = new WebControl(); this.Controls.Add(wc); this.Show(); } public static void Main() { //Application.Init(); Application.Run(new TestForm()); } }