C#Tabcontrol组件怎么显示Form窗体
1个回答
展开全部
将窗体显示在TabControl中
1)新建一个“Windows 窗体应用程序”项目。然后在项目中添加窗体Form2
2)在Form1上布置控件TabControl
3)在Form1后台代码Form1.csz中
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();
Form2 f2 = new Form2();
// 将窗体Form2显示在tabPage[0]中
f2.TopLevel = false;
tabControl1.TabPages[0].Controls.Add(f2);
f2.Show();
}
}
}
4)运行效果
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询