123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205 |
- <UserControl
- x:Class="PDF_Master.Views.Dialog.ServiceDialog.LoginDialog"
- 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.ServiceDialog"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:prism="http://prismlibrary.com/"
- Width="664"
- Height="420"
- prism:Dialog.WindowStyle="{StaticResource DialogWindowStyle}"
- prism:ViewModelLocator.AutoWireViewModel="True"
- mc:Ignorable="d">
- <Grid Background="White">
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="260" />
- <ColumnDefinition />
- </Grid.ColumnDefinitions>
- <Grid>
- <Grid.Background>
- <ImageBrush ImageSource="pack://application:,,,/PDF Master;component/Resources/Service/Login.png" />
- </Grid.Background>
- <StackPanel
- Width="204"
- Margin="29,44,0,0"
- HorizontalAlignment="Left"
- VerticalAlignment="Top">
- <TextBlock
- Width="169"
- HorizontalAlignment="Left"
- FontFamily="Segoe UI"
- FontSize="20"
- FontWeight="SemiBold"
- LineHeight="28"
- Text="Unlock all features for free"
- TextWrapping="Wrap" />
- <TextBlock
- Width="204"
- Height="32"
- Margin="0,2,0,0"
- HorizontalAlignment="Left"
- FontFamily="SF Pro Text"
- FontSize="10"
- Foreground="#94989C"
- LineHeight="16"
- Text="Register as a member and login to access all premium features for free"
- TextWrapping="Wrap" />
- </StackPanel>
- <StackPanel
- Height="204"
- Margin="28,152,0,0"
- HorizontalAlignment="Left"
- VerticalAlignment="Top">
- <Grid Height="42" HorizontalAlignment="Left">
- <Border
- Width="36"
- Height="36"
- HorizontalAlignment="Left">
- <Image Source="pack://application:,,,/PDF Master;component/Resources/Service/edit.png" />
- </Border>
- <StackPanel
- Width="129"
- Height="42"
- Margin="42,0,0,0">
- <TextBlock
- Height="20"
- FontFamily="Segoe UI"
- FontSize="12"
- FontWeight="SemiBold"
- LineHeight="20"
- Text="Edit PDF" />
- <TextBlock
- Height="18"
- Margin="0,4,0,0"
- FontFamily="Segoe UI"
- FontSize="11"
- Foreground="#616469"
- LineHeight="28"
- Text="Text editing, image editing" />
- </StackPanel>
- </Grid>
- <Grid
- Height="42"
- Margin="0,12,0,0"
- HorizontalAlignment="Left">
- <Border
- Width="36"
- Height="36"
- HorizontalAlignment="Left">
- <Image Source="pack://application:,,,/PDF Master;component/Resources/Service/convert.png" />
- </Border>
- <StackPanel Height="42" Margin="42,0,0,0">
- <StackPanel Orientation="Horizontal">
- <TextBlock
- Height="20"
- FontFamily="Segoe UI"
- FontSize="12"
- FontWeight="SemiBold"
- LineHeight="20"
- Text="Convert" />
- <TextBlock
- Height="18"
- Margin="8,0,0,0"
- FontFamily="Segoe UI"
- FontSize="11"
- Foreground="#94989C"
- LineHeight="18"
- Text="(Limit first 10 pages)" />
- </StackPanel>
- <TextBlock
- Height="18"
- Margin="0,4,0,0"
- FontFamily="Segoe UI"
- FontSize="11"
- Foreground="#616469"
- LineHeight="28"
- Text="Best PDF to Office Converter" />
- </StackPanel>
- </Grid>
- <Grid
- Height="42"
- Margin="0,12,0,0"
- HorizontalAlignment="Left">
- <Border
- Width="36"
- Height="36"
- HorizontalAlignment="Left">
- <Image Source="pack://application:,,,/PDF Master;component/Resources/Service/page-edit.png" />
- </Border>
- <StackPanel
- Height="42"
- Margin="42,0,0,0"
- HorizontalAlignment="Left">
- <TextBlock
- Height="20"
- FontFamily="Segoe UI"
- FontSize="12"
- FontWeight="SemiBold"
- LineHeight="20"
- Text="Page Edit" />
- <TextBlock
- Height="18"
- Margin="0,4,0,0"
- FontFamily="Segoe UI"
- FontSize="11"
- Foreground="#616469"
- LineHeight="28"
- Text="Insert, Replace, Split, Extract" />
- </StackPanel>
- </Grid>
- <Grid
- Height="42"
- Margin="0,12,0,0"
- HorizontalAlignment="Left">
- <Border
- Width="36"
- Height="36"
- HorizontalAlignment="Left">
- <Image Source="pack://application:,,,/PDF Master;component/Resources/Service/more.png" />
- </Border>
- <StackPanel
- Height="42"
- Margin="42,0,0,0"
- HorizontalAlignment="Left">
- <TextBlock
- Height="20"
- FontFamily="Segoe UI"
- FontSize="12"
- FontWeight="SemiBold"
- LineHeight="20"
- Text="More Features" />
- <TextBlock
- Height="18"
- Margin="0,4,0,0"
- FontFamily="Segoe UI"
- FontSize="11"
- Foreground="#616469"
- LineHeight="28"
- Text="More features to look forward" />
- </StackPanel>
- </Grid>
- </StackPanel>
- <!--<TextBlock Text="Subscribe Now" FontFamily="Segoe UI" FontWeight="SemiBold" FontSize="12" Foreground="#3F8FF6" LineHeight="20" Margin="150,380,0,0" Width="82" Height="20" />-->
- <TextBlock
- Width="84"
- Height="20"
- Margin="150,380,0,0"
- Background="Transparent"
- FontFamily="Segoe UI"
- FontSize="12"
- FontWeight="SemiBold"
- Foreground="#3F8FF6">
- <Hyperlink Command="{Binding OpenIAPCommand}">
- <TextBlock Text="Subscribe Now" />
- </Hyperlink>
- </TextBlock>
- </Grid>
- <Grid Grid.Column="1">
- <ContentControl prism:RegionManager.RegionName="{Binding LoginRegionName}" Visibility="Visible" />
- </Grid>
- </Grid>
- </UserControl>
|