Silverlight 将 TabItem 标题拉伸到父控件宽度

发布于 2024-09-14 23:02:49 字数 343 浏览 17 评论 0原文

我正在创建一个 SL 应用程序,它有一个 TabControl 和动态创建的 TabItems,这些 TabItems 通过后面的代码添加。我希望所说的 TabItems 的大小与 TabControls 全宽度成比例,就像所描述的那样 此处

现在Silverlight没有IMultiValueConverter,并且不知道我会有多少个选项卡,我有点卡住了。有什么办法解决这个问题吗?

感谢您的帮助。

I am creating a SL App that has a TabControl with dynamically created TabItems which are added via code behind. I'd like said TabItems to size proportionally to the TabControls full width, much like what is described here.

Now Silverlight does not have IMultiValueConverter, and not knowing how many tab I will have, I am a bit stuck. Any ways around this?

Thanks for the help.

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

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

发布评论

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

评论(1

别低头,皇冠会掉 2024-09-21 23:02:49

我自己没有这样做,但我相信您可以实现自己的 TabPanel 并通过适当的模板部分替换它。请参阅此页面 查看模板部件列表。

public class MyTabPanel : TabPanel
{
    // custom layout logic as per your requirements
}

在风格上:

<Style TargetType="TabControl">
    <Setter Property="Template">
        <Setter.Value>
            <ControlTemplate TargetType="TabControl">
                <!-- copy standard template from Blend, but substitute in your MyTabPanel instead -->
            </ControlTemplate>
        </Setter.Value>
    </Setter>
</Style>

I haven't done this myself, but I believe you could just implement your own TabPanel and substitute that in via the appropriate template part. See this page for a list of template parts.

public class MyTabPanel : TabPanel
{
    // custom layout logic as per your requirements
}

And in styles:

<Style TargetType="TabControl">
    <Setter Property="Template">
        <Setter.Value>
            <ControlTemplate TargetType="TabControl">
                <!-- copy standard template from Blend, but substitute in your MyTabPanel instead -->
            </ControlTemplate>
        </Setter.Value>
    </Setter>
</Style>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文