gpt4 book ai didi

python - 在 GUI 内打开指南

转载 作者:行者123 更新时间:2023-12-01 09:15:35 25 4
gpt4 key购买 nike

我用 Python 编写了一个 GUI,并使用 Sphinx 编写了文档。

我想尝试放置一个帮助按钮来打开带有指南的 HTML 文件。

有什么帮助吗?

最佳答案

这是对我有用的解决方案:我首先在 GUI 中添加了一个菜单选项(使用 QT 设计器创建)

self.actionHelp.triggered.connect(self.handle_help_menu)

然后当 GUI 初始化时:

os.chdir('docs')
import subprocess
subprocess.check_output('make html',shell=True)
subprocess.check_output('make latex',shell=True)

连接到打开包含指南的 html 的菜单的函数是:

def handle_help_menu(self):
import webbrowser
url='file://' + os.path.realpath('./docs/build/html/index.html')
webbrowser.get(using='google-chrome').open(url,new=2);

关于python - 在 GUI 内打开指南,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51306222/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com