python中pack方法_python pack()和grid()方法一起

是的,没错。在下面的例子中,我将程序分为两个帧。frame1面向菜单/工具栏,使用pack()方法,其中frame2用于生成登录页凭据,并使用grid()方法。from tkinter import *

def donothing():

print ('IT WORKED')

root=Tk()

root.title(string='LOGIN PAGE')

frame1=Frame(root)

frame1.pack(side=TOP,fill=X)

frame2=Frame(root)

frame2.pack(side=TOP, fill=X)

m=Menu(frame1)

root.config(menu=m)

submenu=Menu(m)

m.add_cascade(label='File',menu=submenu)

submenu.add_command(label='New File', command=donothing)

submenu.add_command(label='Open', command=donothing)

submenu.add_separator()

submenu.add_command(label='Exit', command=frame1.quit)

editmenu=Menu(m)

m.add_cascade(label='Edit', menu=editmenu)

editmenu.add_command(label='Cut',command=donothing)

editmenu.add_command(label='Copy',command=donothing)

editmenu.add_command(label='Paste',command=donothing)

editmenu.add_separator()

editmenu.add_command(label='Exit', command=frame1.quit)

# **** ToolBar *******

toolbar=Frame(frame1,bg='grey')

toolbar.pack(side=TOP,fill=X)

btn1=Button(toolbar, text='Print', command=donothing)

btn2=Button(toolbar, text='Paste', command=donothing)

btn3=Button(toolbar, text='Cut', command=donothing)

btn4=Button(toolbar, text='Copy', command=donothing)

btn1.pack(side=LEFT,padx=2)

btn2.pack(side=LEFT,padx=2)

btn3.pack(side=LEFT,padx=2)

btn4.pack(side=LEFT,padx=2)

# ***** LOGIN CREDENTIALS ******

label=Label(frame2,text='WELCOME TO MY PAGE',fg='red',bg='white')

label.grid(row=3,column=1)

label1=Label(frame2,text='Name')

label2=Label(frame2,text='Password')

label1.grid(row=4,column=0,sticky=E)

label2.grid(row=5,column=0,sticky=E)

entry1=Entry(frame2)

entry2=Entry(frame2)

entry1.grid(row=4,column=1)

entry2.grid(row=5,column=1)

chk=Checkbutton(frame2,text='KEEP ME LOGGED IN')

chk.grid(row=6,column=1)

btn=Button(frame2,text='SUBMIT')

btn.grid(row=7,column=1)

# **** StatusBar ******************

status= Label(root,text='Loading',bd=1,relief=SUNKEN,anchor=W)

status.pack(side=BOTTOM, fill=X)

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值