ReadModelTip.xaml 1.1 KB

1234567891011121314151617181920212223242526272829
  1. <UserControl
  2. x:Class="PDF_Master.Views.TipContent.ReadModelTip"
  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:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  8. xmlns:mainpage="clr-namespace:PDF_Master.Strings.MainPage"
  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="145"
  17. Height="40"
  18. VerticalAlignment="Top"
  19. Background="{StaticResource color.sys.layout.dark.bg}"
  20. CornerRadius="4">
  21. <TextBlock
  22. x:Name="ReadModelTip1"
  23. Padding="11"
  24. Foreground="#FFFFFFFF"
  25. Text="{x:Static mainpage:MainPage.GlobalTip_ExitReadMode}"
  26. TextAlignment="Center" HorizontalAlignment="Left" Width="145" />
  27. </Border>
  28. </Grid>
  29. </UserControl>