I wonder, is there a way to make internet explorer style none window like wpf application.
Thanks,
Code :
public static void test()
{
System.Type oType = System.Type.GetTypeFromProgID("InternetExplorer.Application");
SHDocVw.InternetExplorer ie = Activator.CreateInstance(oType) as SHDocVw.InternetExplorer;
ie.MenuBar = false;
ie.ToolBar = 0;
ie.StatusBar = false;
ie.AddressBar = false;
ie.Width = 800;
ie.Height = 600;
ie.Visible = true;
ie.Navigate("http://m.naver.com");
}