Files
SolianForPython/core/WebViewWIndow.py

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.ico")
exit(0)