认识 wxPython 以及 wxglade 辅助工具

一个简单的ui界面

安装

pip3 install -U wxPython

最简代码

import wx
app = wx.App()
frame = wx.Frame(None, -1, "Hello, World!")
frame.Show(True)
app.MainLoop()

gui编辑辅助工具 wxglade

http://wxglade.sourceforge.net
https://faculty.math.illinois.edu/~gfrancis/illimath/windows/aszgard_mini/bin/wxGlade-0.6/docs/tutorial.html
https://blog.csdn.net/soslinken/article/details/78967918

参考:https://www.wxpython.org/pages/downloads/

你可能感兴趣的:(认识 wxPython 以及 wxglade 辅助工具)