在本文中,我们将学习wxPython的GetToolBitmapSize()函数。 GetToolBitmapSize()返回工具栏期望的位图大小。
默认位图大小取决于平台:例如,MSW为16×15,GTK为24×24。此大小不一定表示要在给定平台上使用工具栏的最佳大小,为此,您应该使用ArtProvider::GetNativeSizeHint(wxART_TOOLBAR),但无论如何,因为位图大小是根据关联的位图的大小自动得出的使用添加到工具栏中的工具,通常无需显式调用SetToolBitmapSize。
用法:
wx.ToolBar.GetToolBitmapSize(self)
参数:
No Parameters in GetToolBitmapSize() function.
Return Typee:
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)
相关用法
- wxPython FindToolForPosition()用法及代码示例
- wxPython FindControl()用法及代码示例
- wxPython GetClassDefaultAttributes()用法及代码示例
- wxPython GetMargins()用法及代码示例
- wxPython GetToolByPos()用法及代码示例
注:本文由纯净天空筛选整理自RahulSabharwal大神的英文原创作品 wxPython | GetToolBitmapSize() function in python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。