如何更改WPF APP中ToolBarPanel的边框?
我有一个工具栏面板,但它不提供属性边框、边框画笔等。它也不提供属性“ControlTemplate”来自定义它。 如何更改 ToolBarPanel 的边框?
I have a toolbarpanel but it doesnt provide property border, borderbrush, etc. Also it doesnt provide property "ControlTemplate" to customize it.
How to change a border of ToolBarPanel?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
ToolBarPanel 是一个面板,这意味着它没有视觉外观——这就是为什么它没有模板的原因。但是,您可以通过其 Children 成员在 ToolBarPanel 内的任何位置添加您想要的任何内容。要创建边框,只需添加所需的边框作为 ToolBarPanel 的唯一直接子项,添加一个 Grid 作为该边框的子项,然后添加您想要在 Grid 内的 ToolBarPanel 中显示的内容。
ToolBarPanel is a panel, meaning it has no visual appearance -- this is why there's no template for it. You can, however, add whatever you want wherever you want inside the ToolBarPanel via its Children member. To create a border, just add the desired Border as the only direct child of the ToolBarPanel, add a Grid as the child of the Border, and then add your content that you wanted displayed in the ToolBarPanel inside the Grid.