Can I Use Tkinter Window In Kivy As A Sub-part Of Gui?
I am new to kivy and Tkinter. I want to use kivy as my root (main) GUI. But I also want to add Tkinker in it as a sub-part. is it possible to integrate (fix) tkinter window in ki
Solution 1:
It's not possible to kivy window load tk. But you can try make as two programs with statick positions (but that is hardway), or just see how to write all code in one framework
Solution 2:
It probably is possible to run Kivy in an opengl context within a tkinter window, but there's no support for this and you'd have to write a fair amount of code to get it to work. Essentially you'd need to write a tkinter backend provider for the Kivy window.
I wouldn't recommend this, it would be much easier to do everything within one framework.
Post a Comment for "Can I Use Tkinter Window In Kivy As A Sub-part Of Gui?"