|
@@ -6,10 +6,269 @@
|
|
xmlns:local="using:ArchivesCenter4"
|
|
xmlns:local="using:ArchivesCenter4"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
- mc:Ignorable="d"
|
|
|
|
- Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
|
|
|
|
|
|
+ mc:Ignorable="d">
|
|
|
|
|
|
<Grid>
|
|
<Grid>
|
|
|
|
+ <Pivot Margin="36,0,0,0">
|
|
|
|
+ <PivotItem Header="列表">
|
|
|
|
+ <Grid>
|
|
|
|
+ </Grid>
|
|
|
|
+ </PivotItem>
|
|
|
|
+ <PivotItem Header="详细信息">
|
|
|
|
+ <Grid>
|
|
|
|
+ <Grid.RowDefinitions>
|
|
|
|
+ <RowDefinition Height="auto"/>
|
|
|
|
+ <RowDefinition Height="auto"/>
|
|
|
|
+ <RowDefinition Height="*"/>
|
|
|
|
+ </Grid.RowDefinitions>
|
|
|
|
+ <CommandBar Grid.ColumnSpan="100" Grid.Row="0" Background="Transparent" IsOpen="False" DefaultLabelPosition="Right">
|
|
|
|
+ <AppBarButton Icon="NewWindow" Label="新建"/>
|
|
|
|
+ <AppBarButton Icon="Edit" Label="编辑" IsEnabled="False"/>
|
|
|
|
+ <AppBarButton Icon="Contact2" Label="更改照片" IsEnabled="False"/>
|
|
|
|
+ <AppBarSeparator/>
|
|
|
|
+ <AppBarButton Icon="Previous" Label="上一个" IsEnabled="False"/>
|
|
|
|
+ <AppBarButton Icon="Next" Label="下一个" IsEnabled="False"/>
|
|
|
|
+ <AppBarSeparator/>
|
|
|
|
+ <AppBarButton Icon="Delete" Label="删除" IsEnabled="False"/>
|
|
|
|
+ <AppBarButton Icon="Refresh" Label="刷新"/>
|
|
|
|
+ </CommandBar>
|
|
|
|
+ <Grid>
|
|
|
|
+ <Grid.RowDefinitions>
|
|
|
|
+ <RowDefinition Height="auto"/>
|
|
|
|
+ <RowDefinition Height="auto"/>
|
|
|
|
+ </Grid.RowDefinitions>
|
|
|
|
+ <Grid.ColumnDefinitions>
|
|
|
|
+ <ColumnDefinition Width="auto"/>
|
|
|
|
+ <ColumnDefinition Width="*"/>
|
|
|
|
+ </Grid.ColumnDefinitions>
|
|
|
|
+ <PersonPicture Grid.Column="0" Grid.Row="0" Margin="0,16,16,0"/>
|
|
|
|
+ <TextBlock Grid.Column="1" Grid.Row="0" Margin="0,16,16,0" Style="{StaticResource HeaderTextBlockStyle}" Text="姓名" VerticalAlignment="Center"/>
|
|
|
|
+ </Grid>
|
|
|
|
|
|
|
|
+ <ScrollViewer Grid.Row="3" VerticalScrollBarVisibility="Visible" Margin="0,16,0,0">
|
|
|
|
+ <Grid HorizontalAlignment="Center">
|
|
|
|
+ <Grid.RowDefinitions>
|
|
|
|
+ <RowDefinition Height="auto"/>
|
|
|
|
+ <RowDefinition Height="auto"/>
|
|
|
|
+ </Grid.RowDefinitions>
|
|
|
|
+ <Grid.ColumnDefinitions>
|
|
|
|
+ <ColumnDefinition Width="auto"/>
|
|
|
|
+ <ColumnDefinition Width="auto"/>
|
|
|
|
+ </Grid.ColumnDefinitions>
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ <Grid Grid.Row="0" Grid.Column="0" Background="{ThemeResource CardBackgroundFillColorDefaultBrush}" Margin="0,36,16,16" BorderThickness="1" CornerRadius="{StaticResource ControlCornerRadius}" BorderBrush="{ThemeResource CardStrokeColorDefaultBrush}" Width="400">
|
|
|
|
+ <Grid.RowDefinitions>
|
|
|
|
+ <RowDefinition Height="auto"/>
|
|
|
|
+ <RowDefinition Height="auto"/>
|
|
|
|
+ <RowDefinition Height="auto"/>
|
|
|
|
+ <RowDefinition Height="auto"/>
|
|
|
|
+ <RowDefinition Height="auto"/>
|
|
|
|
+ <RowDefinition Height="auto"/>
|
|
|
|
+ <RowDefinition Height="auto"/>
|
|
|
|
+ <RowDefinition Height="auto"/>
|
|
|
|
+ <RowDefinition Height="auto"/>
|
|
|
|
+ <RowDefinition Height="auto"/>
|
|
|
|
+ <RowDefinition Height="auto"/>
|
|
|
|
+ <RowDefinition Height="auto"/>
|
|
|
|
+ <RowDefinition Height="auto"/>
|
|
|
|
+ <RowDefinition Height="auto"/>
|
|
|
|
+ <RowDefinition Height="auto"/>
|
|
|
|
+ <RowDefinition Height="auto"/>
|
|
|
|
+ <RowDefinition Height="auto"/>
|
|
|
|
+ </Grid.RowDefinitions>
|
|
|
|
+ <TextBlock Grid.Row="0" Margin="16,16,12,16" HorizontalAlignment="Left" VerticalAlignment="Center" Style="{StaticResource SubtitleTextBlockStyle}" Text="基本信息"/>
|
|
|
|
+
|
|
|
|
+ <TextBlock Grid.Row="1" Margin="16,0,16,8" HorizontalAlignment="Left" VerticalAlignment="Center" Style="{StaticResource BaseTextBlockStyle}" Text="姓名" TextWrapping="Wrap"/>
|
|
|
|
+ <TextBox Grid.Row="2" Margin="16,0,16,16"/>
|
|
|
|
+
|
|
|
|
+ <TextBlock Grid.Row="3" Margin="16,0,16,8" HorizontalAlignment="Left" VerticalAlignment="Center" Style="{StaticResource BaseTextBlockStyle}" Text="性别"/>
|
|
|
|
+ <ComboBox Grid.Row="4" Margin="16,0,16,16" MinWidth="150">
|
|
|
|
+ <ComboBoxItem Content="男"/>
|
|
|
|
+ <ComboBoxItem Content="女"/>
|
|
|
|
+ </ComboBox>
|
|
|
|
+
|
|
|
|
+ <TextBlock Grid.Row="5" Margin="16,0,16,8" HorizontalAlignment="Left" VerticalAlignment="Center" Style="{StaticResource BaseTextBlockStyle}" Text="性别"/>
|
|
|
|
+ <CalendarDatePicker Grid.Row="6" Margin="16,0,16,16" MinWidth="150"/>
|
|
|
|
+
|
|
|
|
+ <TextBlock Grid.Row="7" Margin="16,0,16,8" HorizontalAlignment="Left" VerticalAlignment="Center" Style="{StaticResource BaseTextBlockStyle}" Text="标签"/>
|
|
|
|
+ <ComboBox Grid.Row="8" Margin="16,0,16,16" MinWidth="150">
|
|
|
|
+ </ComboBox>
|
|
|
|
+
|
|
|
|
+ <TextBlock Grid.Row="9" Margin="16,0,16,8" HorizontalAlignment="Left" VerticalAlignment="Center" Style="{StaticResource BaseTextBlockStyle}" Text="证件类型"/>
|
|
|
|
+ <ComboBox Grid.Row="10" Margin="16,0,16,16" MinWidth="150">
|
|
|
|
+ <ComboBoxItem>居民身份证</ComboBoxItem>
|
|
|
|
+ <ComboBoxItem>港澳居民居住证</ComboBoxItem>
|
|
|
|
+ <ComboBoxItem>台湾居民居住证</ComboBoxItem>
|
|
|
|
+ <ComboBoxItem>往来港澳通行证</ComboBoxItem>
|
|
|
|
+ <ComboBoxItem>护照</ComboBoxItem>
|
|
|
|
+ <ComboBoxItem>港澳台居民来往大陆通行证</ComboBoxItem>
|
|
|
|
+ </ComboBox>
|
|
|
|
+
|
|
|
|
+ <TextBlock Grid.Row="11" Margin="16,0,16,8" HorizontalAlignment="Left" VerticalAlignment="Center" Style="{StaticResource BaseTextBlockStyle}" Text="证件号码"/>
|
|
|
|
+ <TextBox Grid.Row="12" Margin="16,0,16,16" TextWrapping="Wrap"/>
|
|
|
|
+
|
|
|
|
+ <TextBlock Grid.Row="13" Margin="16,0,16,8" HorizontalAlignment="Left" VerticalAlignment="Center" Style="{StaticResource BaseTextBlockStyle}" Text="备注"/>
|
|
|
|
+ <TextBox Grid.Row="14" Margin="16,0,16,16" TextWrapping="Wrap"/>
|
|
|
|
+ </Grid>
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ <Grid Grid.Row="0" Grid.Column="1" Background="{ThemeResource CardBackgroundFillColorDefaultBrush}" Margin="0,36,16,16" BorderThickness="1" CornerRadius="{StaticResource ControlCornerRadius}" BorderBrush="{ThemeResource CardStrokeColorDefaultBrush}" Width="400">
|
|
|
|
+ <Grid.RowDefinitions>
|
|
|
|
+ <RowDefinition Height="auto"/>
|
|
|
|
+ <RowDefinition Height="auto"/>
|
|
|
|
+ <RowDefinition Height="auto"/>
|
|
|
|
+ <RowDefinition Height="auto"/>
|
|
|
|
+ <RowDefinition Height="auto"/>
|
|
|
|
+ <RowDefinition Height="auto"/>
|
|
|
|
+ <RowDefinition Height="auto"/>
|
|
|
|
+ <RowDefinition Height="auto"/>
|
|
|
|
+ <RowDefinition Height="auto"/>
|
|
|
|
+ </Grid.RowDefinitions>
|
|
|
|
+ <TextBlock Grid.Row="0" Margin="16,16,12,16" HorizontalAlignment="Left" VerticalAlignment="Center" Style="{StaticResource SubtitleTextBlockStyle}" Text="家庭信息"/>
|
|
|
|
+
|
|
|
|
+ <TextBlock Grid.Row="1" Margin="16,0,16,8" HorizontalAlignment="Left" VerticalAlignment="Center" Style="{StaticResource BaseTextBlockStyle}" Text="籍贯"/>
|
|
|
|
+ <ComboBox Grid.Row="2" Margin="16,0,16,16" MinWidth="150">
|
|
|
|
+ <ComboBoxItem>北京市</ComboBoxItem>
|
|
|
|
+ <ComboBoxItem>天津市</ComboBoxItem>
|
|
|
|
+ <ComboBoxItem>上海市</ComboBoxItem>
|
|
|
|
+ <ComboBoxItem>重庆市</ComboBoxItem>
|
|
|
|
+ <ComboBoxItem>河北省</ComboBoxItem>
|
|
|
|
+ <ComboBoxItem>山西省</ComboBoxItem>
|
|
|
|
+ <ComboBoxItem>辽宁省</ComboBoxItem>
|
|
|
|
+ <ComboBoxItem>吉林省</ComboBoxItem>
|
|
|
|
+ <ComboBoxItem>黑龙江省</ComboBoxItem>
|
|
|
|
+ <ComboBoxItem>江苏省</ComboBoxItem>
|
|
|
|
+ <ComboBoxItem>浙江省</ComboBoxItem>
|
|
|
|
+ <ComboBoxItem>安徽省</ComboBoxItem>
|
|
|
|
+ <ComboBoxItem>福建省</ComboBoxItem>
|
|
|
|
+ <ComboBoxItem>江西省</ComboBoxItem>
|
|
|
|
+ <ComboBoxItem>山东省</ComboBoxItem>
|
|
|
|
+ <ComboBoxItem>河南省</ComboBoxItem>
|
|
|
|
+ <ComboBoxItem>湖北省</ComboBoxItem>
|
|
|
|
+ <ComboBoxItem>湖南省</ComboBoxItem>
|
|
|
|
+ <ComboBoxItem>广东省</ComboBoxItem>
|
|
|
|
+ <ComboBoxItem>海南省</ComboBoxItem>
|
|
|
|
+ <ComboBoxItem>四川省</ComboBoxItem>
|
|
|
|
+ <ComboBoxItem>贵州省</ComboBoxItem>
|
|
|
|
+ <ComboBoxItem>云南省</ComboBoxItem>
|
|
|
|
+ <ComboBoxItem>陕西省</ComboBoxItem>
|
|
|
|
+ <ComboBoxItem>甘肃省</ComboBoxItem>
|
|
|
|
+ <ComboBoxItem>青海省</ComboBoxItem>
|
|
|
|
+ <ComboBoxItem>台湾省</ComboBoxItem>
|
|
|
|
+ <ComboBoxItem>内蒙古自治区</ComboBoxItem>
|
|
|
|
+ <ComboBoxItem>广西壮族自治区</ComboBoxItem>
|
|
|
|
+ <ComboBoxItem>西藏自治区</ComboBoxItem>
|
|
|
|
+ <ComboBoxItem>宁夏回族自治区</ComboBoxItem>
|
|
|
|
+ <ComboBoxItem>新疆维吾尔自治区</ComboBoxItem>
|
|
|
|
+ <ComboBoxItem>香港特别行政区</ComboBoxItem>
|
|
|
|
+ <ComboBoxItem>澳门特别行政区</ComboBoxItem>
|
|
|
|
+ </ComboBox>
|
|
|
|
+
|
|
|
|
+ <TextBlock Grid.Row="3" Margin="16,0,16,8" HorizontalAlignment="Left" VerticalAlignment="Center" Style="{StaticResource BaseTextBlockStyle}" Text="婚姻状况"/>
|
|
|
|
+ <ComboBox Grid.Row="4" Margin="16,0,16,16" MinWidth="150">
|
|
|
|
+ <ComboBoxItem>未婚</ComboBoxItem>
|
|
|
|
+ <ComboBoxItem>已婚</ComboBoxItem>
|
|
|
|
+ <ComboBoxItem>离异</ComboBoxItem>
|
|
|
|
+ <ComboBoxItem>丧偶</ComboBoxItem>
|
|
|
|
+ </ComboBox>
|
|
|
|
+
|
|
|
|
+ <TextBlock Grid.Row="5" Margin="16,0,16,8" HorizontalAlignment="Left" VerticalAlignment="Center" Style="{StaticResource BaseTextBlockStyle}" Text="住址"/>
|
|
|
|
+ <TextBox Grid.Row="6" Margin="16,0,16,16" TextWrapping="Wrap"/>
|
|
|
|
+
|
|
|
|
+ <TextBlock Grid.Row="7" Margin="16,0,16,8" HorizontalAlignment="Left" VerticalAlignment="Center" Style="{StaticResource BaseTextBlockStyle}" Text="备注"/>
|
|
|
|
+ <TextBox Grid.Row="8" Margin="16,0,16,16" TextWrapping="Wrap"/>
|
|
|
|
+ </Grid>
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ <Grid Grid.Row="1" Grid.Column="0" Background="{ThemeResource CardBackgroundFillColorDefaultBrush}" Margin="0,0,16,16" BorderThickness="1" CornerRadius="{StaticResource ControlCornerRadius}" BorderBrush="{ThemeResource CardStrokeColorDefaultBrush}" Width="400">
|
|
|
|
+ <Grid.RowDefinitions>
|
|
|
|
+ <RowDefinition Height="auto"/>
|
|
|
|
+ <RowDefinition Height="auto"/>
|
|
|
|
+ <RowDefinition Height="auto"/>
|
|
|
|
+ <RowDefinition Height="auto"/>
|
|
|
|
+ <RowDefinition Height="auto"/>
|
|
|
|
+ <RowDefinition Height="auto"/>
|
|
|
|
+ <RowDefinition Height="auto"/>
|
|
|
|
+ <RowDefinition Height="auto"/>
|
|
|
|
+ <RowDefinition Height="auto"/>
|
|
|
|
+ <RowDefinition Height="auto"/>
|
|
|
|
+ <RowDefinition Height="auto"/>
|
|
|
|
+ <RowDefinition Height="auto"/>
|
|
|
|
+ <RowDefinition Height="auto"/>
|
|
|
|
+ <RowDefinition Height="auto"/>
|
|
|
|
+ <RowDefinition Height="auto"/>
|
|
|
|
+ <RowDefinition Height="auto"/>
|
|
|
|
+ <RowDefinition Height="auto"/>
|
|
|
|
+ <RowDefinition Height="auto"/>
|
|
|
|
+ <RowDefinition Height="auto"/>
|
|
|
|
+ <RowDefinition Height="auto"/>
|
|
|
|
+ </Grid.RowDefinitions>
|
|
|
|
+ <TextBlock Grid.Row="0" Margin="16,16,12,16" HorizontalAlignment="Left" VerticalAlignment="Center" Style="{StaticResource SubtitleTextBlockStyle}" Text="社会关系"/>
|
|
|
|
+
|
|
|
|
+ <TextBlock Grid.Row="1" Margin="16,0,16,8" HorizontalAlignment="Left" VerticalAlignment="Center" Style="{StaticResource BaseTextBlockStyle}" Text="政治面貌"/>
|
|
|
|
+ <ComboBox Grid.Row="2" Margin="16,0,16,16" MinWidth="150">
|
|
|
|
+ <ComboBoxItem>中共党员</ComboBoxItem>
|
|
|
|
+ <ComboBoxItem>中共预备党员</ComboBoxItem>
|
|
|
|
+ <ComboBoxItem>共青团员</ComboBoxItem>
|
|
|
|
+ <ComboBoxItem>民革党员</ComboBoxItem>
|
|
|
|
+ <ComboBoxItem>民盟盟员</ComboBoxItem>
|
|
|
|
+ <ComboBoxItem>民建会员</ComboBoxItem>
|
|
|
|
+ <ComboBoxItem>民进会员</ComboBoxItem>
|
|
|
|
+ <ComboBoxItem>农工党党员</ComboBoxItem>
|
|
|
|
+ <ComboBoxItem>致公党党员</ComboBoxItem>
|
|
|
|
+ <ComboBoxItem>九三学社社员</ComboBoxItem>
|
|
|
|
+ <ComboBoxItem>台盟盟员</ComboBoxItem>
|
|
|
|
+ <ComboBoxItem>无党派人士</ComboBoxItem>
|
|
|
|
+ <ComboBoxItem>群众</ComboBoxItem>
|
|
|
|
+ </ComboBox>
|
|
|
|
+
|
|
|
|
+ <TextBlock Grid.Row="3" Margin="16,0,16,8" HorizontalAlignment="Left" VerticalAlignment="Center" Style="{StaticResource BaseTextBlockStyle}" Text="结识地点"/>
|
|
|
|
+ <TextBox Grid.Row="4" Margin="16,0,16,16" TextWrapping="Wrap"/>
|
|
|
|
+
|
|
|
|
+ <TextBlock Grid.Row="5" Margin="16,0,16,8" HorizontalAlignment="Left" VerticalAlignment="Center" Style="{StaticResource BaseTextBlockStyle}" Text="相对身份"/>
|
|
|
|
+ <TextBox Grid.Row="6" Margin="16,0,16,16" TextWrapping="Wrap"/>
|
|
|
|
+
|
|
|
|
+ <TextBlock Grid.Row="7" Margin="16,0,16,8" HorizontalAlignment="Left" VerticalAlignment="Center" Style="{StaticResource BaseTextBlockStyle}" Text="学历"/>
|
|
|
|
+ <ComboBox Grid.Row="8" Margin="16,0,16,16" MinWidth="150">
|
|
|
|
+ <ComboBoxItem>小学</ComboBoxItem>
|
|
|
|
+ <ComboBoxItem>初中</ComboBoxItem>
|
|
|
|
+ <ComboBoxItem>中专</ComboBoxItem>
|
|
|
|
+ <ComboBoxItem>高中</ComboBoxItem>
|
|
|
|
+ <ComboBoxItem>专科</ComboBoxItem>
|
|
|
|
+ <ComboBoxItem>本科</ComboBoxItem>
|
|
|
|
+ <ComboBoxItem>硕士研究生</ComboBoxItem>
|
|
|
|
+ <ComboBoxItem>博士研究生</ComboBoxItem>
|
|
|
|
+ </ComboBox>
|
|
|
|
+
|
|
|
|
+ <TextBlock Grid.Row="9" Margin="16,0,16,8" HorizontalAlignment="Left" VerticalAlignment="Center" Style="{StaticResource BaseTextBlockStyle}" Text="毕业小学校"/>
|
|
|
|
+ <TextBox Grid.Row="10" Margin="16,0,16,16" TextWrapping="Wrap"/>
|
|
|
|
+
|
|
|
|
+ <TextBlock Grid.Row="11" Margin="16,0,16,8" HorizontalAlignment="Left" VerticalAlignment="Center" Style="{StaticResource BaseTextBlockStyle}" Text="毕业初中校"/>
|
|
|
|
+ <TextBox Grid.Row="12" Margin="16,0,16,16" TextWrapping="Wrap"/>
|
|
|
|
+
|
|
|
|
+ <TextBlock Grid.Row="13" Margin="16,0,16,8" HorizontalAlignment="Left" VerticalAlignment="Center" Style="{StaticResource BaseTextBlockStyle}" Text="毕业(职业)高中校"/>
|
|
|
|
+ <TextBox Grid.Row="14" Margin="16,0,16,16" TextWrapping="Wrap"/>
|
|
|
|
+
|
|
|
|
+ <TextBlock Grid.Row="15" Margin="16,0,16,8" HorizontalAlignment="Left" VerticalAlignment="Center" Style="{StaticResource BaseTextBlockStyle}" Text="毕业高校"/>
|
|
|
|
+ <TextBox Grid.Row="16" Margin="16,0,16,16" TextWrapping="Wrap"/>
|
|
|
|
+ </Grid>
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ <Grid Grid.Row="1" Grid.Column="1" Background="{ThemeResource CardBackgroundFillColorDefaultBrush}" Margin="0,0,16,16" BorderThickness="1" CornerRadius="{StaticResource ControlCornerRadius}" BorderBrush="{ThemeResource CardStrokeColorDefaultBrush}" Width="400">
|
|
|
|
+ <Grid.RowDefinitions>
|
|
|
|
+ <RowDefinition Height="auto"/>
|
|
|
|
+ <RowDefinition Height="auto"/>
|
|
|
|
+ <RowDefinition Height="auto"/>
|
|
|
|
+ <RowDefinition Height="auto"/>
|
|
|
|
+ <RowDefinition Height="auto"/>
|
|
|
|
+ </Grid.RowDefinitions>
|
|
|
|
+ <TextBlock Grid.Row="0" Margin="16,16,12,16" HorizontalAlignment="Left" VerticalAlignment="Center" Style="{StaticResource SubtitleTextBlockStyle}" Text="联系方式"/>
|
|
|
|
+ </Grid>
|
|
|
|
+ </Grid>
|
|
|
|
+ </ScrollViewer>
|
|
|
|
+ </Grid>
|
|
|
|
+ </PivotItem>
|
|
|
|
+ </Pivot>
|
|
</Grid>
|
|
</Grid>
|
|
</Page>
|
|
</Page>
|