Compartir a través de


ContactPanelActivatedEventArgs.Contact Propiedad

Definición

Obtiene el contacto seleccionado del Panel de contactos.

public:
 property Contact ^ Contact { Contact ^ get(); };
Contact Contact();
public Contact Contact { get; }
var contact = contactPanelActivatedEventArgs.contact;
Public ReadOnly Property Contact As Contact

Valor de propiedad

Contacto seleccionado.

Implementaciones

Ejemplos

protected async override void OnActivated(IActivatedEventArgs args)
{
    if (args.Kind == ActivationKind.ContactPanel)
    {
        // At this point, ContactPanelActivatedEventArgs.Contact
        // is an empty Contact.  Only its Id property is set.
        ContactPanelActivatedEventArgs panelArgs = (ContactPanelActivatedEventArgs)args;

        // To get access to all of the Contact's property data, you must
        // use the Id to re-retrieve the Contact from the ContactStore.
        ContactStore store = await ContactManager.RequestStoreAsync(ContactStoreAccessType.AppContactsReadWrite);
        Contact contact = await store.GetContactAsync(panelArgs.Contact.Id);

        // Now you have a fully populated Contact to work with.
    }
}

Comentarios

El contacto seleccionado será un contacto vacío con solo su conjunto de propiedades Id. Debe usar este identificador para volver a recuperar el contacto de contactStore para obtener acceso al resto de los datos de propiedad del contacto.

Se aplica a