在我的 WPF 应用程序中,我有一个如下所示的 GridViewColumn:
<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>
...
如果单击并拖动路径或文本块等任何子对象,则无法拖动/重新排序列。只有当我单击可用空间时,我才能拖动此列。
我将如何使整个列再次拖动?