测量仪进度条内的wxpython文本

时间:2017-12-28 07:50:20

标签: wxpython

我正在使用WxPython构建GUI,并且想知道是否有办法将文本放入仪表进度条中。 这是为了向用户显示图像和文本的电池状态。

1 个答案:

答案 0 :(得分:1)

使用agw.PyGauge

import wx
import wx.lib.agw.pygauge as PG

class MyFrame(wx.Frame):
    def __init__(self, parent):
        wx.Frame.__init__(self, parent, -1, "PyGauge Demo", size=(200,100))
        panel = wx.Panel(self)
        gauge1 = PG.PyGauge(panel, -1, size=(100, 25), style=wx.GA_HORIZONTAL)
        gauge1.SetValue(80)
        gauge1.SetDrawValue(draw=True, drawPercent=True, font=None, colour=wx.BLACK, formatString=None)
        gauge1.SetBackgroundColour(wx.WHITE)
        gauge1.SetBorderColor(wx.BLACK)
        sizer = wx.BoxSizer(wx.VERTICAL)
        sizer.Add(gauge1, 0, wx.ALIGN_CENTER_VERTICAL | wx.ALL, 20)
        panel.SetSizer(sizer)
        sizer.Layout()

app = wx.App()
frame = MyFrame(None)
frame.Show()

app.MainLoop()

enter image description here