Advertisement
Guts70

Untitled

Mar 11th, 2024
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.07 KB | None | 0 0
  1. import tkinter as tk
  2. import tkinter
  3. import customtkinter
  4. from PIL import ImageTk,Image
  5. customtkinter.set_appearance_mode("dark")  # Modes: system (default), light, dark
  6. customtkinter.set_default_color_theme("green")  # Themes: blue (default), dark-blue, green
  7. app = customtkinter.CTk()  #creating cutstom tkinter window
  8. app.geometry("1366x768")
  9. app.title('Login')
  10. img1=ImageTk.PhotoImage(Image.open("picture.png"))
  11. l1=customtkinter.CTkLabel(master=app, image=img1)
  12. l1.pack()
  13.  
  14. class CTkLabel(tk.Label):
  15.     def __init__(self, master=None, **kwargs):
  16.         super().__init__(master, **kwargs)
  17.         self.config(borderwidth=0, highlightthickness=0)  # Remove border and highlight
  18.  
  19. # Create the tkinter window
  20. app = tk.Tk()
  21.  
  22. # Make the window background transparent
  23. app.attributes("-alpha", 0.0)  # Set transparency level to 0.0 for full transparency
  24.  
  25. # Creation of the label without visible frame
  26. label = CTkLabel(app, text="I want a text without a frame, and the frame reflects the wallpaper", font=('Century Gothic', 20))
  27. label.place(x=50, y=50)
  28.  
  29. app.mainloop()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement