如何更改WPF APP中ToolBarPanel的边框?

发布于 2024-11-06 21:10:58 字数 86 浏览 0 评论 0原文

我有一个工具栏面板,但它不提供属性边框、边框画笔等。它也不提供属性“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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

药祭#氼 2024-11-13 21:10:58

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文