如何创建链接到文本文件的Tkinter按钮?

问题描述 投票:0回答:1

我需要一个按钮,用户可以点击它来打开一个名为 "project tkinter.txt "的文本文件(它已经存在)。

我尝试了另一个用户的建议。

def opencopypaste():
    from os import startfile
    startfile("c:\\path\\to\\file") # i put the file path here #

openbutton = Button(frame, text='click me', command=opencopypaste)
openbutton.grid()

然而,它说在os.py中找不到 "startfile"。然后我又试了另一个建议,那就是:在os.py中找到 "startfile"。

def opencopypaste():
    webbrowser.open("project tkinter.txt")

这次代码运行并创建了一个按钮 但是点击按钮却什么都没做。我似乎找不到任何方法可以在 tkinter 中为文本文件创建一个超链接或按钮。如果能得到帮助,我将非常感激

python tkinter pycharm text-files
1个回答
0
投票

你是在Mac还是Linux上工作?因为如果是这样的话 这个问题 可能会有帮助。

© www.soinside.com 2019 - 2024. All rights reserved.