wxPython中AuiMDI帧的问题

时间:2010-01-09 03:11:24

标签: wxpython wxwidgets mdichild

我正在创建一个AuiMDIParent帧,在该父帧内我有一个AuiMDIChild帧。在子框架内,我有一个显示图像的面板。我的问题是,当我运行我的代码(如下所示)时,我得到了所需的结果,但是当我尝试关闭作为​​父框架的主窗口时,没有任何反应。然后,当我关闭子框架时,整个应用程序将关闭,包括父框架(不仅仅是子框架)。

我不知道为什么会这样。请帮我弄清楚是否有人遇到过这样的问题。如果您运行我的代码,您将更好地了解问题。

感谢。

import wx
import wx.aui

class ParentFrame(wx.aui.AuiMDIParentFrame):
    '''
        This is main frame
    '''

    def __init__(self,parent,id,title):
        '''
            Creates a Parent Frame which has child frames into it.
        '''
        wx.aui.AuiMDIParentFrame.__init__(self,parent,id,title,
                                          size=(900,700),
                                          style=wx.DEFAULT_FRAME_STYLE | wx.NO_FULL_REPAINT_ON_RESIZE)
        self.SetMinSize((500,500))
        self.CreateStatusBar()

class NetworkVisualizationFrame(wx.aui.AuiMDIChildFrame):
    '''
        This is a child frame
    '''

    def __init__(self,parent=None,id=-1,title="Network Visualization",image="Default.png"):
        '''
            Creates a child frame inside parent frame.
        '''
        wx.aui.AuiMDIChildFrame.__init__(self,parent,id,title)
        (frameWidth,frameHeight) = self.GetSizeTuple()

        #=========================================================
        # Create an image panel
        #=========================================================
        imagePanelHeight = int(frameHeight)
        imagePanelWidth = int(0.7 * frameWidth)
        self.imagePanel = wx.Panel(self,id=-1,name="Image Panel",
                                   style=wx.BORDER_THEME,
                                   size=(imagePanelWidth,imagePanelHeight))
                    self.loadImage(image)

        self.Bind(wx.EVT_SIZE, self.onResize)
        self.Bind(wx.EVT_PAINT, self.onPaint)

    def loadImage(self,image):
        #==================================================
        # Find the aspect ratio of the image
        #==================================================
        self.png = wx.Image(image, wx.BITMAP_TYPE_PNG)
        imageHeight = self.png.GetHeight()
        imageWidth = self.png.GetWidth()
        self.aspectRatio = imageWidth/imageHeight
        self.bitmap = wx.BitmapFromImage(self.png)

    def onResize(self,event):
        (frameWidth,frameHeight) = self.GetSizeTuple()
        imagePanelWidth = int(0.7 * frameWidth)
        imagePanelHeight = int(frameHeight) 
        self.imagePanel.SetSize((imagePanelWidth,imagePanelHeight))
        (w, h) = self.getBestSize()
        self.imagePanel.SetSize((w,h)) 
        self.scaledPNG = self.png.Scale(w, h)
        self.bitmap = wx.BitmapFromImage(self.scaledPNG)
        self.Refresh()

    def onPaint(self,event):
        dc = wx.PaintDC(self.imagePanel)
        dc.DrawBitmap(self.bitmap, 0, 0, useMask=False)

    def getBestSize(self):
        (w,h) = self.imagePanel.GetSizeTuple()
        # Keep the height same and change width of the image according to aspect ratio
        newWidth = int (self.aspectRatio * h)
        newSize = (newWidth,h)
        return newSize

app = wx.PySimpleApp()
parentFrame = ParentFrame(None,-1,"Main Frame")
NetworkVisualizationFrame(parentFrame,-1,"Network Visualization","Artifacts_vs_Elaborations_36855.png")
parentFrame.Show()
app.MainLoop()

1 个答案:

答案 0 :(得分:0)

可能是因为您将子框架设为“无”而非mdi父框架。