有谁知道为什么我的tabcontrol不会显示在此表单上?感觉它可能很简单,但目前我只是得到一个空白的表格。
由于
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace test_project_3
{
public partial class TabTest : Form
{
public TabTest()
{
InitializeComponent();
WebBrowser WB = new WebBrowser();
WB.Navigate("www.google.com");
TabControl tc = new TabControl();
tc.Dock = DockStyle.Fill;
tc.Show();
TabPage tp = new TabPage();
tp.Text = "test";
tp.Show();
tp.Controls.Add(WB);
tc.TabPages.Add(tp);
}
}
}
答案 0 :(得分:2)
您需要将TabControl
添加到Controls
集合:
this.Controls.Add(tc);