//Access the property of a label in a usercontrol from the form containerLabel lb1 = (Label)myUserControl1.Controls["label1"];lb1.Text = "Good Evening!";// Set the container properties from the usercontrol// the container may be a form or another usercontrolthis.Parent.BackColor = Color.Cyan;this.ParentForm.BackColor = Color.Green;