我在Raspberry Pi的某些文本标签上设置边框时遇到问题。在Windows中工作正常,但在raspbian上失败。并非所有边界都失败。我对wx.BORDER_RAISED或wx.BORDER_SUNKEN没问题,但是其他都没问题。
这是平台问题,还是我缺少一些技巧/设置(即指定一些边框粗细或其他内容)。
这是我的示例代码
import wx
class Example(wx.Frame):
def __init__(self, parent, title):
super(Example, self).__init__(parent, title=title, size=(900, 750))
self.SetBackgroundColour('Black')
self.SetForegroundColour("White")
PanelMain = wx.Panel(self, -1)
PanelMain.SetForegroundColour("White")
PanelMain.SetBackgroundColour("Black")
SizerMain = wx.BoxSizer(wx.HORIZONTAL)
for i in range(3):
PanelSub = wx.Panel(PanelMain, -1, style=wx.BORDER_STATIC)
PanelSub.SetBackgroundColour("Black")
lblNew = wx.StaticText(PanelSub, -1, label="Hello {}".format(i))
lblNew.SetForegroundColour("White")
lblNew.SetBackgroundColour("Green" if i == 0 else "Blue")
SizerMain.Add(PanelSub, 1, wx.EXPAND)
PanelMain.SetSizer(SizerMain)
SizerMain.Fit(PanelMain)
self.Show()
app = wx.App()
Example(None, title='Boxes')
app.MainLoop()
答案 0 :(得分:0)
我没有找到解决方案,所以这就是我所做的。
首先,我创建了一个这样的自定义wx.Panel类
class MyCustomPanel(wx.Panel):
def __init__(self, Parent):
wx.Panel.__init__(self, Parent, -1)
self.Bind(wx.EVT_PAINT, self.OnPaint)
self.Bind(wx.EVT_SIZE, self.OnSize)
def OnSize(self, event):
self.Refresh()
event.Skip()
def OnPaint(self, event):
dc = wx.PaintDC(self)
dc.SetPen(wx.Pen("Gray", width=1))
dc.SetBrush(wx.Brush("black", wx.TRANSPARENT))
mySize = self.GetSize()
dc.DrawRectangle(0,0, mySize.GetWidth(), mySize.GetHeight())
此类可以用作普通面板,但其周围有一个框。这是主程序:
import wx
import wx.lib.stattext as ST
class Example(wx.Frame):
def __init__(self, parent, title):
super(Example, self).__init__(parent, title=title, size=(900, 750))
self.SetBackgroundColour('Black')
self.SetForegroundColour("White")
PanelMain = wx.Panel(self, -1)
PanelMain.SetForegroundColour("White")
PanelMain.SetBackgroundColour("Black")
SizerMain = wx.BoxSizer(wx.HORIZONTAL)
for i in range(3):
PanelSub = MyCustomPanel(PanelMain)
PanelSub.SetBackgroundColour("Black")
lblNew = ST.GenStaticText(PanelSub, -1, label="Hello {}".format(i))
lblNew.SetForegroundColour("White")
lblNew.SetBackgroundColour("Green" if i == 0 else "Blue")
SizerMain.Add(PanelSub, 1, wx.EXPAND|wx.ALL, 5)
PanelMain.SetSizer(SizerMain)
SizerMain.Fit(PanelMain)
self.Show()
app = wx.App()
Example(None, title='Boxes')
app.MainLoop()
注意:用 wx.StaticText
as this works better on GTK
ST.GenStaticText
注意2:不幸的是,在这个简单的示例中,边框被文本框覆盖了(请参见下图)。在我的真实代码中情况并非如此,因为我在那里使用了内部大小调整器。在简单的示例中,可以通过添加包含文本标签的内部大小调整器来避免这种情况。