BackgroundTemplateContent.xaml 1.3 KB

12345678910111213141516171819202122232425262728293031
  1. <UserControl x:Class="PDF_Office.Views.EditTools.Background.BackgroundTemplateContent"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:prism="http://prismlibrary.com/"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. prism:ViewModelLocator.AutoWireViewModel="True"
  7. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  8. mc:Ignorable="d"
  9. d:DesignHeight ="720"
  10. d:DesignWidth ="260">
  11. <Grid>
  12. <Grid.RowDefinitions>
  13. <RowDefinition Height="56"></RowDefinition>
  14. <RowDefinition Height="32"></RowDefinition>
  15. <RowDefinition></RowDefinition>
  16. </Grid.RowDefinitions>
  17. <Grid Grid.Row="0">
  18. <StackPanel Orientation="Horizontal">
  19. <TextBlock Height="32" Width="24" Margin="16" Text="背景"></TextBlock>
  20. </StackPanel>
  21. </Grid>
  22. <Grid Grid.Row="1">
  23. <StackPanel Orientation="Horizontal">
  24. </StackPanel>
  25. </Grid>
  26. <Grid Grid.Row="2" Background="AliceBlue" >
  27. </Grid>
  28. </Grid>
  29. </UserControl>