Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个容器控件(a Panel),其中Forms加载了许多。基于用户交互,我有.BringToFront()一定的形式。但是,在程序的其他部分,我想弄清楚当前是哪个表格。(换句话说,确定哪个是最后一个.BringToFront()调用其方法的表单。)
Panel
Forms
.BringToFront()
确定哪个控件在前面的最佳方法是什么?
您可以使用GetChildIndexControls 集合的方法来获取特定子控件的索引。
GetChildIndex
this.Controls.GetChildIndex(myControl);
最高值在顶部。