FrameworkElement.Loading Événement
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Se produit lorsqu’un frameworkElement commence à charger.
// Register
event_token Loading(TypedEventHandler<FrameworkElement, IInspectable const&> const& handler) const;
// Revoke with event_token
void Loading(event_token const* cookie) const;
// Revoke with event_revoker
FrameworkElement::Loading_revoker Loading(auto_revoke_t, TypedEventHandler<FrameworkElement, IInspectable const&> const& handler) const;
public event TypedEventHandler<FrameworkElement,object> Loading;
function onLoading(eventArgs) { /* Your code */ }
frameworkElement.addEventListener("loading", onLoading);
frameworkElement.removeEventListener("loading", onLoading);
- or -
frameworkElement.onloading = onLoading;
Public Custom Event Loading As TypedEventHandler(Of FrameworkElement, Object)
<frameworkElement Loading="eventhandler"/>
Type d'événement
TypedEventHandler<FrameworkElement,IInspectable>