This commit is contained in:
=
2026-02-24 21:15:27 -05:00
commit 59c1d76a4b
16 changed files with 111808 additions and 0 deletions

13
helpy.py Normal file
View File

@@ -0,0 +1,13 @@
import wx
class MainWindow(wx.Frame):
def __init__(self, parent, title):
wx.Frame.__init__(self, parent, title=title, size=(200,100))
self.control = wx.TextCtrl(self, style=wx.TE_MULTILINE)
self.CreateStatusBar() # A Statusbar in the bottom of the window
self.Show(True)
app = wx.App(False)
frame = MainWindow(None, "Sample editor")
app.MainLoop()