IStorageItemInformation.ThumbnailUpdated Kejadian
Definisi
Penting
Beberapa informasi terkait produk prarilis yang dapat diubah secara signifikan sebelum dirilis. Microsoft tidak memberikan jaminan, tersirat maupun tersurat, sehubungan dengan informasi yang diberikan di sini.
Diaktifkan saat gambar mini item diperbarui atau gambar mini berkualitas lebih baik tersedia.
// Register
event_token ThumbnailUpdated(TypedEventHandler<IStorageItemInformation, IInspectable const&> const& handler) const;
// Revoke with event_token
void ThumbnailUpdated(event_token const* cookie) const;
// Revoke with event_revoker
IStorageItemInformation::ThumbnailUpdated_revoker ThumbnailUpdated(auto_revoke_t, TypedEventHandler<IStorageItemInformation, IInspectable const&> const& handler) const;
event TypedEventHandler<IStorageItemInformation,object> ThumbnailUpdated;
function onThumbnailUpdated(eventArgs) { /* Your code */ }
iStorageItemInformation.addEventListener("thumbnailupdated", onThumbnailUpdated);
iStorageItemInformation.removeEventListener("thumbnailupdated", onThumbnailUpdated);
- or -
iStorageItemInformation.onthumbnailupdated = onThumbnailUpdated;
Event ThumbnailUpdated As TypedEventHandler(Of IStorageItemInformation, Object)
Jenis Acara
TypedEventHandler<IStorageItemInformation,IInspectable>