Created
June 13, 2014 13:36
-
-
Save driscollis/a42aecb379742d3cd150 to your computer and use it in GitHub Desktop.
wxPython ScrolledPanel Example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import wx | |
import wx.lib.scrolledpanel as scrolled | |
######################################################################## | |
class MyForm(wx.Frame): | |
#---------------------------------------------------------------------- | |
def __init__(self): | |
wx.Frame.__init__(self, None, wx.ID_ANY, "Tutorial", size=(200,500)) | |
# Add a panel so it looks the correct on all platforms | |
self.panel = wx.Panel(self, wx.ID_ANY) | |
# -------------------- | |
# Scrolled panel stuff | |
self.scrolled_panel = scrolled.ScrolledPanel(self.panel, -1, | |
style = wx.TAB_TRAVERSAL|wx.SUNKEN_BORDER, name="panel1") | |
self.scrolled_panel.SetAutoLayout(1) | |
self.scrolled_panel.SetupScrolling() | |
words = "A Quick Brown Insane Fox Jumped Over the Fence and Ziplined to Cover".split() | |
self.spSizer = wx.BoxSizer(wx.VERTICAL) | |
for word in words: | |
text = wx.TextCtrl(self.scrolled_panel, value=word) | |
self.spSizer.Add(text) | |
self.scrolled_panel.SetSizer(self.spSizer) | |
# -------------------- | |
btn = wx.Button(self.panel, label="Add Widget") | |
btn.Bind(wx.EVT_BUTTON, self.onAdd) | |
panelSizer = wx.BoxSizer(wx.VERTICAL) | |
panelSizer.AddSpacer(50) | |
panelSizer.Add(self.scrolled_panel, 1, wx.EXPAND) | |
panelSizer.Add(btn) | |
self.panel.SetSizer(panelSizer) | |
#---------------------------------------------------------------------- | |
def onAdd(self, event): | |
"""""" | |
print "in onAdd" | |
new_text = wx.TextCtrl(self.scrolled_panel, value="New Text") | |
self.spSizer.Add(new_text) | |
self.scrolled_panel.Layout() | |
self.scrolled_panel.SetupScrolling() | |
# Run the program | |
if __name__ == "__main__": | |
app = wx.App(False) | |
frame = MyForm().Show() | |
app.MainLoop() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment