Files
SolianForPython/core/WebViewWIndow.py
2025-09-11 11:50:04 +00:00

7 lines
287 B
Python

import webview
def WebViewWIndow(url: str,title: str,width: int,height: int):#创建Webview窗口
webview.create_window(title=title, url=url, width=width, height=height)
webview.settings['ALLOW_DOWNLOADS'] = True
webview.start(icon="./assets/img/icon.png")
exit(0)