0

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()
4

1 に答える 1

0

おそらく、mdi 親フレームではなく、子フレームの親が「なし」になっているためです。

于 2010-01-31T15:02:31.460 に答える