InputNonClientPointerSource.WindowRectChanged É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 lorsque la position de la fenêtre a fini de changer.
// Register
event_token WindowRectChanged(TypedEventHandler<InputNonClientPointerSource, WindowRectChangedEventArgs const&> const& handler) const;
// Revoke with event_token
void WindowRectChanged(event_token const* cookie) const;
// Revoke with event_revoker
InputNonClientPointerSource::WindowRectChanged_revoker WindowRectChanged(auto_revoke_t, TypedEventHandler<InputNonClientPointerSource, WindowRectChangedEventArgs const&> const& handler) const;
public event TypedEventHandler<InputNonClientPointerSource,WindowRectChangedEventArgs> WindowRectChanged;
function onWindowRectChanged(eventArgs) { /* Your code */ }
inputNonClientPointerSource.addEventListener("windowrectchanged", onWindowRectChanged);
inputNonClientPointerSource.removeEventListener("windowrectchanged", onWindowRectChanged);
- or -
inputNonClientPointerSource.onwindowrectchanged = onWindowRectChanged;
Public Custom Event WindowRectChanged As TypedEventHandler(Of InputNonClientPointerSource, WindowRectChangedEventArgs)
Type d'événement
Remarques
Cela correspond au message windows WM_WINDOWPOSCHANGED.