from tkinter import *
root = Tk()
root.title('入门案例')
root.geometry("800x400")
Button(text='按钮').place(x=100, y=0)
root.mainloop()
from tkinter import *
from tkinter.messagebox import *
# 设置主界面的容器大小和位置
root = Tk()
root.title('登录页面')
root.geometry("800x400+100+150")
#声明组件变量
log_name = StringVar()
log_pwd = StringVar()
#组件的使用
def btn_login():
if log_name.get() == 'admin' and log_pwd.get() == '123':
showinfo('提示信息','登录成功~')
else:
showwarning('提示信息','用户名或密码输入有误~')
#组件的使用
Label(root,text='账号:',font=('幼圆',20)).place(x=200,y=80)
Entry(width=27,font=('幼圆',20),textvariable=log_name).place(x=280,y=88)
Label(root,text='密码:',font=('幼圆',20)).place(x=200,y=150)
Entry(width=27,font=('幼圆',20),show='*',textvariable=log_pwd).place(x=280,y=150)
Button(text='登录',
background='white', # 背景色
foreground='black',width=15, # 前景色
font=('幼圆',20), #字体 大小
command=btn_login).place(x=150,y=220)
Button(text='退出',
background='white', # 背景色
foreground='black', # 前景色
width=15,font=('幼圆',20), #字体 大小
command=lambda:root.quit()).place(x=400,y=220)
# 显示图形界面
root.mainloop()
点个赞加个关注再走吧!谢谢。