python学习之图形界面编程:

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python学习之图形界面编程:相关的知识,希望对你有一定的参考价值。

一 tkinter:tkinter是python自带的支持tk的库,python代码调用tkinter->tk->操作系统提供的本地GUI(TKL语言开发))完成界面开发,不需要安装任何第三方程序。Tkinter教程第二版https://link.zhihu.com/?target=http%3A//pan.baidu.com/s/1hr6ortE,Python GUI Programming Cookbook:https://link.zhihu.com/?target=http%3A//pan.baidu.com/s/1eSimgQA

第一步是导入Tkinter包的所有内容:
from tkinter import *
第二步是从Frame派生一个Application类,这是所有Widget的父容器

class Application(Frame):

pack()是最简单的
布局,grid()可以实现更复杂的布局

以上是关于python学习之图形界面编程:的主要内容,如果未能解决你的问题,请参考以下文章

Python学习之开篇基础

python学习之web中的html

python学习之数据分析绘图

Python学习之函数式编程

python学习之网络编程

python学习之网络编程