Scrolled window derived from wx.Panel.
See wx.Scrolled for a detailed description.
Note
Note that because this class derives from wx.Panel, it shares its behaviour with regard to TAB
traversal and focus handling (in particular, it forwards focus to its children). If you don’t want this behaviour, use wx.ScrolledCanvas instead.
Note
wx.ScrolledWindow is an alias for ScrolledPanel since version 2.9.0. In older versions, it was a standalone class.
See also
__init__ |
|
SetFocusIgnoringChildren |
In contrast to SetFocus() this will set the focus to the panel even if |
wx.
ScrolledWindow
(_ScrolledWindowBase)¶Possible constructors:
ScrolledWindow()
ScrolledWindow(parent, winid=ID_ANY, pos=DefaultPosition,
size=DefaultSize, style=ScrolledWindowStyle, name=PanelNameStr)
Scrolled window derived from Panel.
__init__
(self, *args, **kw)¶__init__ (self)
__init__ (self, parent, winid=ID_ANY, pos=DefaultPosition, size=DefaultSize, style=ScrolledWindowStyle, name=PanelNameStr)
Parameters: |
|
---|
SetFocusIgnoringChildren
(self)¶In contrast to SetFocus() this will set the focus to the panel even if there are child windows in the panel. This is only rarely needed.