我在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的应用程序,但是我想摆脱此密码,因为它可以按照我的应用程序要求显示功能
相关分类