📜  wxPython | Python中的GetMargins()函数

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

wxPython | Python中的GetMargins()函数

在本文中,我们将学习 wxPython 中 wx.ToolBar 类的 GetMargins()函数。 GetMargins()函数返回左/右和上/下边距,它们也用于工具间距。 GetMargins 不接受任何参数。

代码示例:

wx.ToolBar.GetMargins(self)

输出:

No Parameters required in GetMargins()

代码示例:

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.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 x and y margin of toolbar
        print(self.toolbar.GetMargins())
  
def main():
    app = wx.App()
    ex = Example(None)
    ex.Show()
    app.MainLoop()
  
  
if __name__ == '__main__':
    main()