FileOpenPickerUI.Closing 事件
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
當使用者關閉檔案選擇器時引發。
// Register
event_token Closing(TypedEventHandler<FileOpenPickerUI, PickerClosingEventArgs const&> const& handler) const;
// Revoke with event_token
void Closing(event_token const* cookie) const;
// Revoke with event_revoker
FileOpenPickerUI::Closing_revoker Closing(auto_revoke_t, TypedEventHandler<FileOpenPickerUI, PickerClosingEventArgs const&> const& handler) const;
public event TypedEventHandler<FileOpenPickerUI,PickerClosingEventArgs> Closing;
function onClosing(eventArgs) { /* Your code */ }
fileOpenPickerUI.addEventListener("closing", onClosing);
fileOpenPickerUI.removeEventListener("closing", onClosing);
- or -
fileOpenPickerUI.onclosing = onClosing;
Public Custom Event Closing As TypedEventHandler(Of FileOpenPickerUI, PickerClosingEventArgs)
事件類型
備註
身為檔案提供者,您可以註冊此事件,讓應用程式可以在關閉之前執行清除工作。 例如,如果使用者取消檔案選擇器,您可以在使用者選擇檔案時清除新增至檔案選擇器的暫存檔來回應。
將事件接聽程式新增至 FileOpenPickerUI 並指派事件的處理常式函式,以註冊此事件。 您可以從傳遞至事件處理常式的 PickerClosingEventArgs 物件存取事件的相關資訊。