ventajas tienda phone funciones desventajas descargar c# silverlight windows-phone-7

c# - tienda - windows phone nokia



cómo deslizar en Windows Phone 7 (3)

Quiero deslizar imágenes en el teléfono con Windows 7. ¿De dónde comienzo?


Prueba esto:

using Microsoft.Phone.Controls; public partial class MyControl { public MyControl() { InitializeComponent(); var gl = GestureService.GetGestureListener(asd); gl.Flick += new EventHandler<FlickGestureEventArgs>(GestureListener_Flick); } private void GestureListener_Flick(object sender, FlickGestureEventArgs e) { if (e.Direction == Orientation.Horizontal) { if (e.HorizontalVelocity < 0) // determine direction (Right > 0) { //Some Action } else { //Some Action } } } }



Puede usar GestureService en Silverlight Control Toolkit para Windows Phone 7 . En su elemento de IU, agregue el siguiente fragmento de código (después de haber hecho referencia al DLL del kit de herramientas en su proyecto WP7) -

<toolkit:GestureService.GestureListener> <toolkit:GestureListener Flick="OnFlick"/> </toolkit:GestureService.GestureListener>

Implemente el controlador OnFlick en el archivo de código subyacente, como tal -

private void OnFlick(object sender, FlickGestureEventArgs e) { var vm = DataContext as SelectedCatalogViewModel; if (vm != null) { // User flicked towards left if (e.HorizontalVelocity < 0) { // Load the next image LoadNextPage(null); } // User flicked towards right if (e.HorizontalVelocity > 0) { // Load the previous image LoadPreviousPage(); } } }

Espero que esto ayude, indyfromoz