4

我有一个现有的 tkinter gui,我想在其中添加一个 openGL 小部件。但是,OpenGL 小部件似乎只有在它是顶层时才有效。

这有效:

from OpenGL.Tk import *
from Tkinter import *
herp=Opengl(height=100,width=100)
herp.pack()
herp.mainloop()

但这不会:

from OpenGL.Tk import *
root=Tk()
b=Opengl(root,height=100,width=100)
b.pack()
root.mainloop()

给我以下错误:

Traceback (most recent call last):
  File "\\sith\user_files\2013-Softerns\new_gui_planning\LearningOpenGL\integration_3.py", line 4, in <module>
    b=Opengl(root,height=100,width=100)
  File "C:\Python27_32bit\lib\site-packages\OpenGL\Tk\__init__.py", line 267, in __init__
    apply(RawOpengl.__init__, (self, master, cnf), kw)
  File "C:\Python27_32bit\lib\site-packages\OpenGL\Tk\__init__.py", line 216, in __init__
    Widget.__init__(self, master, 'togl', cnf, kw)
  File "C:\Python27_32bit\lib\lib-tk\Tkinter.py", line 2036, in __init__
    (widgetName, self._w) + extra + self._options(cnf))
TclError: invalid command name "togl"

我需要导入togl吗?

我能找到的唯一另一件事是:

http://computer-programming-forum.com/56-python/ece79da9298c54de.htm

但是他们的解决方案对我不起作用。

4

1 回答 1

7

看起来 togl 的 PyOpengl 包装器正在使用默认的根窗口。

您应该能够通过 Opengl 小部件的 master 属性获得对它的引用。

from Tkinter import *
from OpenGL.Tk import *

b=Opengl(height=100,width=100)
root = b.master
f = Frame(root, width=100, bg='blue')
f.pack(side='left', fill='y')
b.pack(side='right', expand=1, fill='both')

root.mainloop()
于 2013-07-02T03:10:43.973 回答