Small UI adjustment for account menu progress.
This commit is contained in:
@@ -66,37 +66,43 @@
|
|||||||
<ColumnDefinition Width="Auto" />
|
<ColumnDefinition Width="Auto" />
|
||||||
</Grid.ColumnDefinitions>
|
</Grid.ColumnDefinitions>
|
||||||
<Grid>
|
<Grid>
|
||||||
<Grid.RowDefinitions>
|
<!--<Grid.RowDefinitions>
|
||||||
|
<RowDefinition Height="*" />
|
||||||
|
|
||||||
<RowDefinition Height="Auto" />
|
<RowDefinition Height="Auto" />
|
||||||
<RowDefinition Height="Auto" />
|
</Grid.RowDefinitions>-->
|
||||||
<RowDefinition Height="10" />
|
|
||||||
</Grid.RowDefinitions>
|
|
||||||
|
|
||||||
<TextBlock
|
|
||||||
x:Name="AccountNameTextblock"
|
|
||||||
FontWeight="{x:Bind helpers:XamlHelpers.GetFontWeightByChildSelectedState(IsSelected), Mode=OneWay}"
|
|
||||||
MaxLines="1"
|
|
||||||
Style="{StaticResource BodyTextBlockStyle}"
|
|
||||||
Text="{x:Bind AccountName, Mode=OneWay}"
|
|
||||||
TextTrimming="CharacterEllipsis" />
|
|
||||||
|
|
||||||
<TextBlock
|
<StackPanel VerticalAlignment="Center">
|
||||||
Grid.Row="1"
|
<TextBlock
|
||||||
Foreground="{ThemeResource TextFillColorSecondaryBrush}"
|
x:Name="AccountNameTextblock"
|
||||||
MaxLines="1"
|
FontWeight="{x:Bind helpers:XamlHelpers.GetFontWeightByChildSelectedState(IsSelected), Mode=OneWay}"
|
||||||
Style="{StaticResource CaptionTextBlockStyle}"
|
MaxLines="1"
|
||||||
Text="{x:Bind Parameter.Address, Mode=OneWay}"
|
Style="{StaticResource BodyTextBlockStyle}"
|
||||||
TextTrimming="CharacterEllipsis" />
|
Text="{x:Bind AccountName, Mode=OneWay}"
|
||||||
|
TextTrimming="CharacterEllipsis" />
|
||||||
|
|
||||||
|
<TextBlock
|
||||||
|
Grid.Row="1"
|
||||||
|
Foreground="{ThemeResource TextFillColorSecondaryBrush}"
|
||||||
|
MaxLines="1"
|
||||||
|
Style="{StaticResource CaptionTextBlockStyle}"
|
||||||
|
Text="{x:Bind Parameter.Address, Mode=OneWay}"
|
||||||
|
TextTrimming="CharacterEllipsis" />
|
||||||
|
|
||||||
|
<ProgressBar
|
||||||
|
Grid.Row="1"
|
||||||
|
Height="3"
|
||||||
|
Margin="0,4,0,0"
|
||||||
|
VerticalAlignment="Bottom"
|
||||||
|
IsIndeterminate="{x:Bind IsProgressIndeterminate, Mode=OneWay}"
|
||||||
|
ShowError="False"
|
||||||
|
ShowPaused="False"
|
||||||
|
Visibility="{x:Bind IsSynchronizationProgressVisible, Mode=OneWay}"
|
||||||
|
Value="{x:Bind SynchronizationProgressValue, Mode=OneWay}" />
|
||||||
|
</StackPanel>
|
||||||
|
|
||||||
|
|
||||||
<ProgressBar
|
|
||||||
Grid.Row="2"
|
|
||||||
Height="3"
|
|
||||||
Margin="0,4,0,0"
|
|
||||||
IsIndeterminate="{x:Bind IsProgressIndeterminate, Mode=OneWay}"
|
|
||||||
ShowError="False"
|
|
||||||
ShowPaused="False"
|
|
||||||
Visibility="{x:Bind IsSynchronizationProgressVisible, Mode=OneWay}"
|
|
||||||
Value="{x:Bind SynchronizationProgressValue, Mode=OneWay}" />
|
|
||||||
</Grid>
|
</Grid>
|
||||||
|
|
||||||
<Button
|
<Button
|
||||||
|
|||||||
Reference in New Issue
Block a user