CoreWindow.ResizeStarted 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.
Occurs when a user starts to resize the window.
// 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)
Event Type
TypedEventHandler<CoreWindow,IInspectable>
Windows requirements
Device family |
Windows 10 Creators Update (introduced in 10.0.15063.0)
|
API contract |
Windows.Foundation.UniversalApiContract (introduced in v4.0)
|