Silverlight 中的拉伸 TabItem 标头
如何使选项卡项标题在 Silverlight 中拉伸到选项卡控件的宽度?如果重要的话,我总是有固定数量的选项卡。
我只找到了 WPF 示例,使用 IMultiValueConverter 在这里。
How can I cause the tab item headers to stretch across the width of the tab control in Silverlight? If it matters, I have always a fix number of tabs.
I've found just WPF examples, with IMultiValueConverter here.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是一个示例
http://cid-a1de71e9f2ae2f82.office.live .com/self.aspx/.Public/ExtendedTabControl.zip
这是非常简单的任务..您所要做的就是创建默认模板的副本并替换
System_Windows_Controls_Primitives:TabPanel x:Name="TabPanelTop"
和te:StockPanel x:Name="TabPanelTop"
基本上覆盖了布局逻辑。PS:这不是完美的代码示例,但我认为这足以让您理解如何扩展 TabControl
Here an example
http://cid-a1de71e9f2ae2f82.office.live.com/self.aspx/.Public/ExtendedTabControl.zip
It's preaty simple task.. all you have to do is to create Copy of default template and replace
System_Windows_Controls_Primitives:TabPanel x:Name="TabPanelTop"
withte:StockPanel x:Name="TabPanelTop"
which basicly override layout logic..PS: it's not perfect code sample, but i think it's enouth for you to understand how to extend TabControl