show username under the entry name

This commit is contained in:
2025-12-05 20:50:53 +03:00
parent 9431cc0abf
commit ff6885eb4c
2 changed files with 4 additions and 1 deletions

View File

@@ -7,7 +7,7 @@ public struct LoginField
{ {
public byte Type; public byte Type;
public Guid CustomFieldSubtype; public Guid CustomFieldSubtype;
public required string Value; public required string Value { get; set; }
public override string ToString() public override string ToString()
{ {

View File

@@ -79,6 +79,9 @@
<TextBlock Text="{Binding Name}" <TextBlock Text="{Binding Name}"
HorizontalAlignment="Center" HorizontalAlignment="Center"
Foreground="Black" /> Foreground="Black" />
<TextBlock Text="{Binding Password.Value}"
Foreground="#666"
HorizontalAlignment="Center" />
</StackPanel> </StackPanel>
</Border> </Border>
</DataTemplate> </DataTemplate>