wxPython 使用wx.Size参数的SetMargins()

wxPython 使用wx.Size参数的SetMargins()

在这篇文章中,我们将学习与wxPython的wx.ToolBar类相关的SetMargins()函数。与之前的文章类似,SetMargins()函数为工具栏设置边距。但唯一的区别是,它没有采用两个不同的参数x和y,而是采用了一个wx.Size参数。

语法。

wx.ToolBar.SetMargind(self, size)

参数。

参数 输入类型 描述
size wx.Size 边距大小。

返回类型:wx.ToolBarToolBase

代码示例。

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()
        # set margins with size parameter
        self.toolbar.SetMargins(size =(30, 25))
        td = self.toolbar.AddTool(1, 'right', wx.Bitmap('right.png'))
        self.toolbar.Realize()
        # print margins
        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()

输出。

(30, 25)

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程

wxPython 教程