vote up 2 vote down star
1

I'm trying to implement a button in WPF which shows a menu when you click it. I've got everything working, and the ControlTemplate for the control is shown below. (The control extends ToggleButton).

<Border x:Name="Border" Padding="3" CornerRadius="1" BorderThickness="1"
    VerticalAlignment="Stretch" HorizontalAlignment="Stretch" IsHitTestVisible="True">

The problem is, the menu is only shown when the user clicks the tiny arrow drawn by the path. Is there any way I can make the whole border HitTestVisible?

flag

76% accept rate

1 Answer

vote up 4 vote down check

Adding a transparent background on it should do it.

link|flag
That worked perfectly. Thanks. :) – Echilon Mar 11 at 9:37

Your Answer

Get an OpenID
or

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