📌  相关文章
📜  wxPython | wx.ToolBar的GetToolSize()函数

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

wxPython | wx.ToolBar的GetToolSize()函数

在本文中,我们将学习与 wxPython 的 wx.ToolBar 类关联的 GetToolSize()函数。 GetToolSize()函数返回整个按钮的大小,由于添加了 3D 效果,它通常比工具位图大。它不需要任何论据。

代码示例 1:

wx.ToolBar.GetToolSize(self)

输出:

GetToolSize() function takes no parameters.

代码示例 2:

wx.Size

输出 :

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.AddLabelTool(13, 'oneTool', wx.Bitmap('wrong.png'), shortHelp ="short help string one")
        stool = self.toolbar.AddLabelTool(14, 'twoTool', wx.Bitmap('user.png'), shortHelp ="short help string two")
  
        self.toolbar.Realize()
        self.SetSize((350, 250))
        self.SetTitle('Control')
        self.Centre()
  
        str = self.toolbar.GetToolSize()
  
        # print size
        print(str)
  
  
def main():
    app = wx.App()
    ex = Example(None)
    ex.Show()
    app.MainLoop()
  
  
if __name__ == '__main__':
    main()