日期:2014-05-17 浏览次数:20895 次
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void btnShowDlg_Click(object sender, EventArgs e)
{
Form2 f2 = new Form2();
TabControl tc = new TabControl();
tc.Size = this.tabControl1.Size;
tc.TabPages.Add(this.tabPage1);
f2.ItsControls.Add(tc);
f2.ShowDialog();
this.tabControl1.TabPages.Add(tc.TabPages[0]);
}
}
}
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace WindowsFormsApplication1
{
public partial class Form2 : Form
{
public System.Windows.Forms.Control.ControlCollection ItsControls
{
get { return Controls; }
}
public Form2()
{
&nbs