CustomTkinter
CustomTkinter copied to clipboard
Password text field
Can you make a password field using customtkiner, for example the instead of the password letters it displays bulletpoints to hide the password
Have you tried using Google?
For example: https://www.tutorialspoint.com/how-to-create-a-password-entry-field-using-tkinter
Have you tried using Google?
For example: https://www.tutorialspoint.com/how-to-create-a-password-entry-field-using-tkinter
Yes... but there is no "show" argument for the text Feild. I have been using tkiner for a long time, but i recently heard about this
there literally is a show argument. by text field I assume you mean Entry, in which case something like the following would work: passwordbox=ctkinter.CTkEntry(placeholder_text="Password",show="*")