Touch Scrolling is working when check my app by window Simulator on the OS 2010.  
Selection event of Telerik TileList control does not firing with touch screen. I want to scrolling tile list by touch screen and if user click on tiles then will be fire selection changed event  but not firing why?
  1. "Disabled" HorizontalScrollBarVisibility="Auto"  PanningMode="Both"  ManipulationBoundaryFeedback="ScrollViewerCanvas_ManipulationBoundaryFeedback">  
  2.                                    "1" Grid.Row="1" x:Name="horizontalListBox"  ItemsPanel="{StaticResource itemsPanelTemplate}"  
  3.                     ItemsSource="{Binding HomeModel.TechnicianFieldScheuleCollection }">  
  4.   
  5.   
  6.                                      
  7.                                              
  8.   
  9.                                              
  10.                                          
  11.                                   
  12.                                    
  13.                                      
  14.                                        "SelectionChanged">  
  15.                                            "{Binding homeTileListSelectedItemChangedCommand}" >  
  16.                                                  
  17.                                                      
  18.                                                          
  19.                                                              
  20.                                                          
  21.                                                        "horizontalListBox" />  
  22.                                                        "HomeUserControl" />  
  23.                                                      
  24.                                                  
  25.                                              
  26.                                          
  27.                                      
  28.   
  29.   
  30.                                  
  31.   
  32.                                    
 and in code behind :
  1. private void ScrollViewerCanvas_ManipulationBoundaryFeedback(object sender, ManipulationBoundaryFeedbackEventArgs e)  
  2.         {  
  3.             e.Handled = true;  
  4.         }