12345678910111213141516171819202122232425262728293031 |
- <UserControl x:Class="PDF_Office.Views.EditTools.Background.BackgroundTemplateContent"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:prism="http://prismlibrary.com/"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- prism:ViewModelLocator.AutoWireViewModel="True"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- mc:Ignorable="d"
- d:DesignHeight ="720"
- d:DesignWidth ="260">
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="56"></RowDefinition>
- <RowDefinition Height="32"></RowDefinition>
- <RowDefinition></RowDefinition>
- </Grid.RowDefinitions>
- <Grid Grid.Row="0">
- <StackPanel Orientation="Horizontal">
- <TextBlock Height="32" Width="24" Margin="16" Text="背景"></TextBlock>
- </StackPanel>
- </Grid>
- <Grid Grid.Row="1">
- <StackPanel Orientation="Horizontal">
-
- </StackPanel>
- </Grid>
- <Grid Grid.Row="2" Background="AliceBlue" >
-
- </Grid>
- </Grid>
- </UserControl>
|