次の方法で共有


FolderInformation.ThumbnailUpdated イベント

定義

StorageFolder のサムネイルが更新されるか、より高品質なサムネイルが使用可能になると発生します。

// 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
FolderInformation::ThumbnailUpdated_revoker ThumbnailUpdated(auto_revoke_t, TypedEventHandler<IStorageItemInformation, IInspectable const&> const& handler) const;
public event TypedEventHandler<IStorageItemInformation,object> ThumbnailUpdated;
function onThumbnailUpdated(eventArgs) { /* Your code */ }
folderInformation.addEventListener("thumbnailupdated", onThumbnailUpdated);
folderInformation.removeEventListener("thumbnailupdated", onThumbnailUpdated);
- or -
folderInformation.onthumbnailupdated = onThumbnailUpdated;
Public Custom Event ThumbnailUpdated As TypedEventHandler(Of IStorageItemInformation, Object) Implements ThumbnailUpdated

イベントの種類

実装

適用対象