In my WPF application, I have a GridViewColumn that looks like this:
<GridViewColumn Width="170">
<GridViewColumn.Header>
<StackPanel Orientation="Horizontal">
<Path Data="{StaticResource pathStar}" Fill="Gold" Stroke="Red"/>
<TextBlock VerticalAlignment="Center">New items</TextBlock>
</StackPanel>
</GridViewColumn.Header>
...
I cannot drag / reorder a column if I click and drag any of the subobjects, such as a path or text block. Only if I click on the free space can I drag this column.
How can I drag the whole column again?
source
share