I wanted to add image to the background of the window but failed to do that...
I tried tk.Canvas after some googling but didn't work..I was expecting all the widgets on that image
import rotors;import tkinter as tk;from tkinter import HORIZONTAL;import tkinter.messagebox as mbx;import pyperclip
class UI():
def __init__(self, window, encryption):
self.encryption = encryption
self.window = window
self.window.title('Security Window')
self.window.minsize(width = 500, height = 200)
self.x = tk.StringVar()
I tried a lot to add the background image to the UI but failed Canvas and Label were few options that I had tried.

Any background image is fine for me but need to know how can I do that..