如何在pycharm中使用.pack在另一个标签下放置标签

时间:2019-11-15 22:44:13

标签: python tkinter tkinter-layout

我正在创建一个登录页面,我想在彼此之间放置一个用户名框和密码框。 上面的用户名和下面的密码。

pass_L = Label(root, text = "Password") #Text 'password'
entryName = Entry(root) #Text Box by 'name'
entryPass = Entry(root) #Text box by 'password'

name_L.pack(side=LEFT) #positioning of text 'name'
entryName.pack(side=LEFT) #positioning of 'name' textbox

pass_L.pack(side=LEFT) #positioning of text 'password;
entryPass.pack(side=LEFT) #positioning of 'passowrd' text box```

0 个答案:

没有答案