作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我这里有一个旧系统,它将用户控件加载到一种面板中,然后当用户单击菜单项时,他们会找到该控件,然后调用 BringToFront
方法控件,使其成为面板中可见的用户控件。
我需要知道如何获取面板中的当前 Front
控件?
亲切的问候
最佳答案
我想你在找GetChildIndex
,这将为您提供控件的 z-oder 值。因此,您可以为当前表单控件集合中的每个子控件测试此值,然后:
The control with an index value of zero is at the top of the z-order, and higher numbers are closer to the bottom.
类似于:
foreach (Control x in parent.Controls)
{
if(parent.Controls.GetChildIndex(x) == 0)
{
//x is the front most control
}
}
关于c# - 获得最前沿的控制,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9312302/
我正在处理我的第一个代码,但我又遇到了一个新问题。 我在 vectorA 中有一堆值,我想执行以下 while 循环(伪代码): “创建一个变量double SUM = 0 和一个变量int coun
我是一名优秀的程序员,十分优秀!