Hallo allerseits,
Wie gesagt habe ich ein kleines Verständnisproblem. Hier erstmal mein Pythoncode:
#!/usr/bin/python
import wx
class Main_Window(wx.Frame):
def __init__(self, parent, id, title):
wx.Frame.__init__(self, parent, id, title, size=(800, 600))
panel = wx.Panel(self, -1 ...