RemoveSecuritySuccessTip.xaml 1.6 KB

12345678910111213141516171819202122232425
  1. <UserControl x:Class="PDF_Master.Views.TipContent.RemoveSecuritySuccessTip"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:prism="http://prismlibrary.com/"
  5. prism:ViewModelLocator.AutoWireViewModel="True"
  6. xmlns:d="http://schemas.microsoft.com/expression/blend/2008" >
  7. <Grid>
  8. <Border Height="40" Width="279" CornerRadius="4" Background="{StaticResource color.sys.layout.dark.bg}" BorderThickness="1">
  9. <Grid>
  10. <Grid.ColumnDefinitions>
  11. <ColumnDefinition Width="40"></ColumnDefinition>
  12. <ColumnDefinition></ColumnDefinition>
  13. </Grid.ColumnDefinitions>
  14. <Grid Grid.Column="0" Margin="16,12,8,12" HorizontalAlignment="Center" VerticalAlignment="Center" Height="16" Width=" 16">
  15. <Ellipse Width="14" Height="14" Fill="#1AD598">
  16. </Ellipse>
  17. <Path Data="M12.5912 5.46115L7.907 11.4611C7.77258 11.6333 7.5698 11.7383 7.35162 11.7488C7.13345 11.7592 6.92157 11.674 6.77136 11.5154L3.45557 8.01543L4.5445 6.98381L7.26093 9.85116L11.4089 4.53809L12.5912 5.46115Z" Fill="White"></Path>
  18. </Grid>
  19. <Grid VerticalAlignment="Center" Grid.Column="1" Height="22">
  20. <TextBlock Text="Successfully delete security settings." VerticalAlignment="Center" FontFamily="Segoe UI" Foreground="{StaticResource color.sys.text.anti.norm}"></TextBlock>
  21. </Grid>
  22. </Grid>
  23. </Border>
  24. </Grid>
  25. </UserControl>