wxPython – wx.ToolBar 中的 AddRadioTool()函数
在这篇特别的文章中,我们将学习 wxPython 的 wx.ToolBar 类中 AddRadioTool() 的工作。 AddRadioTool()函数创建一个单选组,以便在任何时候都按下组中的一个按钮,换句话说,只要按下组中的一个按钮,就会自动释放之前按下的按钮。您应该避免只有一个元素的单选组,因为用户不可能使用这样的按钮。
Syntax : wx.ToolBar.AddRadioTool(self, toolId, label, bitmap1, bmpDisabled=NullBitmap, shortHelp=””, longHelp=””, clientData=None)
Parameters :
Parameter | Input Type | Description |
---|---|---|
toolid | int | An integer by which the tool may be identified in subsequent operations. |
label | string | The string to be displayed with the tool. |
bitmap1 | wx.bitmap | The primary tool bitmap. |
bmpDisabled | wx.bitmap | The bitmap used when the tool is disabled. |
shortHelp | string | This string is used for the tools tooltip. |
longHelp | string | detailed string associated with tool. |
clientData | PyUserData | An optional pointer to client data which can be retrieved later using GetToolClientData. |
Return Type : wx.ToolBarToolBase
代码示例:
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):
pnl = wx.Panel(self)
self.toolbar = self.CreateToolBar()
# add a radio tool in toolbar
qtool = self.toolbar.AddRadioTool(12, 'right', wx.Bitmap('/Desktop/wxPython/right.png'),
shortHelp ="Radio Tool")
# another radio tool in radio group
rtool = self.toolbar.AddRadioTool(13, 'right2', wx.Bitmap('/Desktop/wxPython/wrong.png'),
shortHelp ="Radio Tool")
self.toolbar.Realize()
self.SetSize((350, 250))
self.SetTitle('Control')
self.Centre()
def main():
app = wx.App()
ex = Example(None)
ex.Show()
app.MainLoop()
if __name__ == '__main__':
main()
输出 :
点击勾选:
十字被点击:
在评论中写代码?请使用 ide.geeksforgeeks.org,生成链接并在此处分享链接。