Select the multi-line control : Text « wxPython « Python Tutorial






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()








19.42.Text
19.42.1.Add text control to frameAdd text control to frame
19.42.2.Text Entry ExampleText Entry Example
19.42.3.Select the multi-line controlSelect the multi-line control
19.42.4.Change font and colorChange font and color