gpt4 book ai didi

python - 有没有办法在 Tkinter 中使用功能区工具栏?

转载 作者:太空狗 更新时间:2023-10-29 20:58:35 26 4
gpt4 key购买 nike

我还没有决定在我的下一个项目中使用什么语言和工具。我很想使用 python,但我想实现功能区工具栏。一些工作已经在 Tk ( http://www.ellogon.org/petasis/bibliography/Tcl2010/TkRibbon.pdf ) 中完成,但看起来它还没有在 tkinter 中实现。我能做些什么来让它发挥作用吗?

最佳答案

您需要为此创建一个包装器并获得一个您可以使用的二进制版本。我构建它是为了与 Python 3.4 一起使用并将其复制到 tkribbon1.0-x86_64.zip .您应该将其解压缩到 Python/tcl 子目录中,以便 python 使用的 tcl 版本可以加载它。

一个最小的包装看起来像这样:

from tkinter import Widget
from os import path

class Ribbon(Widget):
def __init__(self, master, kw=None):
self.version = master.tk.call('package','require','tkribbon')
self.library = master.tk.eval('set ::tkribbon::library')
Widget.__init__(self, master, 'tkribbon::ribbon', kw=kw)

def load_resource(self, resource_file, resource_name='APPLICATION_RIBBON'):
"""Load the ribbon definition from resources.

Ribbon markup is compiled using the uicc compiler and the resource included
in a dll. Load from the provided file."""
self.tk.call(self._w, 'load_resources', resource_file)
self.tk.call(self._w, 'load_ui', resource_file, resource_name)

if __name__ == '__main__':
import sys
from tkinter import *
def main():
root = Tk()
r = Ribbon(root)
name = 'APPLICATION_RIBBON'
if len(sys.argv) > 1:
resource = sys.argv[1]
if len(sys.argv) > 2:
name = sys.argv[2]
else:
resource = path.join(r.library, 'libtkribbon1.0.dll')
r.load_resource(resource, name)
t = Text(root)
r.grid(sticky=(N,E,S,W))
t.grid(sticky=(N,E,S,W))
root.grid_columnconfigure(0, weight=1)
root.grid_rowconfigure(1, weight=1)
root.mainloop()
main()

运行它使用内置于 tkribbon dll 的资源,看起来像 this screenshot .复杂的一点是将一些功能区标记资源放入 DLL 中以供加载。

您可以使用此示例从现有应用程序加载功能区。例如,python Ribbon.py c:\Windows\System32\mspaint.exe MSPAINT_RIBBON 将从 mspaint 加载色带资源。在这种情况下,必须包含资源名称,因为默认值为 APPLICATION_RIBBON。对于您自己的功能区,使用 uicc 构建 .rc 文件,然后使用 rc/r file.rc 生成 .res 文件,最后使用 link -dll -out:file.dll 文件。 rc -noentry -machine:AMD64 似乎可以生成与此扩展一起使用的纯资源 DLL。

关于python - 有没有办法在 Tkinter 中使用功能区工具栏?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30615579/

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