作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 tkinter ListBox,当然,上面存放着一定数量的项目。
我需要保存一个 .txt 文件,其中包含列表框上存储的信息。
我尝试了很多方法,但都行不通。有任何想法吗 ?谢谢!
最佳答案
使用Tkinter.Listbox.get()
和 Tkinter.Listbox.curselection()
.
如果您想要列表框中的所有条目,请尝试以下操作:
print self.lb.get(0,Tkinter.END)
如果您想要选定的条目:
print [self.lb.get(i) for i in self.lb.curselection()]
充实示例:
# UNTESTED
# Assuming you have an event bound to "OnClick":
def OnClick(self):
with open("savefile.txt", "w") as savefile:
# Assuming your listbox is stored in "self.lb"
savefile.write('\n'.join(self.lb.get(i) for i in self.lb.curselection())
savefile.write('\n')
关于python - 如何将 tkinter ListBox 转换为列表?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23233666/
我是一名优秀的程序员,十分优秀!