パスワードの入力を非表示にする

This commit is contained in:
suti7yk5032 2024-06-08 09:59:33 +09:00
parent 5b9395a1d2
commit e58ae29ca7

View file

@ -80,7 +80,7 @@ class Lock(customtkinter.CTkToplevel):
self.input_frame = customtkinter.CTkFrame(self, corner_radius=0, fg_color='transparent')
self.input_frame.grid(row=2, column=0, sticky="nsew")
self.password_entry = customtkinter.CTkEntry(self.input_frame, placeholder_text='パスワード', width=380)
self.password_entry = customtkinter.CTkEntry(self.input_frame, placeholder_text='パスワード', width=380, show='*')
self.password_entry.grid(row=0, column=0, padx=10, pady=10)
self.button_frame = customtkinter.CTkFrame(self, corner_radius=0, fg_color='transparent')