在Tkinter程序中打开默认的Ubuntu文本编辑器,可以通过以下步骤实现:
import tkinter as tk
window = tk.Tk()
import subprocess
def open_text_editor():
subprocess.run(['xdg-open', ''])
button = tk.Button(window, text="打开文本编辑器", command=open_text_editor)
button.pack()
window.mainloop()
完整的代码如下:
import tkinter as tk
import subprocess
def open_text_editor():
subprocess.run(['xdg-open', ''])
window = tk.Tk()
button = tk.Button(window, text="打开文本编辑器", command=open_text_editor)
button.pack()
window.mainloop()
这样,当点击按钮时,系统会调用默认的Ubuntu文本编辑器打开一个空白文档。
领取专属 10元无门槛券
手把手带您无忧上云