XAML:Panel.ZIndex = -1;
Code:Panel.SetZIndex(控件,-1);
数字越小则层数越低,数字最大的在最前面
pictureBox1.SendToBack();//将控件放到Z序的后面。最底层
pictureBox1.BringToFront();//将控件放到Z序的前面。最上层
Yes?
把Add,换成Insert。并且插入到最前面
this._control:是准备显示的控件。
示例:
this.grid.Children.Insert(0, this._control);
this.grid.Children.Insert(0, this._control);