午夜视频在线网站,日韩视频精品在线,中文字幕精品一区二区三区在线,在线播放精品,1024你懂我懂的旧版人,欧美日韩一级黄色片,一区二区三区在线观看视频

分享

Python GUI 編程:tkinter 初學者入門指南——幾何布局管理器 Place

 信息科技云課堂 2024-12-09 發(fā)布于山東

kinter 可以使用幾何布局管理器來組織窗口上的小部件。Tkinter 支持三種幾何布局管理器:

  • pack
  • grid
  • place

在本文中,將介紹 Tkinter 幾何布局管理器 Place,使用 (x, y) 坐標系在其容器內(nèi)精確定位小部件。

relx 、rely

Place 幾何布局管理器提供絕對定位和相對定位。

絕對定位由xy 選項指定。

相對位置由relxrely 選項指定。

import tkinter as tk
root = tk.Tk()
root.geometry('600x400+200+200')
root.title('幾何布局管理器演示')

button1 = tk.Button(root, text="x=100, y=100", width=20, bg='green')
button1.place(x=100, y=100)

button2 = tk.Button(root, text="relx=0.5, rely=0.5", width=20, bg='green')
button2.place(relx=0.5, rely=0.5)

root.mainloop()

relwidth 、relheight

以像素為單位設置窗口小部件的絕對寬度和高度,請使用widthheight 選項。相對寬度和高度,請使用relwidthrelheight 選項。

import tkinter as tk
root = tk.Tk()
root.geometry('600x400+200+200')
root.title('幾何布局管理器演示')

button1 = tk.Button(root, text="絕對寬高", bg='red')
button1.place(x=100, y=100, width=100, height=50)

button2 = tk.Button(root, text="相對寬高", bg='green')
button2.place(relx=0.5, rely=0.5, relwidth=0.5, relheight=0.5)

root.mainloop()

relwidth``relheight 允許你以相對于父容器的寬度和高度來設置小組件的寬度和高度。意味著這些屬性值會根據(jù)父容器的尺寸動態(tài)調(diào)整,從而使得組件的尺寸能夠適應父組件的變化。

relwidth``relheight  取值范圍 0 ~ 1。

anchor

anchor 參數(shù)確定小組件的哪個部分位于給定坐標處。

可以使用以下有效值:

  • N:    北或頂部中心。
  • S:    南或底部中心。
  • E:    東或右側居中。
  • W:    西或左側居中。
  • NW:  西北或左上角。
  • NE:  東北或右上角。
  • SE:  東南或右下角。
  • SW:  西南或左下角。
  • CENTER:中心。
import tkinter as tk
root = tk.Tk()
root.geometry('600x400+200+200')
root.title('幾何布局管理器演示')

button1 = tk.Button(root, text="x=100, y=100", width=20, height=5, bg='red')
button1.place(x=100, y=100)

button2 = tk.Button(root, text="x=100, y=100", width=20, height=5, bg='green')
button2.place(x=100, y=100, anchor=tk.CENTER)

button3 = tk.Button(root, text="relx=0.5, rely=0.5", width=20, bg='red')
button3.place(relx=0.5, rely=0.5, anchor=tk.CENTER)

button4 = tk.Button(root, text="relx=0.5, rely=0.5", width=20, bg='green')
button4.place(relx=0.5, rely=0.5)

root.mainloop()

Place 布局綜合示例

import tkinter as tk
root = tk.Tk()
root.geometry('600x400+200+200')
root.title('幾何布局管理器演示')
root.resizable(False, False)
var1 =tk.IntVar()
var2 =tk.BooleanVar()
left_frame = tk.Frame(root, width=220,  height=390, bg='lightgrey')
left_frame.place(x=5, y=5)

right_frame  =  tk.Frame(root, width=365,  height=390, bg='lightgrey')
right_frame.place(x=230, y=5)

tk.Label(left_frame,  text="標簽").place(relx=0.5, rely=0.02, anchor=tk.N)

photo = tk.PhotoImage(file='ItYunKeTang.png')
tk.Label(left_frame,  image=photo).place(relx=0.5, rely=0.1, anchor=tk.N)

tk.Button(left_frame,  text="按鈕", width=8).place(relx=0.2, rely=0.6, anchor=tk.CENTER)
tk.Button(left_frame,  text="按鈕", width=8).place(relx=0.2, rely=0.7, anchor=tk.CENTER)
tk.Button(left_frame,  text="按鈕", width=8).place(relx=0.2, rely=0.8, anchor=tk.CENTER)
tk.Button(left_frame,  text="按鈕", width=8).place(relx=0.2, rely=0.9, anchor=tk.CENTER)

labelframe1 = tk.LabelFrame(left_frame, text='復選框', width=100, height=80, bg='lightgrey')
labelframe1.place(relx=0.7, rely=0.52, anchor=tk.N)
tk.Checkbutton(labelframe1, text='選項1', variable=var1, bg='lightgrey').place(relx=0.4, rely=0.1, anchor=tk.N)
tk.Checkbutton(labelframe1, text='選項2', variable=var2, bg='lightgrey').place(relx=0.4, rely=0.5, anchor=tk.N)

labelframe2 = tk.LabelFrame(left_frame, text='單選框', width=100, height=80, bg='lightgrey')
labelframe2.place(relx=0.7, rely=0.77, anchor=tk.N)
tk.Radiobutton(labelframe2, text='選項1', variable=var2, value=1, bg='lightgrey').place(relx=0.4, rely=0.1, anchor=tk.N)
tk.Radiobutton(labelframe2, text='選項2', variable=var2,  value=2, bg='lightgrey').place(relx=0.4, rely=0.5, anchor=tk.N)


photo2 = tk.PhotoImage(file='logo1.png')
label = tk.Label(right_frame,  image=photo2)
label.place(relx=0.5, rely=0.02, anchor=tk.N)
message ='''
Python 提供了多個圖形開發(fā)界面的庫,幾個常用 Python GUI 庫如下:

Tkinter:Tkinter 模塊(Tk 接口)是Python 的標準 Tk GUI 工具包的接口.Tk 和 Tkinter 可以在大多數(shù)的 Unix平臺下使用,同樣可以應用在 Windows 和 Macintosh 系統(tǒng)里。Tk8.0 的后續(xù)版本可以實現(xiàn)本地窗口風格,并良好地運行在絕大多數(shù)平臺中。

wxPython:wxPython 是一款開源軟件,是 Python 語言的一套優(yōu)秀的 GUI 圖形庫,允許 Python 程序員很方便的創(chuàng)建完整的、功能健全的 GUI 用戶界面。

Jython:Jython 程序可以和 Java 無縫集成。除了一些標準模塊,Jython 使用 Java 的模塊。Jython 幾乎擁有標準的Python 中不依賴于 C 語言的全部模塊。比如,Jython 的用戶界面將使用 Swing,AWT或者 SWT。Jython 可以被動態(tài)或靜態(tài)地編譯成 Java 字節(jié)碼。
'''

text_box = tk.Text(right_frame, height=23, width=50)
text_box.place(relx=0.5, rely=0.2, anchor=tk.N)
text_box.insert('end', message)
text_box.config(state='disabled')
root.mainloop()

點亮在看,你最好看!

    轉(zhuǎn)藏 分享 獻花(0

    0條評論

    發(fā)表

    請遵守用戶 評論公約

    類似文章 更多