Tkinter 内置库,如果没有运行 sudo apt-get install python-tk3.0一下用import Tkinter3.0及以上用import tkinter, tkinter.Tk() from Tkinter import *
a Tk()
a.wm_title("my friend")
b Label(a, text "my friend is she")
b.pack()
a.m…
1.什么是GUI,GUI和CLI有什么区别? GUI( Graphical user interface,图形用户接口):用类似windows图形界面的方式完成与用户交互;
CLI(Command line User Interface ,命令行用户接口):需要通过用户通过命令和计算机交…
GUI介绍
文章来源:http://en.wikipedia.org/wiki/Graphical_user_interface GUI定义:
Graphical user interface is a type of user interface, it offers graphical icons and visual indicators as opposed to text-based interfaces, typed comman…
一直在想把计算机GUI仔仔细细搞懂,当年几乎所有的代码都到控制台就OVER了,printf() OK that all,总有点不甘心,后来又写了很多HTML和JSP,GUI是有,不过总感觉中间少了什么似的。一直都避免接触MS的冬冬&…