We can use the size of wxPython to layout user interface but it is not easy to use. If we are familiar with HTML's table tags, such as TABLE, TR and TD, we can use them as a comment in Python program to help us design UI.
Because Python forbids to have free-style indents, we can use a trick of if-string to make indents.
Below is the sample.
-Count
Below is the sample.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def __init__ (self): | |
wx.Frame.__init__ (self, None, -1, self.Title) | |
if "<TABLE>": | |
self.Hs = wx.BoxSizer (wx.VERTICAL) | |
if "<TR>": | |
self.St = wx.StaticText(self, label="Your name :", pos=(20,60)) | |
self.Hs.Add (self.St) | |
if "<TR>": | |
self.Vs = wx.BoxSizer (wx.HORIZONTAL) | |
if "<TD>": | |
self.St2 = wx.StaticText(self, label="...", pos=(20,60)) | |
self.Vs.Add (self.St2) | |
if "<TD>": | |
self.Logger = wx.TextCtrl (self, 5, "", wx.Point (0,0), wx.Size (-1, -1), \ | |
wx.TE_MULTILINE | wx.TE_READONLY)# | wx.TE_RICH2) | |
self.Logger.SetBackgroundColour((255,255,0)) | |
self.Vs.Add (self.Logger, 1, wx.EXPAND) | |
self.Hs.Add (self.Vs, 1, wx.EXPAND) | |
self.SetSizer (self.Hs) |
No comments:
Post a Comment