vote up 0 vote down star

In my WPF Application I have an 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 am unable to drag/reorder the column if I click and drag on any of the subobjects like the path or the textblock. Only if I click on the free space I am able to drag this column.

How will I make the whole column drag able again?

flag

79% accept rate

1 Answer

vote up 1 vote down check

try setting IsHitTestVisible="false" on your stackpanel, path and textblock

link|flag
Great! Thanks - Works perfect and it's so easy. – Holli Sep 17 at 9:08

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.