Python图形程序编程探索系列-02
程序员文章站
2022-03-26 09:11:12
跳转到我的博客 设计任务 在主窗口root中放置三个容器用于容纳组件,容器采用框架设计。 代码初步设计 设计结果 ......
设计任务
在主窗口root中放置三个容器用于容纳组件,容器采用框架设计。
代码初步设计
import tkinter as tk root = tk.tk() root.geometry('800x600+200+200') root.title('学习框架') frame1 = tk.frame(root, bd=2, relief=tk.raised) frame1.config(bg='#ffb6c1', height=40, width=760) frame2 = tk.frame(root, bd=2, relief=tk.raised) frame2.config(bg='#00bfff', height=500, width=150) frame3 = tk.frame(root, bd=2, relief=tk.raised) frame3.config(bg='#8b008b', height=500, width=600) frame1.place(x=20, y=5) frame2.place(x=20, y=50) frame3.place(x=180, y=50) root.mainloop()
设计结果
上一篇: 一个测试数据库连接的函数
下一篇: JSP实现分页效果