Kjam.org

Title

kJAM In Python

Description

Excerpted from the website:

class MyFrame(wx.Frame): def __init__(self): wx.Frame.__init__(self, None, title='ScrolledWindow Test') self.panel = wx.ScrolledWindow(self) self.button1 = wx.Button(self.panel, -1, "1", (10,0)) self.button2 = wx.Button(self.panel, -1, "2", (20,500)) self.panel.Show() self.Show() self.panel.EnableScrolling(False, True) self.panel.SetScrollbars(0,20,0,30) self.panel.Scroll(-1, 15)
read more

Additional Information

Related Domains

External Links



Retrieved from "http://aboutus.com/index.php?title=Kjam.org&oldid=35549543"