-2
これは、私は2つのボタンと、私のGUIでのテキスト入力持って書いたコードです:PythonでTkinterを使ってウィジェットを一緒にする方法は?
#!/usr/bin/python
import Tkinter
from Tkinter import *
top = Tkinter.Tk()
b1 = Button (top, text = "Hack it!", height = 10, width = 20)
b2 = Button (top, text = " Clone! ", height = 10, width = 20)
t = Text(top,width=60,height=40)
b1.grid(row=0, column=0)
b2.grid(row=0, column=1)
t.grid(row=1)
top.mainloop()
しかし、私が欲しいのはこれです:
どうすればいいですか? (テキストエントリの上のラベルも理想的です)
テキストエントリを読み取り専用にする方法はありますか?
Tkinterウィジェットのほとんどのプロパティとメソッドは、http://infohost.nmt.edu/tcc/help/pubs/tkinter/web/index.htmlにあります。 –