有没有办法改变WPF中的绘制顺序
有没有办法更改 StackPanel 中控件的绘制顺序而不更改 StackPanel 中这些控件的实际顺序?
我问的原因是我们有一个按钮栏,按钮之间的边距为 0。活动按钮会增长(即边距设置为 -10),与相邻按钮重叠。这里的问题是右侧按钮稍后绘制,因此绘制在顶部而不是活动按钮上。
恐怕我需要制作一个基于网格的自定义控件。
Is there a way to change the draw order of Controls in a StackPanel without changing the actual ordering of these controls in the StackPanel?
The reason I ask is that we have a button bar with margin 0 between the buttons. The active button grows (ie margin set to -10) overlapping the neighbouring buttons. The problem here is that the right button is drawn later and thus is drawn on top instead of the active button.
I'm afraid I will need to make a custom control that is grid based..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
无需更改绘制顺序,只需设置 面板.ZIndex 附加属性。
Instead of changing the draw order, just set the Panel.ZIndex attached property.