1上的標籤)i的形式製造一個TabControl和刪除所有的選項添加第二個標籤 2)我犯了一個按鈕,看起來像一個加號和一個看起來像一個減號,並添加以下代碼:
int Counter = 1;
this.tabControl1.TabPages.Add("Page " + Counter);
this.tabControl1.SelectTab(Counter - 1);
Counter = Counter + 1;
這將增加一個新的標籤與標題頁(1,2,3,4,..., n)然後我把代碼,當我按下去指定的網址:
RequestAndResponsHelper RS = new RequestAndResponsHelper(Url.Text);
StringBuilder s = new StringBuilder();
s = RS.GetRequest();//get the request from a different class
string HtmlString = s.ToString();
rtb = new RichTextBox();
rtb.AppendText(HtmlString);
rtb.Name = "RichText";
rtb.Dock = DockStyle.Fill;
this.tabControl1.SelectedTab.Controls.Add(rtb);
哪個UI框架? WinForms,WPF,Silverlight,XNA? (好吧,可能不是XNA。) –
我正在使用winForms –
好吧,我爲你添加了標籤。 –