TabControl winform c#

时间:2010-12-21 11:33:30

标签: winforms tabcontrol

有谁知道为什么我的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);
        }
    }
}

1 个答案:

答案 0 :(得分:2)

您需要将TabControl添加到Controls集合:

this.Controls.Add(tc);