How to control docking order in WinForms

前端 未结 8 941
独厮守ぢ
独厮守ぢ 2020-12-25 09:20

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

8条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-25 09:59

    Use these methods:

    myControl.SendToBack();
    myControl.BringToFront();
    

提交回复
热议问题