Python學習筆記 簡單GUI開發

2021-08-03 02:04:44 字數 1933 閱讀 6949

使用tkinter進行開發

簡單文字視窗實現:

1      

yum-y

install

tkinter

最簡單的tkinter視窗

1    

2

3

4

5

from

tkinter

import

*#將tkinter模組中

的符號都

匯入進來

root=tk

()#為了

初始化tkinter,首先

建立乙個tk的根部

word

=label

(root,

text

="hello,world")#創

建乙個標

籤部件,

並賦值給word變數,

第乙個參

數root為此部

件的父部

件,使用text關鍵字

來顯示文

本「hellp」

word.

pack()

root.

mainloop()

1    

2

3 45

6

7

8

9

10

11

12

13

14

15

1617

18

19

20

21

#filename:tkinter_1.py

from

tkinter

import

*

class

def__init__

(self,

master

):

frame

=frame

(master

)

frame.

pack()

self.

hello

=button

(frame, 

text

="hello",

command

=self.

hello

)

self.

hello.

pack

(side

=left

)

self.

quit

=button

(frame, 

text

="quit", 

fg="red",

command

=frame.

quit

)

self.

quit.

pack

(side

=right

)

defhello

(self

):

print

("hello,world!"

)

root=tk

()root.

wm_title

("hello"

)

root.

wm_minsize

(200,

200) =(

root

)

root.

mainloop()

學習GUI筆記

圖形使用者程式設計 c sframe的子類 void settitle string title frame類中 將此窗體的標題設定為指定的字串。void setsize int width,int height window類中 調整元件的大小,使其寬度為 width,高度為 height。voi...

python實現簡單GUI視窗

1.tkinter元件之menu選單標籤 menu引數 menu 元件通常被用於實現應用程式上的各種選單,由於該元件是底層 實現 用法建立乙個頂級選單,你需要先建立乙個選單例項,然後使用 add 方法將命令和其它子選單新增進去 1.1 實現一級選單 1 匯入tkinter元件包 import tki...

QT之GUI學習筆記 一

在 includepath d installopencv opencvbinary include opencv d installopencv opencvbinary include opencv2 d installopencv opencvbinary include libs d ins...