如何为数据网格添加工具提示并在工具提示中显示数据网格的转换值?

How to add a tooltip for a datagrid and show the converted value of the datagrid in tooltip?

我有 DataGrid,其中一个 DataGrid 列如下所示。

<ig:TextColumn  HeaderText="{Binding CARTONS, Source={StaticResource Messages}, Converter={StaticResource MessageConverter}}" 
                Key="Collumn1" 
                AllowToolTips="Always">
                <ig:TextColumn.ToolTipContentTemplate>
                    <DataTemplate>
                        <TextBlock Text="{Binding Self}, Converter={StaticResource TransferCollumnToCrlfDelimitedList}}"/>
                    </DataTemplate>
                </ig:TextColumn.ToolTipContentTemplate>
</ig:TextColumn>

问题是我需要显示将列的值转换为列的子值列表。我尝试使用自我。显然,这是行不通的。

我该如何解决我的任务?有没有可能。

删除自我 仅使用 {Binding},您将获得与父控件相同的 DataContext