I need to create a window for showing text in multiple line(like notepad.below is my application).I create a wx.TextCtrl using wxPython Problem is it can’t print in multiple lines even if you put \n at end of your strings.What should I use? I couldn’t find wxPython documentation.
I need to create a window for showing text in multiple line(like notepad.below is
Share
Use the wx.TE_MULTILINE style for your textctrl, e.g.