people.xaml 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Page
  3. x:Class="ArchivesCenter4.people"
  4. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  5. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  6. xmlns:local="using:ArchivesCenter4"
  7. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  8. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  9. mc:Ignorable="d">
  10. <Grid>
  11. <Grid.RowDefinitions>
  12. <RowDefinition Height="auto"/>
  13. <RowDefinition Height="*"/>
  14. </Grid.RowDefinitions>
  15. <TextBlock Grid.Row="0" Style="{StaticResource TitleTextBlockStyle}" Text="关系人档案" Margin="36,40,0,0"/>
  16. <Pivot Grid.Row="1" Margin="36,0,0,0">
  17. <PivotItem Header="列表">
  18. <Grid>
  19. </Grid>
  20. </PivotItem>
  21. <PivotItem Header="详细信息">
  22. <Grid>
  23. <Grid.RowDefinitions>
  24. <RowDefinition Height="auto"/>
  25. <RowDefinition Height="auto"/>
  26. <RowDefinition Height="*"/>
  27. </Grid.RowDefinitions>
  28. <CommandBar Grid.ColumnSpan="100" Grid.Row="0" Background="Transparent" IsOpen="False" DefaultLabelPosition="Right" Margin="36,0,36,0">
  29. <AppBarButton Icon="NewWindow" Label="新建"/>
  30. <AppBarButton Icon="Edit" Label="编辑" IsEnabled="False"/>
  31. <AppBarButton Icon="Contact2" Label="更改照片" IsEnabled="False"/>
  32. <AppBarSeparator/>
  33. <AppBarButton Icon="Previous" Label="上一个" IsEnabled="False"/>
  34. <AppBarButton Icon="Next" Label="下一个" IsEnabled="False"/>
  35. <AppBarSeparator/>
  36. <AppBarButton Icon="Delete" Label="删除" IsEnabled="False"/>
  37. <AppBarButton Icon="Refresh" Label="刷新" Click="AppBarButton_Click_1"/>
  38. </CommandBar>
  39. <Grid Grid.Row="1">
  40. <Grid.RowDefinitions>
  41. <RowDefinition Height="auto"/>
  42. <RowDefinition Height="auto"/>
  43. </Grid.RowDefinitions>
  44. <Grid.ColumnDefinitions>
  45. <ColumnDefinition Width="auto"/>
  46. <ColumnDefinition Width="*"/>
  47. </Grid.ColumnDefinitions>
  48. <PersonPicture Grid.Column="0" Grid.Row="0" Margin="0,16,16,0"/>
  49. <TextBlock Grid.Column="1" Grid.Row="0" Margin="0,16,16,0" Style="{StaticResource HeaderTextBlockStyle}" Text="姓名" VerticalAlignment="Center"/>
  50. </Grid>
  51. <ScrollViewer Grid.Row="2" VerticalScrollBarVisibility="Visible" Margin="0,16,0,0">
  52. <Grid HorizontalAlignment="Stretch">
  53. <Grid.RowDefinitions>
  54. <RowDefinition Height="auto"/>
  55. <RowDefinition Height="auto"/>
  56. <RowDefinition Height="auto"/>
  57. <RowDefinition Height="auto"/>
  58. <RowDefinition Height="auto"/>
  59. <RowDefinition Height="auto"/>
  60. </Grid.RowDefinitions>
  61. <Grid Grid.Row="0" Grid.Column="0" Background="{ThemeResource CardBackgroundFillColorDefaultBrush}" Margin="48,36,48,16" BorderThickness="1" CornerRadius="{StaticResource ControlCornerRadius}" BorderBrush="{ThemeResource CardStrokeColorDefaultBrush}">
  62. <Grid.RowDefinitions>
  63. <RowDefinition Height="auto"/>
  64. <RowDefinition Height="auto"/>
  65. <RowDefinition Height="auto"/>
  66. <RowDefinition Height="auto"/>
  67. <RowDefinition Height="auto"/>
  68. <RowDefinition Height="auto"/>
  69. <RowDefinition Height="auto"/>
  70. <RowDefinition Height="auto"/>
  71. <RowDefinition Height="auto"/>
  72. <RowDefinition Height="auto"/>
  73. <RowDefinition Height="auto"/>
  74. <RowDefinition Height="auto"/>
  75. <RowDefinition Height="auto"/>
  76. <RowDefinition Height="auto"/>
  77. <RowDefinition Height="auto"/>
  78. <RowDefinition Height="auto"/>
  79. <RowDefinition Height="auto"/>
  80. </Grid.RowDefinitions>
  81. <TextBlock Grid.Row="0" Margin="16,16,12,16" HorizontalAlignment="Left" VerticalAlignment="Center" Style="{StaticResource SubtitleTextBlockStyle}" Text="基本信息"/>
  82. <TextBlock Grid.Row="1" x:Name="PName" Margin="16,0,16,8" HorizontalAlignment="Left" VerticalAlignment="Center" Style="{StaticResource BaseTextBlockStyle}" Text="姓名" TextWrapping="Wrap"/>
  83. <TextBox Grid.Row="2" Margin="16,0,16,16"/>
  84. <TextBlock Grid.Row="3" x:Name="PGender" Margin="16,0,16,8" HorizontalAlignment="Left" VerticalAlignment="Center" Style="{StaticResource BaseTextBlockStyle}" Text="性别"/>
  85. <ComboBox Grid.Row="4" Margin="16,0,16,16" MinWidth="150">
  86. <ComboBoxItem Content="男"/>
  87. <ComboBoxItem Content="女"/>
  88. </ComboBox>
  89. <TextBlock Grid.Row="5" Margin="16,0,16,8" HorizontalAlignment="Left" VerticalAlignment="Center" Style="{StaticResource BaseTextBlockStyle}" Text="性别"/>
  90. <CalendarDatePicker Grid.Row="6" Margin="16,0,16,16" MinWidth="150"/>
  91. <TextBlock Grid.Row="7" Margin="16,0,16,8" HorizontalAlignment="Left" VerticalAlignment="Center" Style="{StaticResource BaseTextBlockStyle}" Text="标签"/>
  92. <ComboBox Grid.Row="8" Margin="16,0,16,16" MinWidth="150">
  93. </ComboBox>
  94. <TextBlock Grid.Row="9" Margin="16,0,16,8" HorizontalAlignment="Left" VerticalAlignment="Center" Style="{StaticResource BaseTextBlockStyle}" Text="证件类型"/>
  95. <ComboBox Grid.Row="10" Margin="16,0,16,16" MinWidth="150">
  96. <ComboBoxItem>居民身份证</ComboBoxItem>
  97. <ComboBoxItem>港澳居民居住证</ComboBoxItem>
  98. <ComboBoxItem>台湾居民居住证</ComboBoxItem>
  99. <ComboBoxItem>往来港澳通行证</ComboBoxItem>
  100. <ComboBoxItem>护照</ComboBoxItem>
  101. <ComboBoxItem>港澳台居民来往大陆通行证</ComboBoxItem>
  102. </ComboBox>
  103. <TextBlock Grid.Row="11" Margin="16,0,16,8" HorizontalAlignment="Left" VerticalAlignment="Center" Style="{StaticResource BaseTextBlockStyle}" Text="证件号码"/>
  104. <TextBox Grid.Row="12" Margin="16,0,16,16" TextWrapping="Wrap"/>
  105. <TextBlock Grid.Row="13" Margin="16,0,16,8" HorizontalAlignment="Left" VerticalAlignment="Center" Style="{StaticResource BaseTextBlockStyle}" Text="备注"/>
  106. <TextBox Grid.Row="14" Margin="16,0,16,16" TextWrapping="Wrap"/>
  107. </Grid>
  108. <Grid Grid.Row="1" Grid.Column="1" Background="{ThemeResource CardBackgroundFillColorDefaultBrush}" Margin="48,0,48,16" BorderThickness="1" CornerRadius="{StaticResource ControlCornerRadius}" BorderBrush="{ThemeResource CardStrokeColorDefaultBrush}">
  109. <Grid.RowDefinitions>
  110. <RowDefinition Height="auto"/>
  111. <RowDefinition Height="auto"/>
  112. <RowDefinition Height="auto"/>
  113. <RowDefinition Height="auto"/>
  114. <RowDefinition Height="auto"/>
  115. <RowDefinition Height="auto"/>
  116. <RowDefinition Height="auto"/>
  117. <RowDefinition Height="auto"/>
  118. <RowDefinition Height="auto"/>
  119. </Grid.RowDefinitions>
  120. <TextBlock Grid.Row="0" Margin="16,16,12,16" HorizontalAlignment="Left" VerticalAlignment="Center" Style="{StaticResource SubtitleTextBlockStyle}" Text="家庭信息"/>
  121. <TextBlock Grid.Row="1" Margin="16,0,16,8" HorizontalAlignment="Left" VerticalAlignment="Center" Style="{StaticResource BaseTextBlockStyle}" Text="籍贯"/>
  122. <ComboBox Grid.Row="2" Margin="16,0,16,16" MinWidth="150">
  123. <ComboBoxItem>北京市</ComboBoxItem>
  124. <ComboBoxItem>天津市</ComboBoxItem>
  125. <ComboBoxItem>上海市</ComboBoxItem>
  126. <ComboBoxItem>重庆市</ComboBoxItem>
  127. <ComboBoxItem>河北省</ComboBoxItem>
  128. <ComboBoxItem>山西省</ComboBoxItem>
  129. <ComboBoxItem>辽宁省</ComboBoxItem>
  130. <ComboBoxItem>吉林省</ComboBoxItem>
  131. <ComboBoxItem>黑龙江省</ComboBoxItem>
  132. <ComboBoxItem>江苏省</ComboBoxItem>
  133. <ComboBoxItem>浙江省</ComboBoxItem>
  134. <ComboBoxItem>安徽省</ComboBoxItem>
  135. <ComboBoxItem>福建省</ComboBoxItem>
  136. <ComboBoxItem>江西省</ComboBoxItem>
  137. <ComboBoxItem>山东省</ComboBoxItem>
  138. <ComboBoxItem>河南省</ComboBoxItem>
  139. <ComboBoxItem>湖北省</ComboBoxItem>
  140. <ComboBoxItem>湖南省</ComboBoxItem>
  141. <ComboBoxItem>广东省</ComboBoxItem>
  142. <ComboBoxItem>海南省</ComboBoxItem>
  143. <ComboBoxItem>四川省</ComboBoxItem>
  144. <ComboBoxItem>贵州省</ComboBoxItem>
  145. <ComboBoxItem>云南省</ComboBoxItem>
  146. <ComboBoxItem>陕西省</ComboBoxItem>
  147. <ComboBoxItem>甘肃省</ComboBoxItem>
  148. <ComboBoxItem>青海省</ComboBoxItem>
  149. <ComboBoxItem>台湾省</ComboBoxItem>
  150. <ComboBoxItem>内蒙古自治区</ComboBoxItem>
  151. <ComboBoxItem>广西壮族自治区</ComboBoxItem>
  152. <ComboBoxItem>西藏自治区</ComboBoxItem>
  153. <ComboBoxItem>宁夏回族自治区</ComboBoxItem>
  154. <ComboBoxItem>新疆维吾尔自治区</ComboBoxItem>
  155. <ComboBoxItem>香港特别行政区</ComboBoxItem>
  156. <ComboBoxItem>澳门特别行政区</ComboBoxItem>
  157. </ComboBox>
  158. <TextBlock Grid.Row="3" Margin="16,0,16,8" HorizontalAlignment="Left" VerticalAlignment="Center" Style="{StaticResource BaseTextBlockStyle}" Text="婚姻状况"/>
  159. <ComboBox Grid.Row="4" Margin="16,0,16,16" MinWidth="150">
  160. <ComboBoxItem>未婚</ComboBoxItem>
  161. <ComboBoxItem>已婚</ComboBoxItem>
  162. <ComboBoxItem>离异</ComboBoxItem>
  163. <ComboBoxItem>丧偶</ComboBoxItem>
  164. </ComboBox>
  165. <TextBlock Grid.Row="5" Margin="16,0,16,8" HorizontalAlignment="Left" VerticalAlignment="Center" Style="{StaticResource BaseTextBlockStyle}" Text="住址"/>
  166. <TextBox Grid.Row="6" Margin="16,0,16,16" TextWrapping="Wrap"/>
  167. <TextBlock Grid.Row="7" Margin="16,0,16,8" HorizontalAlignment="Left" VerticalAlignment="Center" Style="{StaticResource BaseTextBlockStyle}" Text="备注"/>
  168. <TextBox Grid.Row="8" Margin="16,0,16,16" TextWrapping="Wrap"/>
  169. </Grid>
  170. <Grid Grid.Row="2" Grid.Column="0" Background="{ThemeResource CardBackgroundFillColorDefaultBrush}" Margin="48,0,48,16" BorderThickness="1" CornerRadius="{StaticResource ControlCornerRadius}" BorderBrush="{ThemeResource CardStrokeColorDefaultBrush}">
  171. <Grid.RowDefinitions>
  172. <RowDefinition Height="auto"/>
  173. <RowDefinition Height="auto"/>
  174. <RowDefinition Height="auto"/>
  175. <RowDefinition Height="auto"/>
  176. <RowDefinition Height="auto"/>
  177. <RowDefinition Height="auto"/>
  178. <RowDefinition Height="auto"/>
  179. <RowDefinition Height="auto"/>
  180. <RowDefinition Height="auto"/>
  181. <RowDefinition Height="auto"/>
  182. <RowDefinition Height="auto"/>
  183. <RowDefinition Height="auto"/>
  184. <RowDefinition Height="auto"/>
  185. <RowDefinition Height="auto"/>
  186. <RowDefinition Height="auto"/>
  187. <RowDefinition Height="auto"/>
  188. <RowDefinition Height="auto"/>
  189. <RowDefinition Height="auto"/>
  190. <RowDefinition Height="auto"/>
  191. <RowDefinition Height="auto"/>
  192. <RowDefinition Height="auto"/>
  193. <RowDefinition Height="auto"/>
  194. <RowDefinition Height="auto"/>
  195. <RowDefinition Height="auto"/>
  196. <RowDefinition Height="auto"/>
  197. <RowDefinition Height="auto"/>
  198. <RowDefinition Height="auto"/>
  199. <RowDefinition Height="auto"/>
  200. <RowDefinition Height="auto"/>
  201. <RowDefinition Height="auto"/>
  202. <RowDefinition Height="auto"/>
  203. <RowDefinition Height="auto"/>
  204. <RowDefinition Height="auto"/>
  205. <RowDefinition Height="auto"/>
  206. <RowDefinition Height="auto"/>
  207. <RowDefinition Height="auto"/>
  208. <RowDefinition Height="auto"/>
  209. <RowDefinition Height="auto"/>
  210. <RowDefinition Height="auto"/>
  211. <RowDefinition Height="auto"/>
  212. </Grid.RowDefinitions>
  213. <TextBlock Grid.Row="0" Margin="16,16,12,16" HorizontalAlignment="Left" VerticalAlignment="Center" Style="{StaticResource SubtitleTextBlockStyle}" Text="社会关系"/>
  214. <TextBlock Grid.Row="1" Margin="16,0,16,8" HorizontalAlignment="Left" VerticalAlignment="Center" Style="{StaticResource BaseTextBlockStyle}" Text="政治面貌"/>
  215. <ComboBox Grid.Row="2" Margin="16,0,16,16" MinWidth="150">
  216. <ComboBoxItem>中共党员</ComboBoxItem>
  217. <ComboBoxItem>中共预备党员</ComboBoxItem>
  218. <ComboBoxItem>共青团员</ComboBoxItem>
  219. <ComboBoxItem>民革党员</ComboBoxItem>
  220. <ComboBoxItem>民盟盟员</ComboBoxItem>
  221. <ComboBoxItem>民建会员</ComboBoxItem>
  222. <ComboBoxItem>民进会员</ComboBoxItem>
  223. <ComboBoxItem>农工党党员</ComboBoxItem>
  224. <ComboBoxItem>致公党党员</ComboBoxItem>
  225. <ComboBoxItem>九三学社社员</ComboBoxItem>
  226. <ComboBoxItem>台盟盟员</ComboBoxItem>
  227. <ComboBoxItem>无党派人士</ComboBoxItem>
  228. <ComboBoxItem>群众</ComboBoxItem>
  229. </ComboBox>
  230. <TextBlock Grid.Row="3" Margin="16,0,16,8" HorizontalAlignment="Left" VerticalAlignment="Center" Style="{StaticResource BaseTextBlockStyle}" Text="结识地点"/>
  231. <TextBox Grid.Row="4" Margin="16,0,16,16" TextWrapping="Wrap"/>
  232. <TextBlock Grid.Row="5" Margin="16,0,16,8" HorizontalAlignment="Left" VerticalAlignment="Center" Style="{StaticResource BaseTextBlockStyle}" Text="相对身份"/>
  233. <TextBox Grid.Row="6" Margin="16,0,16,16" TextWrapping="Wrap"/>
  234. <TextBlock Grid.Row="7" Margin="16,0,16,8" HorizontalAlignment="Left" VerticalAlignment="Center" Style="{StaticResource BaseTextBlockStyle}" Text="学历"/>
  235. <ComboBox Grid.Row="8" Margin="16,0,16,16" MinWidth="150">
  236. <ComboBoxItem>小学</ComboBoxItem>
  237. <ComboBoxItem>初中</ComboBoxItem>
  238. <ComboBoxItem>中专</ComboBoxItem>
  239. <ComboBoxItem>高中</ComboBoxItem>
  240. <ComboBoxItem>专科</ComboBoxItem>
  241. <ComboBoxItem>本科</ComboBoxItem>
  242. <ComboBoxItem>硕士研究生</ComboBoxItem>
  243. <ComboBoxItem>博士研究生</ComboBoxItem>
  244. </ComboBox>
  245. <TextBlock Grid.Row="9" Margin="16,0,16,8" HorizontalAlignment="Left" VerticalAlignment="Center" Style="{StaticResource BaseTextBlockStyle}" Text="毕业小学校"/>
  246. <TextBox Grid.Row="10" Margin="16,0,16,16" TextWrapping="Wrap"/>
  247. <TextBlock Grid.Row="11" Margin="16,0,16,8" HorizontalAlignment="Left" VerticalAlignment="Center" Style="{StaticResource BaseTextBlockStyle}" Text="毕业初中校"/>
  248. <TextBox Grid.Row="12" Margin="16,0,16,16" TextWrapping="Wrap"/>
  249. <TextBlock Grid.Row="13" Margin="16,0,16,8" HorizontalAlignment="Left" VerticalAlignment="Center" Style="{StaticResource BaseTextBlockStyle}" Text="毕业(职业)高中校"/>
  250. <TextBox Grid.Row="14" Margin="16,0,16,16" TextWrapping="Wrap"/>
  251. <TextBlock Grid.Row="15" Margin="16,0,16,8" HorizontalAlignment="Left" VerticalAlignment="Center" Style="{StaticResource BaseTextBlockStyle}" Text="毕业高校"/>
  252. <TextBox Grid.Row="16" Margin="16,0,16,16" TextWrapping="Wrap"/>
  253. <TextBlock Grid.Row="17" Margin="16,0,16,8" HorizontalAlignment="Left" VerticalAlignment="Center" Style="{StaticResource BaseTextBlockStyle}" Text="研究生单位"/>
  254. <TextBox Grid.Row="18" Margin="16,0,16,16" TextWrapping="Wrap"/>
  255. <TextBlock Grid.Row="19" Margin="16,0,16,8" HorizontalAlignment="Left" VerticalAlignment="Center" Style="{StaticResource BaseTextBlockStyle}" Text="工作单位和职位"/>
  256. <TextBox Grid.Row="20" Margin="16,0,16,16" TextWrapping="Wrap"/>
  257. <TextBlock Grid.Row="21" Margin="16,0,16,8" HorizontalAlignment="Left" VerticalAlignment="Center" Style="{StaticResource BaseTextBlockStyle}" Text="备注"/>
  258. <TextBox Grid.Row="22" Margin="16,0,16,16" TextWrapping="Wrap"/>
  259. </Grid>
  260. <Grid Grid.Row="3" Grid.Column="1" Background="{ThemeResource CardBackgroundFillColorDefaultBrush}" Margin="48,0,48,16" BorderThickness="1" CornerRadius="{StaticResource ControlCornerRadius}" BorderBrush="{ThemeResource CardStrokeColorDefaultBrush}">
  261. <Grid.RowDefinitions>
  262. <RowDefinition Height="auto"/>
  263. <RowDefinition Height="auto"/>
  264. <RowDefinition Height="auto"/>
  265. <RowDefinition Height="auto"/>
  266. <RowDefinition Height="auto"/>
  267. <RowDefinition Height="auto"/>
  268. <RowDefinition Height="auto"/>
  269. <RowDefinition Height="auto"/>
  270. <RowDefinition Height="auto"/>
  271. <RowDefinition Height="auto"/>
  272. <RowDefinition Height="auto"/>
  273. <RowDefinition Height="auto"/>
  274. <RowDefinition Height="auto"/>
  275. <RowDefinition Height="auto"/>
  276. <RowDefinition Height="auto"/>
  277. </Grid.RowDefinitions>
  278. <TextBlock Grid.Row="0" Margin="16,16,12,16" HorizontalAlignment="Left" VerticalAlignment="Center" Style="{StaticResource SubtitleTextBlockStyle}" Text="联系方式"/>
  279. <TextBlock Grid.Row="1" Margin="16,0,16,8" HorizontalAlignment="Left" VerticalAlignment="Center" Style="{StaticResource BaseTextBlockStyle}" Text="电话号码"/>
  280. <TextBox Grid.Row="2" Margin="16,0,16,16" TextWrapping="Wrap"/>
  281. <TextBlock Grid.Row="3" Margin="16,0,16,8" HorizontalAlignment="Left" VerticalAlignment="Center" Style="{StaticResource BaseTextBlockStyle}" Text="电子邮件地址"/>
  282. <TextBox Grid.Row="4" Margin="16,0,16,16" TextWrapping="Wrap"/>
  283. <TextBlock Grid.Row="5" Margin="16,0,16,8" HorizontalAlignment="Left" VerticalAlignment="Center" Style="{StaticResource BaseTextBlockStyle}" Text="电子邮件地址"/>
  284. <TextBox Grid.Row="6" Margin="16,0,16,16" TextWrapping="Wrap"/>
  285. <TextBlock Grid.Row="7" Margin="16,0,16,8" HorizontalAlignment="Left" VerticalAlignment="Center" Style="{StaticResource BaseTextBlockStyle}" Text="微信号"/>
  286. <TextBox Grid.Row="8" Margin="16,0,16,16" TextWrapping="Wrap"/>
  287. <TextBlock Grid.Row="9" Margin="16,0,16,8" HorizontalAlignment="Left" VerticalAlignment="Center" Style="{StaticResource BaseTextBlockStyle}" Text="QQ号"/>
  288. <TextBox Grid.Row="10" Margin="16,0,16,16" TextWrapping="Wrap"/>
  289. <TextBlock Grid.Row="11" Margin="16,0,16,8" HorizontalAlignment="Left" VerticalAlignment="Center" Style="{StaticResource BaseTextBlockStyle}" Text="其他联系方式"/>
  290. <TextBox Grid.Row="12" Margin="16,0,16,16" TextWrapping="Wrap"/>
  291. </Grid>
  292. </Grid>
  293. </ScrollViewer>
  294. </Grid>
  295. </PivotItem>
  296. </Pivot>
  297. </Grid>
  298. </Page>