1
有誰知道爲什麼我的tabcontrol不會顯示在這個表單上?有一種感覺可能是簡單的,但目前我只是得到一個空白表格。TabControl winform c#
感謝
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);
}
}
}
感謝克勞斯 - 被我逼瘋了最後10分鐘! – Steve 2010-12-21 11:49:21
@Steve,呵呵,不客氣:-) – 2010-12-21 11:50:28