123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- <UserControl
- x:Class="PDF_Master.Views.Dialog.AboutDialog"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:local="clr-namespace:PDF_Master.Views.Dialog"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:prism="http://prismlibrary.com/"
- Width="310"
- Height="350"
- d:DesignHeight="450"
- d:DesignWidth="800"
- prism:Dialog.WindowStyle="{StaticResource DialogWindowStyle}"
- Background="{StaticResource color.sys.layout.anti}"
- mc:Ignorable="d">
- <Grid>
- <Button
- Width="46"
- Height="32"
- Margin="8"
- HorizontalAlignment="Right"
- VerticalAlignment="Top"
- Background="Transparent"
- IsCancel="True"
- Style="{StaticResource CloseBtn}"
- WindowChrome.IsHitTestVisibleInChrome="True">
- <Path
- Width="46"
- Height="32"
- Data="M23 17.708L18.8545 21.8535C18.7568 21.9512 18.6396 22 18.5029 22C18.3597 22 18.2393 21.9528 18.1416 21.8584C18.0472 21.7607 18 21.6403 18 21.4971C18 21.3604 18.0488 21.2432 18.1465 21.1455L22.292 17L18.1465 12.8545C18.0488 12.7568 18 12.638 18 12.498C18 12.4297 18.013 12.3646 18.0391 12.3027C18.0651 12.2409 18.1009 12.1888 18.1465 12.1465C18.1921 12.1009 18.2458 12.0651 18.3076 12.0391C18.3695 12.013 18.4346 12 18.5029 12C18.6396 12 18.7568 12.0488 18.8545 12.1465L23 16.292L27.1455 12.1465C27.2432 12.0488 27.362 12 27.502 12C27.5703 12 27.6338 12.013 27.6924 12.0391C27.7542 12.0651 27.8079 12.1009 27.8535 12.1465C27.8991 12.1921 27.9349 12.2458 27.9609 12.3076C27.987 12.3662 28 12.4297 28 12.498C28 12.638 27.9512 12.7568 27.8535 12.8545L23.708 17L27.8535 21.1455C27.9512 21.2432 28 21.3604 28 21.4971C28 21.5654 27.987 21.6305 27.9609 21.6924C27.9349 21.7542 27.8991 21.8079 27.8535 21.8535C27.8112 21.8991 27.7591 21.9349 27.6973 21.9609C27.6354 21.987 27.5703 22 27.502 22C27.362 22 27.2432 21.9512 27.1455 21.8535L23 17.708Z"
- Fill="Black" />
- </Button>
- <StackPanel Margin="24,8,24,20">
- <Image
- Width="80"
- Height="80"
- Margin="0,32,0,16"
- RenderOptions.BitmapScalingMode="HighQuality"
- Source="pack://application:,,,/PDF Master;component/Icon.ico" />
- <TextBlock
- Name="TbTitle"
- HorizontalAlignment="Center"
- FontFamily="Segoe UI"
- FontSize="20"
- FontWeight="SemiBold"
- LineHeight="28"
- Text="PDF Master" />
- <TextBlock
- Name="TbVersion"
- HorizontalAlignment="Center"
- FontFamily="Segoe UI"
- FontSize="12"
- FontWeight="SemiBold"
- LineHeight="20"
- Text="Version 1.0" />
- <TextBlock
- Name="TbPrivacy"
- Margin="0,12,0,0"
- HorizontalAlignment="Center"
- Cursor="Hand"
- FontFamily="Segoe UI"
- FontSize="12"
- Foreground="{StaticResource color.sys.text.accent.norm}"
- LineHeight="22"
- PreviewMouseLeftButtonDown="TbPrivacy_PreviewMouseLeftButtonDown"
- Tag="1"
- Text="Privacy Agrrement"
- TextDecorations="Underline" />
- <TextBlock
- Name="TbService"
- Margin="0,6"
- HorizontalAlignment="Center"
- Cursor="Hand"
- FontFamily="Segoe UI"
- FontSize="12"
- Foreground="{StaticResource color.sys.text.accent.norm}"
- LineHeight="22"
- PreviewMouseLeftButtonDown="TbPrivacy_PreviewMouseLeftButtonDown"
- Tag="2"
- Text="Terms of Service"
- TextDecorations="Underline" />
- <TextBlock
- Name="TbComPDFKit"
- HorizontalAlignment="Center"
- Cursor="Hand"
- FontFamily="Segoe UI"
- FontSize="12"
- Foreground="{StaticResource color.sys.text.accent.norm}"
- LineHeight="22"
- PreviewMouseLeftButtonDown="TbPrivacy_PreviewMouseLeftButtonDown"
- Tag="3"
- Text="Powered by ComPDFKit"
- TextDecorations="Underline" />
- <TextBox
- Name="TbCopyRight"
- Margin="0,16,0,0"
- HorizontalAlignment="Center"
- BorderThickness="0"
- FontFamily="Segoe UI"
- FontSize="12"
- Foreground="{StaticResource color.sys.text.neutral.lv3}"
- IsReadOnly="True"
- Text="Copyright © 2014-2023 PDF Technologies, Inc. All Rights Reserved."
- TextAlignment="Center"
- TextWrapping="Wrap" />
- </StackPanel>
- </Grid>
- </UserControl>
|