12345678910111213141516171819202122232425 |
- <UserControl x:Class="PDF_Master.Views.TipContent.RemoveSecuritySuccessTip"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:prism="http://prismlibrary.com/"
- prism:ViewModelLocator.AutoWireViewModel="True"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008" >
- <Grid>
- <Border Height="40" Width="279" CornerRadius="4" Background="{StaticResource color.sys.layout.dark.bg}" BorderThickness="1">
- <Grid>
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="40"></ColumnDefinition>
- <ColumnDefinition></ColumnDefinition>
- </Grid.ColumnDefinitions>
- <Grid Grid.Column="0" Margin="16,12,8,12" HorizontalAlignment="Center" VerticalAlignment="Center" Height="16" Width=" 16">
- <Ellipse Width="14" Height="14" Fill="#1AD598">
- </Ellipse>
- <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>
- </Grid>
- <Grid VerticalAlignment="Center" Grid.Column="1" Height="22">
- <TextBlock Text="Successfully delete security settings." VerticalAlignment="Center" FontFamily="Segoe UI" Foreground="{StaticResource color.sys.text.anti.norm}"></TextBlock>
- </Grid>
- </Grid>
- </Border>
- </Grid>
- </UserControl>
|