'Tkinter make transparent background clickable

I have a tkinter window with a transparent background, but anytime if i click anything that is not a widget, but a part of the background, i click through it, and it unfocuses the window. Is there any workaround for that?

Example:

import tkinter
import ntkutils

root = tkinter.Tk()
ntkutils.blur_window_background(root)

root.mainloop()


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source