winform 如何实现像IE那种同时可以打开多个网页
我现在在使用C#Winform的webbrowser控件做一个小的浏览器,现在想实现想IE浏览器那种同时可以打开多个网页(选项卡)的功能,不知道如何实现。求解决方案、有源...
我现在在使用C#Winform的webbrowser控件做一个小的浏览器,现在想实现想IE浏览器那种同时可以打开多个网页(选项卡)的功能,不知道如何实现。求解决方案、有源代码更好。
展开
2个回答
展开全部
晕~原来有源代码。。我还特意写一个。。。。算了你看看吧~
也是Tab实现,我只想到动态添加tab
里面再放个 webbrowser就差不多了~基本都是这么实现的吧。
如下:
------------------------------------------------------
private void button3_Click(object sender, EventArgs e)
{
Form f = new Form();
f.Name ="新选项卡";
f.BackColor = Color.Blue;
this.tabControl1.TabPages[0].Controls.Clear();
new_tab(tabControl1, f.Name);
f.Show();
}
private System.Windows.Forms.TabPage new_tabPage;
int i = 0;
public void new_tab(TabControl t,string Fname)
{
this.new_tabPage = new System.Windows.Forms.TabPage();
this.SuspendLayout();
//
// new_tabPage
//
this.new_tabPage.Location = new System.Drawing.Point(4, 21);
this.new_tabPage.Name = "tabPage_"+i;
this.new_tabPage.Padding = new System.Windows.Forms.Padding(3);
this.new_tabPage.Size = new System.Drawing.Size(192, 75);
this.new_tabPage.TabIndex = 1;
this.new_tabPage.Text = Fname;
this.new_tabPage.UseVisualStyleBackColor = true;
this.new_tabPage.Tag = "tabPage_" + i;
t.TabPages.Add(new_tabPage);
i++;
}
public void del_tab(TabControl t, string Fname)
{
t.TabPages.RemoveByKey(Fname);
}
//双击删除TAB
private void tabControl1_MouseDoubleClick(object sender, MouseEventArgs e)
{
if (tabControl1.TabCount > 1)
del_tab(tabControl1, tabControl1.SelectedTab.Name);
else if (tabControl1.TabCount == 1 && tabControl1.SelectedTab.Name != "about:blank")
{
del_tab(tabControl1, tabControl1.SelectedTab.Name);
new_tab(tabControl1, "about:blank");
}
}
也是Tab实现,我只想到动态添加tab
里面再放个 webbrowser就差不多了~基本都是这么实现的吧。
如下:
------------------------------------------------------
private void button3_Click(object sender, EventArgs e)
{
Form f = new Form();
f.Name ="新选项卡";
f.BackColor = Color.Blue;
this.tabControl1.TabPages[0].Controls.Clear();
new_tab(tabControl1, f.Name);
f.Show();
}
private System.Windows.Forms.TabPage new_tabPage;
int i = 0;
public void new_tab(TabControl t,string Fname)
{
this.new_tabPage = new System.Windows.Forms.TabPage();
this.SuspendLayout();
//
// new_tabPage
//
this.new_tabPage.Location = new System.Drawing.Point(4, 21);
this.new_tabPage.Name = "tabPage_"+i;
this.new_tabPage.Padding = new System.Windows.Forms.Padding(3);
this.new_tabPage.Size = new System.Drawing.Size(192, 75);
this.new_tabPage.TabIndex = 1;
this.new_tabPage.Text = Fname;
this.new_tabPage.UseVisualStyleBackColor = true;
this.new_tabPage.Tag = "tabPage_" + i;
t.TabPages.Add(new_tabPage);
i++;
}
public void del_tab(TabControl t, string Fname)
{
t.TabPages.RemoveByKey(Fname);
}
//双击删除TAB
private void tabControl1_MouseDoubleClick(object sender, MouseEventArgs e)
{
if (tabControl1.TabCount > 1)
del_tab(tabControl1, tabControl1.SelectedTab.Name);
else if (tabControl1.TabCount == 1 && tabControl1.SelectedTab.Name != "about:blank")
{
del_tab(tabControl1, tabControl1.SelectedTab.Name);
new_tab(tabControl1, "about:blank");
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询