Python
 Computer >> コンピューター >  >> プログラミング >> Python

Python Tkinterボタンの背景色をリセットするにはどうすればよいですか?


Tkinterボタンは、アプリケーション内のイベントを処理するのに役立ちます。 ボタンを設定できます 事前定義されたプロパティを使用した、テキストスタイル、フォントファミリ、背景色、テキストカラー、テキストサイズなどのプロパティ。

コールバック関数を定義することで、背景色やその他のプロパティをリセットできます。

#Import the tkinter library
from tkinter import *
from tkinter import ttk
#Create an instance of tkinter frame
win= Tk()
#Define the geometry of the function
win.geometry("750x250")
#Define a function to change the properties of button
def change_color():
   btn.configure(bg="OrangeRed3", fg= "white")
#Create a Label
Label(win, text= "Click the Button to reset the Color of the Button", font= ('Georgia 16 italic')).pack(pady=30)
#Create a button to close the window
btn = Button(win, text ="RESET", command=change_color, font=('Georgia 11'))
btn.pack(side=TOP, ipady=5, ipadx=20)
win.mainloop()

出力

上記のコードを実行すると、ボタンとテキストを含むウィンドウが表示されます。

Python Tkinterボタンの背景色をリセットするにはどうすればよいですか?

次に、[リセット]ボタンをクリックして、ボタンの背景色と前景色を変更します。

Python Tkinterボタンの背景色をリセットするにはどうすればよいですか?


  1. Tkinterでフレームの背景を変更するにはどうすればよいですか?

    tkinterフレームの背景色と前景色を変更するために、 bgに異なる値を割り当てることができます。 およびfg フレームのパラメータ 機能。 例 この例では、背景色が異なる2つのフレームを作成しました。 #Import the required libraries from tkinter import * #Create an instance of tkinter frame win= Tk() #Set the geometry of frame win.geometry("650x250") #Create an frame frame1= Frame(w

  2. PythonでTkinterの背景色を設定する

    tkinter.ttkモジュールを使用してtkinterウィジェットをカスタマイズできます。 Tkinter.ttkモジュールは、背景色、前景色の設定、ボタンのアクティブ化、ラベルへの画像の追加、ウィジェットの高さと幅の調整など、tkinterウィジェットのスタイル設定に使用されます。 tkinterウィジェットに背景色を追加するために、背景を指定できます ウィジェットのプロパティ。 例 次の例では、テキストラベルの背景を変更するボタンを作成します。 #Import the tkinter library from tkinter import * from tkinter.ttk imp