What does Frame.__init__ do?

三世轮回 提交于 2019-12-03 08:49:03
kindall

The class AppUI is based on the class Frame from Tkinter. This means the AppUI class is a type of Frame but with some behaviors slightly different or customized. Which means that the methods of the AppUI class may need to (in fact, usually will need to) call code from the Frame class. That is, AppUI wants to do the same thing as the Frame class, and also something else. That's what's happening here: when you instantiate an AppUI, you want it to be initialized as a Frame first, and then perform the AppUI-specific initialization.

Here AppUI explicitly calls its parent class's __init__() method.

You can also do this using the super() function—and usually you would; it's basically required in multiple-inheritance scenarios. But because Tkinter uses "old-style classes", you have to do it the old way here.

the concept behind is that Tkinter provides a special widget type for menus, StatusBar is inherited from the Frame widget. while you use that, i think the purpose is that It wil not increases the risk that your additional methods conflict with attributes or methods used by Tkinter

see: http://effbot.org/tkinterbook/tkinter-application-windows.htm

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!