当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


wxPython GetClassDefaultAttributes()用法及代码示例


在本文中,我们将学习wxPython的wx.ToolBar类的GetClassDefaultAttributes()。 GetClassDefaultAttributes()用于返回工具栏的视觉属性,例如背景色,前景色,其中的控件标签/文本所使用的字体。

参数:

参数 输入类型 描述
variant windowVarian 窗户的变化风格

用法:

wx.ToolBar.GetClassDefaultAttributes(variant=WINDOW_VARIANT_NORMAL)

返回类型:

wx.VisualAttributes

代码示例:



import wx 
  
  
class Example(wx.Frame):
    global count 
    count = 0; 
  
    def __init__(self, *args, **kwargs):
        super(Example, self).__init__(*args, **kwargs) 
  
        self.InitUI() 
  
    def InitUI(self):
        self.locale = wx.Locale(wx.LANGUAGE_ENGLISH) 
        pnl = wx.Panel(self) 
        self.toolbar = self.CreateToolBar() 
        # Add Tools Using AddTool function 
        rtool = self.toolbar.AddTool(13, 'twoTool', wx.Bitmap('wrong.png'), shortHelp ="Simple Tool2") 
  
        self.toolbar.Realize() 
        self.SetSize((350, 250)) 
        self.SetTitle('Control') 
        self.Centre() 
  
        # get Visual attribute object 
        t = self.toolbar.GetClassDefaultAttributes(variant = wx.WINDOW_VARIANT_NORMAL) 
        # print background color ratio 
        print(t.colBg) 
        # print foreground color ratio 
        print(t.colFg) 
        # print wx.Font object 
        print(t.font) 
  
def main():
    app = wx.App() 
    ex = Example(None) 
    ex.Show() 
    app.MainLoop() 
  
  
if __name__ == '__main__':
    main()

输出:

(240, 240, 240, 255)
(0, 0, 0, 255)
<wx._core.Font object at 0x00000080FC7B5280>




相关用法


注:本文由纯净天空筛选整理自RahulSabharwal大神的英文原创作品 wxPython | GetClassDefaultAttributes() function in python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。