"""
Created on Wed Dec 26 18:07:12 2018
QQ群:476842922(欢迎加群讨论学习
@author: Administrator
"""
import wx
class Example(wx.Frame):
def __init__(self, parent, title):
super(Example, self).__init__(parent, title=title,
size=(350, 250))
def main():
app = wx.App()
ex = Example(None, title='Sizing')
ex.Show()
app.MainLoop()
if __name__ == '__main__':
main()
``

wxpython size设置窗口大小006
最新推荐文章于 2022-09-05 11:21:40 发布