مثال:تمامی لیبل رو تغییرمیده
     foreach (Control cn   in this.Controls)
{
if (cn is Label)
{
cn.Text = "hi";
}
}