ReadModelTip.xaml 1.0 KB

12345678910111213141516171819202122232425262728
  1. <UserControl
  2. x:Class="PDF_Office.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_Office.Views.TipContent"
  7. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  8. xmlns:prism="http://prismlibrary.com/"
  9. d:DesignHeight="450"
  10. d:DesignWidth="800"
  11. prism:ViewModelLocator.AutoWireViewModel="True"
  12. mc:Ignorable="d">
  13. <Grid>
  14. <Border
  15. Width="145"
  16. Height="40"
  17. VerticalAlignment="Top"
  18. Background="{StaticResource color.sys.layout.dark.bg}"
  19. CornerRadius="4">
  20. <TextBlock
  21. x:Name="ReadModelTip1"
  22. Padding="11"
  23. Foreground="#FFFFFFFF"
  24. Text="Exit reading mode"
  25. TextAlignment="Center" />
  26. </Border>
  27. </Grid>
  28. </UserControl>