Le WIKI francophone consacré à Windows Phone et à Android ...

Pointui Home 2 - ContactsScreen

RSS
Cette classe hérite de la classe Screen.

Affiche la liste de tous les contacts de l'appareil and permet d'en sélectionner un.

Évènements

OnClickContact(Contact contact)
Détecte la sélection d'un contact par l'utilisateur (lorsqu'il clique sur un contact). Le contact sélectionné est passé dans l'évènement.

Exemple
class  EcranContacts : ContactsScreen
{
	void Load()
	{
		//fournit un manipulateur (handler) pour l'évènement OnClickContact
		OnClickContact = EcranContacts_OnClickContact;
	}

	void EcranContacts_OnClickContact(Contact contact)
	{
		//affiche la fiche détaillée du contact sélectionné
		ScreenContactCard ficheContact;
		ficheContact.SetContact(contact);
		FlowStack.Branch(ficheContact);
	}
}

Copyright 2012 CordoWEB