轮胎外观检测添加思谋语义分割模型检测工具
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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);
        }
    }
}