python - wxpython fixed frame size? -
is possible create frame fixed size, user can not change size of frame ?
wx.frame.__init__(self, none, -1, 'hello',wx.defaultposition,(400, 300)) i'm using python 2.7
thanks
yes possible -
wx.frame.__init__(none, -1, 'title', style= wx.system_menu | wx.caption | wx.close_box)
Comments
Post a Comment