Hi,
I use a wxNotebook in a SplitterWindow. The other part of the
wxSplitterWindow is ax wxListCtrl. The first notebook is only to give
the list in the other Splitter the maximum size.
With the event OnNbc (NOTEBOOK CHANGED) I do the different splitting
EVT_NOTEBOOK_PAGE_CHANGED(self, ID_NB_C, self.OnNbC)
..
def OnNbC(self, event):
listv = event.GetSelection()
if listv==0: self.split.SetSashPosition(40)
else: self.split.SetSashPosition(245)
On Linux all works well but on windows I see only a small part aof the
list - when I walk throug the list the unseen Items are there again.
(The scrollbar up and down and all will be seen.)
Is there a way to fix it?
···
--
~Guenther Fischer