Mega Code Archive

 
Categories / Python Tutorial / Wxpython
 

Select the multi-line control

import wx class TextFrame(wx.Frame):     def __init__(self):         wx.Frame.__init__(self, None, -1, 'Text Entry Example', size=(300, 250))         panel = wx.Panel(self, -1)          multiLabel = wx.StaticText(panel, -1, "Multi-line")         multiText = wx.TextCtrl(panel, -1,"test",size=(200, 100), style=wx.TE_MULTILINE)         multiText.SetInsertionPoint(0)         sizer = wx.FlexGridSizer(cols=2, hgap=6, vgap=6)         sizer.AddMany([multiLabel, multiText])         panel.SetSizer(sizer) app = wx.PySimpleApp() frame = TextFrame() frame.Show() app.MainLoop()