123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- <UserControl x:Class="PDF_Office.Views.EditTools.Background.BackgroundCreateFileContent"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:prism="http://prismlibrary.com/"
- prism:ViewModelLocator.AutoWireViewModel="True"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- mc:Ignorable="d"
- d:DesignHeight="632"
- d:DesignWidth="260">
- <UserControl.Resources>
- <ResourceDictionary>
- <ResourceDictionary.MergedDictionaries>
- <ResourceDictionary Source="../../../Styles/CheckBoxStyle.xaml"/>
- </ResourceDictionary.MergedDictionaries>
- </ResourceDictionary>
- </UserControl.Resources>
- <Grid Margin="16,0,0,0">
- <Grid.RowDefinitions>
- <RowDefinition Height="48"></RowDefinition>
- <RowDefinition Height="157"></RowDefinition>
- <RowDefinition Height="163"></RowDefinition>
- <RowDefinition Height="103"></RowDefinition>
- <RowDefinition></RowDefinition>
- </Grid.RowDefinitions>
- <Grid Grid.Row="0">
- <StackPanel Orientation="Horizontal" VerticalAlignment="Bottom">
- <TextBox Height="32" Width="189" Margin="0,0,7,0"></TextBox>
- <Button Height="32" Width="32"></Button>
- </StackPanel>
- </Grid>
- <Grid Grid.Row="1">
- <StackPanel Orientation="Vertical">
- <TextBlock Text="外观" Margin="0,16,0,8" Foreground="#666666"></TextBlock>
- <StackPanel Orientation="Horizontal">
- <TextBlock Height="24" Width="24" Background= "Bisque" Margin="0,0,8,0"></TextBlock>
- <ComboBox Height="32" Width=" 66" Margin="0,0,28,0"></ComboBox>
- <TextBlock Height="24" Width="24" Background="CadetBlue" Margin="0,0,8,0"></TextBlock>
- <ComboBox Height="32" Width=" 66"></ComboBox>
- </StackPanel>
- <StackPanel Orientation="Horizontal"></StackPanel>
- <Grid Margin="0,19,0,0">
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="30"></ColumnDefinition>
- <ColumnDefinition ></ColumnDefinition>
- </Grid.ColumnDefinitions>
- <CheckBox Grid.Column="0" Style="{StaticResource CheckBoxStyle}" Content="相对目标页面的比例" Margin="0,0,0,0" Height="22"></CheckBox>
- <TextBlock Grid.Column="1" Text="相对目标页面的比例" Height="22" ></TextBlock>
- </Grid>
- <ComboBox Height="32" Width="66" HorizontalAlignment="Left" Margin="0,11,0,0"></ComboBox>
- </StackPanel>
- </Grid>
- <Grid Grid.Row="2" Margin="0,16,0,0" VerticalAlignment="Bottom">
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="3*"/>
- <ColumnDefinition Width="241*"/>
- </Grid.ColumnDefinitions>
- <StackPanel Grid.ColumnSpan="2">
- <TextBlock Text="位置" FontSize="12" Foreground="#666666" Height="20" Width="24" HorizontalAlignment="Left"></TextBlock>
- <StackPanel Orientation="Horizontal" Margin="0,8,0,0">
- <Grid Width="74" Height="74">
- <Grid.ColumnDefinitions>
- <ColumnDefinition></ColumnDefinition>
- <ColumnDefinition></ColumnDefinition>
- <ColumnDefinition></ColumnDefinition>
- </Grid.ColumnDefinitions>
- <Grid.RowDefinitions>
- <RowDefinition></RowDefinition>
- <RowDefinition></RowDefinition>
- <RowDefinition></RowDefinition>
- </Grid.RowDefinitions>
- <Button Grid.Column="0" Grid.Row="0"></Button>
- <Button Grid.Column="1" Grid.Row="0"></Button>
- <Button Grid.Column="2" Grid.Row="0"></Button>
- <Button Grid.Column="0" Grid.Row="1"></Button>
- <Button Grid.Column="1" Grid.Row="1" Background="Black"></Button>
- <Button Grid.Column="2" Grid.Row="1"></Button>
- <Button Grid.Column="0" Grid.Row="2"></Button>
- <Button Grid.Column="1" Grid.Row="2"></Button>
- <Button Grid.Column="2" Grid.Row="2"></Button>
- </Grid>
- <StackPanel Orientation="Vertical" Margin="70,0,0,0">
- <StackPanel Orientation="Horizontal">
- <TextBlock Text="X" Width="9" Height="20" VerticalAlignment="Center"/>
- <TextBox Width="66" Height="32" Margin="9,0,0,0"></TextBox>
- </StackPanel>
- <StackPanel Orientation="Horizontal" Margin="0,8,0,0">
- <TextBlock Text="Y" Width="9" Height="20" VerticalAlignment="Center"/>
- <TextBox Width="66" Height="32" Margin="9,0,0,0"></TextBox>
- </StackPanel>
- </StackPanel>
- </StackPanel>
- </StackPanel>
- </Grid>
- <Grid Grid.Row="3" Margin="0,16,0,0" VerticalAlignment="Bottom">
- <StackPanel Orientation="Vertical">
- <TextBlock Text="页面范围" FontSize="12" Foreground="#666666" Height="20" Width="48" HorizontalAlignment="Left"></TextBlock>
- <ComboBox Height="32" Width="228" Margin="0,8,0,0" HorizontalAlignment="Left"></ComboBox>
- </StackPanel>
- </Grid>
- </Grid>
- </UserControl>
|