Is it possible to create a frame with a fixed size, so the user can not change the size of the frame ?
wx.Frame.__init__(self, None, -1, 'Hello',wx.DefaultPosition,(400, 300))
I'm using python 2.7
thanks
Yes it is possible -
wx.Frame.__init__(None, -1, 'Title', style= wx.SYSTEM_MENU | wx.CAPTION | wx.CLOSE_BOX)