wpf中我自定义了一个自定义控件,add到了界面,如何设置显示在最底层?后台代码如何控制?
发布网友
发布时间:2022-04-26 23:31
我来回答
共3个回答
热心网友
时间:2023-11-12 05:22
XAML:Panel.ZIndex = -1;
Code:Panel.SetZIndex(控件,-1);
数字越小则层数越低,数字最大的在最前面
热心网友
时间:2023-11-12 05:23
pictureBox1.SendToBack();//将控件放到Z序的后面。最底层
pictureBox1.BringToFront();//将控件放到Z序的前面。最上层
Yes?
热心网友
时间:2023-11-12 05:24
把Add,换成Insert。并且插入到最前面
this._control:是准备显示的控件。
示例:
this.grid.Children.Insert(0, this._control);
this.grid.Children.Insert(0, this._control);
热心网友
时间:2023-11-12 05:22
XAML:Panel.ZIndex = -1;
Code:Panel.SetZIndex(控件,-1);
数字越小则层数越低,数字最大的在最前面
热心网友
时间:2023-11-12 05:23
pictureBox1.SendToBack();//将控件放到Z序的后面。最底层
pictureBox1.BringToFront();//将控件放到Z序的前面。最上层
Yes?
热心网友
时间:2023-11-12 05:24
把Add,换成Insert。并且插入到最前面
this._control:是准备显示的控件。
示例:
this.grid.Children.Insert(0, this._control);
this.grid.Children.Insert(0, this._control);