wxPython wx.StatusBar中的SetBackgroundColour()函数

wxPython wx.StatusBar中的SetBackgroundColour()函数

在这篇文章中,我们将学习与wxPython的wx.StatusBar类相关的SetBackgroundColour()函数。SetBackgroundColour()函数用于设置状态栏的背景颜色。它接受wx.Colour作为参数。

语法:wx.StatusBar.SetBackgroundColour(self, color)

参数。

参数 输入类型 说明
color wx.colour 背景的颜色。

代码示例。

import wx
  
  
class Example(wx.Frame):
  
    def __init__(self, *args, **kwargs):
        super(Example, self).__init__(*args, **kwargs)
  
        self.InitUI()
  
    def InitUI(self):
  
        self.locale = wx.Locale(wx.LANGUAGE_ENGLISH)
        self.statusbar = wx.StatusBar(self, id = 1, 
              style = wx.STB_DEFAULT_STYLE, name ="sb")
        self.statusbar.SetStatusText("This is StatusBar")
        self.statusbar.SetBackgroundColour((80, 60, 170, 230))
  
        self.SetStatusBar(self.statusbar)
  
def main():
    app = wx.App()
    ex = Example(None)
    ex.Show()
    app.MainLoop()
  
  
if __name__ == '__main__':
    main()

输出窗口:

wxPython - wx.StatusBar中的SetBackgroundColour()函数

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程

wxPython 教程