LoginDialog.xaml 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. <UserControl
  2. x:Class="PDF_Master.Views.Dialog.ServiceDialog.LoginDialog"
  3. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  4. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:local="clr-namespace:PDF_Master.Views.Dialog.ServiceDialog"
  7. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  8. xmlns:prism="http://prismlibrary.com/"
  9. prism:ViewModelLocator.AutoWireViewModel="True"
  10. Width="586"
  11. prism:Dialog.WindowStyle="{StaticResource DialogWindowStyle}"
  12. Height="420"
  13. mc:Ignorable="d">
  14. <Grid Background="White">
  15. <Grid.ColumnDefinitions>
  16. <ColumnDefinition Width="260"/>
  17. <ColumnDefinition/>
  18. </Grid.ColumnDefinitions>
  19. <Grid>
  20. <Grid.Background>
  21. <ImageBrush ImageSource="pack://application:,,,/PDF Master;component/Resources/Service/Login.png" />
  22. </Grid.Background>
  23. <StackPanel
  24. Width="204"
  25. Margin="29,44,0,0"
  26. HorizontalAlignment="Left"
  27. VerticalAlignment="Top">
  28. <TextBlock
  29. HorizontalAlignment="Left"
  30. Width="169"
  31. FontFamily="Segoe UI"
  32. FontSize="20"
  33. FontWeight="SemiBold"
  34. LineHeight="28"
  35. Text="Unlock all features for free"
  36. TextWrapping="Wrap" />
  37. <TextBlock
  38. Width="204"
  39. Height="32"
  40. HorizontalAlignment="Left"
  41. Margin="0,2,0,0"
  42. FontFamily="SF Pro Text"
  43. FontSize="10"
  44. Foreground="#94989C"
  45. LineHeight="16"
  46. Text="Register as a member and login to access all premium features for free"
  47. TextWrapping="Wrap" />
  48. </StackPanel>
  49. <StackPanel Margin="28,152,0,0" HorizontalAlignment="Left" Height="204" VerticalAlignment="Top">
  50. <Grid Height="42" HorizontalAlignment="Left">
  51. <Border Width="36" Height="36" HorizontalAlignment="Left">
  52. <Image Source="pack://application:,,,/PDF Master;component/Resources/Service/edit.png"/>
  53. </Border>
  54. <StackPanel Width="129" Height="42" Margin="42,0,0,0">
  55. <TextBlock Text="Edit PDF" FontFamily="Segoe UI" FontWeight="SemiBold" FontSize="12" LineHeight="20" Height="20"/>
  56. <TextBlock Margin="0,4,0,0" Text="Text editing, image editing" FontFamily="Segoe UI" FontSize="11" LineHeight="28" Height="18" Foreground="#616469"/>
  57. </StackPanel>
  58. </Grid>
  59. <Grid Height="42" HorizontalAlignment="Left" Margin="0,12,0,0">
  60. <Border Width="36" Height="36" HorizontalAlignment="Left">
  61. <Image Source="pack://application:,,,/PDF Master;component/Resources/Service/convert.png"/>
  62. </Border>
  63. <StackPanel Margin="42,0,0,0" Height="42" >
  64. <StackPanel Orientation="Horizontal">
  65. <TextBlock Text="Convert" FontFamily="Segoe UI" FontWeight="SemiBold" FontSize="12" LineHeight="20" Height="20"/>
  66. <TextBlock Text="(Limit first 10 pages)" FontFamily="Segoe UI" FontSize="11" LineHeight="18" Height="18" Margin="8,0,0,0" Foreground="#94989C"/>
  67. </StackPanel>
  68. <TextBlock Margin="0,4,0,0" Text="Best PDF to Office Converter" FontFamily="Segoe UI" FontSize="11" LineHeight="28" Height="18" Foreground="#616469"/>
  69. </StackPanel>
  70. </Grid>
  71. <Grid Height="42" HorizontalAlignment="Left" Margin="0,12,0,0">
  72. <Border Width="36" Height="36" HorizontalAlignment="Left">
  73. <Image Source="pack://application:,,,/PDF Master;component/Resources/Service/page-edit.png"/>
  74. </Border>
  75. <StackPanel Height="42" HorizontalAlignment="Left" Margin="42,0,0,0">
  76. <TextBlock Text="Page Edit" FontFamily="Segoe UI" FontWeight="SemiBold" FontSize="12" LineHeight="20" Height="20"/>
  77. <TextBlock Margin="0,4,0,0" Text="Insert, Replace, Split, Extract" FontFamily="Segoe UI" FontSize="11" LineHeight="28" Height="18" Foreground="#616469"/>
  78. </StackPanel>
  79. </Grid>
  80. <Grid Height="42" HorizontalAlignment="Left" Margin="0,12,0,0">
  81. <Border Width="36" Height="36" HorizontalAlignment="Left">
  82. <Image Source="pack://application:,,,/PDF Master;component/Resources/Service/more.png"/>
  83. </Border>
  84. <StackPanel Height="42" HorizontalAlignment="Left" Margin="42,0,0,0" >
  85. <TextBlock Text="More Features" FontFamily="Segoe UI" FontWeight="SemiBold" FontSize="12" LineHeight="20" Height="20"/>
  86. <TextBlock Margin="0,4,0,0" Text="More features to look forward" FontFamily="Segoe UI" FontSize="11" LineHeight="28" Height="18" Foreground="#616469"/>
  87. </StackPanel>
  88. </Grid>
  89. </StackPanel>
  90. <!--<TextBlock Text="Subscribe Now" FontFamily="Segoe UI" FontWeight="SemiBold" FontSize="12" Foreground="#3F8FF6" LineHeight="20" Margin="150,380,0,0" Width="82" Height="20" />-->
  91. <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" />
  92. </Grid>
  93. <Grid Grid.Column="1" >
  94. <ContentControl prism:RegionManager.RegionName="{Binding LoginRegionName}" Visibility="Visible"/>
  95. </Grid>
  96. </Grid>
  97. </UserControl>