2014-11-04 4 views
0

이미지 뒤에 StaticLine (세로)을 넣으려고합니다. 정적 인 선 다음에는 버튼이 있습니다. 나는 BoxSizer (Horizontal)에 모든 것을 넣었습니다. 그러나 달리기 동안 나는 정적 인 선을 보지 못했다. 여기서 내가 뭘 잘못하고 있니? 도와주세요.BoxSizer의 이미지 후 WxPython StaticLine

감사합니다.

다음은 몇 가지 코드입니다.

class Frame1(wx.Frame): 
    def __init__(self, *args, **kwds): 
     wx.Frame.__init__(self, *args, **kwds) 
     self.panel1 = wx.Panel(self, wx.ID_ANY) 
     img = wx.EmptyImage(MaxImageSize, MaxImageSize) 
     self.imgctrl = wx.StaticBitmap(self.panel1, wx.ID_ANY, wx.BitmapFromImage(img)) 
     self.st = wx.StaticLine(self.panel1, wx.ID_ANY, style=wx.LI_VERTICAL) 
     self.but = wx.Button(self.panel1, wx.ID_ANY, 'OK') 
     self.hbox = wx.BoxSizer(wx.HORIZONTAL) 
     self.hbox.Add(self.imgctrl, 0, wx.ALL, 5) 
     self.hbox.Add(self.st, 0, wx.ALL, 5) 
     self.hbox.Add(self.but, 1, wx.ALL, 5) 
     self.panel1.SetSizer(self.hbox) 
     self.hbox.Fit(self.panel1) 

답변

1

당신은 당신이 플래그를 확장 설정해야 선별기에 staticline를 추가 할 때, 그래서 수직 사이 저를 채우기 위해 확장합니다.

import wx 

class Frame1(wx.Frame): 
    def __init__(self, *args, **kwds): 
     wx.Frame.__init__(self, *args, **kwds) 
     self.panel1 = wx.Panel(self, wx.ID_ANY) 
     img = wx.EmptyImage(100, 100) 
     self.imgctrl = wx.StaticBitmap(self.panel1, wx.ID_ANY, wx.BitmapFromImage(img)) 
     self.st = wx.StaticLine(self.panel1, wx.ID_ANY, style=wx.LI_VERTICAL) 
     self.but = wx.Button(self.panel1, wx.ID_ANY, 'OK') 
     self.hbox = wx.BoxSizer(wx.HORIZONTAL) 
     self.hbox.Add(self.imgctrl, 0, wx.ALL, 5) 
     self.hbox.Add(self.st, 0, wx.ALL | wx.EXPAND, 5) 
     self.hbox.Add(self.but, 1, wx.ALL, 5) 
     self.panel1.SetSizer(self.hbox) 
     self.hbox.Fit(self.panel1) 

if __name__ == '__main__': 
    app = wx.App(False) 
    frame_1 = Frame1(None) 
    frame_1.Show() 
    app.MainLoop() 
+0

감사합니다. 그것은 그 문제를 해결했습니다. – Joydeep