How to control docking order in C# WinForms

Posted by Tommy on Stack Overflow See other posts from Stack Overflow or by Tommy
Published on 2010-04-09T12:52:27Z Indexed on 2010/04/09 13:03 UTC
Read the original article Hit count: 506

Filed under:
|
|

As the title states, I'm looking for a way to control the order in which the items dock to the top of my control.

I've played with the windows form designer, and i cant seem to find what the RightClick->Order->SendToFront is doing, because thats exactly what I want to happen. As far as I can get to happen, as I add my contents to my control, the newest contents is always at the top, and I'd like for the Newer contents to be on the bottom, and the oldest contents to be at the top.

Summery: Is there an easy way in WinForms (C#), to control the order in which things dock to the sides of controls?

© Stack Overflow or respective owner

Related posts about c#

Related posts about winforms