我在UWP应用中使用密码箱控件。默认情况下,它会显示一个眼睛图标,用户可以通过该图标查看密码,以确定他是否正确输入密码。
这是我目前的代码:
<Page
x:Class="UwpApp.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:UwpApp"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d">
<Grid Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
<PasswordBox HorizontalAlignment="Left" VerticalAlignment="Top" />
</Grid>
</Page>
虽然我的目标是我的Windows 10应用程序,但我想根据我的应用程序要求摆脱显示功能的密码
中缺少此密码显示功能