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 Guid CustomFieldSubtype;
public required string Value;
public required string Value { get; set; }
public override string ToString()
{

View File

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