wpf datagrid tooltip

Posted 历史的尘埃

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了wpf datagrid tooltip相关的知识,希望对你有一定的参考价值。

  <DataGridTemplateColumn Header="购方名称" Width="260" HeaderStyle="{StaticResource DataGridColumnHeaderStyle1}">
                                    <DataGridTemplateColumn.CellTemplate>
                                        <DataTemplate>
                                            <TextBlock Text="{Binding DisplayName}">
                                                <TextBlock.ToolTip>
                                                    <StackPanel>
                                                        <TextBlock Text="{Binding DisplayDetail}"/> 
                                                    </StackPanel>
                                                </TextBlock.ToolTip>
                                            </TextBlock>
                                        </DataTemplate>
                                    </DataGridTemplateColumn.CellTemplate>
                                </DataGridTemplateColumn>

  

以上是关于wpf datagrid tooltip的主要内容,如果未能解决你的问题,请参考以下文章