IStorageProviderStatusUISource.StatusUIChanged Evento
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Este evento de notificación de cambio notifica al lado cliente que actualice el control flotante de la interfaz de usuario de estado del proveedor de almacenamiento.
// Register
event_token StatusUIChanged(TypedEventHandler<IStorageProviderStatusUISource, IInspectable const&> const& handler) const;
// Revoke with event_token
void StatusUIChanged(event_token const* cookie) const;
// Revoke with event_revoker
IStorageProviderStatusUISource::StatusUIChanged_revoker StatusUIChanged(auto_revoke_t, TypedEventHandler<IStorageProviderStatusUISource, IInspectable const&> const& handler) const;
event TypedEventHandler<IStorageProviderStatusUISource,object> StatusUIChanged;
function onStatusUIChanged(eventArgs) { /* Your code */ }
iStorageProviderStatusUISource.addEventListener("statusuichanged", onStatusUIChanged);
iStorageProviderStatusUISource.removeEventListener("statusuichanged", onStatusUIChanged);
- or -
iStorageProviderStatusUISource.onstatusuichanged = onStatusUIChanged;
Event StatusUIChanged As TypedEventHandler(Of IStorageProviderStatusUISource, Object)
Tipo de evento
TypedEventHandler<IStorageProviderStatusUISource,IInspectable>