CustomTkinter icon indicating copy to clipboard operation
CustomTkinter copied to clipboard

Password text field

Open verma611 opened this issue 2 years ago • 3 comments

Can you make a password field using customtkiner, for example the instead of the password letters it displays bulletpoints to hide the password

verma611 avatar Nov 23 '22 04:11 verma611

Have you tried using Google?

For example: https://www.tutorialspoint.com/how-to-create-a-password-entry-field-using-tkinter

KeksTM avatar Nov 23 '22 07:11 KeksTM

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

verma611 avatar Nov 23 '22 22:11 verma611

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="*")

LHannah958 avatar Nov 28 '22 14:11 LHannah958