ICoreWindow.VisibilityChanged Event
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Specifies the event that occurs when the window visibility is changed.
// Register
event_token VisibilityChanged(TypedEventHandler<CoreWindow, VisibilityChangedEventArgs const&> const& handler) const;
// Revoke with event_token
void VisibilityChanged(event_token const* cookie) const;
// Revoke with event_revoker
ICoreWindow::VisibilityChanged_revoker VisibilityChanged(auto_revoke_t, TypedEventHandler<CoreWindow, VisibilityChangedEventArgs const&> const& handler) const;
event TypedEventHandler<CoreWindow,VisibilityChangedEventArgs> VisibilityChanged;
function onVisibilityChanged(eventArgs) { /* Your code */ }
iCoreWindow.addEventListener("visibilitychanged", onVisibilityChanged);
iCoreWindow.removeEventListener("visibilitychanged", onVisibilityChanged);
- or -
iCoreWindow.onvisibilitychanged = onVisibilityChanged;
Event VisibilityChanged As TypedEventHandler(Of CoreWindow, VisibilityChangedEventArgs)