WPF - 隐藏模板中的按钮
我制作了一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最好的方法是创建一个继承 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.