views:

54

answers:

0

I have a the following code for a ScrollViewer in my Silverlight app. The BasketSymbolsView control contains controls that have custom double click triggers applied to them. For some reason the ScrollViewer is preventing the child controls from triggering an action when I double click the BasketSymbolsView controls.

<ScrollViewer x:Name="svBasketSymbols" IsHitTestVisible="True" VerticalScrollBarVisibility="Visible" HorizontalScrollBarVisibility="Auto" HorizontalAlignment="Stretch" VerticalAlignment="Stretch"> <views:BasketSymbolsView x:Name="BasketSymbols" /> </ScrollViewer>