C1TapHelper Constructor(UIElement,Boolean,Boolean)
 
            
                In This Topic
            
            Initializes a new instance of the 
C1TapHelper class which only handles Tap event and optionally DoubleTap event.
 
            
            
            Syntax
            
            
            
            
            'Declaration
 
Public Function New( _
   ByVal  As Windows.UI.Xaml.UIElement, _
   ByVal  As System.Boolean, _
   ByVal handledEventsToo As System.Boolean _
)
             
        
            
            public C1TapHelper( 
   Windows.UI.Xaml.UIElement ,
   System.bool ,
   System.bool handledEventsToo
)
             
        
             
        
            Parameters
- element
 
- An Windows.UI.Xaml.UIElement on which the tap gestures will be listened.
 - doubleTapped
 
- Specifies whether elementshould listen to DoubleTap event.
 - handledEventsToo
 
- Indicates whether tap gestures will be listened despite mouse events were already handled. (It only applies to mouse gestures)
 
             
            
            
            
            
            
            
            
            
            
            
            
            See Also