wxPython wx.RadioBox中的SetItemLabel()方法

wxPython wx.RadioBox中的SetItemLabel()方法

在这篇文章中,我们将学习与wxPython的wx.RadioBox类有关的SetItemLabel()方法。SetItemLabel()方法是用来设置单选框中第n个项目的文本。

它接收我们想改变其标签的项目的索引和新的标签字符串作为参数。

语法:wx.RadioBox.SetItemLabel(self, n, text)

参数

参数 输入类型 说明
n int 基于零的项目索引。
text 字符串 要为项目的标签设置的文本

代码示例。

import wx
  
  
class FrameUI(wx.Frame):
  
    def __init__(self, parent, title):
        super(FrameUI, self).__init__(parent, title = title, size =(300, 200))
  
        # function for in-frame components
        self.InitUI()
  
    def InitUI(self):
        # parent panel for radio box
        pnl = wx.Panel(self)
  
        # list of choices
        lblList = ['Radio One', 'Radio Two']
  
        # create radio box containing above list
        self.rbox = wx.RadioBox(pnl, label ='RadioBox', pos =(80, 10), choices = lblList,
                                           majorDimension = 1, style = wx.RA_SPECIFY_ROWS)
  
        # set new label for item at 0
        self.rbox.SetItemLabel(0, "New Label")
  
        # set frame in centre
        self.Centre()
        # set size of frame
        self.SetSize((400, 250))
        # show output frame
        self.Show(True)
  
  
# wx App instance
ex = wx.App()
# Example instance
FrameUI(None, 'RadioButton and RadioBox')
ex.MainLoop()

输出窗口:

wxPython - wx.RadioBox中的SetItemLabel()方法

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程

wxPython 教程