WPF - 隐藏模板中的按钮

发布于 2024-10-17 08:38:19 字数 145 浏览 5 评论 0原文

我制作了一个 TabControl 模板。该模板中有一个按钮。

如果 TabControl1 实现该模板,则按钮应该可见。 如果 TabControl2 实现该模板,则应隐藏该按钮。

我该怎么做?是否有可用于绑定的 TabControl 属性?

I've made a TabControl template. Within this template is a button.

If TabControl1 implements the template, the button should be visible.
If TabControl2 implements the template, the button should be hidden.

How would I do this? Is there a TabControl property that could be useful to bind to?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

终遇你 2024-10-24 08:38:19

最好的方法是创建一个继承 TabControl 的 UserControl 并添加要绑定到的 dependencyProperty(例如:“ShowButton”),

另一种解决方案是使用为此原因添加的“Tag”属性:将您自己的自定义属性值添加到控件中,但在这种情况下这是一种黑客攻击,不是很好的编程。

The best way to do would be to create a UserControl that inherits TabControl and add the dependencyProperty you want to bind to (e.g.: "ShowButton")

an other solution is to use the "Tag" property that has been added just for this reason: add you own custom property values to a control, but this is kind of a hack in this case a not very nice programming.

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