次の方法で共有


ContactPanelActivatedEventArgs.Contact プロパティ

定義

連絡先パネルから選択した連絡先を取得します。

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

プロパティ値

選択した連絡先。

実装

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.
    }
}

注釈

選択した連絡先は、Id プロパティセットのみを含む空の連絡先になります。 連絡先の残りのプロパティ データにアクセスするには、この ID を使用して ContactStore から連絡先を再取得する必要があります。

適用対象