This commit is contained in:
parent
719e900f22
commit
7717e63d04
3 changed files with 6 additions and 2 deletions
|
@ -8,7 +8,7 @@
|
|||
<ApplicationManifest>app.manifest</ApplicationManifest>
|
||||
<AvaloniaUseCompiledBindingsByDefault>true</AvaloniaUseCompiledBindingsByDefault>
|
||||
<AssemblyVersion>1.0</AssemblyVersion>
|
||||
<FileVersion>1.4</FileVersion>
|
||||
<FileVersion>1.5</FileVersion>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
|
|
|
@ -46,12 +46,16 @@
|
|||
Foreground="White"
|
||||
Text="{Binding Name}"
|
||||
VerticalAlignment="Center"
|
||||
TextTrimming="CharacterEllipsis"
|
||||
TextWrapping="NoWrap"
|
||||
Margin="20,0"/>
|
||||
<TextBlock
|
||||
Grid.Column="1"
|
||||
Foreground="White"
|
||||
Text="{Binding DisplayValue}"
|
||||
VerticalAlignment="Center"
|
||||
TextTrimming="CharacterEllipsis"
|
||||
TextWrapping="NoWrap"
|
||||
Margin="20,0"/>
|
||||
</Grid>
|
||||
</Border>
|
||||
|
|
|
@ -9,7 +9,7 @@ public class Password
|
|||
{
|
||||
public string Name { get; set; }
|
||||
public string Value { get; set; }
|
||||
public string CensoredValue { get; set; } = "******";
|
||||
public string CensoredValue { get; set; } = "**********";
|
||||
public WXFile WxFile { get; set; }
|
||||
|
||||
public string DisplayValue
|
||||
|
|
Loading…
Add table
Reference in a new issue