如何从 UWP 应用程序的密码框中删除密码帮助
How to remove password help from passwordbox in a UWP app
我在 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,但我想根据我的应用程序要求摆脱此密码显示功能
中没有此显示功能的密码
您可以在 PasswordBox
中添加 PasswordRevealMode="Hidden"
我在 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,但我想根据我的应用程序要求摆脱此密码显示功能
中没有此显示功能的密码您可以在 PasswordBox
PasswordRevealMode="Hidden"