我通过this youtube tutorial创建了一个表,只是我没有使用相同的列表
我的代码
drives = win32api.GetLogicalDriveStrings()
drives = drives.split('\0')[:-1]
hsa = 0
suphdd =len(drives)
print (drives)
fugas = ["0"]
while suphdd == hsa:
fugas[hsa] = suko_rata()[hsa]
print (fugas[hsa])
hsa += 1
centlisyt = wx.ListCtrl(panel, (200,20), (100,80), fugas, wx.LC_SINGLE_SEL)
我收到此错误
centlisyt = wx.ListCtrl(panel, (200,20), (100,80), fugas, wx.LC_SINGLE_SEL)
TypeError: ListCtrl(): arguments did not match any overloaded call:
overload 1: too many arguments
overload 2: argument 2 has unexpected type 'tuple'
答案 0 :(得分:0)
def __init__(self, parent, ID, pos, size, style):
这是您要调用的wx.ListCtrl
的构造函数。由于两个元组(200, 20), (100, 80)
分别看起来分别为pos
和size
。我想说您错过了ID
参数。
我不确定fugas
应该是什么