📌  相关文章
📜  wxPython – wx.StatusBar 中的 GetBorders()函数

📅  最后修改于: 2022-05-13 01:55:09.794000             🧑  作者: Mango

wxPython – wx.StatusBar 中的 GetBorders()函数

在本文中,我们将学习与 wxPython 的 wx.StatusBar 类关联的 GetBorders()函数。 GetBorders()函数返回在字段区域内呈现字段文本时使用的水平和垂直边框。

请注意,GetFieldRect 返回的矩形已经说明了该函数返回的水平和垂直边框的存在。

代码示例:

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.statusbar.Create(self, id = 1, style = wx.STB_DEFAULT_STYLE,
                                                     name = "Status Bar")
        self.SetStatusBar(self.statusbar)
        self.SetSize((350, 250))
  
        # PRINT THE RETURNED wx.Size OBJECT 
        print(self.statusbar.GetBorders())
        self.SetTitle('New Frame Title')
        self.Centre()
  
def main():
    app = wx.App()
    ex = Example(None)
    ex.Show()
    app.MainLoop()
  
  
if __name__ == '__main__':
    main()

输出: