[Windows Phone] WebCast para DesarrolloWeb.com ‘Como desarrollar una app para Windows Phone 7.5’

Buenos días seguidores,

Anoche participé de la mano de @eiximenis (Eduard Tomás) y @midesweb (www.desarrolloweb.com) en un webcast que se enmarca dentro de la serie de #netIO. El tema a tratar fue Windows Phone 7.5. Hicimos una introducción y recorrido rápido a la plataforma. Tratamos puntos como herramientas necesarias para poder desarrollar, el estilo característico de Windows Phone que es Metro Style, unas pinceladas de código y por último vimos el marketplace.

 

 

Para los que os iniciéis os dejo unas recomendaciones para que tengáis mas formación:

Libro de Josue Yerai sobre desarrollo para Windows Phone

Blog Arturo Toledo

Tambien os dejo la ppt que vimos ayer por si os interesa, junto con las plantillas para prototipar en windows phone que podáis imprimir

Presentación power point

PlantillaWP7PlantillaWP7Panorama

Para finalizar esta entrada quiero agradecer a todos los que habéis asistido al evento online, estáis viendo este post o veréis el video en youtube. Así como a los organizadores por contar conmigo. Gracias!

Saludos a quien me lea.

Melerin

Imagen1734

¿Aún no tienes ‘My Tasks’ en tu Windows Phone? Aquí tienes el link para descargarla. Espero que te guste.

97e39fb1-1c91-442e-8a6e-ba32b953a01a

No te la juegues al volante si has bebido. Descarga la app ‘AlcoholTest’ para tu Windows Phone. Aquí tienes el link. Y conduce seguro!

[Marketplace] New application AlcoholTest to monitor your alcohol test

Good morging,

This time I’m very happy to introduce you my new app for Windows Phone.

This app has been created to monitor your alcohol test evolution. With this app you can:

  • edit the test if you keep drinking
  • manage different tests for you and your friends
  • choose the country from an large list
  • create / edit / delete drinks
  • a chart monitor of the test evolution
  • view in the panorama of the last active test
  • quick access to the last 5 tests
  • ask for help if you have previously selected a contact
  • share your test in social networks
  • create security margin, which is shown in your chart
  • quick view of your test with a traffic light
    Take a look at this video with the main characteristics of AlcoholTest.

 

 

I hope you like this app.

I want to say THANK YOU!! for their colaboration in this app to: Anna Lovato, Ricard Pérez-Dolz and Marvin Vogel for the traslations. And special thanks to Mirela Sion for the idea and the motivation.

Regards to all

Melerin

Imagen1734 Haven’t you downloaded ‘My tasks’ yet? Here you have the link. I hope you like it.

Segunda posición en Megathon Windows 8 en Barcelona

Buenas tardes,

Este pasado fin de semana he participado en el evento Megathon de Windows 8 en el equipo “Los domingueros” compuesto por Álex Martínez (@maniepetito), Iban Benzal (@ibenzal), Jaime Mosteirín (@jmosteirin), Juan Bacardit (@juanbacardit) y un servidor de ustedes (@melerin). Ha sido todo un lujo formar parte de este equipo con tanto talento. Gran trabajo chicos!

Antes de comentar un poco la aplicación, quiero dar las gracias a la organización de Barcelona (@techdencias) por la ayuda que prestan en todos los sentidos y la enhorabuena por el evento a todos los organizadores (@MegathonW8). Todo un éxito!!!

Hemos disfrutado y aprendido de grandes ponentes:

 

Continuo soporte por parte de la organización:

Y sobretodo muy buen rollito entre los equipos y mucho trabajo!

 

A continuación os dejo un video con las principales características implementadas de Windows 8 en la aplicación Quincke.

 

Quincke es una aplicación destinada a ayudar a las personas con alergias y se basa en la idea original de http://www.appto-startup.com. En base a una completa base de datos de alimentos, alergias y fabricantes, ayuda a elegir los productos que podemos consumir tranquilamente. Es una gran ayuda a la hora de hacer la compra y necesitamos conocer si un determinado producto nos produce alergias ya sea por alguna traza o producto que contenga.

Y todos nos hemos llevado un par de regalitos de parte de Microsoft!!

Para cuando el próximo Mega..Hackathon para Windows Phone 8?

Saludos a quien me lea.

Melerin

Imagen1734 ¿Aún no has descargado ‘my tasks’? Desde aquí puedes hacerlo link. Espero que te guste y te sea de utilidad.

[Windows Phone] Tilt effect in MultiselectList

Good morning followers,

Today I’m going to show you how to implement tilt effect in MultiselectList, and other kinds of lists. I remembered it when I was reading Javier Suarez Ruiz’s post that talks about how to implement tilt effect step by step.

In my case, I need to implement tilt effect in other kind of item list like MultiselectList. Solving this problem is easy.

If you take a look at the implementation of Tilt that we have in PhoneToolkit. We’ll see this constructor…

static TiltEffect()
{
// The tiltable items list.
TiltableItems = new List<Type>()
{
typeof(ButtonBase),
typeof(ListBoxItem),
typeof(MenuItem),
};
}

and TiltableItems is a public List<Type> like this…

public static List<Type> TiltableItems { get; private set; }

So, we are able to add other kinds of items to this list.

We can implement the solution for all our project/solution. In the constructor of App.xaml.cs for example. Once MultiselectItem will be included in TiltableItems, it will be enabled for all the MultiselectList.

Obviously we only have to add the MultiselectItem to the TiltableItems.

// Enable tilt effect for multiselect items
TiltEffect.TiltableItems.Add(typeof(MultiselectItem));

We must to enable Tilt effect in our xaml too.

toolkit:TiltEffect.IsTiltEnabled="True"

A greeting to whom read me.

Melerin

Imagen1734

You don’t have ‘my tasks’ for Windows Phone 7 yet? You can download it from this link. I hope you enjoy and find it useful.