Change format of shares to add comma. Adjust build version

This commit is contained in:
2025-12-19 16:35:39 -05:00
parent 7c6dd32b81
commit ea96097828
2 changed files with 2 additions and 2 deletions

View File

@@ -15,7 +15,7 @@ namespace Navigator.ViewModels
private String ipAddress;
private RelayCommand ipAddressCommand;
private RelayCommand onResetCommand;
private static readonly String VERSION = "1.0.0.5";
private static readonly String VERSION = "1.0.0.6";
public AboutViewModel()
{

View File

@@ -166,7 +166,7 @@
<Label Text="Exposure:" Style="{StaticResource LabelStyle}" />
<Label Text="{Binding Exposure,StringFormat='{}{0:C}'}" Style="{StaticResource LabelStyle}" />
<Label Text="Shares:" Style="{StaticResource LabelStyle}" />
<Label Text="{Binding Shares,StringFormat='{}{0:#.00}'}" Style="{StaticResource LabelStyle}" />
<Label Text="{Binding Shares,StringFormat='{}{0:N2}'}" Style="{StaticResource LabelStyle}" />
<Label Text="Lots:" Style="{StaticResource LabelStyle}" />
<Label Text="{Binding Lots,StringFormat='{}{0:N0}'}" Style="{StaticResource LabelStyle}" />
</StackLayout>