FrameworkElement.Loading 事件
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
發生于 FrameworkElement 開始載入時。
// 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"/>
事件類型
TypedEventHandler<FrameworkElement,IInspectable>