From 5498c1e38a5ea4db21960a025c3e001c5235f783 Mon Sep 17 00:00:00 2001 From: kollivier Date: Wed, 8 Nov 2017 13:35:29 -0800 Subject: [PATCH] Add a quick note in the docs and remove the 2.9+ in the title. --- demo/SizedControls.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/demo/SizedControls.py b/demo/SizedControls.py index 3fa7b73b..087ff206 100644 --- a/demo/SizedControls.py +++ b/demo/SizedControls.py @@ -20,6 +20,10 @@ grids. This class also applies control borders that adhere to the native platform's Human Interface Guidelines (HIG) on Win, GTK and Mac. +

SizedStaticBox

+ +Like SizedPanel, but with a wx.StaticBox control instead of a wx.Panel. +

SizedScrolledPanel

This class automatically creates its own sizer (a vertical box sizer @@ -315,7 +319,7 @@ class GridFrame(sc.SizedFrame): class StaticBoxFrame(sc.SizedFrame): def __init__(self, parent, id): - sc.SizedFrame.__init__(self, parent, id, "Static Box Demo Frame (2.9+)") + sc.SizedFrame.__init__(self, parent, id, "Static Box Demo Frame") pane = self.GetContentsPane()