私は選択ボックスwxpython:リストからwxChoiceコンテンツを作成するには?
self.chHead = wx.Choice(self.nbItemPane, -1, choices=[])
を持っていると私は私が起こるがしたいどのようなリスト
items=[equipment('Head','BIG HELMET',555,5,5,5,5,5,0,0,0,0,0),
equipment('Head','MED HELMET',555,5,5,5,5,5,0,0,0,0,0),
equipment('Head','SMA HELMET',555,5,5,5,5,5,0,0,0,0,0),
equipment('Shoulders','BIG SHOULDERS',555,5,5,5,5,5,0,0,0,0,0)
]
を持っているが、私のchoiceboxの選択値は、項目のリストから引き出されることです。したがって、この場合には、あなたは
機器が
class equipment(object):
def __init__(self, slot, name, armor, str, int, wis, dex, end, val, tough, power, crit, hit):
"""
Model of the Equipment Object
Contains the followign attributes:
"""
self.slot = slot
self.name = name
self.armor = armor
self.str = str
self.int = int
self.wis = wis
self.dex = dex
self.end = end
self.val = val
self.tough = tough
self.power = power
self.crit = crit
self.hit = hit
私は機器のクラス情報を追加しました。 – ccwhite1
.appendは私が必要としていたものです。 Tksくそ – ccwhite1