设置 Expander 控件内容部分的样式

发布于 2024-10-07 04:49:46 字数 33 浏览 0 评论 0原文

如何将样式应用到 Expander 控件的内容部分?

How do you apply a style to the content section of an Expander control?

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

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

发布评论

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

评论(2

給妳壹絲溫柔 2024-10-14 04:49:46

想通了:

    <Style x:Key="ListItem" TargetType="{x:Type Expander}">
        <Setter Property="BorderBrush" Value="{StaticResource DefaultBorder}"/>
        <Setter Property="BorderThickness" Value="0,0,0,1"/>
        <Setter Property="Padding" Value="0,2"/>

        <Setter Property="ContentTemplate">
            <Setter.Value>
                <DataTemplate>
                    <Border BorderBrush="{StaticResource DefaultBorder}" BorderThickness="0,1,0,0">
                        <Grid>
                             <Border Background="Transparent" Padding="0,10,0,10" >
                                <ContentControl Margin="24,0,0,0" Content="{TemplateBinding Content}"/>
                            </Border>
                        </Grid>
                    </Border>
                </DataTemplate>
            </Setter.Value>
        </Setter>
    </Style>

我需要 ContentControl。 :)

Figured it out:

    <Style x:Key="ListItem" TargetType="{x:Type Expander}">
        <Setter Property="BorderBrush" Value="{StaticResource DefaultBorder}"/>
        <Setter Property="BorderThickness" Value="0,0,0,1"/>
        <Setter Property="Padding" Value="0,2"/>

        <Setter Property="ContentTemplate">
            <Setter.Value>
                <DataTemplate>
                    <Border BorderBrush="{StaticResource DefaultBorder}" BorderThickness="0,1,0,0">
                        <Grid>
                             <Border Background="Transparent" Padding="0,10,0,10" >
                                <ContentControl Margin="24,0,0,0" Content="{TemplateBinding Content}"/>
                            </Border>
                        </Grid>
                    </Border>
                </DataTemplate>
            </Setter.Value>
        </Setter>
    </Style>

I needed the ContentControl. :)

君勿笑 2024-10-14 04:49:46

由于 Expander 的 Content 属性是 Object 类型,因此对 ContentControl 中可以放置的内容没有任何限制。您可以应用您想要的任何样式,具体取决于您想要显示的内容以及如何显示它们。

Since the Content property of expander is of type Object, there are no restrictions on what you can put in a ContentControl.You can apply whatever style you want,depending on what you want to display and how you want to display them.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文