(Python3)- tkinter 基本參數學習-5

(Python3)- tkinter 基本參數學習-5

(Python3)- tkinter 基本參數學習-5  

 

這方法是使用 Label 方式加背景圖,如果想用2個 Label 就不行了

 

# -*- coding: utf-8 -*-

 

import tkinter as tk

root = tk.Tk()

#增加背景圖片
photo = tk.PhotoImage(file="D:/438.gif")
root.config(bg="skyblue")

def say_hi():
print("Hi everyone !")

def ok():
t = en.get()
lb.config(text= t)

def ok_fun(self):
ok()


#增加背景圖片
photo = tk.PhotoImage(file="D:/438.gif")
lb = tk.Label(root, text= "我是內容, \n請你閱讀", justify= tk.LEFT, image=photo, compound = tk.CENTER, font= ("華文行楷",20), fg = "black") #前景色
lb.pack()

#輸入框
en = tk.Entry()
en.config(font="微軟正黑體 15")
en.pack()


#Picture
img = tk.PhotoImage( file="d:/7548.png_300-.png" )

#Button
theButton = tk.Button(text="我是下面的按鈕", command=ok)
theButton.config(bg="skyblue")
theButton.config(image= img )
theButton.pack() #自動對齊
root.bind("<Return>", ok_fun)

tk.mainloop()

   

免責聲明:

1.本影像檔案皆從網上搜集轉載,不承擔任何技術及版權問題

2.如有下載連結僅供寬頻測試研究用途,請下載後在24小時內刪除,請勿用於商業

3.若侵犯了您的合法權益,請來信通知我們,我們會及時刪除,給您帶來的不便,深表歉意。



發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *