wxPython| wx.MenuItem 中的 SetMarginWidth()函数
在本文中,我们将学习与 wxPython 的 wx.MenuItem 类关联的 SetMarginWidth()函数。 SetMarginWidth()函数设置菜单项复选标记位图的宽度。
它只需要整数参数,即宽度。
Syntax:
Parameters:
Parameter | Input Type | Description |
---|---|---|
width | int | width to associate with checkmark. |
代码示例:
wx.MenuItem.SetMarginWidth(self, width)
输出:
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.st = wx.StaticText(self, label ="", pos =(20, 20),
style = wx.ALIGN_LEFT)
self.item = wx.MenuItem(self.fileMenu, 1, '&Radio',
kind = wx.ITEM_CHECK)
self.fileMenu.Append(self.item)
self.item.SetMarginWidth(15)
print(self.item.GetMarginWidth())
self.menubar.Append(self.fileMenu, '&File')
self.SetMenuBar(self.menubar)
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()