标题:请问C#中动态生成控件时怎么设置控件位于最底层
只看楼主
mcuee
Rank: 1
等 级:新手上路
帖 子:5
专家分:0
注 册:2011-8-20
 问题点数:0 回复次数:1 
请问C#中动态生成控件时怎么设置控件位于最底层
比如:
程序代码:

 List<Label> list = new List<Label>();        

 for (int i = 0; i < count; i++)
{
                Label label = new Label()
                {   Text = "Ch" + (i + 1).ToString(),
                    Size = new Size(50, 30),
                    Font = new Font("Courier New", 10F, FontStyle.Regular, GraphicsUnit.Point, ((Byte)(0))),                                         
                    Location = new Point(110*(xPos)+20, yPos)  
                  //此处如何设置控件位于底层
                };
}
搜索更多相关主题的帖子: 动态生成 底层 控件 Label new 
2020-09-23 17:17
mcuee
Rank: 1
等 级:新手上路
帖 子:5
专家分:0
注 册:2011-8-20
得分:0 
自己解决了, 添加TabIndex=0 就行了,数字越小越接近底层
2020-09-24 08:35



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-503258-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.144823 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved