我正在使用带有 Python2 的 Tkinter 通过单击按钮来创建一个新窗口。在这个新窗口中,我想显示文本。现在我的对齐有问题,是否可以将其对齐到左侧?它始终居中,并且 anchor=LEFT 和 sticky="NSEW" 都没有帮助。
import tkinter as tki
btn3 = tki.Button(self.root, text="HELP", command=self.help, fg="black", bg="white", font=("Courier",22))
btn3.grid(row=1, column=2, padx=10, pady=10, sticky="NSEW" )
def help(self):
self.text = """ Hello.
You can find help here to the following subjects:
- getting started
- installation
- FAQ."""
self.top = tki.Toplevel()
self.top.title("Help")
self.label1 = tki.Label(self.top, text = self.text, height = 0, width=80, fg="black", bg="white", font=("Courier",18))
self.label1.pack()