私はWindowsストア用のアプリを開発しており、そこでPasswordBoxを使用しています。空のボックスに記号を入力すると、「パスワードを表示」ボタンが表示されます。しかし、値を編集したり、シンボルをパスワードボックスにコピーしたりすると、ボタンがありません。Xaml:
<ScrollViewer Margin="10,15,20,15">
<Grid Margin="35,35,150,35" Visibility="Collapsed">
<Grid.RowDefinitions>
...
<RowDefinition Height="Auto"/>
...
</Grid.RowDefinitions>
...
<PasswordBox x:Name="pxPass" IsPasswordRevealButtonEnabled ="True" Grid.Row="6"/>
...
</Grid>
コード:
private void btnTapped(object sender, TappedRoutedEventArgs e)
{
pxPass.Focus(FocusState.Programmatic);
pxPass.Password = 'string';
}`
この場合、これで何ができますか?