gui程式建立步驟:
1、 import tkinter gui繪製類
2、 生成主視窗,設定主視窗屬性
3、生成控制項,設定控制項屬性
4、把控制項新增到視窗中
5、給控制項繫結事件
6、進入訊息迴圈
示例:
#coding:utf-8
import tkinter
root=tkinter.tk() #生成root主視窗
root.title('標題名') #修改框體的名字,也可在建立時使用classname引數來命名;
root.resizable(0,0) #框體大小可調性,分別表示x,y方向的可變性;
label=tkinter.label(root,text='hello,gui') #生成標籤
label.pack() #將標籤新增到主視窗
button1=tkinter.button(root,text='button1') #生成button1
button1.pack(side=tkinter.left) #將button1新增到root主視窗
button2=tkinter.button(root,text='button2')
button2.pack(side=tkinter.right)
root.mainloop() #進入訊息迴圈(必需元件)
參考文獻: Python GUI 輸入框的使用方法
列印輸入的 使用者名稱和密碼 print account s npassword s accounte.get pwde.get accounte.delete 0,end pwde.delete 0,end 建立對話方塊 root tk root.title 輸入框的使用方法 2.建立logo輸入...
scp基本使用方法
scp基本使用方法 scp用於在兩台電腦之間進行資料的copy,形式如下 第一種,scp r 檔案 資料夾 user host dir 需要輸入密碼。第二種,scp r 檔案 資料夾 host dir,需要輸入使用者名稱和密碼。舉例 1.copy 檔案 scp framework.jar 10.10...
VIM基本使用方法
vi有三種基本的工作模式 指令行模式 文字輸入模式 行末模式。他們的相互關係如所示。指令模式 command mode 下輸入 a i o進入文字輸入模式 input mode 文字輸入模式 input mode 下按esc進入指令模式 command mode 指令模式 command mode ...