📌  相关文章
📜  wxPython – GetMarginWidth(0函数在 wx.MenuItem

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

wxPython – GetMarginWidth(0函数在 wx.MenuItem

在本文中,我们将学习与 wxPython 的 wx.MenuItem 类关联的 GetMarginWidth()函数。获取菜单项复选标记位图的宽度。 GetMarginWidth()函数不带参数。

代码示例 1:

wx.MenuItem.GetMarginWidth(self)

输出:
默认边距宽度

No parameters are required in GetMarginWidth().

代码示例 1:

int

输出:

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.menubar = wx.MenuBar()
        self.fileMenu = wx.Menu()
        self.item = wx.MenuItem(self.fileMenu, 1, '&Check\tCtrl + c', helpString ="Check Help")
        self.fileMenu.Append(self.item)
        self.menubar.Append(self.fileMenu, '&File')
        self.SetMenuBar(self.menubar)
        # print margin width
        margin = self.item.GetMarginWidth()
        print(margin)
        self.SetSize((350, 250))
        self.SetTitle('Icons and shortcuts')
        self.Centre()
  
  
def main():
    app = wx.App()
    ex = Example(None)
    ex.Show()
    app.MainLoop()
  
  
if __name__ == '__main__':
    main()