I am creating a Windows Phone 7.5 Silverlight application. I am creating a new custom control:
public class ChartCanvas : Canvas
When I use it on another page, it doesn't fire any events. Here is my XAML:
<Controls:ChartCanvas x:Name="chartControl"
Margin="8"
DoubleTap="chartControl_DoubleTap"
ManipulationStarted="chartControl_ManipulationStarted" />
How do I enable the DoubleTap
event and manipulation events for this control?