# Confirm Close

一个带有退出确认对话框的窗口。

import webview

if __name__ == '__main__':
    # Create a standard webview window
    webview.create_window(
        'Confirm Quit Example', 'https://pywebview.flowrl.com/hello', confirm_close=True
    )
    webview.start()