原文:
10.17. How do I hide a password Entry?
Set the -show option to zero, as in this example: $entry = $form->Entry(-textvariable => \$user_entry, -show => 0);
译文:
10.17. 如何隐藏密码输入框中的内容?
设置-show选项为某个你希望显示的字符(比如’*’),那么真实的输入内容将不会显示出来。例如:
$entry = $form->Entry(-textvariable=>\$user_entry,
-show=>’*’);
(译者注:可以就使用前面刚给的例程,自己加上-show选项试试就可以了!)