次のコードを使用しているときに、エントリの垂直方向の配置を取得しています
from Tkinter import *
import tkMessageBox
import Tkinter
top = Tk()
Lb1 = Listbox(top)
Lb1.insert(1, "Python")
Lb1.insert(2, "Perl")
Lb1.insert(3, "C")
Lb1.insert(4, "PHP")
Lb1.insert(5, "JSP")
Lb1.insert(6, "Ruby")
Lb1.pack()
top.mainloop()
リストボックスのエントリを水平方向に並べることは可能ですか? または他のウィジェットを使用できますか??
ありがとう