|
211 | 211 | <Grid Visibility="Collapsed" Background="{StaticResource Accent}" VerticalAlignment="Top" Height="30" HorizontalAlignment="Stretch" Margin="0,872,0,0" Grid.Row="1">
|
212 | 212 |
|
213 | 213 | </Grid>
|
| 214 | + |
| 215 | + <controls:DropShadowPanel BorderBrush="White" BorderThickness="1" Name="FileConflictBox" Visibility="{x:Bind local2:ItemViewModel.ConflictUIVisibility.isVisible}" HorizontalAlignment="Center" VerticalAlignment="Top" Width="500" Height="225" Margin="0,150,0,0" Grid.Row="1" Canvas.ZIndex="3"> |
| 216 | + <Grid Padding="25"> |
| 217 | + <Rectangle Fill="{ThemeResource ApplicationPageBackgroundThemeBrush}" Stroke="White" StrokeThickness="1" Width="500" Height="225" HorizontalAlignment="Center" VerticalAlignment="Center"/> |
| 218 | + <StackPanel> |
| 219 | + <TextBlock Name="ConflictLargeHeader" Text="{x:Bind local2:ItemViewModel.ConflictBoxHeader.Header, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" FontSize="22"/> |
| 220 | + <TextBlock Name="ConflictSmallHeader" TextWrapping="WrapWholeWords" Text="{x:Bind local2:ItemViewModel.ConflictBoxSubHeader.SubHeader, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"/> |
| 221 | + <StackPanel Orientation="Horizontal" Padding="0,90,0,0"> |
| 222 | + <Button Name="ReplaceChoice" Width="200" Margin="0,0,50,0" Content="Replace"/> |
| 223 | + <Button Name="SkipChoice" Width="200" Content="Skip"/> |
| 224 | + </StackPanel> |
| 225 | + </StackPanel> |
| 226 | + </Grid> |
| 227 | + </controls:DropShadowPanel> |
| 228 | + |
| 229 | + <controls:DropShadowPanel BorderBrush="White" BorderThickness="1" Name="CollisionBox" Visibility="{x:Bind local2:ItemViewModel.CollisionUIVisibility.isVisible, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" HorizontalAlignment="Center" VerticalAlignment="Top" Width="500" Height="275" Margin="0,150,0,0" Grid.Row="1" Canvas.ZIndex="3"> |
| 230 | + <Grid Padding="25"> |
| 231 | + <Rectangle Fill="{ThemeResource ApplicationPageBackgroundThemeBrush}" Stroke="White" StrokeThickness="1" Width="500" Height="275" HorizontalAlignment="Center" VerticalAlignment="Center"/> |
| 232 | + <StackPanel> |
| 233 | + <TextBlock Name="LargeHeader" Text="{x:Bind local2:ItemViewModel.CollisionBoxHeader.Header, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" FontSize="22"/> |
| 234 | + <TextBlock Name="SmallHeader" TextWrapping="WrapWholeWords" Text="{x:Bind local2:ItemViewModel.CollisionBoxSubHeader.SubHeader, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"/> |
| 235 | + <ListView IsItemClickEnabled="True" Name="CollisonLV"> |
| 236 | + <ListViewItem Name="ReplaceAll"> |
| 237 | + <StackPanel Orientation="Horizontal"> |
| 238 | + <SymbolIcon Symbol="Accept" Margin="0,0,15,0"/> |
| 239 | + <TextBlock Text="Replace all items with the same name"/> |
| 240 | + </StackPanel> |
| 241 | + </ListViewItem> |
| 242 | + <ListViewItem Name="SkipAll"> |
| 243 | + <StackPanel Orientation="Horizontal"> |
| 244 | + <SymbolIcon Symbol="Forward" Margin="0,0,15,0"/> |
| 245 | + <TextBlock Text="Skip these items"/> |
| 246 | + </StackPanel> |
| 247 | + </ListViewItem> |
| 248 | + <ListViewItem Name="PromptForAll"> |
| 249 | + <StackPanel Orientation="Horizontal"> |
| 250 | + <FontIcon Glyph="" Margin="0,0,15,0"/> |
| 251 | + <TextBlock Text="Prompt me for each item"/> |
| 252 | + </StackPanel> |
| 253 | + </ListViewItem> |
| 254 | + |
| 255 | + |
| 256 | + </ListView> |
| 257 | + </StackPanel> |
| 258 | + </Grid> |
| 259 | + </controls:DropShadowPanel> |
| 260 | + |
214 | 261 | <controls:DropShadowPanel x:Name="ProgressBox" Visibility="{x:Bind local2:ItemViewModel.PVIS.isVisible, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" HorizontalAlignment="Center" VerticalAlignment="Top" Width="500" Height="225" Margin="0,150,0,0" Grid.Row="1">
|
215 | 262 | <Grid>
|
216 | 263 | <Rectangle Fill="{ThemeResource ApplicationPageBackgroundThemeBrush}" Stroke="White" Width="500" Height="225" HorizontalAlignment="Center" VerticalAlignment="Center"/>
|
217 | 264 | <TextBlock Text="{x:Bind local2:ItemViewModel.PUIH.Header, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" HorizontalAlignment="Left" VerticalAlignment="Center" Margin="25,0,0,150" FontSize="22"/>
|
218 |
| - <Button Content="Hide" HorizontalAlignment="Right" Margin="0,0,25,25" VerticalAlignment="Bottom" Width="175" Click="Button_Click"/> |
219 |
| - <TextBlock Text="{x:Bind local2:ItemViewModel.PUIP.Path, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" HorizontalAlignment="Left" VerticalAlignment="Center" Margin="25,0,0,50" FontSize="14"/> |
| 265 | + <Button Content="{x:Bind local2:ItemViewModel.ButtonText.buttonText, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" HorizontalAlignment="Right" Margin="0,0,25,25" VerticalAlignment="Bottom" Width="175" Click="Button_Click"/> |
| 266 | + <TextBlock Text="{x:Bind local2:ItemViewModel.PUIP.Path, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" HorizontalAlignment="Left" VerticalAlignment="Center" Margin="25,0,0,85" FontSize="14"/> |
220 | 267 | <ProgressBar Name="pbar" Value="{x:Bind local2:ItemViewModel.PROGRESSPER.prog, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" VerticalAlignment="Center" Height="8" HorizontalAlignment="Center" Width="450" Margin="0,50,0,0"/>
|
221 | 268 | </Grid>
|
222 | 269 | </controls:DropShadowPanel>
|
|
0 commit comments