我希望能够使用 wxflatnotebook 或类似工具在 MDIChildFrame 之间切换。我已经包含了我的代码以及我正在寻找的示例的图像。我要复制的标签是(GPBUSD)和(EURUSD)。到目前为止,我没有任何运气,所以任何信息将不胜感激。
import wx
import wx.lib.agw.aui as aui
class MDIFrame(wx.MDIParentFrame):
def __init__(self):
wx.MDIParentFrame.__init__(self, None, -1, "MDI Parent", size =(1350, 720))
menu = wx.Menu()
menu.Append(5000, "&New Window")
menu.Append(5001, "&Exit")
menubar = wx.MenuBar()
menubar.Append(menu, "&File")
self.SetMenuBar(menubar)
self.Bind(wx.EVT_MENU, self.OnNewWindow, id=5000)
self.Bind(wx.EVT_MENU, self.OnExit, id=5001)
self.mgr = aui.AuiManager(self, aui.AUI_MGR_DEFAULT
|aui.AUI_MGR_TRANSPARENT_DRAG
|aui.AUI_MGR_ALLOW_ACTIVE_PANE
|aui.AUI_MGR_TRANSPARENT_HINT)
self.inputPanel = wx.Panel(self, -1)
self.BuildPain()
def BuildPain(self):
self.mgr.AddPane(self.GetClientWindow(),
aui.AuiPaneInfo().Name("book").Caption("Notebook").
CenterPane().CaptionVisible(True).Dockable(True).Floatable(False).
BestSize((300,300)).CloseButton(False).MaximizeButton(True)
)
self.mgr.AddPane(self.inputPanel,
aui.AuiPaneInfo().Name("input").Caption("Input panel").
CaptionVisible(True).Left().Dockable(True).Floatable(True).
BestSize((300,300)).CloseButton(False).MaximizeButton(True)
)
self.mgr.Update()
def OnExit(self, evt):
self.Close(True)
def OnNewWindow(self, evt):
win = wx.MDIChildFrame(self, -1, "Child Window")
win.Show(True)
if __name__ == "__main__":
app = wx.App(0)
frame = MDIFrame()
frame.CenterOnScreen()
frame.Show()
app.MainLoop()