我有一个代码,在用户选择系统仅返回最后一个项目的任何文件后,在QlistWidget中显示引用文件路径的项目。
我需要的是仅返回所选项目。
这样用户就可以选择任何项目,无论它存在于何处。
示例:
在下面的函数中,我试图迭代QlistWidget中的项目
但这不起作用,因为有时列表中显示的文件来自不同的文件夹,因此具有不同的路径。
def FileListSelected(self): # Function to select the desired file from the list in the left pane
ListIterator=range(self.listWidgetPDFlist.count())
try:
index = 0
for index in ListIterator:
p = pathlib.Path(self.fullPath)
print("this is P==>{}".format(p))
oneDir = os.path.join(*p.parts[:-2])
print("this is oneDir==>{}".format(oneDir))
Item= oneDir + "\\" + self.listWidgetPDFlist.selectedItems()[index].text()
print("this is the cuurent Item =={}".format(Item))
ppp=os.path.join(os.path.expanduser("~"), Item)
print("this is ppp==>{}".format(ppp))
print("===============================================")
index =+1
print("index =>".format(index))
self.mouseHover()
return ppp
except Exception as e:
print(e)
答案 0 :(得分:0)
如果我对您的理解正确,则希望从列表中获取所选项目的文本。为此,请使用:
self.listWidgetPdfList.selectedItems()[0].text()
此处将0用作索引,因为只需要所选项目列表中的第一项。如果只需要选定的项目,则不需要遍历列表。