简体   繁体   中英

Bring Winforms control to front

Are there any other methods of bringing a control to the front other than control.BringToFront() ?

I have series of labels on a user control and when I try to bring one of them to front it is not working. I have even looped through all the controls and sent them all the back except for the one I am interested in and it doesn't change a thing.

Here is the method where a label is added to the user control

private void AddUserLabel()
{
    var field = new UserLabel();

    userContainer.Controls.Add(field);
    SendLabelsToBack(); // Send All labels to back

    userContainer.Controls[field.FieldName].BringToFront();
}

Here is the method that sends all of them to the back.

private void SendLabelsToBack()
{
    foreach (var label in userContainer.Controls);
        label.SendToBack();
}

Yeah, there's another way. The Controls.SetChildIndex() also changes Z-order. The one with index 0 is the one on top. Doesn't buy you anything though, BringToFront() uses this method.

Your SendLabelsToBack() method as given cannot work, it will also send the label to added to the back. But your next statement fixes that again.

Okay, that doesn't work, which means the BringToFront() method doesn't get executed. Look in the Output window for a "first chance exception" notification. As written, your SendLabelsToBack() will cause an exception if the user control contains any control other than a UserLabel. Also, set a breakpoint after the BringToFront() call and check the value of userContainer.Controls[0].Name when it breaks.

Controls' z-index is per-container.

If you call BringToFront on a control that is inside a container (such as a Panel ), it will not bring the container to the front.
Therefore, the control will only go in front of other controls in that container.

To see what containers your controls are in, you can use the Document Outline pane in the View menu.

EDIT : Your userContainer control is probably behind a different control.

Have you tried Invalidate() after BringToFront() ? BringToFront does not raise the Paint event

try this:

private void SendLabelsToBack()
{
    foreach (var label in userContainer.Controls)
    {
        label.SendToBack();
        label.Invalidate();
    }
}

I think you just need to change your last line:

userContainer.Controls[field.FieldName].BringToFront(); 

to this:

userContainer.Controls[field.Name].BringToFront(); 

When you use a string as the indexer for the Controls collection, it goes by the Name property of the control (not the FieldName property).

Since you're just trying to bring the most recently-added control to the top, this would also work:

userContainer.Controls[userContainer.Controls.Count - 1].BringToFront();

From my experience looks like windows puts all controls belonging to one graphic container(pane, group box...etc) in a software collection. The collection is ordered by child index which is a property of every control in that container. The trick is that children with the same index can and do exists. In this case windows will paint those children ordered relative to others but between them it will paint them in the reverse order they had been added to the container.

Long story short: for one container-you need to make sure controls have different indexes by changing ALL NOT just SOME of the indexes when you want to change the z-order. For example:

foreach (Control newControl in TopControl.Controls)
{
   TopControl.Controls.SetChildIndex(newControl,indexlogic(newControl));
}

where indexLogic(newControl ) is your method of calculation of the index of particular control.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM