加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
main.py 600 Bytes
一键复制 编辑 原始数据 按行查看 历史
czr 提交于 2024-11-29 10:16 . 初始化版本V1.3
import sys
import ctypes
from PyQt6.QtWidgets import QApplication
from main_window import MainWindow
def is_admin():
try:
return ctypes.windll.shell32.IsUserAnAdmin()
except:
return False
def main():
if sys.platform.startswith('win') and not is_admin():
# 请求管理员权限
ctypes.windll.shell32.ShellExecuteW(None, "runas", sys.executable, " ".join(sys.argv), None, 1)
return
app = QApplication(sys.argv)
window = MainWindow()
window.show()
sys.exit(app.exec())
if __name__ == '__main__':
main()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化