make a transparent panel clickable

Hi,

if i do something like:

        <Panel Dock="Left">
            <Image File="image.png" Width="30" Height="30" Margin="10,10,10,10"/>
            <Clicked Handler="{uxSearchPageOnBackClicked}"/>
        </Panel>

only the image is clickable… if i set a background to the panel:

        <Panel Dock="Left" Backgroud="#f0f">
            <Image File="image.png" Width="30" Height="30" Margin="10,10,10,10"/>
            <Clicked Handler="{uxSearchPageOnBackClicked}"/>
        </Panel>

then the whole panel is clickable. My question is:

how i make the whole panel of the first code clickable without having to set a background color??

Set HitTestMode to LocalBoundsAndChildren

works…

thnx!!