using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
using System.Windows.Forms;
|
|
namespace LB_SmartVision.Forms.Pages
|
{
|
public class MyPage : TabPage
|
{
|
public UserControl UserControl;
|
|
public MyPage()
|
{
|
UserControl = new UserControl();
|
UserControl.Dock = DockStyle.Fill;
|
Name = "UserControl";
|
Text = "用户控件";
|
this.Controls.Add(UserControl);
|
}
|
|
public MyPage(UserControl _userControl)
|
{
|
this.UserControl = _userControl;
|
this.UserControl.Dock = DockStyle.Fill;
|
Name = _userControl.Name;
|
Text = _userControl.Text;
|
this.Controls.Add(this.UserControl);
|
}
|
}
|
}
|