123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- <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/"
- prism:ViewModelLocator.AutoWireViewModel="True"
- Width="586"
- prism:Dialog.WindowStyle="{StaticResource DialogWindowStyle}"
- Height="420"
- 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
- HorizontalAlignment="Left"
- Width="169"
- FontFamily="Segoe UI"
- FontSize="20"
- FontWeight="SemiBold"
- LineHeight="28"
- Text="Unlock all features for free"
- TextWrapping="Wrap" />
- <TextBlock
- Width="204"
- Height="32"
- HorizontalAlignment="Left"
- Margin="0,2,0,0"
- 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 Margin="28,152,0,0" HorizontalAlignment="Left" Height="204" 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 Text="Edit PDF" FontFamily="Segoe UI" FontWeight="SemiBold" FontSize="12" LineHeight="20" Height="20"/>
- <TextBlock Margin="0,4,0,0" Text="Text editing, image editing" FontFamily="Segoe UI" FontSize="11" LineHeight="28" Height="18" Foreground="#616469"/>
- </StackPanel>
- </Grid>
- <Grid Height="42" HorizontalAlignment="Left" Margin="0,12,0,0">
- <Border Width="36" Height="36" HorizontalAlignment="Left">
- <Image Source="pack://application:,,,/PDF Master;component/Resources/Service/convert.png"/>
- </Border>
- <StackPanel Margin="42,0,0,0" Height="42" >
- <StackPanel Orientation="Horizontal">
- <TextBlock Text="Convert" FontFamily="Segoe UI" FontWeight="SemiBold" FontSize="12" LineHeight="20" Height="20"/>
- <TextBlock Text="(Limit first 10 pages)" FontFamily="Segoe UI" FontSize="11" LineHeight="18" Height="18" Margin="8,0,0,0" Foreground="#94989C"/>
- </StackPanel>
- <TextBlock Margin="0,4,0,0" Text="Best PDF to Office Converter" FontFamily="Segoe UI" FontSize="11" LineHeight="28" Height="18" Foreground="#616469"/>
- </StackPanel>
- </Grid>
- <Grid Height="42" HorizontalAlignment="Left" Margin="0,12,0,0">
- <Border Width="36" Height="36" HorizontalAlignment="Left">
- <Image Source="pack://application:,,,/PDF Master;component/Resources/Service/page-edit.png"/>
- </Border>
- <StackPanel Height="42" HorizontalAlignment="Left" Margin="42,0,0,0">
- <TextBlock Text="Page Edit" FontFamily="Segoe UI" FontWeight="SemiBold" FontSize="12" LineHeight="20" Height="20"/>
- <TextBlock Margin="0,4,0,0" Text="Insert, Replace, Split, Extract" FontFamily="Segoe UI" FontSize="11" LineHeight="28" Height="18" Foreground="#616469"/>
- </StackPanel>
- </Grid>
- <Grid Height="42" HorizontalAlignment="Left" Margin="0,12,0,0">
- <Border Width="36" Height="36" HorizontalAlignment="Left">
- <Image Source="pack://application:,,,/PDF Master;component/Resources/Service/more.png"/>
- </Border>
- <StackPanel Height="42" HorizontalAlignment="Left" Margin="42,0,0,0" >
- <TextBlock Text="More Features" FontFamily="Segoe UI" FontWeight="SemiBold" FontSize="12" LineHeight="20" Height="20"/>
- <TextBlock Margin="0,4,0,0" Text="More features to look forward" FontFamily="Segoe UI" FontSize="11" LineHeight="28" Height="18" Foreground="#616469"/>
- </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" />-->
- <Button Content="Subscribe Now" Background="Transparent" Margin="150,380,0,0" Width="84" Height="20" Foreground="#3F8FF6" FontWeight="SemiBold" FontSize="12" FontFamily="Segoe UI" BorderThickness="0" />
- </Grid>
- <Grid Grid.Column="1" >
- <ContentControl prism:RegionManager.RegionName="{Binding LoginRegionName}" Visibility="Visible"/>
- </Grid>
- </Grid>
- </UserControl>
|