Code Bye

c# TabControl怎么在某一页动态添加按钮


像这样一样求高手告知

解决方案

30

不知道是不是你想要的 ,只是个简单的例子 你需要本人去写样式和布局代码
Button btn = new Button()
            {
                Text = "123",
                Width = 100,
                Height = 40
            };
            tabControl1.TabPages[0].Controls.Add(btn);
            btn.Location=这里写添加后的位置即可

20

直接添加,假设选项卡111对应的Name是tabPage4,则
Button btn=new Button();
btn.Text="tempButton";
btn.Location=new Point(20,20);
tabPage4.Controls.Add(btn);

10

把Button放在FlowLayoutPanel里

CodeBye 版权所有丨如未注明 , 均为原创丨本网站采用BY-NC-SA协议进行授权 , 转载请注明c# TabControl怎么在某一页动态添加按钮