|
61 | 61 | <RowDefinition Height="Auto"/> |
62 | 62 | <RowDefinition Height="Auto"/> |
63 | 63 | <RowDefinition Height="Auto"/> |
| 64 | + <RowDefinition Height="Auto"/> |
64 | 65 | </Grid.RowDefinitions> |
65 | 66 |
|
66 | 67 | <TextBlock Style="{StaticResource HeaderTextStyle}"> |
|
76 | 77 | <Run Text="{x:Bind ViewModel.FinishedItemCount, Mode=OneWay}"/> |
77 | 78 | / |
78 | 79 | <Run Text="{x:Bind ViewModel.ItemCount, Mode=OneWay}"/> |
79 | | - <Run Text="items from "/> |
| 80 | + <Run x:Uid="ItemsFromText"/> |
80 | 81 | </TextBlock> |
81 | 82 |
|
82 | 83 | <TextBlock Style="{StaticResource StatusTextStyle}" Foreground="LightGreen" Text="{x:Bind ViewModel.Source, Mode=OneWay}" Margin="3,0,0,0"/> |
83 | | - <TextBlock Style="{StaticResource StatusTextStyle}" Text=" to "/> |
| 84 | + <TextBlock Style="{StaticResource StatusTextStyle}" x:Uid="ToText"/> |
84 | 85 | <Button FontSize="11" Padding="2" Foreground="LightGreen" Content="{x:Bind ViewModel.Destination, Mode=OneWay}" Background="Transparent" BorderThickness="0" Margin="2,-3,0,0" Click="HyperlinkButton_Click"/> |
85 | 86 | </StackPanel> |
86 | 87 |
|
|
114 | 115 | </Grid.RowDefinitions> |
115 | 116 |
|
116 | 117 | <TextBlock Grid.Row="0" Grid.ColumnSpan="2" Height="55" Padding="0,25,0,20" LineHeight="42" VerticalAlignment="Center" FontSize="12"> |
117 | | - <Run Text="Destination folder contains 3 duplicates"/> |
| 118 | + <Run x:Uid="DestinationFolderContains"/> |
| 119 | + <Run Text="{x:Bind ViewModel.DuplicateFiles.Size, Mode=OneWay}"/> |
| 120 | + <Run x:Uid="Duplicates"/> |
118 | 121 | </TextBlock> |
119 | 122 |
|
120 | 123 | <Line Margin="0,0,0,0" Grid.Row="1" Grid.ColumnSpan="2" X1="0" X2="500" Y1="0" Y2="0" Stroke="{StaticResource SeperatorLineColor}" Opacity="{StaticResource SeperatorLineOpacity}"/> |
121 | | - <CheckBox Grid.Row="1" Content="Use source" Checked="CheckBox_Checked" IsThreeState="True" IsChecked="{x:Bind ViewModel.UseSource, Mode=TwoWay}"/> |
122 | | - <CheckBox Grid.Row="1" Grid.Column="1" Content="Use destination" IsThreeState="True" IsChecked="{x:Bind ViewModel.UseDestination, Mode=TwoWay}"/> |
| 124 | + <CheckBox Grid.Row="1" x:Uid="UseSourceCheckBox" Checked="CheckBox_Checked" IsThreeState="True" IsChecked="{x:Bind ViewModel.UseSource, Mode=TwoWay}"/> |
| 125 | + <CheckBox Grid.Row="1" x:Uid="UseDestinationCheckBox" Grid.Column="1" IsThreeState="True" IsChecked="{x:Bind ViewModel.UseDestination, Mode=TwoWay}"/> |
123 | 126 | <Line Margin="0,0,0,0" Grid.Row="1" Grid.ColumnSpan="2" X1="0" X2="500" Y1="45" Y2="45" Stroke="{StaticResource SeperatorLineColor}" Opacity="{StaticResource SeperatorLineOpacity}"/> |
124 | 127 | </Grid> |
125 | 128 |
|
|
171 | 174 | </DataTemplate> |
172 | 175 | </ItemsRepeater.ItemTemplate> |
173 | 176 | </ItemsRepeater> |
| 177 | + |
| 178 | + <Button x:Uid="ContinueButton" HorizontalAlignment="Right" Grid.Row="5" Style="{StaticResource AccentButtonStyle}" Loaded="Button_Loaded"/> |
174 | 179 | </Grid> |
175 | 180 | </Page> |
0 commit comments