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>
|
<ApplicationManifest>app.manifest</ApplicationManifest>
|
||||||
<AvaloniaUseCompiledBindingsByDefault>true</AvaloniaUseCompiledBindingsByDefault>
|
<AvaloniaUseCompiledBindingsByDefault>true</AvaloniaUseCompiledBindingsByDefault>
|
||||||
<AssemblyVersion>1.0</AssemblyVersion>
|
<AssemblyVersion>1.0</AssemblyVersion>
|
||||||
<FileVersion>1.4</FileVersion>
|
<FileVersion>1.5</FileVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|
|
@ -46,12 +46,16 @@
|
||||||
Foreground="White"
|
Foreground="White"
|
||||||
Text="{Binding Name}"
|
Text="{Binding Name}"
|
||||||
VerticalAlignment="Center"
|
VerticalAlignment="Center"
|
||||||
|
TextTrimming="CharacterEllipsis"
|
||||||
|
TextWrapping="NoWrap"
|
||||||
Margin="20,0"/>
|
Margin="20,0"/>
|
||||||
<TextBlock
|
<TextBlock
|
||||||
Grid.Column="1"
|
Grid.Column="1"
|
||||||
Foreground="White"
|
Foreground="White"
|
||||||
Text="{Binding DisplayValue}"
|
Text="{Binding DisplayValue}"
|
||||||
VerticalAlignment="Center"
|
VerticalAlignment="Center"
|
||||||
|
TextTrimming="CharacterEllipsis"
|
||||||
|
TextWrapping="NoWrap"
|
||||||
Margin="20,0"/>
|
Margin="20,0"/>
|
||||||
</Grid>
|
</Grid>
|
||||||
</Border>
|
</Border>
|
||||||
|
|
|
@ -9,7 +9,7 @@ public class Password
|
||||||
{
|
{
|
||||||
public string Name { get; set; }
|
public string Name { get; set; }
|
||||||
public string Value { get; set; }
|
public string Value { get; set; }
|
||||||
public string CensoredValue { get; set; } = "******";
|
public string CensoredValue { get; set; } = "**********";
|
||||||
public WXFile WxFile { get; set; }
|
public WXFile WxFile { get; set; }
|
||||||
|
|
||||||
public string DisplayValue
|
public string DisplayValue
|
||||||
|
|
Loading…
Add table
Reference in a new issue