单击数据网格列标题不可能

发布于 2024-12-09 00:09:36 字数 577 浏览 0 评论 0原文

我使用 dataGridTemplateColumn 创建了一个数据网格,但无法再使用单击标题进行排序。这是我的代码示例:

       <DataGrid.Columns>
            <DataGridTemplateColumn Header="action id" Width="Auto">
                <DataGridTemplateColumn.CellTemplate>
                    <DataTemplate>
                        <Label Content="{Binding id}" />
                    </DataTemplate>
                </DataGridTemplateColumn.CellTemplate>
            </DataGridTemplateColumn>

您知道出了什么问题吗?这是因为使用了模板而导致默认排序被停用吗?

谢谢,

J。

I created a datagrid with dataGridTemplateColumn and I can't use the click on header to sort anymore. Here is a sample of my code :

       <DataGrid.Columns>
            <DataGridTemplateColumn Header="action id" Width="Auto">
                <DataGridTemplateColumn.CellTemplate>
                    <DataTemplate>
                        <Label Content="{Binding id}" />
                    </DataTemplate>
                </DataGridTemplateColumn.CellTemplate>
            </DataGridTemplateColumn>

Do you have an idea of what is going wrong? Is this because of the use of a template that the default sort is desactivated?

Thanks,

J.

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

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

发布评论

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

评论(2

辞慾 2024-12-16 00:09:36

您应该设置 SortMemberPath 属性

<DataGridTemplateColumn SortMemberPath="id" Header="action id" Width="Auto">

you should set the SortMemberPath property

<DataGridTemplateColumn SortMemberPath="id" Header="action id" Width="Auto">
昇り龍 2024-12-16 00:09:36

尝试为 DataGridTemplateColumn 设置属性 CanUserSortColumn = true

Try setting the property CanUserSortColumn = true for your DataGridTemplateColumn.

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