如何确定添加到 TabControl 的项目的类型?
我创建了一个派生自 TabItem
的 CloseableTabItem
控件。 现在我想指定给定的 TabControl
应使用 CloseableTabItem
而不是 TabItem
添加新项目。 这可能吗? 如何?
I've created a CloseableTabItem
control that derives from TabItem
.
Now I'd like to specify that a given TabControl
should add new items using CloseableTabItem
instead of TabItem
.
Is this possible? How?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可能需要创建自己的
ClosableTabControl
来扩展TabControl
以便覆盖基本功能。但是,您也可以手动添加选项卡,将您的
ClosableTabItems
提供给它,而不是常规的TabItems
。 可以肯定地假设这是可能的,因为大多数基于集合的控件都能够以这种方式以编程方式填充。You'll probably need to make your own
ClosableTabControl
that extendsTabControl
in order to override the base functionality.However, you can also probably just add your tabs manually, feeding it your
ClosableTabItems
instead of regularTabItems
. It would be safe to assume this is possible since most collection-based controls are able to be programatically populated this way.