BookmarkContent.xaml 748 B

12345678910111213141516171819
  1. <UserControl
  2. x:Class="PDF_Office.Views.BOTA.BookmarkContent"
  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.BOTA"
  7. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  8. xmlns:prism="http://prismlibrary.com/"
  9. d:DesignHeight="450"
  10. d:DesignWidth="300"
  11. prism:ViewModelLocator.AutoWireViewModel="True"
  12. mc:Ignorable="d">
  13. <Grid>
  14. <Grid.RowDefinitions />
  15. <StackPanel Orientation="Horizontal">
  16. <TextBlock Margin="10,5" Text="书签" />
  17. </StackPanel>
  18. </Grid>
  19. </UserControl>