ContentDialog.Opened Событие
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Происходит после открытия диалогового окна.
// Register
event_token Opened(TypedEventHandler<ContentDialog, ContentDialogOpenedEventArgs const&> const& handler) const;
// Revoke with event_token
void Opened(event_token const* cookie) const;
// Revoke with event_revoker
ContentDialog::Opened_revoker Opened(auto_revoke_t, TypedEventHandler<ContentDialog, ContentDialogOpenedEventArgs const&> const& handler) const;
public event TypedEventHandler<ContentDialog,ContentDialogOpenedEventArgs> Opened;
function onOpened(eventArgs) { /* Your code */ }
contentDialog.addEventListener("opened", onOpened);
contentDialog.removeEventListener("opened", onOpened);
- or -
contentDialog.onopened = onOpened;
Public Custom Event Opened As TypedEventHandler(Of ContentDialog, ContentDialogOpenedEventArgs)
<ContentDialog Opened="eventhandler"/>