wxPython python中的GetToolBitmapSize()函数
在这篇文章中,我们将学习wxPython的GetToolBitmapSize()函数。GetToolBitmapSize()返回一个工具条所期望的位图大小。
默认的位图大小与平台有关:例如,MSW是16×15,GTK是24×24。这个尺寸不一定表示在给定的平台上使用工具条的最佳尺寸,为此你应该使用ArtProvider::GetNativeSizeHint(wxART_TOOLBAR),但在任何情况下,由于位图尺寸是从与添加到工具条的工具相关的位图尺寸自动推导出来的,通常没有必要明确调用SetToolBitmapSize。
语法 。
wx.ToolBar.GetToolBitmapSize(self)
参数:
No Parameters in GetToolBitmapSize() function.
返回类型 。
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()
self.toolbar.SetMargins(10, 10)
# Add Tools Using AddTool function
rtool = self.toolbar.AddTool(13, 'twoTool', wx.Bitmap('wrong.png'), shortHelp ="Simple Tool2")
stool = self.toolbar.AddTool(14, 'twoTool', wx.Bitmap('wrong.png'), shortHelp ="Simple Tool")
self.toolbar.Realize()
self.SetSize((350, 250))
self.SetTitle('Control')
self.Centre()
# print tool bitmap size
print(self.toolbar.GetToolBitmapSize())
def main():
app = wx.App()
ex = Example(None)
ex.Show()
app.MainLoop()
if __name__ == '__main__':
main()
输出:
(32, 32)
代码示例2 。
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()
self.toolbar.SetMargins(10, 10)
# Add Tools Using AddTool function
rtool = self.toolbar.AddTool(13, 'twoTool', wx.Bitmap('user.png'), shortHelp ="Simple Tool2")
self.toolbar.Realize()
self.SetSize((350, 250))
self.SetTitle('Control')
self.Centre()
# print tool bitmap size
print(self.toolbar.GetToolBitmapSize())
def main():
app = wx.App()
ex = Example(None)
ex.Show()
app.MainLoop()
if __name__ == '__main__':
main()
输出 。
(24, 24)