wpf中我自定义了一个自定义控件,add到了界面,如何设置显示在最底层?后台代码如何控制?

2024-12-12 08:38:32
推荐回答(3个)
回答1:

XAML:Panel.ZIndex = -1;
Code:Panel.SetZIndex(控件,-1);

数字越小则层数越低,数字最大的在最前面

回答2:

pictureBox1.SendToBack();//将控件放到Z序的后面。最底层

pictureBox1.BringToFront();//将控件放到Z序的前面。最上层

Yes?

回答3:

把Add,换成Insert。并且插入到最前面
this._control:是准备显示的控件。
示例:
this.grid.Children.Insert(0, this._control);
this.grid.Children.Insert(0, this._control);