Does anyone know where I can find some sample code on getting a wxScrolledWindow on a wxNotebook tab?
Thanks
Frank
Does anyone know where I can find some sample code on getting a wxScrolledWindow on a wxNotebook tab?
Thanks
Frank
Thanks,
That worked...I only had to change 2 lines of code to get it working.
sudo code:
=======================
changed
self.pattern_data_tab = wxPanel(self.notebook, -1)
to
self.pattern_data_tab = wxScrolledPanel(self.notebook, -1)
and added
self.pattern_data_tab.SetupScrolling(scroll_y = TRUE)
just before
self.notebook.AddPage(self.pattern_data_tab, "Pattern Data")
=========================
I spent a good amount of time trying to get wxScrolledWindow working, but I had no luck.
Frank
At 02:43 PM 3/31/2004, you wrote:
> Does anyone know where I can find some sample code on getting a
> wxScrolledWindow on a wxNotebook tab?
>
I would simply try putting a wxScrolledPanel on a wxNotebook tab.---------------------------------------------------------------------
To unsubscribe, e-mail: wxPython-users-unsubscribe@lists.wxwidgets.org
For additional commands, e-mail: wxPython-users-help@lists.wxwidgets.org