GridViewColumn 内容和 VerticalAlignment

发布于 2024-07-07 13:23:17 字数 370 浏览 9 评论 0原文

我想使用 GridView 在列表视图中显示一些信息。 我有几个 GridViewColumns,一切正常。

但是,希望 GridViewColumns 内容具有 VerticalAlignment(在本例中为 Top) 但 gridvewcolumn intself 不提供 VerticalContentAlignment 依赖属性。 使用 DisplayMemberBinding 时也无法提供 垂直对齐信息。

当使用自定义 DataTemplate 作为 Celltemplate 时,我可以将 VerticalAlignment="top" dp 添加到例如某个文本块。 但这不起作用。 有什么“俏皮的特殊魔术”来完成这个任务吗? (

i want to display some information in a listview using the GridView.
i have several GridViewColumns and everything works fine.

However, want the GridViewColumns content to have a VerticalAlignment (Top in this case)
but the gridvewcolumn intself doesnt offer a VerticalContentAlignment dependency property.
when using DisplayMemberBinding there is also no possibility to supply
VerticalAlignment information.

When using a custom DataTemplate as Celltemplate, i can add a VerticalAlignment="top" dp to e.g. some textblock. however this does not work.
is there any "nifty-grifty special magic trick" to fullfill this tasK?
(

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

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

发布评论

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

评论(1

阳光的暖冬 2024-07-14 13:23:17

您可以将此样式应用于您的 ListView

<Style TargetType="{x:Type ListView}">
    <Setter Property="ItemContainerStyle">
        <Setter.Value>
            <Style TargetType="ListViewItem">
                <Setter Property="VerticalContentAlignment" Value="Top"/>
            </Style>
        </Setter.Value>
    </Setter>
</Style>

You can apply this style to your ListView:

<Style TargetType="{x:Type ListView}">
    <Setter Property="ItemContainerStyle">
        <Setter.Value>
            <Style TargetType="ListViewItem">
                <Setter Property="VerticalContentAlignment" Value="Top"/>
            </Style>
        </Setter.Value>
    </Setter>
</Style>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文