Actually I have two questions:
- How to prevent self.Fit() from re sizing the widgets?
Here is the window without .Fit(), I'm quite happy with the width of my TextCtrl, but I want the height of the window to adjust to the widgets.
When I add .Fit(), the width of TextCtrl changes:
- How do I align the two TextCtrl, as you can notice their starting point is different, for that I tried to use a wx.FlexGridSizer, but I had trouble adjusting the spacing between the StaticText and the TextCtrl
Here is the code:
#!/usr/bin/env python
import wx
class loginWindow(wx.Frame):
def __init__(self, parent, title):
super(loginWindow, self).__init__(parent, title=title,
style=wx.SYSTEM_MENU |
wx.CAPTION |
wx.CLOSE_BOX)
self.InitUI()
self.Center()
self.Show()
def InitUI(self):
self.main_sizer = wx.BoxSizer(wx.VERTICAL)
#User name
self.hsizer1 = wx.BoxSizer(wx.HORIZONTAL)
self.user_name_lbl = wx.StaticText(self, label="User name:")
self.hsizer1.Add(self.user_name_lbl, flag=wx.EXPAND | wx.RIGHT | wx.ALIGN_CENTER, border=5)
self.user_name_txt = wx.TextCtrl(self)
self.hsizer1.Add(self.user_name_txt, flag=wx.EXPAND | wx.LEFT, proportion=3, border=5)
#Password
self.hsizer2 = wx.BoxSizer(wx.HORIZONTAL)
self.password_lbl = wx.StaticText(self, label="Password:")
self.hsizer2.Add(self.password_lbl, flag=wx.EXPAND | wx.RIGHT | wx.ALIGN_CENTER, border=5)
self.password_txt = wx.TextCtrl(self)
self.hsizer2.Add(self.password_txt, flag=wx.EXPAND | wx.LEFT, proportion=3, border=5)
#Login button
self.login_button = wx.Button(self, label="Login")
#Main sizer
self.main_sizer.Add(self.hsizer1, flag=wx.EXPAND | wx.ALL | wx.ALIGN_CENTER, border=5)
self.main_sizer.Add(self.hsizer2, flag=wx.EXPAND | wx.ALL | wx.ALIGN_CENTER, border=5)
self.main_sizer.Add(self.login_button, flag=wx.EXPAND | wx.ALL | wx.ALIGN_CENTER, border=5)
self.SetSizer(self.main_sizer)
self.Fit()
if __name__ == '__main__':
app = wx.App()
loginWindow(None, title="AppTitle")
app.MainLoop()
To prevent self.Fit() from re sizing the widgets on the width only
By setting a min width value, but giving a height of -1 will fix the width but leave the height free to be set by self.Fit()
If you want the width fixed to the current window width, use the following:
To align the two TextCtrl use a flexgrid sizer and give the labels style wx.ALIGN_RIGHT
To make the TextCtrl stretch give them the style wx.EXPAND and set there coloumn position to be able to grow with
I also find that having a frame -> sizer -> panel -> sizer -> controls makes sizers work better.
Here is some complete code