A bit late answer, but you can add a tooltip without losing the ability to drag and drop columns to reorder them by following these steps:
<GridViewColumn Width="50" Header="d.Ρ" DisplayMemberBinding="{Binding Path=RedenBroj}"> <GridViewColumn.HeaderContainerStyle> <Style> <Setter Property="Control.ToolTip" Value="Tool tip content"/> </Style> </GridViewColumn.HeaderContainerStyle> </GridViewColumn>
Update: a shorter option thanks to LPL
Further update: I wanted to be able to have all the columns tooltips matching their headings (since some columns were too narrow to show the entire heading):
<ListView.View> <GridView> <GridView.ColumnHeaderContainerStyle> <Style TargetType="GridViewColumnHeader"> <Setter Property="ToolTip" Value="{Binding Content, RelativeSource={RelativeSource Self}}"/> </Style> </GridView.ColumnHeaderContainerStyle> <GridViewColumn DisplayMemberBinding="{Binding A}" Header="A"/> <GridViewColumn DisplayMemberBinding="{Binding B}" Header="B"/> <GridViewColumn DisplayMemberBinding="{Binding C}" Header="C"/> </GridView> </ListView>
source share