Are there any other methods of bringing a control to the front other than control.BringToFront()?
control.BringToFront()
I have series of labels on a user control and when I
Have you tried Invalidate() after BringToFront()? BringToFront does not raise the Paint event
Invalidate()
BringToFront()
try this:
private void SendLabelsToBack() { foreach (var label in userContainer.Controls) { label.SendToBack(); label.Invalidate(); } }