wxPython wx.ToolBar中的SetMargins()函数
在这篇文章中,我们将学习与wxPython的wx.ToolBar类有关的SetMargins()函数。SetMargins()函数用于设置工具条的边距值。它需要两个整数x和y作为左右边距的参数。
语法。
wx.ToolBar.SetMargins(self, x, y)
参数。
参数 | 输入类型 | 描述 |
---|---|---|
x | int | 左边距、右边距和工具间的间隔值。 |
y | int | 上边距、下边距和工具间的间隔值。 |
返回类型。
wx.ToolBarToolBase
代码实例1。
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.toolbar = self.CreateToolBar()
self.toolbar.SetMargins(20, 10)
td = self.toolbar.AddTool(1, 'right', wx.Bitmap('right.png'))
self.toolbar.Realize()
print(self.toolbar.GetMargins())
self.SetSize((350, 250))
self.SetTitle('Undo redo')
self.Centre()
def OnQuit(self, e):
self.Close()
def main():
app = wx.App()
ex = Example(None)
ex.Show()
app.MainLoop()
if __name__ == '__main__':
main()
输出。
(20, 10)