12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <Window
- x:Class="PDF_Office.Views.Dialog.ServiceDialog.UserOut"
- 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_Office.Views.Dialog.ServiceDialog"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- Title="UserOut"
- Width="392"
- Height="202"
- WindowStartupLocation="CenterScreen"
- WindowStyle="None"
- mc:Ignorable="d">
- <Grid>
- <Grid>
- <StackPanel>
- <WrapPanel Margin="18,18,0,0" HorizontalAlignment="Left">
- <Border
- Width="20"
- Height="20"
- Background="#FFAF25"
- CornerRadius="100">
- <Path
- Margin="-2,-2,0,0"
- Data="M11 5.33301V13.9997H13V5.33301H11ZM11 15.9997V18.6663H13V15.9997H11Z"
- Fill="White" />
- </Border>
- <TextBlock
- Margin="10,0,0,0"
- FontFamily="Segoe UI"
- FontSize="16"
- FontWeight="SemiBold"
- LineHeight="24"
- Text="Unable to log" />
- </WrapPanel>
- <TextBlock
- Margin="16,16,0,0"
- HorizontalAlignment="Left"
- FontFamily="Segoe UI"
- FontSize="14"
- LineHeight="22"
- TextWrapping="Wrap">
- <Run Text="Your account is currently being logged out and cannot be logged in. " />
- <Run Text="If you have questions, you can " />
- <Hyperlink
- Click="Hyperlink_Click"
- NavigateUri="https://www.pdfreaderpro.com/zh-cn/contact"
- TextDecorations="Underline">
- contact customer service
- </Hyperlink>
- </TextBlock>
- <Button
- Width="80"
- Height="32"
- Margin="296,32,0,0"
- HorizontalAlignment="Left"
- Background="#1770F4"
- Click="Button_Click"
- Content="OK"
- Foreground="White" IsDefault="True" />
- </StackPanel>
- </Grid>
- </Grid>
- </Window>
|