C#获取窗口里面的信息
发布网友
发布时间:2022-04-22 18:45
我来回答
共1个回答
热心网友
时间:2023-11-11 07:53
public void SearchChild(string childName)
{
FormCollection fcs = Application.OpenForms;
for (int i = 0; i < fcs.Count; i++)
{
if (fcs[i].Name == childName)//搜索子窗口的名字
{
foreach (Control c in fcs[i].Controls)
{
if (c is TextBox)
{
TextBox t = c as TextBox;
//这里你就可以保存t的Text了,你自己写吧,你是保存到某一个地方
}
}
}
}
}