[Windows][Python] GUI设计
程序员文章站
2022-03-02 13:32:24
...
Make a GUI on Windows X
Setup python
-
Install pip
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
python get-pip.py
-
Install Pyinstaller
pip install PyInstaller
-
Write a GUI code
import wx app = wx.App() win = wx.Frame(None, title="Simple Editor", size=(410,335)) OpenBtn = wx.Button(win, label="Open", pos=(225,5), size=(80,25)) SaveBtn = wx.Button(win, label="Save", pos=(315,5), size=(80,25)) filename = wx.TextCtrl(win,pos=(5,5), size=(210,25)) contents = wx.TextCtrl(win,pos=(5,35), size=(390,260), style=wx.TE_MULTILINE|wx.HSCROLL) win.Show() app.MainLoop()
-
make a GUI.exe
pyinstaller -F -w GUI.py
上一篇: Caused by: org.hibernate.AnnotationException: @OneToOne or @ManyToOne on com.lyl
下一篇: Python的编码问题
推荐阅读
-
Windows系统下同时安装Python2和Python3
-
Windows系统下安装Python的SSH模块教程
-
windows下安装python paramiko模块的代码
-
python实现在windows服务中新建进程的方法
-
python设计PSNR和SSIM计算函数
-
Speed up Windows PHP Performance using Profile Gui
-
在Windows8上的搭建Python和Django环境
-
python跨平台 windows程序到linux后出现的问题记录
-
python语言程序设计——2.4判断重复元素
-
Python2.7 在windows命令窗口 输出中文乱码