- Python : 3.7.0
- OS : Ubuntu 18.04.1 LTS
- IDE : PyCharm 2018.2.4
- Conda : 4.5.11
- typesetting : Markdown
""" @Author : 行初心 @Date : 18-9-30 @Blog : www.cnblogs.com/xingchuxin @Gitee : gitee.com/zhichengjiu """ from tkinter import * def main(): root = Tk() # tearoff=False menubar = Menu(root, tearoff=False) menubar.add_command(label='果部') menubar.add_command(label='菜部') frame = Frame(root, width=100, height=100, background='red') frame.pack() def _right_key(event): menubar.post(event.x_root, event.y_root) # frame框綁定鼠標右鍵 frame.bind("<Button-3>", _right_key) mainloop() if __name__ == '__main__': main()
""" @Author : 行初心 @Date : 18-9-30 @Blog : www.cnblogs.com/xingchuxin @Gitee : gitee.com/zhichengjiu """ from tkinter import * def main(): root = Tk() # tearoff=True menubar = Menu(root, tearoff=True) menubar.add_command(label='果部') menubar.add_command(label='菜部') frame = Frame(root, width=100, height=100, background='red') frame.pack() def _right_key(event): menubar.post(event.x_root, event.y_root) # frame框綁定鼠標右鍵 frame.bind("<Button-3>", _right_key) mainloop() if __name__ == '__main__': main()
Python具備開源、跨平臺、解釋型和交互式等特性,值得學習。
Python的設計哲學:優雅,明確,簡單。提倡用一種方法,最好是隻有一種方法來作一件事。
GUI能夠選擇PyQt五、PySide二、wxPython、PyGObject、wxWidgets等進行創做。
代碼的書寫要遵照規範,這樣有助於溝通和理解。
每種語言都有獨特的思想,初學者須要轉變思惟、踏實踐行、堅持積累。html