0

如何在下面的代码中围绕网格移动按钮?每当我尝试更改行和列时,什么都没有发生。另外,是否有可能使文本框更大,以便我可以在那里放置句子,因为现在文本已经脱离了盒子?

from Tkinter import*

class Application(Frame):
    def __init__(self, master):
        global e
        global b
        Frame.__init__(self, master)
        self.grid()
        b=Entry(bg = 'yellow')
        b.grid(row=19, column=40)
        e=Entry(bg = 'grey')
        e.grid(row=15, column = 1000)
        self.buttons()

    def instructions(self):
        b.insert(0, 'HI')   

    def start_game(self):
        e.insert(0, "I want to put a sentance here")

    def buttons(self):
        self.b = Button(self, text = "Instructions", command = self.instructions)
        self.b.grid(row=15, column = 25)

        self.b1 = Button(self, text = "Start Game", command = self.start_game)
        self.b1.grid(row=10, column = 10)

root = Tk()
root.title("Box")
root.geometry("400x400")        
app=Application(root)
root.mainloop()
4

1 回答 1

0

要在网格中移动按钮,您只需更改行和列。你说那行不通,但你一定是做错了什么——这正是你做的。

我注意到示例代码试图在第 1000 列中放置一些内容。假设您在除第 10、25 和 40 列之外的其他列中没有任何内容,则所有其他列的宽度都将为零,因此它看起来就像这个对象在第四列。

要使文本框更大,请给它更大的宽度:

b=Entry(bg = 'yellow', width=100)

使其更大的另一种方法是强制其所在的列更大。

于 2013-02-12T12:10:49.897 回答