ボタンをクリックして新しいウィンドウを作成するために、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()