|
From: Victor B. <so...@te...> - 2013-10-21 18:01:24
|
Hello:
How could I use wxAuiNotebook:Split() to get four tabs one in each corner.
With the following code I cant get exactly that
splits = {false,wx.wxRIGHT,wx.wxBOTTOM,wx.wxRIGHT}
Log = {}
for i=1,4 do
Log[i] = CreateLog()
notebookLogs:AddPage(Log[i], "Log"..i)
if splits[i] then
notebookLogs:Split(notebookLogs:GetPageIndex(Log[i]),splits[i])
end
end
Best Regards
victor bombi
|