16 lines
518 B
XML
16 lines
518 B
XML
<UserControl
|
|
x:Class="Bitvault.Avalonia.LockView"
|
|
xmlns="https://github.com/avaloniaui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
|
<StackPanel HorizontalAlignment="Center" VerticalAlignment="Center">
|
|
<TextBox
|
|
Width="300"
|
|
Classes="revealPasswordButton"
|
|
PasswordChar="●">
|
|
<TextBox.KeyBindings>
|
|
<KeyBinding Gesture="Enter" />
|
|
</TextBox.KeyBindings>
|
|
</TextBox>
|
|
</StackPanel>
|
|
</UserControl>
|