UserOut.xaml 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <Window
  2. x:Class="PDF_Office.Views.Dialog.ServiceDialog.UserOut"
  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_Office.Views.Dialog.ServiceDialog"
  7. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  8. Title="UserOut"
  9. Width="392"
  10. Height="202"
  11. WindowStartupLocation="CenterScreen"
  12. WindowStyle="None"
  13. mc:Ignorable="d">
  14. <Grid>
  15. <Grid>
  16. <StackPanel>
  17. <WrapPanel Margin="18,18,0,0" HorizontalAlignment="Left">
  18. <Border
  19. Width="20"
  20. Height="20"
  21. Background="#FFAF25"
  22. CornerRadius="100">
  23. <Path
  24. Margin="-2,-2,0,0"
  25. Data="M11 5.33301V13.9997H13V5.33301H11ZM11 15.9997V18.6663H13V15.9997H11Z"
  26. Fill="White" />
  27. </Border>
  28. <TextBlock
  29. Margin="10,0,0,0"
  30. FontFamily="Segoe UI"
  31. FontSize="16"
  32. FontWeight="SemiBold"
  33. LineHeight="24"
  34. Text="Unable to log" />
  35. </WrapPanel>
  36. <TextBlock
  37. Margin="16,16,0,0"
  38. HorizontalAlignment="Left"
  39. FontFamily="Segoe UI"
  40. FontSize="14"
  41. LineHeight="22"
  42. TextWrapping="Wrap">
  43. <Run Text="Your account is currently being logged out and cannot be logged in. " />
  44. <Run Text="If you have questions, you can " />
  45. <Hyperlink
  46. Click="Hyperlink_Click"
  47. NavigateUri="https://www.pdfreaderpro.com/zh-cn/contact"
  48. TextDecorations="Underline">
  49. contact customer service
  50. </Hyperlink>
  51. </TextBlock>
  52. <Button
  53. Width="80"
  54. Height="32"
  55. Margin="296,32,0,0"
  56. HorizontalAlignment="Left"
  57. Background="#1770F4"
  58. Click="Button_Click"
  59. Content="OK"
  60. Foreground="White" IsDefault="True" />
  61. </StackPanel>
  62. </Grid>
  63. </Grid>
  64. </Window>