c#中怎么获取当前选中控件

假设你panel的ID是“pnl”
int iLblCnt = 0;
foreach (Control item in this.Controls)
{
if (item.Name == "pnl")
{
foreach (Control subitem in item.Controls)
{
if (subitem.GetType().Name == "Label")
{
++iLblCnt ;
}
}
}
}
可以根据FindContols来找panel里面的空间!

Qyouu
浏览 1667回答 2
2回答

冉冉说

可以采用foreach循环,遍历你的选定范围,寻找当前的焦点控件,如果符合条件则中断循环
打开App,查看更多内容
随时随地看视频慕课网APP