WPF:触发检查 TabControl 是否只有 1 个选项卡!
我可以创建任何触发器来查看 Tabcontrol 是否只有一个 TabItem。在这些情况下,我实际上在代码隐藏中有一个 TabItem 集合,我可以在其中使用 count 方法。
如果只有一个选项卡,我不想隐藏 TabPanel。我可以直接调用visibility=collapse 吗?
Is there any trigger I can create to see if a Tabcontrol has only one TabItem. In these cases I actually have a TabItem collection in the codebehind wich I could possibly use a count method on.
In the case of only one tab I wan't to hide the TabPanel. Can I just call visibility=collapse on it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 TabItems 的控件模板中,我放置了:
它的工作原理就像一个魅力。
In the control template of the TabItems I put:
and it works like a charm.
如果您在后面的代码中使用 ObservableCollection,则可以使用 CollectionChanged 事件,然后检查集合的大小。
关于TabPanel的可见性我不知道,但你可以尝试一下。
If you are using an ObservableCollection in the code behind, you could use the CollectionChanged event, and check the size of the collection then.
About the TabPanel's visibility I don't know but you can try it.