1、新建工程(MainTest.cs窗体)
2、添加窗体(ChildTest.cs窗体)
3、引用com组件“Microsoft WEB浏览器”
4、分别在两个窗体中添加“浏览器”控件
5、MainTest窗体中写
private void MainTest_Load(object sender, System.EventArgs e)
{
this.IsMdiContainer = true ;//设置成子窗体的容器(父窗体)
System.Object nullobject = 0;
axWebBrowser1.Navigate(" http://www.163.com",ref nullobject,ref nullobject,ref nullobject,ref nullobject); //默认的浏览网址
}
2、添加窗体(ChildTest.cs窗体)
3、引用com组件“Microsoft WEB浏览器”
4、分别在两个窗体中添加“浏览器”控件
5、MainTest窗体中写
private void MainTest_Load(object sender, System.EventArgs e)
{
this.IsMdiContainer = true ;//设置成子窗体的容器(父窗体)
System.Object nullobject = 0;
axWebBrowser1.Navigate(" http://www.163.com",ref nullobject,ref nullobject,ref nullobject,ref nullobject); //默认的浏览网址
}
private void axWebBrowser1_NewWindow2(object sender,AxSHDocVw.DWebBrowserEvents2_NewWindow2Event e)
//用来监控弹出窗体的事件
{
ChildTest newFrmChild = new ChildTest();
newFrmChild.MdiParent = this; // 设为子窗体
{
ChildTest newFrmChild = new ChildTest();
newFrmChild.MdiParent = this; // 设为子窗体