我在Pivot控件中的圖像列表中。如果您觸摸圖片,則會導航到另一個視圖。如果通過新的支點輕彈並同時觸摸圖像,則導航。在Windows Phone上取消觸摸事件
我注意到Facebook應用程序或本地相冊沒有這個錯誤。
有什麼想法?
編輯:代碼:
Image img = new Image();
Delay.LowProfileImageLoader.SetUriSource(img, new Uri(adViewModel.Photos[k].ThbUrl));
img.Width = 150;
img.Tag = k;
img.Height = 150;
img.MouseLeftButtonDown += new MouseButtonEventHandler(launch_Diapo);
Grid.SetRow(img, i);
Grid.SetColumn(img, j);
PhotosGrid.Children.Add(img);
我加了我的代碼,可能是MouseButtonLeftDown,因爲我沒有使用tap。我怎樣才能以編程方式使用水龍頭?我只看到了xaml的例子。我需要創建一個GestureListener,但是如何將其綁定到我的圖像? – 2011-01-11 15:14:49
@Thomas添加示例 – 2011-01-13 12:56:18