CoreWindow.ResizeStarted É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 utilisateur commence à redimensionner la fenêtre.
// Register
event_token ResizeStarted(TypedEventHandler<CoreWindow, IInspectable const&> const& handler) const;
// Revoke with event_token
void ResizeStarted(event_token const* cookie) const;
// Revoke with event_revoker
CoreWindow::ResizeStarted_revoker ResizeStarted(auto_revoke_t, TypedEventHandler<CoreWindow, IInspectable const&> const& handler) const;
public event TypedEventHandler<CoreWindow,object> ResizeStarted;
function onResizeStarted(eventArgs) { /* Your code */ }
coreWindow.addEventListener("resizestarted", onResizeStarted);
coreWindow.removeEventListener("resizestarted", onResizeStarted);
- or -
coreWindow.onresizestarted = onResizeStarted;
Public Custom Event ResizeStarted As TypedEventHandler(Of CoreWindow, Object)
Type d'événement
TypedEventHandler<CoreWindow,IInspectable>
Configuration requise pour Windows
Famille d’appareils |
Windows 10 Creators Update (introduit dans 10.0.15063.0)
|
API contract |
Windows.Foundation.UniversalApiContract (introduit dans v4.0)
|