EnterReadModeTip.xaml 1.2 KB

12345678910111213141516171819202122232425262728293031
  1. <UserControl
  2. x:Class="PDF_Master.Views.TipContent.EnterReadModeTip"
  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.TipContent"
  7. xmlns:mainpage="clr-namespace:PDF_Master.Strings.MainPage"
  8. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  9. xmlns:prism="http://prismlibrary.com/"
  10. d:DesignHeight="450"
  11. d:DesignWidth="800"
  12. prism:ViewModelLocator.AutoWireViewModel="True"
  13. mc:Ignorable="d">
  14. <Grid>
  15. <Border
  16. Width="316"
  17. Height="40"
  18. VerticalAlignment="Top"
  19. Background="{StaticResource color.sys.layout.dark.bg}"
  20. CornerRadius="4">
  21. <TextBlock
  22. x:Name="ReadModelTip1"
  23. Width="316"
  24. Padding="11"
  25. HorizontalAlignment="Left"
  26. Foreground="#FFFFFFFF"
  27. Text="{x:Static mainpage:MainPage.GlobalTip_ESCReadMode}"
  28. TextAlignment="Center" />
  29. </Border>
  30. </Grid>
  31. </UserControl>