如何在 StatusBarItem 上设置 ZIndex
我有“StatusBar”和“StatusBarItem”,其中之一是当前状态标签。我希望它填充所有可用空间,但不要与其他项目重叠。通常我使用 ZIndex=-1 来实现此目的,但 StatusBarItem 上没有 ZIndex。那么该怎么做呢?
I have 'StatusBar' with 'StatusBarItem'`s and one of them is current status label. I want it to fill all available space but dont overlap other Items. Usually I achieve this using ZIndex=-1 but there is no ZIndex on StatusBarItem. So how to do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看起来 StatusBar 派生自 ItemsControl,它允许您为 ItemsPanel 设置模板。似乎使用不同的模板将为您提供布局所需的灵活性。
It appears that StatusBar derives from ItemsControl, which allows you to set the template for ItemsPanel. It seems like using a different template for that will give you the flexibility you need for layout.