在循环找查找Label并为其设置提示示例:for (i = 0; i < 2; i++)
{
for (j = 0; j < 8; j++)
{
Control[] IQ = Controls.Find($"LI{i}_{j}", true);
if (IQ.Any())// 如果找到的话
{
Label IQL = IQ.First() as Label;
Tips.SetToolTip(IQL, $"I{i}.{j}");
IQL.BackColor = Color.Lime;
}
}
}